
  :root{
    --cream:#FAF6EF;
    --maroon:#7A1F2B;
    --maroon-dark:#5C141D;
    --gold:#D4A24C;
    --ink:#2B2118;
    --sand:#EFE3D0;
    --sand-line: rgba(43,33,24,0.12);
  }

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

  html{scroll-behavior:smooth;}

  body{
    background:var(--cream);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  h1,h2,h3,.display{
    font-family:'Fraunces',serif;
    font-weight:600;
    letter-spacing:-0.01em;
  }

  .eyebrow{
    font-family:'Inter',sans-serif;
    text-transform:uppercase;
    letter-spacing:0.18em;
    font-size:0.72rem;
    font-weight:600;
    color:var(--maroon);
  }

  a{color:inherit;text-decoration:none;}

  img{display:block;max-width:100%;}

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- DEMO BANNER ---------- */
  .demo-banner{
    background:var(--ink);
    color:var(--cream);
    text-align:center;
    font-size:0.82rem;
    padding:9px 16px;
    letter-spacing:0.02em;
  }
  .demo-banner strong{color:var(--gold);}

  /* ---------- BLOCK PRINT DIVIDER (signature element) ---------- */
  .block-divider{
    height:14px;
    width:100%;
    background-image: repeating-linear-gradient(
        45deg,
        var(--maroon) 0px, var(--maroon) 7px,
        transparent 7px, transparent 14px
      );
    position:relative;
  }
  .block-divider::before, .block-divider::after{
    content:"";
    position:absolute;
    top:0; bottom:0;
    width:100%;
  }
  .block-divider.gold{
    background-image: repeating-linear-gradient(
        45deg,
        var(--gold) 0px, var(--gold) 7px,
        transparent 7px, transparent 14px
      );
    height:10px;
  }

  .motif-row{
    display:flex;
    height:18px;
    width:100%;
    overflow:hidden;
  }
  .motif-row span{
    flex:1;
    position:relative;
  }
  .motif-row span::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:11px;
    height:11px;
    background:var(--maroon);
    transform:translate(-50%,-50%) rotate(45deg);
  }
  .motif-row.alt span::before{
    background:var(--gold);
    width:8px;height:8px;
  }

  /* ---------- HEADER ---------- */
  header{
    background:var(--cream);
    padding:22px 0;
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid var(--sand-line);
  }
  .nav-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .logo{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .logo-mark{
    width:42px;height:42px;
    border-radius:50%;
    background:var(--maroon);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-family:'Fraunces',serif;
    font-weight:700;
    font-size:1.2rem;
    flex-shrink:0;
    overflow:hidden;
    white-space:nowrap;
    line-height:1;
    text-transform:uppercase;
  }
  .logo-text .name{
    font-family:'Fraunces',serif;
    font-weight:700;
    font-size:1.18rem;
    line-height:1.1;
    color:var(--maroon-dark);
  }
  .logo-text .loc{
    font-size:0.7rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--ink);
    opacity:0.6;
  }
  nav ul{
    list-style:none;
    display:flex;
    gap:36px;
    font-size:0.92rem;
    font-weight:500;
  }
  nav ul li a{
    position:relative;
    padding-bottom:4px;
  }
  nav ul li a::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:0%;
    height:2px;
    background:var(--maroon);
    transition:width 0.25s ease;
  }
  nav ul li a:hover::after{width:100%;}

  .header-cta{
    display:flex;
    gap:14px;
    align-items:center;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:11px 22px;
    border-radius:3px;
    font-weight:600;
    font-size:0.88rem;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:transform 0.15s ease, background 0.2s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{
    background:var(--maroon);
    color:var(--cream);
  }
  .btn-primary:hover{background:var(--maroon-dark);}
  .btn-outline{
    border-color:var(--ink);
    color:var(--ink);
  }
  .btn-outline:hover{background:var(--ink);color:var(--cream);}
  .cart-icon{
    position:relative;
    font-size:1.25rem;
  }
  .cart-icon .count{
    position:absolute;
    top:-8px;right:-10px;
    background:var(--gold);
    color:var(--ink);
    font-size:0.65rem;
    font-weight:700;
    width:18px;height:18px;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
  }

  .mobile-toggle{display:none;background:none;border:none;font-size:1.6rem;color:var(--maroon-dark);cursor:pointer;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:78px 0 70px;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-120px; right:-160px;
    width:480px;height:480px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,162,76,0.28), transparent 70%);
    z-index:0;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
    position:relative;
    z-index:1;
  }
  .hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
  }
  .hero-eyebrow .dot{
    width:6px;height:6px;background:var(--gold);border-radius:50%;
  }
  .hero h1{
    font-size:3.4rem;
    line-height:1.06;
    color:var(--maroon-dark);
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--gold);
    font-weight:500;
  }
  .hero p.lede{
    font-size:1.08rem;
    line-height:1.65;
    color:var(--ink);
    opacity:0.78;
    max-width:480px;
    margin-bottom:34px;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    margin-bottom:42px;
  }
  .hero-stats{
    display:flex;
    gap:38px;
  }
  .hero-stats div .num{
    font-family:'Fraunces',serif;
    font-size:1.7rem;
    font-weight:600;
    color:var(--maroon);
    display:block;
  }
  .hero-stats div .lbl{
    font-size:0.76rem;
    text-transform:uppercase;
    letter-spacing:0.07em;
    opacity:0.65;
  }

  .hero-visual{
    position:relative;
  }
  .hero-visual .frame{
    position:relative;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 30px 60px -20px rgba(43,33,24,0.35);
  }
  .hero-visual .frame img{
    width:100%;
    height:520px;
    object-fit:cover;
  }
  .hero-tag{
    position:absolute;
    bottom:-22px;
    left:-22px;
    background:var(--cream);
    border:1px solid var(--sand-line);
    border-radius:6px;
    padding:16px 20px;
    box-shadow:0 14px 30px -12px rgba(43,33,24,0.25);
    display:flex;
    align-items:center;
    gap:12px;
    max-width:230px;
  }
  .hero-tag .icon{
    width:38px;height:38px;
    border-radius:50%;
    background:var(--maroon);
    color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-size:1.1rem;
    flex-shrink:0;
  }
  .hero-tag .txt strong{
    display:block;
    font-size:0.85rem;
  }
  .hero-tag .txt span{
    font-size:0.74rem;
    opacity:0.65;
  }

  /* ---------- MARQUEE ---------- */
  .marquee-band{
    background:var(--maroon);
    color:var(--cream);
    overflow:hidden;
    padding:13px 0;
  }
  .marquee-track{
    display:flex;
    white-space:nowrap;
    animation:scroll-left 28s linear infinite;
    width:max-content;
  }
  .marquee-track span{
    font-family:'Fraunces',serif;
    font-style:italic;
    font-size:1rem;
    padding:0 28px;
    opacity:0.92;
  }
  .marquee-track span::after{
    content:"✦";
    margin-left:28px;
    color:var(--gold);
    font-style:normal;
  }
  @keyframes scroll-left{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }

  /* ---------- CATEGORY STRIP ---------- */
  .section{
    padding:88px 0;
  }
  .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:48px;
    gap:24px;
  }
  .section-head h2{
    font-size:2.1rem;
    color:var(--maroon-dark);
    margin-top:10px;
  }
  .section-head p{
    max-width:380px;
    opacity:0.7;
    font-size:0.95rem;
    line-height:1.55;
  }

  .cat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  .cat-card{
    position:relative;
    border-radius:6px;
    overflow:hidden;
    aspect-ratio:3/4;
    cursor:pointer;
  }
  .cat-card img{
    width:100%;height:100%;
    object-fit:cover;
    transition:transform 0.5s ease;
  }
  .cat-card:hover img{transform:scale(1.07);}
  .cat-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(43,33,24,0.78) 0%, rgba(43,33,24,0.05) 55%);
  }
  .cat-card .label{
    position:absolute;
    bottom:18px;left:18px;right:18px;
    color:var(--cream);
    z-index:2;
  }
  .cat-card .label .swatch-no{
    font-size:0.7rem;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold);
    display:block;
    margin-bottom:4px;
  }
  .cat-card .label h3{
    font-size:1.25rem;
    font-weight:600;
  }
  .cat-card .label span.count{
    font-size:0.78rem;
    opacity:0.85;
  }

  /* ---------- PRODUCTS ---------- */
  .prod-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
  }
  .prod-card{
    background:var(--sand);
    border-radius:8px;
    overflow:hidden;
    transition:transform 0.25s ease, box-shadow 0.25s ease;
  }
  .prod-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 40px -18px rgba(43,33,24,0.28);
  }
  .prod-img{
    position:relative;
    aspect-ratio:1/1.1;
    overflow:hidden;
  }
  .prod-img img{width:100%;height:100%;object-fit:cover;}
  .prod-badge{
    position:absolute;
    top:12px;left:12px;
    background:var(--maroon);
    color:var(--cream);
    font-size:0.68rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.05em;
    padding:5px 10px;
    border-radius:3px;
  }
  .prod-wish{
    position:absolute;
    top:12px;right:12px;
    width:34px;height:34px;
    border-radius:50%;
    background:rgba(250,246,239,0.9);
    display:flex;align-items:center;justify-content:center;
    font-size:0.95rem;
    cursor:pointer;
  }
  .prod-body{
    padding:18px 18px 22px;
  }
  .prod-cat{
    font-size:0.7rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:var(--maroon);
    font-weight:600;
    margin-bottom:6px;
    display:block;
  }
  .prod-body h3{
    font-size:1.02rem;
    font-weight:600;
    margin-bottom:8px;
    font-family:'Inter',sans-serif;
  }
  .prod-price{
    display:flex;
    align-items:baseline;
    gap:8px;
    margin-bottom:14px;
  }
  .prod-price .now{
    font-family:'Fraunces',serif;
    font-weight:600;
    font-size:1.18rem;
    color:var(--maroon-dark);
  }
  .prod-price .old{
    font-size:0.85rem;
    text-decoration:line-through;
    opacity:0.45;
  }
  .prod-btn{
    width:100%;
    padding:10px;
    background:transparent;
    border:1.4px solid var(--maroon);
    color:var(--maroon);
    border-radius:4px;
    font-weight:600;
    font-size:0.85rem;
    cursor:pointer;
    transition:background 0.2s ease, color 0.2s ease;
  }
  .prod-btn:hover{
    background:var(--maroon);
    color:var(--cream);
  }

  /* ---------- ABOUT / LEGACY ---------- */
  .about-section{
    background:var(--sand);
  }
  .about-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
    align-items:center;
  }
  .about-visual{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .about-visual img{
    border-radius:6px;
    width:100%;
    height:230px;
    object-fit:cover;
  }
  .about-visual img:first-child{
    grid-row:span 2;
    height:480px;
  }
  .about-text .eyebrow{margin-bottom:14px;}
  .about-text h2{
    font-size:2.2rem;
    color:var(--maroon-dark);
    margin-bottom:20px;
    line-height:1.18;
  }
  .about-text p{
    opacity:0.78;
    line-height:1.7;
    margin-bottom:24px;
    max-width:480px;
  }
  .about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:30px;
  }
  .about-point{
    display:flex;
    gap:12px;
    align-items:flex-start;
  }
  .about-point .ic{
    width:36px;height:36px;
    border-radius:50%;
    background:var(--maroon);
    color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
    font-size:0.95rem;
  }
  .about-point strong{display:block;font-size:0.92rem;margin-bottom:2px;}
  .about-point span{font-size:0.8rem;opacity:0.65;}

  /* ---------- TESTIMONIALS ---------- */
  .testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  .testi-card{
    background:var(--cream);
    border:1px solid var(--sand-line);
    border-radius:8px;
    padding:30px 26px;
  }
  .testi-stars{color:var(--gold);font-size:0.95rem;margin-bottom:16px;letter-spacing:2px;}
  .testi-card p{
    font-size:0.94rem;
    line-height:1.65;
    opacity:0.82;
    margin-bottom:22px;
    font-family:'Fraunces',serif;
    font-style:italic;
  }
  .testi-person{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .testi-avatar{
    width:42px;height:42px;
    border-radius:50%;
    background:var(--maroon);
    color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-family:'Fraunces',serif;
    font-weight:700;
  }
  .testi-person strong{display:block;font-size:0.88rem;}
  .testi-person span{font-size:0.76rem;opacity:0.6;}

  /* ---------- NEWSLETTER / CTA ---------- */
  .cta-band{
    background:var(--maroon);
    color:var(--cream);
    position:relative;
    overflow:hidden;
  }
  .cta-band::before{
    content:"";
    position:absolute;
    bottom:-140px; left:-100px;
    width:380px;height:380px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,162,76,0.22), transparent 70%);
  }
  .cta-inner{
    text-align:center;
    max-width:620px;
    margin:0 auto;
    position:relative;
    z-index:1;
  }
  .cta-inner h2{
    font-size:2.3rem;
    margin-bottom:16px;
  }
  .cta-inner p{
    opacity:0.85;
    margin-bottom:30px;
    font-size:1rem;
  }
  .cta-form{
    display:flex;
    gap:10px;
    justify-content:center;
    max-width:440px;
    margin:0 auto;
  }
  .cta-form input{
    flex:1;
    padding:13px 18px;
    border-radius:4px;
    border:none;
    font-family:'Inter',sans-serif;
    font-size:0.92rem;
  }
  .cta-form button{
    background:var(--gold);
    color:var(--ink);
    border:none;
    padding:13px 24px;
    border-radius:4px;
    font-weight:700;
    cursor:pointer;
    font-size:0.92rem;
  }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--ink);
    color:var(--cream);
    padding:64px 0 28px;
  }
  .foot-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:48px;
    margin-bottom:48px;
  }
  .foot-brand .logo-text .name{color:var(--gold);}
  .foot-brand p{
    opacity:0.6;
    font-size:0.88rem;
    line-height:1.6;
    margin-top:16px;
    max-width:280px;
  }
  .foot-col h4{
    font-size:0.84rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    margin-bottom:18px;
    color:var(--gold);
  }
  .foot-col ul{list-style:none;}
  .foot-col ul li{margin-bottom:11px;font-size:0.88rem;opacity:0.75;}
  .foot-col address{font-style:normal;font-size:0.88rem;opacity:0.75;line-height:1.7;}
  .foot-bottom{
    border-top:1px solid rgba(250,246,239,0.12);
    padding-top:24px;
    display:flex;
    justify-content:space-between;
    font-size:0.78rem;
    opacity:0.55;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{order:-1;}
    .hero h1{font-size:2.5rem;}
    .cat-grid{grid-template-columns:repeat(2,1fr);}
    .prod-grid{grid-template-columns:repeat(2,1fr);}
    .about-grid{grid-template-columns:1fr;}
    .about-visual img:first-child{height:300px;}
    .testi-grid{grid-template-columns:1fr;}
    .foot-grid{grid-template-columns:1fr 1fr;}
    nav{display:none;}
    .header-cta .btn-outline{display:none;}
  }
  @media (max-width:600px){
    .wrap{padding:0 20px;}
    .hero{padding:48px 0 40px;}
    .hero h1{font-size:2rem;}
    .hero-stats{gap:24px;}
    .cat-grid{grid-template-columns:1fr 1fr;gap:14px;}
    .prod-grid{grid-template-columns:1fr 1fr;gap:14px;}
    .section{padding:56px 0;}
    .section-head{flex-direction:column;align-items:flex-start;}
    .about-points{grid-template-columns:1fr;}
    .cta-form{flex-direction:column;}
    .foot-grid{grid-template-columns:1fr;gap:32px;}
    .foot-bottom{flex-direction:column;gap:8px;}
  }

