/* Fonts: self-hosted via fs-fonts.css (loaded globally in header.twig). */

/* ===== Furniture Story — global chrome (header / announce / nav / footer) =====
   Same mockup stylesheet, scoped under .fs-chrome and loaded on EVERY page
   (via header.twig). The ported header/footer markup is wrapped in .fs-chrome;
   non-chrome rules under .fs-chrome simply match nothing (harmless).
   Generated by _gen_home.php. */

:root{
            --bg: #FAF8F4;
            --bg-alt: #F2EDE5;
            --bg-warm: #E8DFD2;
            --ink: #1A1A1A;
            --ink-soft: #4A4744;
            --muted: #8B857E;
            --line: #E5DFD5;
            --accent: #5C5347;
            --sage: #8A9A7B;
            --terracotta: #B66B4A;
            --white: #FFFFFF;
            --serif: 'Cormorant Garamond', Georgia, serif;
            --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --radius: 4px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 12px 32px rgba(26, 26, 26, 0.08);
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
.fs-chrome *{ margin: 0; padding: 0; box-sizing: border-box; }
.fs-chrome{ scroll-behavior: smooth; }
.fs-chrome{
            font-family: var(--sans);
            font-size: 15px;
            line-height: 1.6;
            color: var(--ink);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }
.fs-chrome img{ max-width: 100%; display: block; }
.fs-chrome a{ color: inherit; text-decoration: none; transition: opacity var(--transition); }
.fs-chrome a:hover{ opacity: 0.7; }
.fs-chrome button{ font-family: inherit; cursor: pointer; border: none; background: none; }
.fs-chrome .container{
            max-width: 100%;
            margin: 0 auto;
            padding: 0 48px;
        }
.fs-chrome .announce{
            background: var(--ink);
            color: var(--bg);
            font-size: 13px;
            letter-spacing: 0.02em;
        }
.fs-chrome .announce-row{
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
            min-height: 48px;
            padding: 6px 32px;
        }
.fs-chrome .announce-text{ text-align: center; }
.fs-chrome .announce strong{ font-weight: 600; }
.fs-chrome .announce-text a{ text-decoration: underline; text-underline-offset: 3px; margin-left: 8px; }
.fs-chrome .announce-social{
            display: flex;
            gap: 10px;
            align-items: center;
        }
.fs-chrome .announce-social a{
            width: 28px; height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(250, 248, 244, 0.25);
            color: var(--bg);
            transition: all var(--transition);
        }
.fs-chrome .announce-social a:hover{
            background: var(--bg);
            color: var(--ink);
            border-color: var(--bg);
            opacity: 1;
        }
.fs-chrome .announce-social svg{ width: 13px; height: 13px; }
.fs-chrome .announce-actions{ justify-self: end; display: flex; align-items: center; gap: 12px; }
.fs-chrome .callback-btn{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--bg);
            border: 1px solid rgba(250, 248, 244, 0.4);
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.03em;
            transition: all var(--transition);
        }
.fs-chrome .callback-btn:hover{
            background: var(--bg);
            color: var(--ink);
            border-color: var(--bg);
            opacity: 1;
        }
.fs-chrome .callback-btn svg{ width: 13px; height: 13px; }
.fs-chrome header{
            background: var(--bg);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--line);
        }
.fs-chrome .header-top{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            align-items: center;
            gap: 32px;
            padding: 20px 0;
        }
.fs-chrome .header-search{
            justify-self: center;
            position: relative;
            width: 100%;
            max-width: 420px;
        }
.fs-chrome .header-search input{
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--line);
            padding: 10px 0 10px 28px;
            font-family: inherit;
            font-size: 14px;
            color: var(--ink);
            letter-spacing: 0.01em;
            transition: border-color var(--transition);
        }
.fs-chrome .header-search input::placeholder{
            color: var(--muted);
            font-weight: 300;
        }
.fs-chrome .header-search input:focus{
            outline: none;
            border-bottom-color: var(--ink);
        }
.fs-chrome .header-search svg{
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            color: var(--muted);
            pointer-events: none;
            transition: color var(--transition);
        }
.fs-chrome .header-search input:focus + svg, .fs-chrome .header-search:focus-within svg{ color: var(--ink); }
.fs-chrome .logo{
            display: inline-block;
            line-height: 0;
        }
