


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --cream: #EDE8E0; --olive: #4A5C2A; --olive-light: #6B7F45; --olive-dark: #333D1C; --rose: #D4A5A0; --rose-light: #E8C8C4; --text: #2C2C2C; --text-muted: #7A7060; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; background: rgba(237,232,224,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,92,42,0.1); transition: padding 0.3s; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--olive); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { background: var(--olive); color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 2px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .cart-btn { background: none; border: 1.5px solid rgba(74,92,42,0.25); color: var(--olive-dark); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .cart-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
    .cart-count { background: var(--rose); color: white; font-size: 0.7rem; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    /* Cart */
    .cart-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--cream); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(74,92,42,0.1); }
    .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
    .cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
    .cart-empty p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(74,92,42,0.08); }
    .cart-item-img { width: 60px; height: 60px; border-radius: 3px; background: rgba(74,92,42,0.08); flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .cart-item-name { font-size: 0.875rem; font-weight: 500; margin: 0.2rem 0 0.25rem; }
    .cart-item-custom { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
    .cart-qty { display: flex; align-items: center; gap: 0.5rem; }
    .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(74,92,42,0.2); background: none; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .qty-btn:hover { background: var(--olive); color: white; border-color: var(--olive); }
    .qty-num { font-size: 0.875rem; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-item-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
    .cart-remove { background: none; border: none; font-size: 0.72rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; display: block; margin-top: 0.25rem; }
    .cart-footer { padding: 1.5rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .cart-subtotal .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
    .checkout-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-bottom: 0.75rem; transition: background 0.2s; }
    .checkout-btn:hover { background: var(--olive-dark); }
    .continue-shopping { width: 100%; background: none; border: none; color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
    /* Modal */
    .modal-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%); width: min(560px, 95vw); max-height: 85vh; background: var(--cream); z-index: 301; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
    .custom-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
    .modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(74,92,42,0.1); display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
    .modal-lead { font-size: 0.78rem; color: var(--olive); margin-top: 0.25rem; font-weight: 500; }
    .modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
    .modal-body { padding: 1.5rem 2rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
    .modal-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.5rem; }
    .modal-field select, .modal-field input[type=text] { width: 100%; border: 1px solid rgba(74,92,42,0.25); background: white; color: var(--text); padding: 0.6rem 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; border-radius: 2px; appearance: none; }
    .modal-field select:focus, .modal-field input:focus { outline: none; border-color: var(--olive); }
    .marble-toggle { display: flex; gap: 0.75rem; }
    .toggle-btn { flex: 1; padding: 0.6rem; border: 1px solid rgba(74,92,42,0.25); background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-align: center; }
    .toggle-btn.active { background: var(--olive); color: white; border-color: var(--olive); }
    .additions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addition-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(74,92,42,0.2); border-radius: 2px; cursor: pointer; font-size: 0.82rem; background: white; transition: all 0.2s; user-select: none; }
    .addition-chip input { accent-color: var(--olive); }
    .addition-chip:has(input:checked) { border-color: var(--olive); background: rgba(74,92,42,0.06); }
    .addition-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
    .modal-footer { padding: 1.25rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .modal-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
    .modal-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); }
    .modal-add-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .modal-add-btn:hover { background: var(--olive-dark); }
    /* Products */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { background: white; border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,92,42,0.1); }
    .product-card.sold-out { opacity: 0.75; }
    .product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(74,92,42,0.06); }
    .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-image img { transform: scale(1.04); }
    .product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--olive); color: white; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
    .wishlist-btn { position: absolute; top: 1rem; right: 1rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .wishlist-btn.liked { color: var(--rose); }
    .quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--olive-dark); color: var(--cream); text-align: center; padding: 0.75rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transform: translateY(100%); transition: transform 0.3s; }
    .product-card:hover .quick-add { transform: translateY(0); }
    .product-body { padding: 1.25rem; }
    .product-category { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); }
    .add-to-cart { background: var(--olive); color: white; border: none; padding: 0.5rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .add-to-cart:hover { background: var(--olive-dark); }
    .add-to-cart:disabled { background: #ccc; cursor: not-allowed; }
    /* Toolbar */
    .shop-toolbar { background: white; border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1rem 4rem; position: sticky; top: 72px; z-index: 90; }
    .toolbar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .shop-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .filter-chip { background: none; border: 1px solid rgba(74,92,42,0.25); color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
    .filter-chip:hover, .filter-chip.active { background: var(--olive); color: white; border-color: var(--olive); }
    .sort-select { border: 1px solid rgba(74,92,42,0.25); background: none; color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; cursor: pointer; border-radius: 2px; margin-left: auto; }
    .count-label { font-size: 0.78rem; color: var(--text-muted); }
    /* Hero */
    .hero { min-height: 50vh; background: var(--olive-dark); padding: 8rem 4rem 4rem; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,127,69,0.2) 0%, transparent 70%); }
    .hero-inner { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--rose); }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; color: rgba(237,232,224,0.7); max-width: 500px; line-height: 1.7; }
    /* Sections */
    .products-section { max-width: 1200px; margin: 0 auto; padding: 3rem 4rem 6rem; }
    .section-block { margin-bottom: 4rem; }
    .section-block-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(74,92,42,0.12); padding-bottom: 0.75rem; }
    .section-block-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--olive-dark); }
    .section-block-header p { font-size: 0.78rem; color: var(--text-muted); }
    /* Footer */
    footer { background: var(--olive-dark); color: var(--cream); padding: 4rem 4rem 2rem; }
    .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: rgba(237,232,224,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link { width: 36px; height: 36px; border: 1px solid rgba(237,232,224,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: all 0.2s; }
    .social-link:hover { border-color: var(--rose); color: var(--rose); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,224,0.4); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(237,232,224,0.1); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(237,232,224,0.35); }
    .footer-bottom a { color: rgba(237,232,224,0.35); text-decoration: none; }

    /* MakeHaus trust and ordering sections */
    .mh-trust-strip { background: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1.35rem 4rem; }
    .mh-trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .mh-trust-item { border-left: 1px solid rgba(74,92,42,0.18); padding-left: 1rem; }
    .mh-trust-item:first-child { border-left: none; padding-left: 0; }
    .mh-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--olive-dark); margin-bottom: 0.2rem; }
    .mh-trust-item span { display: block; font-size: 0.78rem; line-height: 1.5; color: var(--text-muted); }
    .mh-order-section { max-width: 1200px; margin: 0 auto 5rem; padding: 0 4rem; }
    .mh-order-card { background: white; border: 1px solid rgba(74,92,42,0.09); padding: 2rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; box-shadow: 0 14px 50px rgba(74,92,42,0.06); }
    .mh-order-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--olive-dark); margin-bottom: 0.75rem; }
    .mh-order-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
    .mh-order-steps { display: grid; gap: 0.75rem; }
    .mh-order-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; color: var(--text-muted); }
    .mh-order-step b { min-width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .mh-whatsapp-inline { display: inline-block; margin-top: 1rem; background: var(--olive); color: var(--cream); text-decoration: none; padding: 0.8rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @media (max-width: 768px) { .mh-trust-strip { padding: 1rem 1.5rem; } .mh-trust-inner { grid-template-columns: 1fr 1fr; } .mh-trust-item, .mh-trust-item:first-child { border-left: none; padding-left: 0; } .mh-order-section { padding: 0 1.5rem; } .mh-order-card { grid-template-columns: 1fr; padding: 1.5rem; } }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .products-grid { grid-template-columns: repeat(2,1fr); } footer { padding: 3rem 1.5rem 2rem; } .footer-top { grid-template-columns: 1fr; gap: 2rem; } .shop-toolbar { padding: 1rem 1.5rem; } .products-section { padding: 2rem 1.5rem 4rem; } }
    @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }



    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --cream: #EDE8E0; --olive: #4A5C2A; --olive-light: #6B7F45; --olive-dark: #333D1C; --rose: #D4A5A0; --rose-light: #E8C8C4; --text: #2C2C2C; --text-muted: #7A7060; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; background: rgba(237,232,224,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,92,42,0.1); transition: padding 0.3s; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--olive); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { background: var(--olive); color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 2px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .cart-btn { background: none; border: 1.5px solid rgba(74,92,42,0.25); color: var(--olive-dark); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .cart-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
    .cart-count { background: var(--rose); color: white; font-size: 0.7rem; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    /* Cart */
    .cart-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--cream); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(74,92,42,0.1); }
    .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
    .cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
    .cart-empty p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(74,92,42,0.08); }
    .cart-item-img { width: 60px; height: 60px; border-radius: 3px; background: rgba(74,92,42,0.08); flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .cart-item-name { font-size: 0.875rem; font-weight: 500; margin: 0.2rem 0 0.25rem; }
    .cart-item-custom { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
    .cart-qty { display: flex; align-items: center; gap: 0.5rem; }
    .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(74,92,42,0.2); background: none; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .qty-btn:hover { background: var(--olive); color: white; border-color: var(--olive); }
    .qty-num { font-size: 0.875rem; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-item-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
    .cart-remove { background: none; border: none; font-size: 0.72rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; display: block; margin-top: 0.25rem; }
    .cart-footer { padding: 1.5rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .cart-subtotal .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
    .checkout-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-bottom: 0.75rem; transition: background 0.2s; }
    .checkout-btn:hover { background: var(--olive-dark); }
    .continue-shopping { width: 100%; background: none; border: none; color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
    /* Modal */
    .modal-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%); width: min(560px, 95vw); max-height: 85vh; background: var(--cream); z-index: 301; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
    .custom-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
    .modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(74,92,42,0.1); display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
    .modal-lead { font-size: 0.78rem; color: var(--olive); margin-top: 0.25rem; font-weight: 500; }
    .modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
    .modal-body { padding: 1.5rem 2rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
    .modal-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.5rem; }
    .modal-field select, .modal-field input[type=text] { width: 100%; border: 1px solid rgba(74,92,42,0.25); background: white; color: var(--text); padding: 0.6rem 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; border-radius: 2px; appearance: none; }
    .modal-field select:focus, .modal-field input:focus { outline: none; border-color: var(--olive); }
    .marble-toggle { display: flex; gap: 0.75rem; }
    .toggle-btn { flex: 1; padding: 0.6rem; border: 1px solid rgba(74,92,42,0.25); background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-align: center; }
    .toggle-btn.active { background: var(--olive); color: white; border-color: var(--olive); }
    .additions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addition-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(74,92,42,0.2); border-radius: 2px; cursor: pointer; font-size: 0.82rem; background: white; transition: all 0.2s; user-select: none; }
    .addition-chip input { accent-color: var(--olive); }
    .addition-chip:has(input:checked) { border-color: var(--olive); background: rgba(74,92,42,0.06); }
    .addition-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
    .modal-footer { padding: 1.25rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .modal-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
    .modal-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); }
    .modal-add-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .modal-add-btn:hover { background: var(--olive-dark); }
    /* Products */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { background: white; border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,92,42,0.1); }
    .product-card.sold-out { opacity: 0.75; }
    .product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(74,92,42,0.06); }
    .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-image img { transform: scale(1.04); }
    .product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--olive); color: white; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
    .wishlist-btn { position: absolute; top: 1rem; right: 1rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .wishlist-btn.liked { color: var(--rose); }
    .quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--olive-dark); color: var(--cream); text-align: center; padding: 0.75rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transform: translateY(100%); transition: transform 0.3s; }
    .product-card:hover .quick-add { transform: translateY(0); }
    .product-body { padding: 1.25rem; }
    .product-category { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); }
    .add-to-cart { background: var(--olive); color: white; border: none; padding: 0.5rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .add-to-cart:hover { background: var(--olive-dark); }
    .add-to-cart:disabled { background: #ccc; cursor: not-allowed; }
    /* Toolbar */
    .shop-toolbar { background: white; border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1rem 4rem; position: sticky; top: 72px; z-index: 90; }
    .toolbar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .shop-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .filter-chip { background: none; border: 1px solid rgba(74,92,42,0.25); color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
    .filter-chip:hover, .filter-chip.active { background: var(--olive); color: white; border-color: var(--olive); }
    .sort-select { border: 1px solid rgba(74,92,42,0.25); background: none; color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; cursor: pointer; border-radius: 2px; margin-left: auto; }
    .count-label { font-size: 0.78rem; color: var(--text-muted); }
    /* Hero */
    .hero { min-height: 50vh; background: var(--olive-dark); padding: 8rem 4rem 4rem; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,127,69,0.2) 0%, transparent 70%); }
    .hero-inner { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--rose); }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; color: rgba(237,232,224,0.7); max-width: 500px; line-height: 1.7; }
    /* Sections */
    .products-section { max-width: 1200px; margin: 0 auto; padding: 3rem 4rem 6rem; }
    .section-block { margin-bottom: 4rem; }
    .section-block-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(74,92,42,0.12); padding-bottom: 0.75rem; }
    .section-block-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--olive-dark); }
    .section-block-header p { font-size: 0.78rem; color: var(--text-muted); }
    /* Footer */
    footer { background: var(--olive-dark); color: var(--cream); padding: 4rem 4rem 2rem; }
    .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: rgba(237,232,224,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link { width: 36px; height: 36px; border: 1px solid rgba(237,232,224,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: all 0.2s; }
    .social-link:hover { border-color: var(--rose); color: var(--rose); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,224,0.4); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(237,232,224,0.1); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(237,232,224,0.35); }
    .footer-bottom a { color: rgba(237,232,224,0.35); text-decoration: none; }

    /* MakeHaus trust and ordering sections */
    .mh-trust-strip { background: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1.35rem 4rem; }
    .mh-trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .mh-trust-item { border-left: 1px solid rgba(74,92,42,0.18); padding-left: 1rem; }
    .mh-trust-item:first-child { border-left: none; padding-left: 0; }
    .mh-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--olive-dark); margin-bottom: 0.2rem; }
    .mh-trust-item span { display: block; font-size: 0.78rem; line-height: 1.5; color: var(--text-muted); }
    .mh-order-section { max-width: 1200px; margin: 0 auto 5rem; padding: 0 4rem; }
    .mh-order-card { background: white; border: 1px solid rgba(74,92,42,0.09); padding: 2rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; box-shadow: 0 14px 50px rgba(74,92,42,0.06); }
    .mh-order-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--olive-dark); margin-bottom: 0.75rem; }
    .mh-order-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
    .mh-order-steps { display: grid; gap: 0.75rem; }
    .mh-order-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; color: var(--text-muted); }
    .mh-order-step b { min-width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .mh-whatsapp-inline { display: inline-block; margin-top: 1rem; background: var(--olive); color: var(--cream); text-decoration: none; padding: 0.8rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @media (max-width: 768px) { .mh-trust-strip { padding: 1rem 1.5rem; } .mh-trust-inner { grid-template-columns: 1fr 1fr; } .mh-trust-item, .mh-trust-item:first-child { border-left: none; padding-left: 0; } .mh-order-section { padding: 0 1.5rem; } .mh-order-card { grid-template-columns: 1fr; padding: 1.5rem; } }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .products-grid { grid-template-columns: repeat(2,1fr); } footer { padding: 3rem 1.5rem 2rem; } .footer-top { grid-template-columns: 1fr; gap: 2rem; } .shop-toolbar { padding: 1rem 1.5rem; } .products-section { padding: 2rem 1.5rem 4rem; } }
    @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }



    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --cream: #EDE8E0; --olive: #4A5C2A; --olive-light: #6B7F45; --olive-dark: #333D1C; --rose: #D4A5A0; --rose-light: #E8C8C4; --text: #2C2C2C; --text-muted: #7A7060; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; background: rgba(237,232,224,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,92,42,0.1); transition: padding 0.3s; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--olive); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { background: var(--olive); color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 2px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .cart-btn { background: none; border: 1.5px solid rgba(74,92,42,0.25); color: var(--olive-dark); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .cart-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
    .cart-count { background: var(--rose); color: white; font-size: 0.7rem; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    /* Cart */
    .cart-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--cream); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(74,92,42,0.1); }
    .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
    .cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
    .cart-empty p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(74,92,42,0.08); }
    .cart-item-img { width: 60px; height: 60px; border-radius: 3px; background: rgba(74,92,42,0.08); flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .cart-item-name { font-size: 0.875rem; font-weight: 500; margin: 0.2rem 0 0.25rem; }
    .cart-item-custom { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
    .cart-qty { display: flex; align-items: center; gap: 0.5rem; }
    .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(74,92,42,0.2); background: none; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .qty-btn:hover { background: var(--olive); color: white; border-color: var(--olive); }
    .qty-num { font-size: 0.875rem; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-item-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
    .cart-remove { background: none; border: none; font-size: 0.72rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; display: block; margin-top: 0.25rem; }
    .cart-footer { padding: 1.5rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .cart-subtotal .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
    .checkout-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-bottom: 0.75rem; transition: background 0.2s; }
    .checkout-btn:hover { background: var(--olive-dark); }
    .continue-shopping { width: 100%; background: none; border: none; color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
    /* Modal */
    .modal-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%); width: min(560px, 95vw); max-height: 85vh; background: var(--cream); z-index: 301; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
    .custom-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
    .modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(74,92,42,0.1); display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
    .modal-lead { font-size: 0.78rem; color: var(--olive); margin-top: 0.25rem; font-weight: 500; }
    .modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
    .modal-body { padding: 1.5rem 2rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
    .modal-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.5rem; }
    .modal-field select, .modal-field input[type=text] { width: 100%; border: 1px solid rgba(74,92,42,0.25); background: white; color: var(--text); padding: 0.6rem 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; border-radius: 2px; appearance: none; }
    .modal-field select:focus, .modal-field input:focus { outline: none; border-color: var(--olive); }
    .marble-toggle { display: flex; gap: 0.75rem; }
    .toggle-btn { flex: 1; padding: 0.6rem; border: 1px solid rgba(74,92,42,0.25); background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-align: center; }
    .toggle-btn.active { background: var(--olive); color: white; border-color: var(--olive); }
    .additions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addition-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(74,92,42,0.2); border-radius: 2px; cursor: pointer; font-size: 0.82rem; background: white; transition: all 0.2s; user-select: none; }
    .addition-chip input { accent-color: var(--olive); }
    .addition-chip:has(input:checked) { border-color: var(--olive); background: rgba(74,92,42,0.06); }
    .addition-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
    .modal-footer { padding: 1.25rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .modal-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
    .modal-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); }
    .modal-add-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .modal-add-btn:hover { background: var(--olive-dark); }
    /* Products */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { background: white; border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,92,42,0.1); }
    .product-card.sold-out { opacity: 0.75; }
    .product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(74,92,42,0.06); }
    .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-image img { transform: scale(1.04); }
    .product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--olive); color: white; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
    .wishlist-btn { position: absolute; top: 1rem; right: 1rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .wishlist-btn.liked { color: var(--rose); }
    .quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--olive-dark); color: var(--cream); text-align: center; padding: 0.75rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transform: translateY(100%); transition: transform 0.3s; }
    .product-card:hover .quick-add { transform: translateY(0); }
    .product-body { padding: 1.25rem; }
    .product-category { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); }
    .add-to-cart { background: var(--olive); color: white; border: none; padding: 0.5rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .add-to-cart:hover { background: var(--olive-dark); }
    .add-to-cart:disabled { background: #ccc; cursor: not-allowed; }
    /* Toolbar */
    .shop-toolbar { background: white; border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1rem 4rem; position: sticky; top: 72px; z-index: 90; }
    .toolbar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .shop-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .filter-chip { background: none; border: 1px solid rgba(74,92,42,0.25); color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
    .filter-chip:hover, .filter-chip.active { background: var(--olive); color: white; border-color: var(--olive); }
    .sort-select { border: 1px solid rgba(74,92,42,0.25); background: none; color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; cursor: pointer; border-radius: 2px; margin-left: auto; }
    .count-label { font-size: 0.78rem; color: var(--text-muted); }
    /* Hero */
    .hero { min-height: 50vh; background: var(--olive-dark); padding: 8rem 4rem 4rem; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,127,69,0.2) 0%, transparent 70%); }
    .hero-inner { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--rose); }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; color: rgba(237,232,224,0.7); max-width: 500px; line-height: 1.7; }
    /* Sections */
    .products-section { max-width: 1200px; margin: 0 auto; padding: 3rem 4rem 6rem; }
    .section-block { margin-bottom: 4rem; }
    .section-block-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(74,92,42,0.12); padding-bottom: 0.75rem; }
    .section-block-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--olive-dark); }
    .section-block-header p { font-size: 0.78rem; color: var(--text-muted); }
    /* Footer */
    footer { background: var(--olive-dark); color: var(--cream); padding: 4rem 4rem 2rem; }
    .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: rgba(237,232,224,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link { width: 36px; height: 36px; border: 1px solid rgba(237,232,224,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: all 0.2s; }
    .social-link:hover { border-color: var(--rose); color: var(--rose); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,224,0.4); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(237,232,224,0.1); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(237,232,224,0.35); }
    .footer-bottom a { color: rgba(237,232,224,0.35); text-decoration: none; }

    /* MakeHaus trust and ordering sections */
    .mh-trust-strip { background: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1.35rem 4rem; }
    .mh-trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .mh-trust-item { border-left: 1px solid rgba(74,92,42,0.18); padding-left: 1rem; }
    .mh-trust-item:first-child { border-left: none; padding-left: 0; }
    .mh-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--olive-dark); margin-bottom: 0.2rem; }
    .mh-trust-item span { display: block; font-size: 0.78rem; line-height: 1.5; color: var(--text-muted); }
    .mh-order-section { max-width: 1200px; margin: 0 auto 5rem; padding: 0 4rem; }
    .mh-order-card { background: white; border: 1px solid rgba(74,92,42,0.09); padding: 2rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; box-shadow: 0 14px 50px rgba(74,92,42,0.06); }
    .mh-order-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--olive-dark); margin-bottom: 0.75rem; }
    .mh-order-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
    .mh-order-steps { display: grid; gap: 0.75rem; }
    .mh-order-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; color: var(--text-muted); }
    .mh-order-step b { min-width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .mh-whatsapp-inline { display: inline-block; margin-top: 1rem; background: var(--olive); color: var(--cream); text-decoration: none; padding: 0.8rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @media (max-width: 768px) { .mh-trust-strip { padding: 1rem 1.5rem; } .mh-trust-inner { grid-template-columns: 1fr 1fr; } .mh-trust-item, .mh-trust-item:first-child { border-left: none; padding-left: 0; } .mh-order-section { padding: 0 1.5rem; } .mh-order-card { grid-template-columns: 1fr; padding: 1.5rem; } }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .products-grid { grid-template-columns: repeat(2,1fr); } footer { padding: 3rem 1.5rem 2rem; } .footer-top { grid-template-columns: 1fr; gap: 2rem; } .shop-toolbar { padding: 1rem 1.5rem; } .products-section { padding: 2rem 1.5rem 4rem; } }
    @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }



    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --cream: #EDE8E0; --olive: #4A5C2A; --olive-light: #6B7F45; --olive-dark: #333D1C; --rose: #D4A5A0; --rose-light: #E8C8C4; --text: #2C2C2C; --text-muted: #7A7060; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; background: rgba(237,232,224,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,92,42,0.1); transition: padding 0.3s; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--olive); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { background: var(--olive); color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 2px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .cart-btn { background: none; border: 1.5px solid rgba(74,92,42,0.25); color: var(--olive-dark); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .cart-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
    .cart-count { background: var(--rose); color: white; font-size: 0.7rem; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    /* Cart */
    .cart-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--cream); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(74,92,42,0.1); }
    .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
    .cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
    .cart-empty p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(74,92,42,0.08); }
    .cart-item-img { width: 60px; height: 60px; border-radius: 3px; background: rgba(74,92,42,0.08); flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .cart-item-name { font-size: 0.875rem; font-weight: 500; margin: 0.2rem 0 0.25rem; }
    .cart-item-custom { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
    .cart-qty { display: flex; align-items: center; gap: 0.5rem; }
    .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(74,92,42,0.2); background: none; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .qty-btn:hover { background: var(--olive); color: white; border-color: var(--olive); }
    .qty-num { font-size: 0.875rem; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-item-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
    .cart-remove { background: none; border: none; font-size: 0.72rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; display: block; margin-top: 0.25rem; }
    .cart-footer { padding: 1.5rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .cart-subtotal .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
    .checkout-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-bottom: 0.75rem; transition: background 0.2s; }
    .checkout-btn:hover { background: var(--olive-dark); }
    .continue-shopping { width: 100%; background: none; border: none; color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
    /* Modal */
    .modal-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%); width: min(560px, 95vw); max-height: 85vh; background: var(--cream); z-index: 301; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
    .custom-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
    .modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(74,92,42,0.1); display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
    .modal-lead { font-size: 0.78rem; color: var(--olive); margin-top: 0.25rem; font-weight: 500; }
    .modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
    .modal-body { padding: 1.5rem 2rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
    .modal-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.5rem; }
    .modal-field select, .modal-field input[type=text] { width: 100%; border: 1px solid rgba(74,92,42,0.25); background: white; color: var(--text); padding: 0.6rem 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; border-radius: 2px; appearance: none; }
    .modal-field select:focus, .modal-field input:focus { outline: none; border-color: var(--olive); }
    .marble-toggle { display: flex; gap: 0.75rem; }
    .toggle-btn { flex: 1; padding: 0.6rem; border: 1px solid rgba(74,92,42,0.25); background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-align: center; }
    .toggle-btn.active { background: var(--olive); color: white; border-color: var(--olive); }
    .additions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addition-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(74,92,42,0.2); border-radius: 2px; cursor: pointer; font-size: 0.82rem; background: white; transition: all 0.2s; user-select: none; }
    .addition-chip input { accent-color: var(--olive); }
    .addition-chip:has(input:checked) { border-color: var(--olive); background: rgba(74,92,42,0.06); }
    .addition-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
    .modal-footer { padding: 1.25rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .modal-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
    .modal-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); }
    .modal-add-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .modal-add-btn:hover { background: var(--olive-dark); }
    /* Products */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { background: white; border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,92,42,0.1); }
    .product-card.sold-out { opacity: 0.75; }
    .product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(74,92,42,0.06); }
    .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-image img { transform: scale(1.04); }
    .product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--olive); color: white; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
    .wishlist-btn { position: absolute; top: 1rem; right: 1rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .wishlist-btn.liked { color: var(--rose); }
    .quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--olive-dark); color: var(--cream); text-align: center; padding: 0.75rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transform: translateY(100%); transition: transform 0.3s; }
    .product-card:hover .quick-add { transform: translateY(0); }
    .product-body { padding: 1.25rem; }
    .product-category { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); }
    .add-to-cart { background: var(--olive); color: white; border: none; padding: 0.5rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .add-to-cart:hover { background: var(--olive-dark); }
    .add-to-cart:disabled { background: #ccc; cursor: not-allowed; }
    /* Toolbar */
    .shop-toolbar { background: white; border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1rem 4rem; position: sticky; top: 72px; z-index: 90; }
    .toolbar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .shop-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .filter-chip { background: none; border: 1px solid rgba(74,92,42,0.25); color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
    .filter-chip:hover, .filter-chip.active { background: var(--olive); color: white; border-color: var(--olive); }
    .sort-select { border: 1px solid rgba(74,92,42,0.25); background: none; color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; cursor: pointer; border-radius: 2px; margin-left: auto; }
    .count-label { font-size: 0.78rem; color: var(--text-muted); }
    /* Hero */
    .hero { min-height: 50vh; background: var(--olive-dark); padding: 8rem 4rem 4rem; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,127,69,0.2) 0%, transparent 70%); }
    .hero-inner { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--rose); }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; color: rgba(237,232,224,0.7); max-width: 500px; line-height: 1.7; }
    /* Sections */
    .products-section { max-width: 1200px; margin: 0 auto; padding: 3rem 4rem 6rem; }
    .section-block { margin-bottom: 4rem; }
    .section-block-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(74,92,42,0.12); padding-bottom: 0.75rem; }
    .section-block-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--olive-dark); }
    .section-block-header p { font-size: 0.78rem; color: var(--text-muted); }
    /* Footer */
    footer { background: var(--olive-dark); color: var(--cream); padding: 4rem 4rem 2rem; }
    .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: rgba(237,232,224,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link { width: 36px; height: 36px; border: 1px solid rgba(237,232,224,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: all 0.2s; }
    .social-link:hover { border-color: var(--rose); color: var(--rose); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,224,0.4); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(237,232,224,0.1); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(237,232,224,0.35); }
    .footer-bottom a { color: rgba(237,232,224,0.35); text-decoration: none; }

    /* MakeHaus trust and ordering sections */
    .mh-trust-strip { background: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1.35rem 4rem; }
    .mh-trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .mh-trust-item { border-left: 1px solid rgba(74,92,42,0.18); padding-left: 1rem; }
    .mh-trust-item:first-child { border-left: none; padding-left: 0; }
    .mh-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--olive-dark); margin-bottom: 0.2rem; }
    .mh-trust-item span { display: block; font-size: 0.78rem; line-height: 1.5; color: var(--text-muted); }
    .mh-order-section { max-width: 1200px; margin: 0 auto 5rem; padding: 0 4rem; }
    .mh-order-card { background: white; border: 1px solid rgba(74,92,42,0.09); padding: 2rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; box-shadow: 0 14px 50px rgba(74,92,42,0.06); }
    .mh-order-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--olive-dark); margin-bottom: 0.75rem; }
    .mh-order-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
    .mh-order-steps { display: grid; gap: 0.75rem; }
    .mh-order-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; color: var(--text-muted); }
    .mh-order-step b { min-width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .mh-whatsapp-inline { display: inline-block; margin-top: 1rem; background: var(--olive); color: var(--cream); text-decoration: none; padding: 0.8rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @media (max-width: 768px) { .mh-trust-strip { padding: 1rem 1.5rem; } .mh-trust-inner { grid-template-columns: 1fr 1fr; } .mh-trust-item, .mh-trust-item:first-child { border-left: none; padding-left: 0; } .mh-order-section { padding: 0 1.5rem; } .mh-order-card { grid-template-columns: 1fr; padding: 1.5rem; } }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .products-grid { grid-template-columns: repeat(2,1fr); } footer { padding: 3rem 1.5rem 2rem; } .footer-top { grid-template-columns: 1fr; gap: 2rem; } .shop-toolbar { padding: 1rem 1.5rem; } .products-section { padding: 2rem 1.5rem 4rem; } }
    @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }



    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --cream: #EDE8E0; --olive: #4A5C2A; --olive-light: #6B7F45; --olive-dark: #333D1C; --rose: #D4A5A0; --rose-light: #E8C8C4; --text: #2C2C2C; --text-muted: #7A7060; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
    body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 4rem; background: rgba(237,232,224,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(74,92,42,0.1); transition: padding 0.3s; }
    .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--olive); text-decoration: none; letter-spacing: -0.02em; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); text-decoration: none; position: relative; padding-bottom: 2px; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--rose); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--olive); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { background: var(--olive); color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 2px; }
    .nav-cta:hover { background: var(--olive-dark) !important; }
    .nav-cta::after { display: none !important; }
    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .cart-btn { background: none; border: 1.5px solid rgba(74,92,42,0.25); color: var(--olive-dark); padding: 0.5rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; border-radius: 2px; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem; }
    .cart-btn:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
    .cart-count { background: var(--rose); color: white; font-size: 0.7rem; min-width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
    /* Cart */
    .cart-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.4); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; background: var(--cream); z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header { padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(74,92,42,0.1); }
    .cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
    .cart-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); }
    .cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
    .cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); }
    .cart-empty p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
    .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(74,92,42,0.08); }
    .cart-item-img { width: 60px; height: 60px; border-radius: 3px; background: rgba(74,92,42,0.08); flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
    .cart-item-name { font-size: 0.875rem; font-weight: 500; margin: 0.2rem 0 0.25rem; }
    .cart-item-custom { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
    .cart-qty { display: flex; align-items: center; gap: 0.5rem; }
    .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(74,92,42,0.2); background: none; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .qty-btn:hover { background: var(--olive); color: white; border-color: var(--olive); }
    .qty-num { font-size: 0.875rem; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-item-price { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
    .cart-remove { background: none; border: none; font-size: 0.72rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; display: block; margin-top: 0.25rem; }
    .cart-footer { padding: 1.5rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .cart-subtotal .amount { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
    .cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
    .checkout-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; margin-bottom: 0.75rem; transition: background 0.2s; }
    .checkout-btn:hover { background: var(--olive-dark); }
    .continue-shopping { width: 100%; background: none; border: none; color: var(--text-muted); font-family: 'Jost', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
    /* Modal */
    .modal-overlay { position: fixed; inset: 0; background: rgba(51,61,28,0.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .custom-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%); width: min(560px, 95vw); max-height: 85vh; background: var(--cream); z-index: 301; border-radius: 4px; box-shadow: 0 24px 80px rgba(0,0,0,0.15); display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; }
    .custom-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
    .modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(74,92,42,0.1); display: flex; justify-content: space-between; align-items: flex-start; }
    .modal-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
    .modal-lead { font-size: 0.78rem; color: var(--olive); margin-top: 0.25rem; font-weight: 500; }
    .modal-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
    .modal-body { padding: 1.5rem 2rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
    .modal-field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 0.5rem; }
    .modal-field select, .modal-field input[type=text] { width: 100%; border: 1px solid rgba(74,92,42,0.25); background: white; color: var(--text); padding: 0.6rem 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; border-radius: 2px; appearance: none; }
    .modal-field select:focus, .modal-field input:focus { outline: none; border-color: var(--olive); }
    .marble-toggle { display: flex; gap: 0.75rem; }
    .toggle-btn { flex: 1; padding: 0.6rem; border: 1px solid rgba(74,92,42,0.25); background: white; font-family: 'Jost', sans-serif; font-size: 0.85rem; cursor: pointer; border-radius: 2px; transition: all 0.2s; text-align: center; }
    .toggle-btn.active { background: var(--olive); color: white; border-color: var(--olive); }
    .additions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .addition-chip { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(74,92,42,0.2); border-radius: 2px; cursor: pointer; font-size: 0.82rem; background: white; transition: all 0.2s; user-select: none; }
    .addition-chip input { accent-color: var(--olive); }
    .addition-chip:has(input:checked) { border-color: var(--olive); background: rgba(74,92,42,0.06); }
    .addition-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
    .modal-footer { padding: 1.25rem 2rem; border-top: 1px solid rgba(74,92,42,0.1); }
    .modal-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.85rem; }
    .modal-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--olive-dark); }
    .modal-add-btn { width: 100%; background: var(--olive); color: var(--cream); padding: 0.9rem; font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .modal-add-btn:hover { background: var(--olive-dark); }
    /* Products */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .product-card { background: white; border-radius: 3px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74,92,42,0.1); }
    .product-card.sold-out { opacity: 0.75; }
    .product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(74,92,42,0.06); }
    .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .product-card:hover .product-image img { transform: scale(1.04); }
    .product-badge { position: absolute; top: 1rem; left: 1rem; background: var(--olive); color: white; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 2px; }
    .wishlist-btn { position: absolute; top: 1rem; right: 1rem; background: white; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .wishlist-btn.liked { color: var(--rose); }
    .quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--olive-dark); color: var(--cream); text-align: center; padding: 0.75rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transform: translateY(100%); transition: transform 0.3s; }
    .product-card:hover .quick-add { transform: translateY(0); }
    .product-body { padding: 1.25rem; }
    .product-category { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--olive-dark); }
    .add-to-cart { background: var(--olive); color: white; border: none; padding: 0.5rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
    .add-to-cart:hover { background: var(--olive-dark); }
    .add-to-cart:disabled { background: #ccc; cursor: not-allowed; }
    /* Toolbar */
    .shop-toolbar { background: white; border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1rem 4rem; position: sticky; top: 72px; z-index: 90; }
    .toolbar-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
    .shop-controls { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .filter-chip { background: none; border: 1px solid rgba(74,92,42,0.25); color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s; }
    .filter-chip:hover, .filter-chip.active { background: var(--olive); color: white; border-color: var(--olive); }
    .sort-select { border: 1px solid rgba(74,92,42,0.25); background: none; color: var(--text-muted); padding: 0.4rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.78rem; cursor: pointer; border-radius: 2px; margin-left: auto; }
    .count-label { font-size: 0.78rem; color: var(--text-muted); }
    /* Hero */
    .hero { min-height: 50vh; background: var(--olive-dark); padding: 8rem 4rem 4rem; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,127,69,0.2) 0%, transparent 70%); }
    .hero-inner { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
    .hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--rose); }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--cream); margin-bottom: 1rem; }
    .hero-desc { font-size: 1rem; color: rgba(237,232,224,0.7); max-width: 500px; line-height: 1.7; }
    /* Sections */
    .products-section { max-width: 1200px; margin: 0 auto; padding: 3rem 4rem 6rem; }
    .section-block { margin-bottom: 4rem; }
    .section-block-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(74,92,42,0.12); padding-bottom: 0.75rem; }
    .section-block-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--olive-dark); }
    .section-block-header p { font-size: 0.78rem; color: var(--text-muted); }
    /* Footer */
    footer { background: var(--olive-dark); color: var(--cream); padding: 4rem 4rem 2rem; }
    .footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand .nav-logo { color: var(--cream); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.85rem; color: rgba(237,232,224,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link { width: 36px; height: 36px; border: 1px solid rgba(237,232,224,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; transition: all 0.2s; }
    .social-link:hover { border-color: var(--rose); color: var(--rose); }
    .footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(237,232,224,0.4); margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.6rem; }
    .footer-col ul a { color: rgba(237,232,224,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(237,232,224,0.1); display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(237,232,224,0.35); }
    .footer-bottom a { color: rgba(237,232,224,0.35); text-decoration: none; }

    /* MakeHaus trust and ordering sections */
    .mh-trust-strip { background: rgba(255,255,255,0.72); border-bottom: 1px solid rgba(74,92,42,0.08); padding: 1.35rem 4rem; }
    .mh-trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
    .mh-trust-item { border-left: 1px solid rgba(74,92,42,0.18); padding-left: 1rem; }
    .mh-trust-item:first-child { border-left: none; padding-left: 0; }
    .mh-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--olive-dark); margin-bottom: 0.2rem; }
    .mh-trust-item span { display: block; font-size: 0.78rem; line-height: 1.5; color: var(--text-muted); }
    .mh-order-section { max-width: 1200px; margin: 0 auto 5rem; padding: 0 4rem; }
    .mh-order-card { background: white; border: 1px solid rgba(74,92,42,0.09); padding: 2rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; box-shadow: 0 14px 50px rgba(74,92,42,0.06); }
    .mh-order-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--olive-dark); margin-bottom: 0.75rem; }
    .mh-order-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }
    .mh-order-steps { display: grid; gap: 0.75rem; }
    .mh-order-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; color: var(--text-muted); }
    .mh-order-step b { min-width: 26px; height: 26px; border-radius: 50%; background: var(--rose-light); color: var(--olive-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
    .mh-whatsapp-inline { display: inline-block; margin-top: 1rem; background: var(--olive); color: var(--cream); text-decoration: none; padding: 0.8rem 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
    @media (max-width: 768px) { .mh-trust-strip { padding: 1rem 1.5rem; } .mh-trust-inner { grid-template-columns: 1fr 1fr; } .mh-trust-item, .mh-trust-item:first-child { border-left: none; padding-left: 0; } .mh-order-section { padding: 0 1.5rem; } .mh-order-card { grid-template-columns: 1fr; padding: 1.5rem; } }

    @media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 768px) { nav { padding: 1rem 1.5rem; } .nav-links { display: none; } .products-grid { grid-template-columns: repeat(2,1fr); } footer { padding: 3rem 1.5rem 2rem; } .footer-top { grid-template-columns: 1fr; gap: 2rem; } .shop-toolbar { padding: 1rem 1.5rem; } .products-section { padding: 2rem 1.5rem 4rem; } }
    @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }


/* MakeHaus additions: markets + option validation */
.mh-markets-section{padding:5rem 6rem;background:#F5F0E8;position:relative;z-index:1;}
.mh-markets-head{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;margin-bottom:2.5rem;}
.mh-markets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;}
.mh-market-card{background:white;border-left:3px solid var(--rose);border-radius:4px;padding:1.5rem;box-shadow:0 10px 30px rgba(74,92,42,.06);}
.mh-market-date{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--rose);font-weight:500;margin-bottom:.4rem;}
.mh-market-card h3{font-family:'Playfair Display',serif;font-size:1.25rem;color:var(--olive-dark);margin-bottom:.5rem;}
.mh-market-card p{font-size:.9rem;line-height:1.65;color:var(--text-muted);font-weight:300;}
.mh-market-note{margin-top:1.5rem;font-size:.9rem;color:var(--text-muted);}
.modal-option-warning{margin:.75rem 0 0;color:#9f4e42;font-size:.82rem;line-height:1.5;display:none;}
.add-to-cart:disabled,.ws-book-btn:disabled{opacity:.55;cursor:not-allowed;}
@media(max-width:900px){.mh-markets-section{padding:4rem 1.5rem}.mh-markets-head{display:block}.mh-markets-grid{grid-template-columns:1fr}}



/* Checkout delivery / collection fields */
.checkout-options {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(74,92,42,0.06);
  border: 1px solid rgba(74,92,42,0.12);
  border-radius: 4px;
}

.checkout-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin: 0.75rem 0 0.35rem;
}