/* ================= ADDITIONS FOR FULL STORE (pages beyond the demo) ================= */
.page-section{padding:56px 0;}
.crumbs{font-size:0.82rem;color:rgba(43,33,24,0.6);margin-bottom:18px;}
.crumbs a{color:var(--maroon);}
.page-title{font-size:2rem;margin-bottom:8px;}
.muted{color:rgba(43,33,24,0.62);}
.empty-box{background:var(--sand);border:1px dashed var(--sand-line);padding:48px 24px;text-align:center;border-radius:10px;}

/* product detail */
.pd-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:48px;align-items:start;}
.pd-main-img{border-radius:12px;overflow:hidden;border:1px solid var(--sand-line);background:#fff;}
.pd-main-img img{width:100%;aspect-ratio:4/5;object-fit:cover;}
.pd-thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap;}
.pd-thumbs img{width:72px;height:88px;object-fit:cover;border-radius:8px;border:2px solid transparent;cursor:pointer;}
.pd-thumbs img.on{border-color:var(--maroon);}
.pd-cat{color:var(--maroon);font-size:0.78rem;text-transform:uppercase;letter-spacing:0.14em;font-weight:600;}
.pd-name{font-size:2.1rem;margin:6px 0 10px;}
.pd-price{display:flex;align-items:baseline;gap:12px;margin:10px 0 18px;}
.pd-price .now{font-size:1.7rem;font-weight:700;color:var(--maroon);}
.pd-price .old{text-decoration:line-through;color:rgba(43,33,24,0.4);}
.pd-price .off{background:var(--gold);color:var(--ink);font-size:0.72rem;font-weight:700;padding:3px 8px;border-radius:99px;}
.pd-desc{line-height:1.75;color:rgba(43,33,24,0.8);margin-bottom:20px;white-space:pre-line;}
.size-row{display:flex;gap:8px;flex-wrap:wrap;margin:8px 0 20px;}
.size-row label{cursor:pointer;}
.size-row input{display:none;}
.size-row span{display:inline-block;padding:8px 16px;border:1.5px solid var(--sand-line);border-radius:8px;font-weight:600;font-size:0.9rem;background:#fff;}
.size-row input:checked + span{background:var(--maroon);color:var(--cream);border-color:var(--maroon);}
.qty-row{display:flex;align-items:center;gap:14px;margin-bottom:22px;}
.qty-row input{width:80px;padding:10px;border:1.5px solid var(--sand-line);border-radius:8px;font-size:1rem;text-align:center;}
.pd-actions{display:flex;gap:12px;flex-wrap:wrap;}
.stock-note{font-size:0.85rem;margin:8px 0 16px;}
.stock-note.ok{color:#2e6b34;} .stock-note.low{color:#a54708;} .stock-note.out{color:#9c2b2b;}

/* cart & checkout */
.cart-table{width:100%;border-collapse:collapse;background:#fff;border:1px solid var(--sand-line);border-radius:12px;overflow:hidden;}
.cart-table th{background:var(--sand);text-align:left;padding:12px 16px;font-size:0.78rem;text-transform:uppercase;letter-spacing:0.1em;}
.cart-table td{padding:14px 16px;border-top:1px solid var(--sand-line);vertical-align:middle;}
.cart-item{display:flex;align-items:center;gap:14px;}
.cart-item img{width:58px;height:70px;object-fit:cover;border-radius:8px;}
.cart-item .nm{font-weight:600;}
.cart-item .sz{font-size:0.8rem;color:rgba(43,33,24,0.55);}
.qty-form{display:flex;gap:6px;align-items:center;}
.qty-form input{width:62px;padding:7px;border:1.5px solid var(--sand-line);border-radius:7px;text-align:center;}
.link-btn{background:none;border:none;color:var(--maroon);cursor:pointer;font-size:0.85rem;text-decoration:underline;padding:0;}
.summary-card{background:#fff;border:1px solid var(--sand-line);border-radius:12px;padding:24px;}
.summary-card .row{display:flex;justify-content:space-between;padding:7px 0;font-size:0.95rem;}
.summary-card .row.total{border-top:1.5px solid var(--sand-line);margin-top:8px;padding-top:14px;font-weight:700;font-size:1.15rem;}
.two-col{display:grid;grid-template-columns:1.6fr 1fr;gap:32px;align-items:start;}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-grid .full{grid-column:1 / -1;}
.field label{display:block;font-size:0.8rem;font-weight:600;margin-bottom:6px;letter-spacing:0.02em;}
.field input,.field textarea,.field select{width:100%;padding:11px 13px;border:1.5px solid var(--sand-line);border-radius:8px;font:inherit;background:#fff;}
.field textarea{min-height:84px;resize:vertical;}
.err-box{background:#fbe9e9;border:1px solid #e5b4b4;color:#8c2222;padding:12px 16px;border-radius:8px;margin-bottom:18px;font-size:0.9rem;}
.ok-box{background:#e9f5ea;border:1px solid #b8dcbc;color:#25592b;padding:12px 16px;border-radius:8px;margin-bottom:18px;font-size:0.9rem;}

.ship-option{display:flex;gap:12px;align-items:flex-start;border:1.5px solid var(--sand-line);border-radius:10px;padding:14px 16px;margin-bottom:10px;cursor:pointer;background:#fff;}
.ship-option input{margin-top:4px;accent-color:var(--maroon);}
.ship-option:has(input:checked){border-color:var(--maroon);background:#fdf8f1;}
.ship-option .t{font-weight:600;}
.ship-option .d{font-size:0.83rem;color:rgba(43,33,24,0.62);margin-top:2px;}
.ship-option .c{margin-left:auto;font-weight:700;color:var(--maroon);white-space:nowrap;}

/* order status timeline */
.status-pill{display:inline-block;padding:4px 12px;border-radius:99px;font-size:0.78rem;font-weight:600;background:var(--sand);}
.status-pill.New{background:#fdf1dc;color:#8a5a00;}
.status-pill.Confirmed{background:#e3ecfb;color:#1e4e9c;}
.status-pill.Packed{background:#efe3fb;color:#5b2a9c;}
.status-pill[class*="Out"]{background:#dcf3f5;color:#0f6a73;}
.status-pill.Delivered{background:#e2f3e4;color:#256b2d;}
.status-pill.Cancelled{background:#fbe4e4;color:#9c2323;}

@media (max-width: 900px){
  .pd-grid,.two-col{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .cart-table th:nth-child(3),.cart-table td:nth-child(3){display:none;}
}

/* ---------- FOOTER SOCIAL ---------- */
.foot-social{display:flex;flex-wrap:wrap;gap:14px;margin-top:14px;}
.foot-social a{font-size:0.85rem;font-weight:600;color:var(--gold);text-decoration:none;border:1px solid var(--sand-line);padding:5px 12px;border-radius:20px;transition:all .2s;}
.foot-social a:hover{background:var(--gold);color:var(--cream);border-color:var(--gold);}

/* ================= PROMO / OFFER BANNERS ================= */
.promo-hero{position:relative;width:100%;overflow:hidden;background:var(--sand);}
.promo-track{display:flex;transition:transform .5s ease;}
.promo-slide{min-width:100%;position:relative;}
.promo-link{display:block;color:inherit;text-decoration:none;}
.promo-img{width:100%;height:auto;max-height:520px;object-fit:cover;display:block;}
.promo-img.only-mobile{display:none;}
.promo-overlay{position:absolute;inset:0;display:flex;align-items:center;background:linear-gradient(90deg,rgba(0,0,0,0.42) 0%,rgba(0,0,0,0.15) 45%,transparent 70%);}
.promo-copy{color:#fff;}
.promo-copy h2{font-family:'Fraunces',serif;font-size:clamp(1.6rem,3.6vw,3rem);line-height:1.05;margin:0 0 10px;max-width:620px;text-shadow:0 2px 12px rgba(0,0,0,.35);}
.promo-copy p{font-size:clamp(.95rem,1.6vw,1.2rem);margin:0 0 18px;max-width:520px;text-shadow:0 1px 8px rgba(0,0,0,.4);}
.promo-btn{display:inline-block;}
.promo-nav{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border:none;border-radius:50%;background:rgba(255,255,255,.85);color:var(--maroon);font-size:1.6rem;line-height:1;cursor:pointer;z-index:3;transition:background .2s;display:flex;align-items:center;justify-content:center;}
.promo-nav:hover{background:#fff;}
.promo-nav.prev{left:14px;}
.promo-nav.next{right:14px;}
.promo-dots{position:absolute;bottom:14px;left:0;right:0;display:flex;gap:8px;justify-content:center;z-index:3;}
.promo-dot{width:10px;height:10px;border-radius:50%;border:none;background:rgba(255,255,255,.55);cursor:pointer;padding:0;transition:background .2s,transform .2s;}
.promo-dot.on{background:#fff;transform:scale(1.25);}
@media(max-width:768px){
  .promo-img{max-height:none;}
  .promo-img.only-mobile{display:block;}
  .promo-img.only-desktop{display:none;}
  .promo-overlay{background:linear-gradient(0deg,rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.1) 60%,transparent 100%);align-items:flex-end;padding-bottom:34px;}
  .promo-nav{width:36px;height:36px;font-size:1.3rem;}
}

/* ---------- CART QTY STEPPER + FROM LABEL ---------- */
.qty-stepper{display:inline-flex;align-items:center;border:1px solid var(--sand-line);border-radius:8px;overflow:hidden;}
.qty-stepper button{width:32px;height:34px;border:none;background:var(--sand);color:var(--maroon);font-size:1.1rem;cursor:pointer;line-height:1;}
.qty-stepper button:hover{background:var(--gold);color:#fff;}
.qty-stepper .qs-input{width:46px;height:34px;border:none;border-left:1px solid var(--sand-line);border-right:1px solid var(--sand-line);text-align:center;font-size:.95rem;-moz-appearance:textfield;}
.qty-stepper .qs-input::-webkit-outer-spin-button,.qty-stepper .qs-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.prod-price .from-label,.pd-price .from-label{font-size:.8rem;color:var(--ink);opacity:.6;font-weight:500;}