.fs-chrome .logo img{
            height: 76px;
            width: auto;
            display: block;
        }
.fs-chrome .footer-brand .logo img{
            filter: invert(1);
            height: 88px;
        }
.fs-chrome .header-actions{
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 14px;
            justify-self: end;
        }
.fs-chrome .header-actions .icon-btn{
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--ink);
        }
.fs-chrome .header-actions svg{ width: 20px; height: 20px; stroke-width: 1.5; }
.fs-chrome .cart-count{
            background: var(--ink);
            color: var(--bg);
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
.fs-chrome nav.main-nav{
            border-top: 1px solid var(--line);
            position: relative;
        }
.fs-chrome nav > ul{
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 18px 0;
        }
.fs-chrome nav > ul > li{ position: static; }
.fs-chrome nav a{
            font-size: 14px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
.fs-chrome nav > ul > li > a::after{
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: var(--ink);
            transition: width var(--transition);
        }
.fs-chrome nav > ul > li:hover > a::after, .fs-chrome nav > ul > li:focus-within > a::after{ width: 100%; }
.fs-chrome nav > ul > li > a:hover{ opacity: 1; }
.fs-chrome .nav-sale{ color: var(--terracotta); }
.fs-chrome .nav-outlet{ color: #C27676; }
.fs-chrome .has-mega > a .chev{
            width: 10px; height: 10px;
            transition: transform var(--transition);
        }
.fs-chrome .has-mega:hover > a .chev, .fs-chrome .has-mega:focus-within > a .chev{ transform: rotate(180deg); }
.fs-chrome .mega-menu{
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--bg);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
            z-index: 99;
        }
.fs-chrome .has-mega:hover .mega-menu, .fs-chrome .has-mega:focus-within .mega-menu{
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity var(--transition), transform var(--transition), visibility 0s;
        }
.fs-chrome .mega-grid{
            display: grid;
            grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
            gap: 56px;
            padding: 48px 0 56px;
            align-items: start;
        }
.fs-chrome .mega-col h4{
            font-family: var(--sans);
            font-size: 12px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 600;
            margin-bottom: 18px;
            margin-top: 28px;
        }
.fs-chrome .mega-col h4:first-child{ margin-top: 0; }
.fs-chrome .mega-col ul{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
.fs-chrome .mega-col ul a{
            font-family: var(--serif);
            text-transform: none;
            letter-spacing: 0;
            font-size: 17px;
            font-weight: 500;
            color: var(--ink);
            transition: color var(--transition), padding-left var(--transition);
        }
.fs-chrome .mega-col ul a::after{ display: none; }
.fs-chrome .mega-col ul a:hover{
            color: var(--accent);
            padding-left: 6px;
            opacity: 1;
        }
.fs-chrome .mega-feature{
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4 / 3;
            background: var(--bg-warm);
        }
.fs-chrome .mega-feature img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--transition);
        }
.fs-chrome .mega-feature:hover img{ transform: scale(1.05); }
.fs-chrome .mega-feature::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
        }
.fs-chrome .mega-feature-overlay{
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            color: var(--white);
            z-index: 2;
        }
.fs-chrome .mega-feature-overlay small{
            display: block;
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            opacity: 0.85;
            margin-bottom: 6px;
        }
.fs-chrome .mega-feature-overlay strong{
            display: block;
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 8px;
        }
.fs-chrome .mega-feature-overlay span{
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
.fs-chrome .mega-feature-overlay span::after{
            content: '→';
            transition: transform var(--transition);
        }
.fs-chrome .mega-feature:hover .mega-feature-overlay span::after{ transform: translateX(4px); }
.fs-chrome .hero{
            position: relative;
            width: 100%;
            padding: 0;
            margin: 0;
            overflow: hidden;
            font-size: 0;
            line-height: 0;
        }
.fs-chrome .hero img{
            display: block;
            width: 100%;
            height: auto;
            vertical-align: bottom;
        }
.fs-chrome .hero::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 60%);
        }
.fs-chrome .hero-content{
            position: absolute;
            inset: 0;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }
.fs-chrome .hero-eyebrow{
            font-size: 13px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0.9;
        }
.fs-chrome .hero h1{
            font-family: var(--serif);
            font-size: clamp(48px, 6vw, 88px);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -0.02em;
            max-width: 720px;
            margin-bottom: 24px;
        }
