/* Furniture page-specific styles. Shared header/nav/cart/modal/footer styles live in css/main.css. */

html {
    background-color: #c5cfd0;
    overscroll-behavior-y: none;
}
body {
    background-color: #fafafa;
    padding-top: 124px !important; /* promo-banner (40) + nav-ribbon (44) + furniture-nav (40) */
}

a:hover .back-arrow-icon path {
    stroke: #583c4a !important;
}
.floating-showhouse-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #faf8f3;
    color: #141414;
    padding: 14px 28px;
    border: 1.5px solid #141414;
    border-radius: 50px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Tactile shadows for depth */
    box-shadow:
        0 2px 4px rgba(20, 20, 20, 0.1),
        0 6px 12px rgba(20, 20, 20, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(20, 20, 20, 0.05);
}
.floating-showhouse-btn::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #c5cfd0;
    border-radius: 50%;
    display: inline-block;
    box-shadow:
        0 1px 3px rgba(197, 207, 208, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.floating-showhouse-btn:hover {
    background: linear-gradient(135deg, #583c4a 0%, #3d2a34 100%);
    color: #fafafa;
    border-color: #583c4a;
    transform: translateY(-3px);
    box-shadow:
        0 4px 8px rgba(88, 60, 74, 0.2),
        0 10px 20px rgba(88, 60, 74, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.floating-showhouse-btn:active {
    transform: translateY(-1px);
    box-shadow:
        0 1px 3px rgba(20, 20, 20, 0.2),
        0 2px 6px rgba(20, 20, 20, 0.15),
        inset 0 2px 4px rgba(20, 20, 20, 0.15);
}
.furniture-nav {
    height: 40px;
    background: #fafafa;
    border-bottom: 1.5px solid #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: fixed; /* Fixed at top below nav-ribbon */
    top: 84px;
    left: 0;
    right: 0;
    z-index: 999;
}
.makemake-logo-container {
    position: relative;
    left: 0;
    width: 100vw;
    padding: 0;
    margin: 0;
    background: #141414;
    z-index: 10;
    overflow: hidden;
}
.grid-title-band {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #faf8f3;
    border-top: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    padding: 20px 0;
    text-align: center;
    z-index: 11;
    margin-top: 0;
    margin-bottom: 0;
}
.grid-title-band .section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: #141414;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.grid-title-band .section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-top: 8px;
}
.furniture-nav-link {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    color: #141414;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    cursor: pointer;
}
.furniture-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: #583c4a;
    transition: width 0.3s ease;
}
.furniture-nav-link:hover,
.furniture-nav-link.active {
    color: #583c4a;
}
.furniture-nav-link:hover::after,
.furniture-nav-link.active::after {
    width: 80%;
}
.main-content {
    padding: 0 50px 80px; /* Normal side padding, no top padding needed */
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 12px;
}
.section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
}
.grid-header .section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: #141414;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.collection-showcase {
    background: #fafafa;
    padding: 0;
    margin: 0 -50px 120px; /* Negative margin to break out of main-content padding */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.grid-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 50px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}
.showcase-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    transition: none;
    aspect-ratio: 1 / 1;
    border-right: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    text-decoration: none;
    display: block;
    color: inherit;
}
.showcase-item:nth-child(4n) {
    border-right: none;
}
.showcase-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
    border-right: 1.5px solid #141414 !important;
}
.showcase-item:hover {
    z-index: 10;
}
.showcase-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.showcase-item:hover .showcase-item-overlay {
    transform: translateY(0);
}
.showcase-item-name {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.showcase-item-prices {
    display: flex;
    align-items: center;
    gap: 12px;
}
.showcase-item-original-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #141414;
    text-decoration: line-through;
    opacity: 0.5;
}
.showcase-item-sale-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #583c4a;
    font-weight: 600;
}
.showcase-item-markdown {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}
.showcase-item-add-btn {
    margin-top: 12px;
    padding: 8px 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #141414;
    background: #faf8f3;
    border: 1.5px solid #141414;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.showcase-item-add-btn:hover {
    background: #141414;
    color: #faf8f3;
}
.showcase-item-source {
    font-family: 'Geist Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 500;
    opacity: 0.7;
}
.showcase-item-source.makemake {
    color: #141414;
    letter-spacing: 0.05em;
}
.showcase-item-source.curated {
    color: #583c4a;
}
.editorial-moment {
    background: #fafafa;
    padding: 40px 0;
    margin: 80px -50px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.editorial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}
