
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:    #FAF6EF;
      --cream2:   #F3EDE0;
      --gold:     #B8973A;
      --gold-lt:  #D4AF5A;
      --gold-pale:#EDD98A;
      --ink:      #1C1A16;
      --warm:     #6B5E47;
      --border:   #E2D9C8;
      --white:    #FFFFFF;
      --f-display: 'Playfair Display', serif;
      --f-body:    'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      background: var(--cream);
      color: var(--ink);
      font-family: var(--f-body);
      font-weight: 300;
      overflow-x: hidden;
      max-width: 100vw;
    }

    /* CUSTOM CURSOR */
    /* cursor none disabled */
    #cur {
      position: fixed; z-index: 9999;
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%,-50%);
      transition: transform .15s, width .25s, height .25s, background .25s;
    }
    #cur.hov {
      width: 36px; height: 36px;
      background: rgba(184,151,58,.15);
      border: 1px solid var(--gold);
    }

    /* GRAIN OVERLAY - disabled */

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 56px;
      transition: background .4s, box-shadow .4s;
    }
    nav.scrolled {
      background: rgba(250,246,239,.96);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--border);
    }
    nav.scrolled .nav-logo-main { color: var(--ink); }
    nav.scrolled .nav-logo-sub  { color: var(--gold); }
    nav.scrolled .nav-links a   { color: var(--warm); }
    nav.scrolled .nav-links a:hover { color: var(--ink); }
    nav.scrolled .nav-cart { border-color: var(--border); color: var(--warm); }

    .nav-logo {
      display: flex; flex-direction: column; align-items: flex-start;
      text-decoration: none;
    }
    .nav-logo-main {
      font-family: var(--f-display);
      font-size: 19px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: #F5F0E8; line-height: 1;
      transition: color .4s;
    }
    .nav-logo-sub {
      font-size: 9px; letter-spacing: .38em;
      text-transform: uppercase; color: var(--gold-lt);
      margin-top: 3px;
      transition: color .4s;
    }
    .nav-links { display: flex; gap: 38px; list-style: none; }
    .nav-links a {
      font-size: 11px; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(245,240,232,.6);
      text-decoration: none; position: relative;
      transition: color .2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1px; background: var(--gold-lt);
      transition: width .3s;
    }
    .nav-links a:hover { color: #F5F0E8; }
    .nav-links a:hover::after { width: 100%; }

    .nav-right { display: flex; align-items: center; gap: 18px; }
    #whatsappBtn {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 16px;
      background: #25D366;
      color: #fff;
      border-radius: 20px;
      text-decoration: none;
      font-family: var(--f-body);
      font-size: 11px; font-weight: 500;
      letter-spacing: .08em;
      transition: background .2s, transform .2s;
      white-space: nowrap;
    }
    #whatsappBtn:hover { background: #1ebe5d; transform: translateY(-1px); }
    nav.scrolled #whatsappBtn { background: #25D366; }
    .nav-cart {
      position: relative;
      width: 40px; height: 40px;
      border: 1px solid rgba(245,240,232,.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: none; color: rgba(245,240,232,.7);
      transition: border-color .3s, color .3s, background .3s;
    }
    .nav-cart:hover { border-color: var(--gold-lt); color: var(--gold-lt); background: rgba(184,151,58,.1); }
    .cart-bubble {
      position: absolute; top: -4px; right: -4px;
      width: 18px; height: 18px;
      background: var(--gold); color: var(--white);
      border-radius: 50%; font-size: 9px; font-weight: 500;
      display: flex; align-items: center; justify-content: center;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 55% 45%;
      position: relative; overflow: hidden;
    }
    /* decorative diagonal divider - disabled to prevent overflow */
    .hero::after { display: none; }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 130px 60px 80px 80px;
      position: relative; z-index: 2;
      background: #1A1712;
      animation: heroIn 1.1s cubic-bezier(.22,1,.36,1) both;
    }


    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--gold-lt); margin-bottom: 30px;
    }
    .hero-tag::before {
      content: ''; display: block;
      width: 28px; height: 1px; background: var(--gold-lt);
    }
    .hero-h1 {
      font-family: var(--f-display);
      font-size: clamp(48px, 5.5vw, 80px);
      font-weight: 500; line-height: 1.08;
      margin-bottom: 8px;
      color: #F5F0E8;
    }
    .hero-h1 span { display: block; }
    .hero-h1 em {
      font-style: italic; font-weight: 400;
      color: var(--gold-lt);
    }
    .hero-sub {
      font-family: var(--f-display);
      font-size: clamp(22px, 2.6vw, 36px);
      font-weight: 400; font-style: italic;
      color: rgba(212,175,90,.75); margin-bottom: 32px; line-height: 1.2;
    }
    .hero-desc {
      font-size: 15px; line-height: 1.9;
      color: rgba(245,240,232,.65); max-width: 400px;
      margin-bottom: 52px;
      font-weight: 300;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-gold {
      padding: 15px 40px;
      background: var(--gold);
      color: var(--white);
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
      text-decoration: none; border: 1px solid var(--gold);
      transition: background .3s, color .3s;
      display: inline-block;
      font-weight: 500;
    }
    .btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--white); }
    .btn-outline {
      padding: 15px 40px;
      background: transparent;
      color: rgba(245,240,232,.8);
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
      text-decoration: none; border: 1px solid rgba(184,151,58,.4);
      transition: border-color .3s, color .3s;
      display: inline-block;
      font-weight: 400;
    }
    .btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

    .hero-stats {
      display: flex; gap: 40px; margin-top: 56px;
      padding-top: 36px; border-top: 1px solid rgba(184,151,58,.2);
    }
    .hero-stat-num {
      font-family: var(--f-display);
      font-size: 30px; font-weight: 500; color: var(--gold-lt);
      line-height: 1;
    }
    .hero-stat-lbl {
      font-size: 10px; letter-spacing: .16em;
      text-transform: uppercase; color: rgba(245,240,232,.45);
      margin-top: 5px; font-weight: 400;
    }

    .hero-right {
      position: relative; overflow: hidden;
      max-width: 100%;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(145deg, #EDE4D3 0%, #D9CCB4 60%, #C8B898 100%);
    }
    /* floating ornament circles */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-orb-1 {
      width: 320px; height: 320px;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(184,151,58,.25);
      animation: spin 18s linear infinite;
    }
    .hero-orb-2 {
      width: 220px; height: 220px;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(184,151,58,.35);
      animation: spin 12s linear infinite reverse;
    }
    .hero-center-icon {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      display: flex; flex-direction: column;
      align-items: center; gap: 12px;
    }
    .hero-center-icon svg { opacity: .45; }
    .hero-center-icon span {
      font-family: var(--f-display);
      font-size: 12px; font-style: italic;
      color: var(--warm); opacity: .6;
      letter-spacing: .08em;
    }

    /* floating badge */
    .hero-badge {
      position: absolute; bottom: 48px; left: -24px;
      background: var(--white);
      padding: 18px 26px;
      box-shadow: 0 8px 32px rgba(28,26,22,.1);
      border-bottom: 2px solid var(--gold);
      animation: badgeIn 1s ease both 1s;
    }
    .hero-badge-big {
      font-family: var(--f-display);
      font-size: 28px; color: var(--gold);
      line-height: 1;
    }
    .hero-badge-sm {
      font-size: 10px; letter-spacing: .14em;
      text-transform: uppercase; color: var(--warm);
      margin-top: 4px;
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--gold);
      overflow: hidden; padding: 13px 0;
    }
    .marquee-track {
      display: flex; gap: 0;
      animation: marquee 22s linear infinite;
      white-space: nowrap;
    }
    .marquee-track span {
      font-size: 10px; letter-spacing: .26em;
      text-transform: uppercase; color: rgba(255,255,255,.85);
      padding: 0 28px;
    }
    .marquee-track span.dot { color: rgba(255,255,255,.4); }

    /* ─── SECTION BASE ─── */
    section { position: relative; max-width: 100%; overflow-x: hidden; }
    .sec-pad { padding: 96px 80px; }
    .sec-head { margin-bottom: 56px; }
    .sec-eyebrow {
      font-size: 10px; letter-spacing: .26em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 16px;
    }
    .sec-eyebrow::before {
      content: ''; width: 22px; height: 1px; background: var(--gold);
    }
    .sec-title {
      font-family: var(--f-display);
      font-size: clamp(32px, 3.5vw, 50px);
      font-weight: 500; line-height: 1.1;
    }
    .sec-title em { font-style: italic; color: var(--gold); }

    /* ─── PRODUCTS ─── */
    #products { background: var(--cream2); }
    .prod-filter {
      display: flex; gap: 6px; margin-bottom: 48px; flex-wrap: wrap;
    }
    .filter-btn {
      padding: 8px 22px;
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
      background: transparent; color: var(--warm);
      border: 1px solid var(--border);
      transition: all .25s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--gold); color: var(--white); border-color: var(--gold);
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      width: 100%;
      overflow: visible;
    }
    .shape-divider {
      grid-column: 1 / -1;
      padding: 32px 0 16px;
      display: flex; align-items: center; gap: 16px;
      width: 100%;
      box-sizing: border-box;
    }
    .shape-divider::before, .shape-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
    .shape-divider span {
      font-size: 10px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      white-space: nowrap;
    }
    .prod-card {
      background: var(--white);
      position: relative; overflow: hidden;
      transition: transform .4s ease;
      display: block;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .prod-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(28,26,22,.1); }
    .prod-card:hover .prod-overlay { opacity: 1; }
    .prod-card:hover .prod-action { opacity: 1; transform: translateY(0); }

    .prod-img {
      position: relative; overflow: hidden; width: 100%;
      background: #f0ebe2;
    }
    .prod-img img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .prod-img-bg {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 10px;
    }
    .prod-img-bg svg { opacity: .15; }
    .prod-img-label {
      font-family: var(--f-display);
      font-size: 11px; font-style: italic;
      color: var(--warm); opacity: .5;
    }
    .prod-bg-1 { background: linear-gradient(135deg,#EEE6D8,#DDD1BC); }
    .prod-bg-2 { background: linear-gradient(135deg,#E8DFD0,#D6C8AE); }
    .prod-bg-3 { background: linear-gradient(135deg,#F0E8D9,#E0D2BC); }
    .prod-bg-4 { background: linear-gradient(135deg,#EBE2D2,#D9CAB2); }
    .prod-bg-5 { background: linear-gradient(135deg,#EDE4D4,#DACFB9); }
    .prod-bg-6 { background: linear-gradient(135deg,#E9E0D0,#D7CAB4); }

    .prod-overlay {
      position: absolute; inset: 0;
      background: rgba(28,26,22,.05);
      opacity: 0; transition: opacity .3s;
    }
    .prod-action {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 12px 14px;
      background: rgba(250,246,239,.97);
      border-top: 1px solid var(--border);
      display: flex;
      opacity: 0; transform: translateY(8px);
      transition: opacity .3s, transform .3s;
    }
    .prod-btn-fav-full {
      flex: 1; padding: 10px;
      background: transparent;
      color: var(--ink);
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
      border: 1px solid var(--border);
      transition: background .2s, color .2s, border-color .2s;
    }
    .prod-btn-fav-full:hover,
    .prod-btn-fav-full.faved {
      background: #e87d7d;
      border-color: #e87d7d;
      color: var(--white);
    }

    .prod-badge {
      position: absolute; top: 16px; left: 16px;
      padding: 4px 10px;
      font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
    }
    .badge-new { background: var(--gold); color: var(--white); }
    .badge-sold { background: var(--ink); color: var(--white); }

    .prod-info { padding: 20px 22px 26px; }
    .prod-cat {
      font-size: 9px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 6px;
    }
    .prod-name {
      font-family: var(--f-display);
      font-size: 18px; font-weight: 400;
      margin-bottom: 4px; line-height: 1.3;
    }
    .prod-size {
      font-family: var(--body); font-size: 12px;
      color: #999; margin-bottom: 8px;
      letter-spacing: .03em;
    }
    .prod-foot {
      display: flex; justify-content: space-between; align-items: center;
    }
    .prod-price {
      font-family: var(--f-display);
      font-size: 20px; font-weight: 400; color: var(--gold);
    }
    .prod-price-old {
      font-size: 13px; color: var(--warm);
      text-decoration: line-through; margin-left: 8px;
    }
    .prod-stars { display: flex; gap: 2px; color: var(--gold-pale); font-size: 11px; }

    /* ─── STORY / ABOUT ─── */
    .story-section {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 560px; overflow: hidden;
    }
    .story-visual {
      position: relative; overflow: hidden;
      background: linear-gradient(145deg, #E4D8C3, #C9B898);
    }
    .story-vis-inner {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .story-circle {
      width: 280px; height: 280px;
      border: 1px solid rgba(184,151,58,.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 14px;
      animation: spin 20s linear infinite;
    }
    .story-circle-inner {
      width: 190px; height: 190px;
      border: 1px solid rgba(184,151,58,.5);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 6px;
      animation: spin 20s linear infinite reverse;
      background: rgba(255,255,255,.2);
    }
    .story-circle-inner svg { opacity: .4; }
    .story-circle-inner span {
      font-family: var(--f-display);
      font-size: 11px; font-style: italic;
      color: var(--warm);
    }
    .story-content {
      padding: 80px 72px;
      display: flex; flex-direction: column; justify-content: center;
      background: var(--cream);
    }
    .story-content p {
      font-size: 14px; line-height: 1.95;
      color: var(--warm); margin-bottom: 20px;
    }
    .story-content p:first-of-type {
      font-family: var(--f-display);
      font-size: 18px; font-weight: 400; font-style: italic;
      color: var(--ink); line-height: 1.6;
    }
    .story-sign {
      font-family: var(--f-display);
      font-size: 22px; font-style: italic;
      color: var(--gold); margin-top: 24px;
    }

    /* ─── FEATURES STRIP ─── */
    .features-strip {
      display: grid; grid-template-columns: repeat(4,1fr);
      background: var(--ink);
    }
    .feat-item {
      padding: 48px 40px;
      border-right: 1px solid rgba(255,255,255,.07);
      transition: background .3s;
    }
    .feat-item:last-child { border-right: none; }
    .feat-item:hover { background: rgba(184,151,58,.06); }
    .feat-icon {
      width: 44px; height: 44px;
      border: 1px solid rgba(184,151,58,.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); margin-bottom: 22px;
    }
    .feat-title {
      font-family: var(--f-display);
      font-size: 17px; color: var(--white);
      margin-bottom: 10px; font-weight: 400;
    }
    .feat-desc { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; }

    /* ─── CONTACT ─── */
    #iletisim { background: var(--cream2); }
    .contact-wrap {
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 80px; align-items: start;
    }
    .contact-info { }
    .contact-info p {
      font-size: 14px; line-height: 1.9; color: var(--warm); margin-bottom: 36px;
    }
    .contact-detail {
      display: flex; flex-direction: column; gap: 18px;
    }
    .c-detail-item {
      display: flex; align-items: center; gap: 14px;
      font-size: 13px; color: var(--warm);
    }
    .c-detail-item svg { color: var(--gold); flex-shrink: 0; }

    .order-form {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-size: 10px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--warm);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 13px 16px;
      background: var(--white);
      border: 1px solid var(--border);
      font-family: var(--f-body);
      font-size: 13px; color: var(--ink);
      outline: none;
      transition: border-color .2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B8973A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 36px;
    }
    .form-submit {
      grid-column: 1 / -1;
      padding: 16px 40px;
      background: var(--gold); color: var(--white);
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
      border: 1px solid var(--gold);
      transition: background .3s, color .3s;
      width: fit-content; justify-self: start;
    }
    .form-submit:hover { background: transparent; color: var(--gold); }

    /* ─── FOOTER ─── */
    footer {
      background: #141210;
      padding: 64px 80px 28px;
    }
    .footer-top {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr;
      gap: 60px; margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand-name {
      font-family: var(--f-display);
      font-size: 18px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--white); margin-bottom: 4px;
    }
    .footer-brand-sub {
      font-size: 9px; letter-spacing: .32em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 18px;
    }
    .footer-about {
      font-size: 13px; line-height: 1.85;
      color: rgba(255,255,255,.38); max-width: 280px;
    }
    .footer-col-title {
      font-size: 10px; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 13px; color: rgba(255,255,255,.32);
      text-decoration: none; transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-copy { font-size: 11px; color: rgba(255,255,255,.22); }
    .footer-socials { display: flex; gap: 10px; }
    .footer-socials a {
      width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.3); font-size: 13px;
      text-decoration: none;
      transition: border-color .2s, color .2s;
    }
    .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── CART DRAWER ─── */
    .cart-veil {
      position: fixed; inset: 0; z-index: 800;
      background: rgba(28,26,22,.45);
      opacity: 0; pointer-events: none;
      transition: opacity .35s;
    }
    .cart-veil.open { opacity: 1; pointer-events: all; }
    .cart-panel {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 801;
      width: 420px; background: var(--cream);
      transform: translateX(100%);
      transition: transform .42s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    .cart-panel.open { transform: translateX(0); }
    .cart-hd {
      padding: 28px 32px;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
    }
    .cart-hd-title {
      font-family: var(--f-display);
      font-size: 21px; font-weight: 400;
    }
    .cart-x {
      width: 34px; height: 34px;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: none; color: var(--warm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; transition: border-color .2s, color .2s;
    }
    .cart-x:hover { border-color: var(--gold); color: var(--gold); }
    .cart-bd { flex: 1; overflow-y: auto; padding: 24px 32px; }
    .cart-empty-msg {
      text-align: center; padding: 60px 0;
      font-family: var(--f-display); font-style: italic;
      font-size: 16px; color: var(--warm); opacity: .6;
    }
    .cart-item {
      display: flex; gap: 14px; padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item-thumb {
      width: 68px; height: 86px; flex-shrink: 0;
    }
    .cart-item-thumb-bg {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
    }
    .cart-item-body { flex: 1; }
    .cart-item-name {
      font-family: var(--f-display);
      font-size: 15px; margin-bottom: 5px;
    }
    .cart-item-price { font-size: 13px; color: var(--gold); }
    .cart-item-rm {
      font-size: 10px; letter-spacing: .12em;
      text-transform: uppercase; color: var(--warm);
      text-decoration: underline; background: none; border: none;
      padding: 0; margin-top: 8px; display: block;
    }
    .cart-ft { padding: 24px 32px; border-top: 1px solid var(--border); }
    .cart-total-row {
      display: flex; justify-content: space-between;
      align-items: baseline; margin-bottom: 18px;
    }
    .cart-total-lbl {
      font-size: 10px; letter-spacing: .18em;
      text-transform: uppercase; color: var(--warm);
    }
    .cart-total-val {
      font-family: var(--f-display);
      font-size: 24px; color: var(--gold);
    }
    .cart-checkout {
      display: block; width: 100%; padding: 15px;
      background: var(--ink); color: var(--white);
      font-family: var(--f-body);
      font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
      border: none; text-align: center;
      transition: background .3s;
    }
    .cart-checkout:hover { background: var(--gold); }

    /* ─── TOAST ─── */
    .toast {
      position: fixed; bottom: 32px; left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--ink); color: var(--white);
      padding: 12px 28px;
      font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 900;
      border-bottom: 2px solid var(--gold);
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    /* ─── REVIEWS ─── */
    .reviews-section {
      padding: 80px 5vw;
      background: var(--cream);
    }
    .reviews-section .sec-title { text-align: center; }
    .sec-sub {
      text-align: center; color: #888; font-size: 15px;
      margin-bottom: 40px; font-family: var(--body);
    }
    .reviews-summary {
      text-align: center; margin-bottom: 40px;
    }
    .reviews-avg {
      display: inline-flex; flex-direction: column; align-items: center;
      gap: 4px;
    }
    .reviews-avg-num {
      font-family: var(--display); font-size: 48px; color: var(--ink);
    }
    .reviews-avg-stars {
      color: var(--gold); font-size: 22px; letter-spacing: 2px;
    }
    .reviews-avg-count {
      font-size: 13px; color: #999; font-family: var(--body);
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }
    .review-card {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid rgba(184,151,58,.12);
      transition: box-shadow .3s;
    }
    .review-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
    }
    .review-header {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 8px;
    }
    .review-name {
      font-family: var(--display); font-size: 16px; color: var(--ink);
    }
    .review-date {
      font-size: 12px; color: #aaa; font-family: var(--body);
    }
    .review-stars {
      color: var(--gold); font-size: 16px; letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .review-text {
      font-family: var(--body); font-size: 14px; line-height: 1.6;
      color: #555; margin-bottom: 12px;
    }
    .review-product {
      display: inline-block; font-size: 11px; font-family: var(--body);
      text-transform: uppercase; letter-spacing: .08em;
      color: var(--gold); background: rgba(184,151,58,.08);
      padding: 4px 10px; border-radius: 20px;
    }
    /* Review Form */
    .review-form-wrap {
      max-width: 600px; margin: 0 auto;
      background: #fff; border-radius: 16px;
      padding: 36px; border: 1px solid rgba(184,151,58,.15);
    }
    .review-form-title {
      font-family: var(--display); font-size: 22px; color: var(--ink);
      text-align: center; margin-bottom: 24px;
    }
    .review-form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
      margin-bottom: 12px;
    }
    .review-input {
      font-family: var(--body); font-size: 14px;
      padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px;
      background: var(--cream); color: var(--ink);
      outline: none; transition: border-color .3s;
    }
    .review-input:focus { border-color: var(--gold); }
    .review-textarea { width: 100%; resize: vertical; margin-bottom: 12px; }
    .review-form-stars {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px; font-family: var(--body); font-size: 14px; color: #666;
    }
    .star-selector { display: flex; gap: 4px; }
    .star-opt {
      font-size: 24px; color: #ddd; cursor: pointer;
      transition: color .2s;
    }
    .star-opt.active { color: var(--gold); }
    .star-opt:hover { color: var(--gold); }
    .review-submit {
      width: 100%; padding: 14px; border: none; border-radius: 8px;
      background: var(--gold); color: #fff; font-family: var(--body);
      font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
      cursor: pointer; transition: background .3s;
    }
    .review-submit:hover { background: #96781e; }
    @media (max-width: 600px) {
      .review-form-row { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
    }

    /* ─── REVEAL ─── */
    .reveal { opacity: 1; transform: none; }
    .reveal.vis { opacity: 1; transform: none; }

    /* ─── KEYFRAMES ─── */
    @keyframes heroIn {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes heroFade {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes badgeIn {
      from { opacity: 0; transform: translateX(-16px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes spin {
      from { transform: translate(-50%,-50%) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg); }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1100px){
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 120px 40px 60px; }
      .hero-right { height: 380px; }
      .sec-pad { padding: 72px 40px; overflow-x: hidden; }
      .prod-grid { grid-template-columns: repeat(2,1fr); }
      .story-section { grid-template-columns: 1fr; }
      .story-visual { height: 320px; }
      .features-strip { grid-template-columns: 1fr 1fr; }
      .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
      footer { padding: 48px 40px 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width:680px){
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .hero-left { padding: 100px 20px 48px; }
      .sec-pad { padding: 56px 20px; }
      .prod-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
      .features-strip { grid-template-columns: 1fr; }
      .feat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
      .order-form { grid-template-columns: 1fr; }
      footer { padding: 40px 20px 20px; }
      .footer-top { grid-template-columns: 1fr; }
      .cart-panel { width: 100%; }
    }
  