.fs-chrome .hero h1 em{ font-style: italic; font-weight: 400; }
.fs-chrome .hero p{
            font-size: 17px;
            max-width: 480px;
            margin-bottom: 36px;
            opacity: 0.95;
            line-height: 1.5;
        }
.fs-chrome .hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }
.fs-chrome .btn{
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            transition: all var(--transition);
            border-radius: var(--radius);
            cursor: pointer;
        }
.fs-chrome .btn-primary{
            background: var(--ink);
            color: var(--bg);
        }
.fs-chrome .btn-primary:hover{
            background: var(--accent);
            opacity: 1;
            transform: translateY(-2px);
        }
.fs-chrome .btn-outline{
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.6);
        }
.fs-chrome .btn-outline:hover{
            background: var(--white);
            color: var(--ink);
            opacity: 1;
        }
.fs-chrome .btn-light{
            background: var(--bg);
            color: var(--ink);
            border: 1px solid var(--ink);
        }
.fs-chrome .btn-light:hover{ background: var(--ink); color: var(--bg); opacity: 1; }
.fs-chrome .usp-strip{
            background: var(--white);
            border-bottom: 1px solid var(--line);
        }
.fs-chrome .usp-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 32px 0;
            gap: 16px;
        }
.fs-chrome .usp-item{
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 0 16px;
            border-right: 1px solid var(--line);
        }
.fs-chrome .usp-item:last-child{ border-right: none; }
.fs-chrome .usp-icon{
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            color: var(--accent);
        }
.fs-chrome .usp-text strong{
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
.fs-chrome .usp-text span{
            font-size: 13px;
            color: var(--muted);
            line-height: 1.4;
        }
.fs-chrome section{ padding: 100px 0; }
.fs-chrome .section-head{
            text-align: center;
            margin-bottom: 56px;
        }
.fs-chrome .section-head .eyebrow{
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 16px;
        }
.fs-chrome .section-head h2{
            font-family: var(--serif);
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.01em;
            margin-bottom: 16px;
        }
.fs-chrome .section-head h2 em{ font-style: italic; font-weight: 400; }
.fs-chrome .section-head p{
            color: var(--ink-soft);
            max-width: 560px;
            margin: 0 auto;
            font-size: 16px;
        }
.fs-chrome .categories-section{ background: var(--bg); padding-top: 100px; }
.fs-chrome .categories{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
.fs-chrome .cat-card{
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            background: var(--bg-warm);
            cursor: pointer;
            aspect-ratio: 1 / 1;
        }
.fs-chrome .cat-card img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
.fs-chrome .cat-card:hover img{ transform: scale(1.05); }
.fs-chrome .cat-card::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.6) 100%);
        }
.fs-chrome .cat-overlay{
            position: absolute;
            bottom: 32px;
            left: 32px;
            right: 32px;
            color: var(--white);
            z-index: 2;
        }
.fs-chrome .cat-overlay h3{
            font-family: var(--serif);
            font-size: 36px;
            font-weight: 500;
            line-height: 1;
            margin-bottom: 10px;
        }
.fs-chrome .cat-overlay span{
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
.fs-chrome .cat-overlay span::after{
            content: '→';
            transition: transform var(--transition);
        }
.fs-chrome .cat-card:hover .cat-overlay span::after{ transform: translateX(6px); }
.fs-chrome .bestsellers{ background: var(--bg); }
.fs-chrome .product-tabs{
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 48px;
            border-bottom: 1px solid var(--line);
        }
.fs-chrome .tab{
            padding: 12px 0;
            font-size: 14px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--muted);
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            font-weight: 500;
            transition: all var(--transition);
        }
.fs-chrome .tab.active, .fs-chrome .tab:hover{
            color: var(--ink);
            border-color: var(--ink);
        }
.fs-chrome .products{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            row-gap: 56px;
        }
.fs-chrome .product{
            cursor: pointer;
            position: relative;
        }
.fs-chrome .product-img{
            position: relative;
            aspect-ratio: 4 / 3;
            background: var(--bg-warm);
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 18px;
            transition: box-shadow var(--transition);
        }
.fs-chrome .product:hover .product-img{
            box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
        }
.fs-chrome .product-img img{
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4%;
            box-sizing: border-box;
            transition: transform 0.6s var(--transition);
        }