.editorial-title {
    font-family: 'Geist Mono', monospace;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #141414;
    margin-bottom: 40px;
    line-height: 1.3;
}
.editorial-text {
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
    line-height: 1.8;
    color: #583c4a;
    font-weight: 300;
    margin-bottom: 24px;
}
.editorial-text strong {
    color: #141414;
    font-weight: 500;
}
.statement-text {
    font-family: 'Geist Mono', monospace;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #141414;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.statement-text strong {
    font-weight: 600;
}
.featured-products {
    margin: 120px 0;
}
.featured-pair {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}
.featured-pair:nth-child(even) {
    flex-direction: row-reverse;
}
.featured-image {
    flex: 1.2;
}
.featured-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(20, 20, 20, 0.15);
}
.featured-text {
    flex: 0.8;
}
.featured-product-name {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #141414;
    margin-bottom: 16px;
}
.featured-product-description {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #583c4a;
    margin-bottom: 60px;
    font-weight: 300;
}
.featured-product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #141414;
    font-weight: 600;
    margin-bottom: 24px;
}
.featured-cta {
    display: inline-block;
    padding: 12px 36px;
    background: #faf8f3;
    color: #141414;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid #141414;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Geist Mono', monospace;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.featured-cta:hover {
    background: #583c4a;
    color: #faf8f3;
    border-color: #583c4a;
}
.triptych-section {
    width: 100%;
    max-width: 100%;
    margin: 120px 0 160px 0;
    padding: 0;
}
.triptych-section .section-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #faf8f3;
    border-top: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 0;
}
.triptych-section .section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: #141414;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.triptych-section .section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-top: 8px;
}
.triptych-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.triptych-card {
    display: block;
    position: relative;
    border-right: 1.5px solid #141414;
    line-height: 0;
}
.triptych-card:last-child {
    border-right: none;
}
.triptych-image-wrapper {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: block;
}
.triptych-image-wrapper.window-treatments {
    background-image: url('https://i.imgur.com/RfWXDS8.jpg');
    background-position: center 65%;
}
.triptych-image-wrapper.works-wall {
    background-image: url('https://i.imgur.com/zc8a5eu.jpg');
    background-position: center 70%;
}
.triptych-image-wrapper.guest-brands {
    background-image: url('https://i.imgur.com/qhsuy9j.jpg');
    background-position: center center;
}
.triptych-title-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #c5cfd0;
    color: #141414;
    padding: 10px 24px 12px;
    z-index: 4;
    border-left: 1.5px solid #141414;
    border-right: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.triptych-title-tag h3 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #141414;
    margin: 0;
    white-space: nowrap;
}
.triptych-content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #faf8f3;
    border-top: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.triptych-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 25px;
    border-right: 1.5px solid #141414;
}
.triptych-content:last-child {
    border-right: none;
}
.triptych-description {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 400;
    color: #141414;
    line-height: 1.6;
}
.triptych-link {
    display: inline-block;
    color: #141414;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Geist Mono', monospace;
    transition: all 0.3s ease;
    margin-top: 8px;
}
.triptych-link:hover {
    color: #583c4a;
}
.all-furniture-section {
    margin: 120px 0;
}
.all-furniture-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}
.all-furniture-section .section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    color: #141414;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.all-furniture-section .section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-top: 8px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.product-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #141414;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card.hidden {
    display: none;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.08);
}
.product-image-container {
    width: 100%;
    height: calc((100% * 4/3) - 20px);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1.5px solid #141414;
}
.sale-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #c5cfd0;
    color: #141414;
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 4px 16px 6px;
    z-index: 2;
    text-transform: uppercase;
    border-left: 1.5px solid #141414;
    border-right: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    white-space: nowrap;
    margin: 0;
}
.hide-grid-badges .sale-badge {
    display: none;
}
.product-image-container::after {
    content: 'IMAGE';
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #c5cfd0;
    position: absolute;
}
.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}
.btn-view {
    width: 100%;
    padding: 12px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-bottom: 1.5px solid #141414;
    background: transparent;
    color: #141414;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}
.btn-view:hover {
    background: #c5cfd0;
    color: #141414;
}
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    border-bottom: 1.5px solid #141414;
    background: #faf8f3;
}
.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #141414;
    line-height: 1.4;
}
.product-price {
    font-family: 'Geist Mono', monospace;
    font-size: 0.95rem;
    font-weight: 500;
    color: #583c4a;
}
.price-original {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.85rem;
    margin-right: 8px;
}
.price-sale {
    color: #141414;
    font-weight: 600;
}
.btn-add-cart {
    width: 100%;
    padding: 12px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    background: transparent;
    color: #141414;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}
.btn-add-cart:hover {
    background: #583c4a;
    color: #fafafa;
}
.btn-add-cart.added {
    background: #4a8b5c;
    color: #fafafa;
}
.load-more-container {
    text-align: center;
    padding: 40px 0;
}
.load-more-btn {
    padding: 0;
    background: transparent;
    color: #141414;
    border: none;
    font-family: 'Geist Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.load-more-btn:hover {
    color: #583c4a;
}
.load-more-btn:hover svg:first-child {
    transform: translateX(-4px);
}
.load-more-btn:hover svg:last-child {
    transform: translateX(4px);
}
.load-more-btn svg {
    transition: transform 0.3s ease;
}
.footer-section:nth-child(1) .social-icons {
    justify-content: flex-start;
}
.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.search-result-code {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.page-sections-wrapper {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.page-sections-wrapper.loaded {
    opacity: 1;
}

/* Product Detail Page Styles - from amanita-side-table.html */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><g transform="rotate(60 12 12)"><path d="M22 12H5M12 19l-7-7 7-7" stroke="%23141414" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>') 10 10, auto !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    color: #141414;
    line-height: 1.6;
    padding-top: 0;
}

/* Main page scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #fafafa;
    margin-right: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 6px;
    border-right: 5px solid #fafafa;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 20, 20, 0.9);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(20, 20, 20, 0.8) #fafafa;
}

/* Header Styles */
.promo-banner {
    background: #c5cfd0;
    color: #141414;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    position: absolute;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
}

.ticker-item {
    padding: 0 80px;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.nav-ribbon {
    height: 44px;
    background: rgba(250, 248, 243, 0.95);
    border-top: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: fixed; /* Fixed at top below promo banner */
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-center {
    display: flex;
    height: 100%;
    border-left: 1.5px solid #141414;
    border-right: 1.5px solid #141414;
}

.landing-nav-link {
    padding: 0 32px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #141414;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.5s ease;
    border-right: 1.5px solid #141414;
}

.landing-nav-link:last-child {
    border-right: none;
}

.landing-nav-link.active,
.landing-nav-link:hover {
    color: #583c4a;
}

.back-arrow-icon path {
    transition: stroke 0.5s ease;
}

.nav-icons {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.nav-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    position: relative;
}

.nav-icon:hover svg {
    stroke: #583c4a !important;
}

.nav-icon:hover svg circle {
    fill: #583c4a !important;
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #583c4a;
    color: white;
    border-radius: 50%;
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #fafafa;
    box-sizing: border-box;
}

.cart-counter.has-items {
    display: flex;
}

/* Cart Modal Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 207, 208, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* CART MODAL - Fixed structure */
.cart-modal {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #faf8f3;
    border-left: 1.5px solid #141414;
    z-index: 10000;
    transition: right 0.3s ease;
    font-family: 'Geist Mono', monospace;
}

.cart-modal.active {
    right: 0;
}

/* HEADER - Fixed 40px */
.cart-header {
    height: 40px;
    padding: 0 30px;
    border-bottom: 1.5px solid #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.cart-close:hover {
    transform: rotate(90deg);
}

.clear-items-link:hover {
    opacity: 0.6 !important;
}

/* Clear Items Modal - Ultra Simple */
.clear-modal {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: #fafafa;
    border: 1.5px solid #141414;
    border-radius: 8px;
    width: 280px;
    padding: 0;
    font-family: 'Geist Mono', monospace;
    z-index: 10001;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.clear-modal.active {
    display: block;
}

.clear-modal-message {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #141414;
    padding: 20px;
}

.clear-modal-buttons {
    display: flex;
    height: 25px;
    border-top: 1.5px solid #141414;
}

.clear-modal-btn {
    flex: 1;
    padding: 0;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: #faf8f3;
    color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-modal-btn:first-child:not(:only-child) {
    border-right: 1.5px solid #141414;
}

.clear-modal-btn:hover {
    background: #c5cfd0;
    color: #141414;
}

/* Newsletter Modal */
.newsletter-modal {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: #fafafa;
    border: 1.5px solid #141414;
    border-radius: 8px;
    width: 380px;
    padding: 0;
    font-family: 'Geist Mono', monospace;
    z-index: 10001;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.newsletter-modal.active {
    display: block;
}

.newsletter-modal-header {
    height: 30px;
    background: #faf8f3;
    border-bottom: 1.5px solid #141414;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 8px;
}

.newsletter-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
    margin-top: 4px;
}

.newsletter-modal-close:hover {
    transform: rotate(90deg);
}

.newsletter-modal-content {
    padding: 24px;
    text-align: center;
}

.newsletter-modal-title {
    font-size: 1.2rem;
    color: #583c4a;
    margin-bottom: 8px;
    font-weight: 500;
}

.newsletter-modal-subtitle {
    font-size: 0.85rem;
    color: #141414;
}

/* Info Modals (Shipping & Returns) */
.info-modal {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #fafafa;
    border: 1.5px solid #141414;
    border-radius: 8px;
    width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    padding: 0;
    font-family: 'Inter', sans-serif;
    z-index: 10001;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow: hidden;
}

.info-modal.active {
    display: block;
}

.info-modal-header {
    height: 50px;
    background: #faf8f3;
    border-bottom: 1.5px solid #141414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.info-modal-title {
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #141414;
}

.info-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.info-modal-close:hover {
    transform: rotate(90deg);
}

.info-modal-content {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(80vh - 50px);
}

.info-modal-content h3 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #583c4a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.info-modal-content h3:first-child {
    margin-top: 0;
}

.info-modal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #141414;
    margin-bottom: 12px;
}

.info-modal-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.info-modal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #141414;
    margin-bottom: 8px;
}

.info-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 207, 208, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
}

.info-modal-overlay.active {
    display: block;
}

/* ITEMS - Fixed calculated height */
.cart-items {
    height: calc(100vh - 220px);
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-empty {
    text-align: center;
    padding: 20px 0;
    color: #583c4a;
    font-style: italic;
    font-size: 0.85rem;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1.5px solid #141414;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-item-code {
    font-size: 0.6rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.cart-item-spec {
    font-size: 0.6rem;
    color: #141414;
    line-height: 1.6;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 500;
    font-size: 0.75rem;
    color: #583c4a;
    margin-top: 8px;
}

/* Discounted price: original struck through, then sale price */
.cart-modal .cart-item-price-with-discount .cart-price-original,
.cart-modal .cart-item-price .cart-price-original {
    text-decoration: line-through !important;
    opacity: 0.65;
    margin-right: 6px;
    display: inline;
    color: #583c4a;
}
.cart-modal .cart-item-price-with-discount .cart-price-current {
    font-weight: 600;
    color: #141414;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    opacity: 1;
}

/* FOOTER - Fixed 180px */
.cart-footer {
    min-height: 180px;
    padding: 16px 30px;
    border-top: 1.5px solid #141414;
    background: #faf8f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-total {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 2px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.75rem;
    padding-top: 4px;
    margin-top: 4px;
    border-top: 1.5px solid #141414;
}

.total-line .total-value {
    font-size: 0.9rem;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-checkout {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    background: #fafafa;
    color: #141414;
    border: 1.5px solid #141414;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout:hover:not(:disabled) {
    background: #583c4a;
    color: #faf8f3;
}

.cart-checkout:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.clear-cart-btn {
    width: 100%;
    padding: 8px;
    margin-top: -5px;
    background: transparent;
    color: #583c4a;
    border: none;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    color: #141414;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #c5cfd0;
    border-top: 1.5px solid #141414;
    padding: 4rem 50px 3rem;
    margin-bottom: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section:nth-child(3) {
    text-align: right;
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Geist Mono', monospace;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 2;
}

.footer-link {
    color: #141414;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.6;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-section:nth-child(2) .social-icons {
    justify-content: center;
}

.social-icon {
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.newsletter-form {
    display: inline-flex;
    gap: 0;
    margin-bottom: 25px;
}

.newsletter-input {
    width: 220px;
    padding: 0 16px;
    height: 44px;
    background: #fafafa;
    border: 1.5px solid #141414;
    border-right: none;
    color: #141414;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-button {
    padding: 12px 36px;
    height: auto;
    background: #fafafa;
    border: 1.5px solid #141414;
    color: #141414;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #583c4a;
    color: #faf8f3;
    border-color: #583c4a;
}

.footer-logo {
    margin-top: 20px;
}

/* Synthesis Logo Watermark */
.synthesis-watermark {
    position: fixed;
    top: 24px;
    right: 40px;
    opacity: 0.3;
    z-index: 999;
}

/* Main Container */
.product-container {
    margin-top: 0; /* Body padding-top already accounts for header + furniture-nav */
    display: flex;
    min-height: calc(100vh - 124px);
}

/* Wrapper to contain the absolute scrollbar */
.gallery-wrapper {
    position: sticky;
    top: 124px;
    width: 50%;
    height: calc(100vh - 124px);
}

/* Image Gallery Section - 50% width, vertical scroll */
.gallery-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    overflow-y: hidden;
    margin-left: 0;
    padding-left: 0;
}

/* Inner scrollable container */
.gallery-scroll-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Custom scrollbar track on left - floating over image */
.custom-scrollbar {
    position: absolute;
    left: 8px;
    top: 50px;
    width: 18px;
    height: calc(100% - 150px);
    background: transparent;
    z-index: 1500;
    pointer-events: all;
}

/* Custom scrollbar thumb */
.custom-scrollbar-thumb {
    position: absolute;
    left: 3px;
    width: 12px;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    will-change: transform;
    border: 1.5px solid #fafafa;
    backdrop-filter: blur(4px);
}

.custom-scrollbar-thumb:hover {
    background: rgba(250, 250, 250, 0.1);
    border-color: #fafafa;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
}

.product-image.first-image {
    /* Removed transform to prevent image from being cut off at top */
    margin-bottom: 0;
}

.product-image:not(:last-child) {
    border-bottom: 1.5px solid #141414;
}

/* Details Panel Wrapper */
.details-wrapper {
    position: sticky;
    top: 124px;
    width: 50%;
    height: calc(100vh - 124px);
}

/* Product Details Panel - 50% width, sticky */
.details-panel {
    width: calc(100% - 50px);
    background: #fafafa;
    border-left: 1.5px solid #141414;
    padding: 0;
    height: 100%;
    overflow-y: hidden;
}

/* Inner scrollable container for details */
.details-scroll-container {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 60px 50px 100px 50px;
}

.details-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Custom scrollbar track on right - for details panel */
.custom-scrollbar-right {
    position: absolute;
    right: 33px;
    top: 50px;
    width: 18px;
    height: calc(100% - 150px);
    background: transparent;
    z-index: 1500;
    pointer-events: all;
}

/* Custom scrollbar thumb for right side */
.custom-scrollbar-thumb-right {
    position: absolute;
    left: 3px;
    width: 12px;
    background: #fafafa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    will-change: transform;
    border: 1.5px solid #141414;
    backdrop-filter: blur(4px);
}

.custom-scrollbar-thumb-right:hover {
    background: #fafafa;
    border-color: #141414;
}

.product-badge {
    font-family: 'Geist Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #141414;
    font-weight: 500;
    margin-bottom: 12px;
}



/* Selectors */
.selector-group {
    margin-bottom: 32px;
}

.selector-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 12px;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 0;
}

.size-option {
    flex: 1;
    padding: 12px 20px;
    border: 1.5px solid #141414;
    border-right: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.size-option:last-child {
    border-right: 1.5px solid #141414;
}

.size-option:hover,
.size-option.selected {
    background: #c5cfd0;
    color: #141414;
}

/* One Size - Non-interactive styling */
.size-option.one-size-only {
    cursor: default;
    background: transparent;
}

.size-option.one-size-only:hover {
    background: transparent;
}

.size-name {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.size-dims {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    opacity: 0.7;
}

.color-swatches {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch.flat {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.color-swatch.flat::before {
    display: none;
}

.color-swatch::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
    border-radius: 50%;
    filter: blur(2px);
}

.color-swatch:hover,
.color-swatch.selected {
    border-color: #141414;
}

.color-swatch.walnut { background-color: #6b4423; }
.color-swatch.oak { background-color: #c4a57b; }
.color-swatch.black { background-color: #141414; }

/* Image-based color swatches for cedar wood */
.color-swatch-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-swatch-image:hover,
.color-swatch-image.selected {
    border-color: #141414;
}

/* Matte color swatch - no gloss effect */
.color-swatch-matte {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.color-swatch-matte:hover,
.color-swatch-matte.selected {
    border-color: #141414;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.material-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.material-chip {
    padding: 10px 20px;
    border: 1.5px solid #141414;
    background: transparent;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.material-chip:hover,
.material-chip.selected {
    background: #141414;
    color: #faf8f3;
}

/* Specifications Accordion */
.specs-section {
    margin-bottom: 32px;
}

.spec-item {
    border-top: 1.5px solid #141414;
    padding: 20px 0;
}

.spec-item:last-child {
    border-bottom: 1.5px solid #141414;
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.spec-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.spec-item.open .spec-toggle {
    transform: rotate(45deg);
}

.spec-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.spec-item.open .spec-content {
    max-height: 500px;
    margin-top: 16px;
}

.spec-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #583c4a;
    margin-bottom: 8px;
}

.dimension-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.dimension-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dimension-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #583c4a;
}

/* Lead Time Badge */
.lead-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #141414;
    margin-bottom: 32px;
}

/* Quantity Selector */
.quantity-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    align-items: center;
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1.5px solid #141414;
    width: 100%;
}

.btn-add-truck {
    width: auto;
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid #141414;
    background: transparent;
    color: #141414;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border-radius: 50px;
    margin-bottom: 24px;
}

.quantity-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #141414;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.quantity-value {
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    color: #141414;
    min-width: 20px;
    text-align: center;
}

.quantity-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    color: #141414;
    padding: 4px 8px;
    transition: color 0.3s ease;
}

.quantity-btn:hover {
    color: #583c4a;
}

.btn-add-truck:hover {
    background: #583c4a;
    color: #fafafa;
    border-color: #583c4a;
}

.btn-consult:hover {
    color: #141414;
}

/* Craftsmanship Section */
.craft-section {
    padding: 80px 60px;
    background: #fafafa;
    border-top: 1.5px solid #141414;
}

.craft-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.craft-title {
    font-family: 'Geist Mono', monospace;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.craft-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #583c4a;
    margin-bottom: 16px;
}

.made-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 37px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #141414;
}

.made-badge svg {
    transform: translateY(-3px) translateX(10px);
}

.made-badge::after {
    content: attr(data-text);
}

/* Move just the text down */
.made-badge {
    padding-top: 10px;
}

.made-badge svg {
    margin-top: -10px;
}

/* Back to Furniture Link */
.back-to-furniture {
    text-align: center;
    padding: 60px 0;
    background: #fafafa;
    position: relative;
}

.back-furniture-btn {
    display: inline-block;
    padding: 0;
    background: transparent;
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #141414;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.back-furniture-btn span {
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.back-furniture-btn:hover {
    color: #583c4a;
}

/* Search Modal */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 207, 208, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9997;
}

.search-overlay.active {
    display: block;
}

.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 70vh;
    background: #faf8f3;
    border: 1.5px solid #141414;
    z-index: 9998;
    display: none;
    flex-direction: column;
}

.search-modal.active {
    display: flex;
}

.search-header {
    padding: 20px 24px;
    border-bottom: 1.5px solid #141414;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input {
    flex: 1;
    font-family: 'Geist Mono', monospace;
    font-size: 1rem;
    padding: 12px 0;
    border: none;
    background: transparent;
    color: #141414;
    outline: none;
}

.search-input::placeholder {
    color: #583c4a;
    opacity: 0.5;
}

.search-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-results {
    overflow-y: auto;
    flex: 1;
}

.search-result-item {
    padding: 16px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #141414;
}

.search-result-item:hover {
    background: #f0f0f0;
}

.search-result-image {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 1px solid #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.search-result-price {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    color: #583c4a;
    white-space: nowrap;
}

.search-no-results {
    padding: 40px 24px;
    text-align: center;
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE — Furniture page
   ============================================ */
@media (max-width: 1024px) {
    .main-content {
        padding: 0 32px 60px;
    }
    .collection-showcase {
        margin: 0 -32px 80px;
    }
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .showcase-item:nth-child(4n) {
        border-right: 1.5px solid #141414;
    }
    .showcase-item:nth-child(3n) {
        border-right: none;
    }
    .showcase-item-wide {
        grid-column: span 2;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px !important;
    }
    .promo-banner {
        height: 32px;
        font-size: 0.65rem;
    }
    .nav-ribbon,
    .nav-ribbon.scrolled {
        top: 32px;
        height: 40px;
        padding-left: 52px;
        padding-right: 120px;
    }
    .nav-ribbon > div:first-of-type {
        left: 16px !important;
    }
    .nav-center {
        padding: 0 8px;
    }
    .landing-nav-link {
        padding: 0 16px;
        font-size: 0.75rem !important;
    }
    .nav-icons {
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
        gap: 12px;
    }
    .nav-icon svg {
        width: 18px;
        height: 18px;
    }
    .furniture-nav {
        top: 72px;
        height: 36px;
        gap: 20px;
        padding: 0 16px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .furniture-nav::-webkit-scrollbar {
        display: none;
    }
    .furniture-nav-link {
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .makemake-logo-container svg {
        width: 100%;
        max-width: 480px;
    }
    .main-content {
        padding: 0 20px 48px;
    }
    .collection-showcase {
        margin: 0 -20px 60px;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-item:nth-child(3n) {
        border-right: 1.5px solid #141414;
    }
    .showcase-item:nth-child(2n) {
        border-right: none;
    }
    .showcase-item-wide {
        grid-column: span 2;
    }
    .grid-title-band .section-title {
        font-size: 1.2rem;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }
    .product-info {
        padding: 14px;
    }
    .product-name {
        font-size: 0.9rem;
    }
    .floating-showhouse-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 96px !important;
    }
    .promo-banner {
        height: 28px;
        font-size: 0.6rem;
    }
    .nav-ribbon,
    .nav-ribbon.scrolled {
        top: 28px;
        height: 36px;
        padding-left: 48px;
        padding-right: 110px;
    }
    .nav-ribbon > div:first-of-type {
        left: 12px !important;
    }
    .nav-center {
        padding: 0 8px;
    }
    .landing-nav-link {
        padding: 0 10px;
        font-size: 0.7rem !important;
    }
    .nav-icons {
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        height: 36px;
        gap: 10px;
    }
    .furniture-nav {
        top: 68px;
        height: 32px;
        gap: 16px;
    }
    .main-content {
        padding: 0 16px 40px;
    }
    .collection-showcase {
        margin: 0 -16px 48px;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-item:nth-child(2n) {
        border-right: none;
    }
    .showcase-item {
        border-right: none;
    }
    .showcase-item-wide {
        grid-column: span 1;
    }
    .grid-title-band .section-title {
        font-size: 1rem;
    }
    .grid-title-band .section-subtitle {
        font-size: 0.6rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .load-more-container {
        padding: 0 16px 40px;
    }
}

@media (max-width: 480px) {
    .landing-nav-link {
        padding: 0 8px;
        font-size: 0.65rem !important;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .product-name {
        font-size: 0.85rem;
    }
}

/* ============================================================================
   WINDOW TREATMENTS SECTION (furniture page filter)
   ============================================================================ */
#windowTreatmentsSection {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Only when Window Treatments view is active: unconstrain .main-content so hero is full width and carousel is left-aligned. Other furniture views (Home, All, etc.) keep normal padding and max-width. */
body.wt-view .main-content {
    padding: 0;
    max-width: none;
}

/* Full-width hero (initial image) - when body.wt-view, .main-content is full width so this spans edge to edge */
.window-treatments-section .wt-heritage-bg.wt-hero-full {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 120px;
    background-image: url('https://res.cloudinary.com/duoqn1csd/image/upload/v1765256649/PP27-148_uydehj.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
}
.window-treatments-section .wt-heritage-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250, 248, 243, 0.3);
    z-index: 0;
}
.window-treatments-section .wt-heritage-bg .mission-content {
    position: relative;
    z-index: 1;
    width: 1000px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}
.window-treatments-section .mission-section:not(.wt-heritage-bg) {
    background: #fafafa;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.window-treatments-section .mission-content {
    width: 1000px;
    max-width: 100%;
    text-align: center;
}
.window-treatments-section .mission-text {
    font-family: 'Geist Mono', monospace;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #141414;
    font-weight: 300;
    letter-spacing: -0.02em;
}
.window-treatments-section .mission-text strong { font-weight: 600; }
.window-treatments-section .mission-text em { font-style: italic; }
.window-treatments-section .mission-text .regular { font-weight: 300; font-style: normal; }
.window-treatments-section .wt-signature {
    margin: 60px 0 0;
    text-align: center;
}
.window-treatments-section .wt-signature-name {
    font-family: 'Geist Mono', monospace;
    font-size: 0.95rem;
    color: #141414;
    font-weight: 500;
    margin-bottom: 5px;
}
.window-treatments-section .wt-signature-title {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #141414;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* Typography - match reference sizes */
.window-treatments-section .wt-heading {
    font-family: 'Geist Mono', monospace;
    font-size: 2rem;
    font-weight: 400;
    color: #141414;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.window-treatments-section .wt-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    font-weight: 400;
}
.window-treatments-section .wt-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #141414;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
}
.window-treatments-section .wt-body:last-of-type {
    margin-bottom: 35px;
}
.window-treatments-section .wt-cta-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #faf8f3;
    color: #141414;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid #141414;
    font-family: 'Geist Mono', monospace;
}
.window-treatments-section .wt-cta-btn:hover {
    background: #583c4a;
    color: #faf8f3;
    border-color: #583c4a;
}

/* Transform Your View - Carousel LEFT aligned, text right */
.window-treatments-section .wt-showcase {
    padding: 200px 0 80px;
    background: #fafafa;
}
.window-treatments-section .wt-showcase-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}
.window-treatments-section .wt-showcase-left {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.window-treatments-section .wt-showcase-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    overflow: hidden;
}
.window-treatments-section .wt-showcase-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.window-treatments-section .wt-showcase-slide.active {
    opacity: 1;
}
.window-treatments-section .wt-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}
@media (min-width: 1024px) {
    .window-treatments-section .wt-showcase-carousel {
        height: 600px;
        min-height: 600px;
    }
}
.window-treatments-section .wt-showcase-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}
.window-treatments-section .wt-showcase-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}
.window-treatments-section .wt-showcase-text {
    max-width: 600px;
    text-align: center;
}
.window-treatments-section .wt-dot-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
}
.window-treatments-section .wt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #583c4a;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.window-treatments-section .wt-dot-wrapper.active .wt-dot {
    opacity: 1;
    transform: scale(1.2);
}

/* Section heads */
.window-treatments-section .wt-section-head {
    text-align: center;
    margin-bottom: 60px;
}
.window-treatments-section .wt-section-title {
    font-family: 'Geist Mono', monospace;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #141414;
    margin: 0;
}
.window-treatments-section .wt-section-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 16px;
    font-weight: 400;
}

/* WT Category grid - longer tiles */
.window-treatments-section .wt-section.wt-products {
    padding: 120px 50px 80px;
}
.window-treatments-section .wt-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.window-treatments-section .wt-category-card {
    border: 1.5px solid #141414;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    background: #faf8f3;
}
.window-treatments-section .wt-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.window-treatments-section .wt-category-image-wrapper {
    position: relative;
    line-height: 0;
}
.window-treatments-section .wt-category-title-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #c5cfd0;
    color: #141414;
    padding: 10px 24px 12px;
    z-index: 4;
    border-left: 1.5px solid #141414;
    border-right: 1.5px solid #141414;
    border-bottom: 1.5px solid #141414;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.window-treatments-section .wt-category-title-tag h3 {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #141414;
    margin: 0;
    white-space: nowrap;
}
.window-treatments-section .wt-btn-customize {
    width: 100%;
    padding: 12px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-top: 1.5px solid #141414;
    background: transparent;
    color: #141414;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.window-treatments-section .wt-btn-customize:hover {
    background: #c5cfd0;
    color: #141414;
}
.window-treatments-section .wt-category-info {
    padding: 30px 25px;
    background: #faf8f3;
    border-top: 1.5px solid #141414;
}
.window-treatments-section .wt-category-description {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
    color: #141414;
}
.window-treatments-section .wt-category-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .window-treatments-section .wt-category-image {
        height: 550px;
    }
}
@media (max-width: 767px) {
    .window-treatments-section .wt-showcase-container {
        flex-direction: column !important;
    }
    .window-treatments-section .wt-showcase-left {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .window-treatments-section .wt-showcase-dots {
        left: 50%;
        transform: translateX(-50%);
    }
    .window-treatments-section .wt-category-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .window-treatments-section .wt-category-image {
        height: 380px;
    }
}

/* Our Curated Fabric Library — stacked: wheels on top, text below */
.window-treatments-section .wt-fabric-library {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 120px 50px 80px;
    background: #fafafa;
}
.window-treatments-section .wt-fabric-wheels-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 95px;
    flex-wrap: wrap;
}
.window-treatments-section .wt-fabric-wheel-item {
    text-align: center;
}
.window-treatments-section .wt-fabric-wheel {
    width: 207px;
    height: 207px;
    border-radius: 50%;
    border: 1px solid #141414;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
}
.window-treatments-section .wt-fabric-wheel.wt-wheel-img {
    background: #f0ebe3;
}
.window-treatments-section .wt-wheel-seg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.window-treatments-section .wt-wheel-dividers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.window-treatments-section .wt-wheel-dividers span {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #141414;
    transform: translateX(-50%);
    transform-origin: center center;
}
.window-treatments-section .wt-wheel-dividers span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.window-treatments-section .wt-wheel-dividers span:nth-child(2) { transform: translateX(-50%) rotate(90deg); }
.window-treatments-section .wt-wheel-dividers span:nth-child(3) { transform: translateX(-50%) rotate(180deg); }
.window-treatments-section .wt-wheel-dividers span:nth-child(4) { transform: translateX(-50%) rotate(270deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(2) { transform: translateX(-50%) rotate(60deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(3) { transform: translateX(-50%) rotate(120deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(4) { transform: translateX(-50%) rotate(180deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(5) { transform: translateX(-50%) rotate(240deg); }
.window-treatments-section .wt-wheel-dividers-6 span:nth-child(6) { transform: translateX(-50%) rotate(300deg); }
.window-treatments-section .wt-fabric-wheel-label {
    font-family: 'Geist Mono', monospace;
    font-size: 0.85rem;
    color: #141414;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.3;
}
.window-treatments-section .wt-fabric-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.window-treatments-section .wt-fabric-text .wt-heading {
    margin-bottom: 24px;
}
.window-treatments-section .wt-fabric-text .wt-subtitle {
    margin-bottom: 25px;
}
.window-treatments-section .wt-fabric-text .wt-body {
    margin-bottom: 25px;
}
.window-treatments-section .wt-fabric-text .wt-body:last-of-type {
    margin-bottom: 35px;
}

/* Finishing Hardware */
.window-treatments-section .wt-finishing-hardware {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 80px 0;
    background: #fafafa;
}
.window-treatments-section .wt-hardware-left {
    flex: 1;
    position: relative;
}
.window-treatments-section .wt-hardware-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
@media (min-width: 1024px) {
    .window-treatments-section .wt-hardware-left img {
        min-height: 600px;
    }
}
.window-treatments-section .wt-hardware-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}
.window-treatments-section .wt-hardware-right .wt-showcase-text {
    max-width: 600px;
    text-align: center;
}

/* Our Process */
.window-treatments-section .wt-process {
    padding: 120px 50px 80px;
    background: #fff;
}
.window-treatments-section .wt-process-header {
    text-align: center;
    margin-bottom: 80px;
}
.window-treatments-section .wt-process-title {
    font-family: 'Geist Mono', monospace;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #141414;
    margin-bottom: 16px;
}
.window-treatments-section .wt-process-subtitle {
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: #583c4a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    margin-top: 16px;
}
.window-treatments-section .wt-process-list {
    max-width: 750px;
    margin: 0 auto;
}
.window-treatments-section .wt-process-item {
    display: flex;
    gap: 12px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
    align-items: baseline;
}
.window-treatments-section .wt-process-item:last-child {
    border-bottom: none;
}
.window-treatments-section .wt-process-number {
    font-family: 'Geist Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    color: #141414;
    line-height: 1.4;
    flex-shrink: 0;
}
.window-treatments-section .wt-process-number::after {
    content: ' : ';
}
.window-treatments-section .wt-process-content {
    flex: 1;
}
.window-treatments-section .wt-process-label {
    font-family: 'Geist Mono', monospace;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #141414;
    margin-bottom: 12px;
    line-height: 1.4;
}
.window-treatments-section .wt-process-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #583c4a;
}

/* We Work With */
.window-treatments-section .wt-partners {
    padding: 60px 50px;
    background: #fafafa;
    text-align: center;
}
.window-treatments-section .wt-partners-title {
    font-family: 'Geist Mono', monospace;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #141414;
    margin-bottom: 60px;
}
.window-treatments-section .wt-partners-grid,
.window-treatments-section .wt-partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.window-treatments-section .wt-partner-item {
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    color: #141414;
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.window-treatments-section .wt-partner-placeholder {
    font-size: 0.7rem;
    color: #666;
}
.window-treatments-section .wt-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 80px;
}
.window-treatments-section .wt-partner-logo img {
    max-height: 105px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .window-treatments-section .wt-fabric-library {
        padding: 60px 24px;
    }
    .window-treatments-section .wt-fabric-wheels-row {
        gap: 32px;
        margin-bottom: 60px;
    }
    .window-treatments-section .wt-fabric-wheel {
        width: 160px;
        height: 160px;
    }
    .window-treatments-section .wt-finishing-hardware {
        flex-direction: column;
    }
    .window-treatments-section .wt-hardware-left img {
        min-height: 400px;
    }
    .window-treatments-section .wt-partners-grid,
    .window-treatments-section .wt-partners-logos {
        flex-direction: column;
        gap: 32px;
    }
}

/* WT Contact modal */
.wt-contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 207, 208, 0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.wt-contact-modal.active {
    display: flex;
}
.wt-contact-modal .wt-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: #faf8f3;
    padding: 40px;
    border: 1.5px solid #141414;
    z-index: 10001;
    text-align: center;
}
.wt-contact-modal .wt-modal-close {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #141414;
    background: transparent;
    color: #141414;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}
.wt-contact-modal .wt-modal-close:hover {
    background: #c5cfd0;
    transform: rotate(90deg);
}
.wt-contact-modal .wt-modal-header {
    font-family: 'Geist Mono', monospace;
    font-size: 1.8rem;
    font-weight: 500;
    color: #141414;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wt-contact-modal .wt-modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #141414;
    margin-bottom: 30px;
}
.wt-contact-modal .wt-radio-group {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: center;
}
.wt-contact-modal .wt-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 20px;
    justify-content: center;
}
.wt-contact-modal .wt-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    color: #141414;
    cursor: pointer;
}
.wt-contact-modal .wt-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #583c4a;
}
.wt-contact-modal .wt-modal-error {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #c0392b;
    margin-bottom: 12px;
    min-height: 20px;
    display: none;
}
.wt-contact-modal .wt-modal-error.visible {
    display: block;
}
.wt-contact-modal .wt-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.9rem;
    color: #141414;
    cursor: pointer;
}
.wt-contact-modal .wt-input-field {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1.5px solid #141414;
    background: #fff;
    color: #141414;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.wt-contact-modal .wt-input-field:focus {
    outline: none;
    border-color: #583c4a;
}
.wt-contact-modal .wt-modal-submit {
    width: 100%;
    padding: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: #141414;
    color: #faf8f3;
    border: 1.5px solid #141414;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wt-contact-modal .wt-modal-submit:hover {
    background: #583c4a;
    border-color: #583c4a;
}
.wt-contact-modal .wt-modal-success {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #141414;
    padding: 60px 40px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%);
    border-radius: 50%;
    filter: blur(2px);
}

.color-swatch:hover,
.color-swatch.selected {
    border-color: #141414;
}