.checkout-label:first-child {
  margin-top: 0;
}

.checkout-input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(74,92,42,0.18);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
}

.checkout-input:focus {
  outline: none;
  border-color: var(--olive);
}

.fulfilment-fields {
  margin-top: 0.5rem;
}
/* =========================================
   MAKEHAUS RESPONSIVE MOBILE STYLES
========================================= */

/* TABLETS */
@media (max-width: 992px) {

  .products-grid,
  .shop-grid,
  .collection-grid,
  .workshop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem;
  }

  .cart-drawer,
  .cart-sidebar {
    width: 90% !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }

  h2 {
    font-size: 1.7rem !important;
  }

  p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  /* STACK LAYOUTS */
  .hero,
  .hero-grid,
  .split-layout,
  .two-column-layout,
  .about-grid,
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* HERO */
  .hero {
    min-height: auto !important;
    padding: 5rem 1.25rem 3rem !important;
  }

  .hero-content,
  .hero-text {
    text-align: center !important;
  }

  /* PRODUCT GRIDS */
  .products-grid,
  .shop-grid,
  .collection-grid,
  .workshop-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem;
  }

  /* PRODUCT CARDS */
  .product-card,
  .workshop-card,
  .collection-card {
    width: 100% !important;
  }

  /* CART */
  .cart-drawer,
  .cart-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    right: 0 !important;
  }

  /* BUTTONS */
  button,
  .btn,
  .checkout-btn,
  .add-to-cart-btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem !important;
  }

  /* FORMS */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* NAVIGATION */
  nav ul,
  .nav-links {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  /* SECTION SPACING */
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* IMAGES */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* SMALLER PHONES */
@media (max-width: 480px) {

  h1 {
    font-size: 1.9rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  .hero {
    padding-top: 5rem !important;
  }

  .product-card,
  .workshop-card {
    padding: 1rem !important;
  }
}
/* MOBILE NAV - LEFT SIDE DROPDOWN */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem !important;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    color: var(--olive-dark);
    font-size: 1.8rem;
    cursor: pointer;
    width: auto !important;
    min-height: auto !important;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: auto;
    width: 230px;
    background: rgba(237, 232, 224, 0.98);
    border: 1px solid rgba(74, 92, 42, 0.12);
    padding: 1rem;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 0.9rem !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    z-index: 1000;
  }

  .nav-links.mobile-open {
    display: flex !important;
  }

  .nav-links a {
    font-size: 0.82rem;
    padding: 0.3rem 0;
  }
}
/* MOBILE TRUST SLIDER */
@media (max-width: 768px) {

  .mh-trust-strip {
    overflow: hidden;
    padding-right: 0;
  }

  .mh-trust-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .mh-trust-inner::-webkit-scrollbar {
    display: none;
  }

  .mh-trust-item {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
  }
}