.fs-chrome .product:hover .product-img img{ transform: scale(1.03); }
.fs-chrome .product-tag{
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--white);
            padding: 6px 12px;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            border-radius: var(--radius);
        }
.fs-chrome .product-tag.sale{ background: var(--terracotta); color: var(--white); }
.fs-chrome .product-tag.new{ background: var(--sage); color: var(--white); }
.fs-chrome .product-fav{
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition);
        }
.fs-chrome .product:hover .product-fav{ opacity: 1; }
.fs-chrome .product-fav svg{ width: 16px; height: 16px; }
.fs-chrome .product-cat{
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 6px;
        }
.fs-chrome .product-name{
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 6px;
            line-height: 1.2;
        }
.fs-chrome .product-swatches{
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }
.fs-chrome .swatch{
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 1px solid var(--line);
        }
.fs-chrome .product-price{
            display: flex;
            align-items: baseline;
            gap: 10px;
            font-weight: 600;
            font-size: 16px;
        }
.fs-chrome .price-old{
            color: var(--muted);
            text-decoration: line-through;
            font-weight: 400;
            font-size: 14px;
        }
.fs-chrome .price-sale{ color: var(--terracotta); }
.fs-chrome .section-cta{
            text-align: center;
            margin-top: 56px;
        }
.fs-chrome .story{
            background: var(--bg);
            padding: 120px 0;
        }
.fs-chrome .story-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
.fs-chrome .story-img{
            aspect-ratio: 4 / 5;
            border-radius: var(--radius);
            overflow: hidden;
        }
.fs-chrome .story-img img{ width: 100%; height: 100%; object-fit: cover; }
.fs-chrome .story-text .eyebrow{
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 16px;
        }
.fs-chrome .story-text h2{
            font-family: var(--serif);
            font-size: clamp(36px, 3.5vw, 52px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.01em;
            margin-bottom: 24px;
        }
.fs-chrome .story-text h2 em{ font-style: italic; font-weight: 400; }
.fs-chrome .story-text p{
            font-size: 16px;
            color: var(--ink-soft);
            margin-bottom: 20px;
            line-height: 1.7;
        }
.fs-chrome .story-stats{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 32px 0;
            padding: 32px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
.fs-chrome .stat-num{
            font-family: var(--serif);
            font-size: 40px;
            font-weight: 500;
            line-height: 1;
            margin-bottom: 6px;
        }
.fs-chrome .stat-label{
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }
.fs-chrome .pillars{ background: var(--ink); color: var(--bg); padding: 100px 0; }
.fs-chrome .pillars .section-head h2{ color: var(--bg); }
.fs-chrome .pillars .section-head p{ color: rgba(250, 248, 244, 0.7); }
.fs-chrome .pillars .section-head .eyebrow{ color: rgba(250, 248, 244, 0.6); }
.fs-chrome .pillar-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
        }
.fs-chrome .pillar{
            text-align: center;
        }
.fs-chrome .pillar-icon{
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            color: var(--bg-warm);
        }
.fs-chrome .pillar h3{
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 12px;
        }
.fs-chrome .pillar p{
            font-size: 14px;
            color: rgba(250, 248, 244, 0.7);
            line-height: 1.6;
        }
.fs-chrome .fabric-banner{
            background: var(--bg-warm);
            position: relative;
            overflow: hidden;
            padding: 0;
        }
.fs-chrome .fabric-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 480px;
        }
.fs-chrome .fabric-img{
            background-size: cover;
            background-position: center;
        }
.fs-chrome .fabric-content{
            padding: 80px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
.fs-chrome .fabric-content .eyebrow{
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }
.fs-chrome .fabric-content h2{
            font-family: var(--serif);
            font-size: clamp(36px, 3.5vw, 52px);
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 20px;
        }
.fs-chrome .fabric-content h2 em{ font-style: italic; font-weight: 400; }
.fs-chrome .fabric-content p{
            font-size: 16px;
            color: var(--ink-soft);
            margin-bottom: 28px;
            max-width: 440px;
        }
.fs-chrome .reviews{ background: var(--bg); }
.fs-chrome .review-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
.fs-chrome .review{
            background: var(--white);
            padding: 36px;
            border-radius: var(--radius);
            border: 1px solid var(--line);
        }
.fs-chrome .stars{
            color: var(--terracotta);
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
.fs-chrome .review p{
            font-family: var(--serif);
            font-size: 20px;
            line-height: 1.4;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--ink);
        }
.fs-chrome .review-author{
            font-size: 14px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 12px;
        }
.fs-chrome .review-author strong{ color: var(--ink); font-weight: 600; }
.fs-chrome .trustpilot-bar{
            text-align: center;
            margin-top: 48px;
            font-size: 14px;
            color: var(--muted);
        }
.fs-chrome .trustpilot-bar strong{ color: var(--ink); }
.fs-chrome .inspiration{ background: var(--bg-alt); }
.fs-chrome .insta-grid{
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }
.fs-chrome .insta-item{
            aspect-ratio: 1;
            overflow: hidden;
            border-radius: var(--radius);
            position: relative;
            cursor: pointer;
        }
.fs-chrome .insta-item img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--transition);
        }
.fs-chrome .insta-item:hover img{ transform: scale(1.08); }
.fs-chrome .insta-item::after{
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0);
            transition: background var(--transition);
        }
.fs-chrome .insta-item:hover::after{ background: rgba(0,0,0,0.2); }
.fs-chrome .journal{
            background: var(--bg);
            padding: 100px 0;
        }
.fs-chrome .journal-head{
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 56px;
            flex-wrap: wrap;
            gap: 24px;
        }
.fs-chrome .journal-head .eyebrow{
            font-size: 12px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 14px;
        }
.fs-chrome .journal-head h2{
            font-family: var(--serif);
            font-size: clamp(32px, 3vw, 44px);
            font-weight: 500;
            line-height: 1.1;
            letter-spacing: -0.01em;
        }
.fs-chrome .journal-head h2 em{ font-style: italic; font-weight: 400; }
.fs-chrome .journal-all{
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
            border-bottom: 1px solid var(--ink);
            padding-bottom: 4px;
            transition: padding-right var(--transition);
        }
.fs-chrome .journal-all:hover{ padding-right: 8px; opacity: 1; }
.fs-chrome .journal-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
.fs-chrome .post{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
.fs-chrome .post-img{
            display: block;
            aspect-ratio: 4 / 3;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--bg-warm);
        }
.fs-chrome .post-img img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s var(--transition);
        }
.fs-chrome .post:hover .post-img img{ transform: scale(1.04); }
.fs-chrome .post-meta{
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }
.fs-chrome .post-cat{ color: var(--accent); font-weight: 600; }
.fs-chrome .post-meta span + span::before{
            content: '·';
            margin-right: 12px;
            color: var(--line);
        }
.fs-chrome .post h3{
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 500;
            line-height: 1.25;
            letter-spacing: -0.005em;
        }
.fs-chrome .post h3 a{ color: var(--ink); transition: color var(--transition); }
.fs-chrome .post h3 a:hover{ color: var(--accent); opacity: 1; }
.fs-chrome .post p{
            color: var(--ink-soft);
            font-size: 14px;
            line-height: 1.6;
        }
.fs-chrome .post-link{
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--ink);
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
.fs-chrome .post-link::after{
            content: '→';
            transition: transform var(--transition);
        }
.fs-chrome .post-link:hover{ opacity: 1; }
.fs-chrome .post-link:hover::after{ transform: translateX(4px); }
.fs-chrome .newsletter{
            background: var(--bg-warm);
            padding: 80px 0;
            text-align: center;
        }
.fs-chrome .newsletter h2{
            font-family: var(--serif);
            font-size: clamp(32px, 3vw, 44px);
            font-weight: 500;
            margin-bottom: 12px;
            line-height: 1.1;
        }
.fs-chrome .newsletter h2 em{ font-style: italic; }
.fs-chrome .newsletter p{
            color: var(--ink-soft);
            margin-bottom: 32px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }
.fs-chrome .newsletter-form{
            display: flex;
            max-width: 480px;
            margin: 0 auto;
            gap: 8px;
        }
.fs-chrome .newsletter-form input{
            flex: 1;
            padding: 16px 20px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--white);
            font-family: inherit;
            font-size: 14px;
        }
.fs-chrome .newsletter-form input:focus{ outline: 1px solid var(--ink); }
.fs-chrome .newsletter small{
            display: block;
            margin-top: 16px;
            font-size: 12px;
            color: var(--muted);
        }
.fs-chrome footer{
            background: var(--ink);
            color: var(--bg);
            padding: 80px 0 32px;
        }
.fs-chrome .footer-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }
.fs-chrome .footer-brand .logo{ color: var(--bg); margin-bottom: 16px; display: block; }
.fs-chrome .footer-brand p{
            color: rgba(250, 248, 244, 0.6);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 320px;
        }
.fs-chrome .footer-contact div{
            font-size: 14px;
            color: rgba(250, 248, 244, 0.7);
            margin-bottom: 6px;
        }
.fs-chrome .footer-contact strong{ color: var(--bg); }
.fs-chrome .footer-col h4{
            font-size: 13px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 600;
        }
.fs-chrome .footer-col ul{
            list-style: none;
        }
.fs-chrome .footer-col ul li{
            margin-bottom: 12px;
        }
.fs-chrome .footer-col ul a{
            color: rgba(250, 248, 244, 0.7);
            font-size: 14px;
        }
.fs-chrome .footer-col ul a:hover{ color: var(--bg); opacity: 1; }
.fs-chrome .footer-bottom{
            padding-top: 32px;
            border-top: 1px solid rgba(250, 248, 244, 0.15);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: rgba(250, 248, 244, 0.5);
        }
.fs-chrome .footer-social{ display: flex; gap: 16px; }
.fs-chrome .footer-social a{
            width: 36px;
            height: 36px;
            border: 1px solid rgba(250, 248, 244, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }
.fs-chrome .footer-social a:hover{
            background: var(--bg);
            color: var(--ink);
            border-color: var(--bg);
            opacity: 1;
        }
.fs-chrome .footer-social svg{ width: 16px; height: 16px; }
.fs-chrome .payments{
            display: flex;
            gap: 12px;
            align-items: center;
        }
.fs-chrome .pay-badge{
            background: rgba(250, 248, 244, 0.1);
            color: var(--bg);
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }
@media (max-width: 1024px){
.fs-chrome .header-top{ grid-template-columns: 1fr 1fr; gap: 16px; }
.fs-chrome .header-search{ grid-column: 1 / -1; order: 3; max-width: 100%; justify-self: stretch; }
.fs-chrome .header-actions{ justify-self: end; }
.fs-chrome .usp-grid, .fs-chrome .pillar-grid{ grid-template-columns: repeat(2, 1fr); }
.fs-chrome .usp-item:nth-child(2){ border-right: none; }
.fs-chrome .products{ grid-template-columns: repeat(2, 1fr); }
.fs-chrome .insta-grid{ grid-template-columns: repeat(3, 1fr); }
.fs-chrome .footer-grid{ grid-template-columns: repeat(2, 1fr); }
.fs-chrome .story-grid, .fs-chrome .fabric-grid{ grid-template-columns: 1fr; gap: 40px; }
.fs-chrome .review-grid{ grid-template-columns: 1fr; }
.fs-chrome .journal-grid{ grid-template-columns: 1fr; gap: 48px; }
.fs-chrome .categories{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fs-chrome .cat-overlay h3{ font-size: 28px; }
.fs-chrome nav > ul{ gap: 24px; flex-wrap: wrap; }
.fs-chrome .mega-grid{ grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px 0 40px; }
.fs-chrome .mega-feature{ grid-column: 1 / -1; aspect-ratio: 21 / 9; }
}
@media (max-width: 640px){
.fs-chrome .mega-menu{ display: none; }
.fs-chrome .announce-row{ grid-template-columns: 1fr auto; padding: 8px 16px; gap: 12px; }
.fs-chrome .announce-social{ display: none; }
.fs-chrome .announce-text{ text-align: left; font-size: 12px; }
.fs-chrome .announce-text a{ display: none; }
.fs-chrome .callback-btn{ padding: 6px 14px; font-size: 11px; }
.fs-chrome .container{ padding: 0 20px; }
.fs-chrome section{ padding: 64px 0; }
.fs-chrome .usp-grid, .fs-chrome .products, .fs-chrome .pillar-grid, .fs-chrome .footer-grid, .fs-chrome .categories{ grid-template-columns: 1fr; }
.fs-chrome .usp-item{ border-right: none; border-bottom: 1px solid var(--line); padding: 16px 0; }
.fs-chrome .usp-item:last-child{ border-bottom: none; }
.fs-chrome .insta-grid{ grid-template-columns: repeat(2, 1fr); }
.fs-chrome .header-actions .icon-btn span{ display: none; }
.fs-chrome nav ul{ gap: 16px; font-size: 12px; }
.fs-chrome .fabric-content{ padding: 48px 24px; }
}

/* --- neutralize OpenCart base element styles leaking into scoped content --- */
.fs-chrome { color: var(--ink); }
.fs-chrome h1,.fs-chrome h2,.fs-chrome h3,.fs-chrome h4,.fs-chrome h5,.fs-chrome h6,.fs-chrome p,.fs-chrome a,.fs-chrome span,.fs-chrome li,.fs-chrome ul,.fs-chrome strong,.fs-chrome em,.fs-chrome small,.fs-chrome button,.fs-chrome input,.fs-chrome label { color: inherit; }
.fs-chrome .container { width: auto; }
.fs-chrome a:focus:not(:focus-visible), .fs-chrome button:focus:not(:focus-visible) { outline: none; }

/* --- mega-menu hover bridge --- */
/* The dropdown sits at top:100% of the nav, but the <ul> has 18px bottom padding,
   leaving a gap that belongs to the <ul> (not the <li>). Moving the cursor down to
   click dropped :hover and collapsed the menu. This invisible strip is part of
   .mega-menu (a child of .has-mega) so hovering it keeps .has-mega:hover alive.
   NOTE: do not set .has-mega{position:relative} — the mockup keeps li static on
   purpose so the dropdown spans the full nav width. */
.fs-chrome .mega-menu::before { content:''; position:absolute; left:0; right:0; top:-26px; height:26px; }

/* --- search autocomplete dropdown --- */
.fs-chrome .header-search { position: relative; }
.fs-chrome .fs-search-results { position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%); width:200%; max-width:92vw; background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-md); border-radius:var(--radius); z-index:300; max-height:72vh; overflow-y:auto; }
.fs-chrome .fs-sr-item { display:flex; align-items:center; gap:14px; padding:11px 16px; border-bottom:1px solid var(--line); color:var(--ink); }
.fs-chrome .fs-sr-item:last-child { border-bottom:none; }
.fs-chrome .fs-sr-item:hover { background:var(--bg-alt); opacity:1; }
.fs-chrome .fs-sr-item img { width:56px; height:42px; object-fit:contain; background:var(--bg-warm); border-radius:2px; flex:none; }
.fs-chrome .fs-sr-name { flex:1; font-size:14px; line-height:1.35; }
.fs-chrome .fs-sr-price { font-weight:600; font-size:14px; white-space:nowrap; }
.fs-chrome .fs-sr-empty { padding:16px; font-size:14px; color:var(--muted); text-align:center; }
.fs-chrome .fs-sr-all { display:block; text-align:center; padding:14px 16px; font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink); background:var(--bg-alt); border-top:1px solid var(--line); }
.fs-chrome .fs-sr-all:hover { background:var(--bg-warm); opacity:1; }

/* --- cart count badge — 1:1 with mockup .cart-count (dark filled circle, light number, inline beside the cart icon) --- */
.fs-chrome .fs-cart-count { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px; border-radius:100px; background:var(--ink); color:var(--bg); font-size:11px; font-weight:600; line-height:1; box-sizing:border-box; }
.fs-chrome .fs-cart-count[hidden] { display:none; }
.fs-chrome .fs-cart-count.pop { animation: fsCartPop 0.3s ease; }
@keyframes fsCartPop { 0% { transform: scale(0.6); } 55% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* === site-wide: no focus ring/glow on mouse click; kept for keyboard (a11y) === */
a:focus:not(:focus-visible), button:focus:not(:focus-visible), .btn:focus:not(:focus-visible), [tabindex]:focus:not(:focus-visible), .product:focus:not(:focus-visible), .product img:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible), textarea:focus:not(:focus-visible) { outline: none !important; box-shadow: none !important; }
.btn:focus, .btn:active, .btn:focus-visible, a.btn:focus, a.btn:active, a.btn:focus-visible { outline: none !important; box-shadow: none !important; }
.btn { box-shadow: none !important; }
.btn-primary { border-color: transparent !important; }
