  :root{
    --ink:#16150F; --paper:#EDE7D8; --paper-dim:#E2DBC8;
    --indigo:#2C3A63; --rust:#9C4A2E; --line: rgba(22,21,15,0.16);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{ background:var(--paper); color:var(--ink); font-family:'Space Grotesk', sans-serif; -webkit-font-smoothing:antialiased; }
  .urdu{ font-family:'Noto Nastaliq Urdu', serif; direction:rtl; }
  .mono{ font-family:'JetBrains Mono', monospace; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; border:none; background:none; }
  input, textarea{ font-family:inherit; }
  section{ scroll-margin-top:110px; }
  svg.icon{ width:20px; height:20px; stroke:var(--ink); fill:none; stroke-width:1.6; }

  /* ---------- ANNOUNCEMENT BAR ---------- */
  .announce{
    background:var(--ink); color:var(--paper); text-align:center;
    font-size:11.5px; letter-spacing:.05em; padding:9px 12px;
  }

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:40;
    background:var(--paper); border-bottom:1px solid var(--line);
    display:grid; grid-template-columns:1fr auto 1fr;
    align-items:center; padding:14px 20px;
  }
  .head-left{ display:flex; align-items:center; gap:16px; }
  .head-right{ display:flex; align-items:center; gap:16px; justify-content:flex-end; }
  .icon-btn{ display:flex; align-items:center; justify-content:center; position:relative; }
  .brand{ display:flex; justify-content:center; }
  .brand img{ height:42px; width:auto; display:block; }
  .brand-fallback{ display:flex; align-items:baseline; gap:8px; }
  .brand-fallback .urdu{ font-size:24px; font-weight:700; }
  .brand-fallback .latin{ font-size:10px; letter-spacing:.18em; text-transform:uppercase; opacity:.6; }
  .cart-count{
    position:absolute; top:-7px; right:-9px; background:var(--indigo); color:var(--paper);
    font-size:9.5px; font-family:'JetBrains Mono', monospace; width:16px; height:16px;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
  }

  /* search bar */
  .search-bar{
    max-height:0; overflow:hidden; transition:max-height .25s ease;
    background:var(--paper-dim); border-bottom:1px solid var(--line);
  }
  .search-bar.open{ max-height:70px; }
  .search-bar input{
    width:100%; border:none; background:transparent; padding:16px 20px;
    font-size:14px; color:var(--ink); outline:none;
  }

  /* mobile nav drawer */
  .nav-overlay{ position:fixed; inset:0; background:rgba(22,21,15,0.4); opacity:0; pointer-events:none; transition:opacity .2s; z-index:55; }
  .nav-overlay.open{ opacity:1; pointer-events:all; }
  .nav-drawer{
    position:fixed; top:0; left:0; height:100%; width:min(280px, 80vw);
    background:var(--paper); z-index:56; border-right:1px solid var(--line);
    transform:translateX(-100%); transition:transform .3s ease;
    display:flex; flex-direction:column; padding:22px 0;
  }
  .nav-drawer.open{ transform:translateX(0); }
  .nav-drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:0 22px 22px; border-bottom:1px solid var(--line); margin-bottom:10px; }
  .nav-drawer a{
    display:block; padding:14px 22px; font-size:15px; letter-spacing:.02em;
    border-bottom:1px solid var(--line);
  }
  .nav-drawer a:active{ background:var(--paper-dim); }

  /* ---------- HERO ---------- */
  .hero{ position:relative; max-width:900px; margin:0 auto; border-bottom:1px solid var(--line); }
  .hero-slider{ position:relative; width:100%; aspect-ratio:4/5; overflow:hidden; background:var(--paper-dim); }
  .hero-slide{ position:absolute; inset:0; opacity:0; transition:opacity .6s ease; }
  .hero-slide.active{ opacity:1; }
  .hero-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
  .hero-slide .placeholder-text{ display:flex; align-items:center; justify-content:center; height:100%; font-size:12px; opacity:.5; text-align:center; padding:20px; line-height:1.6; }
  .hero-dots{ position:absolute; bottom:16px; left:0; right:0; display:flex; justify-content:center; gap:6px; }
  .hero-dot{ width:6px; height:6px; border-radius:50%; background:rgba(237,231,216,0.5); }
  .hero-dot.active{ background:var(--paper); }
  .hero-caption{ text-align:center; padding:26px 20px 30px; }
  .hero-caption .urdu{ font-size:clamp(38px, 8vw, 56px); line-height:1; margin-bottom:10px; }
  .hero-caption .tagline{ font-size:clamp(19px,4vw,24px); font-weight:700; margin-bottom:10px; }
  .hero-caption .sub{ font-size:14px; opacity:.7; max-width:380px; margin:0 auto 18px; line-height:1.6; }
  .hero-cta{ display:inline-block; background:var(--indigo); color:var(--paper); padding:12px 26px; font-size:13px; letter-spacing:.08em; text-transform:uppercase; border-radius:2px; }

  /* ---------- TRUST STRIP ---------- */
  .trust-strip{ max-width:900px; margin:0 auto; display:grid; grid-template-columns:repeat(4, 1fr); border-bottom:1px solid var(--line); }
  .trust-item{ padding:20px 8px; text-align:center; border-left:1px solid var(--line); }
  .trust-item:first-child{ border-left:none; }
  .trust-item .t-title{ font-size:11.5px; font-weight:700; margin-bottom:3px; }
  .trust-item .t-sub{ font-size:9.5px; opacity:.55; line-height:1.3; }

  /* ---------- PRODUCTS ---------- */
  .shop{ max-width:900px; margin:0 auto; padding:60px 20px 20px; }
  .shop h2, .story h2{ font-size:12px; letter-spacing:.2em; text-transform:uppercase; opacity:.55; margin-bottom:26px; font-weight:500; text-align:center; }
  .grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:2px; background:var(--line); border:1px solid var(--line); }
  .card{ background:var(--paper); padding:24px 20px 20px; display:flex; flex-direction:column; position:relative; }
  .card-badge{ position:absolute; top:14px; left:14px; font-size:9.5px; letter-spacing:.08em; text-transform:uppercase; background:var(--rust); color:var(--paper); padding:3px 8px; border-radius:12px; }
  .tee-art{ width:100%; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; margin-bottom:16px; overflow:hidden; background:var(--paper-dim); }
  .tee-svg path.body{ fill:none; stroke:var(--ink); stroke-width:1.6; }
  .tee-word{ font-family:'Noto Nastaliq Urdu', serif; font-size:34px; fill:var(--ink); }
  .card-tag{ border:1px dashed var(--rust); padding:12px 12px 10px; display:flex; flex-direction:column; gap:4px; }
  .card-name{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:17px; letter-spacing:-0.01em; }
  .card-meaning{ font-size:12px; opacity:.6; letter-spacing:.02em; }
  .card-bottom{ display:flex; align-items:center; justify-content:space-between; margin-top:14px; }
  .price-block{ display:flex; align-items:baseline; gap:7px; }
  .price-original{ font-family:'JetBrains Mono', monospace; font-size:11.5px; opacity:.45; text-decoration:line-through; }
  .price-sale{ font-family:'JetBrains Mono', monospace; font-size:14.5px; color:var(--rust); font-weight:600; }
  .add-btn{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; border:1px solid var(--ink); padding:7px 12px; border-radius:2px; transition:background .15s, color .15s; }
  .add-btn:hover{ background:var(--ink); color:var(--paper); }
  .add-btn.added{ background:var(--indigo); border-color:var(--indigo); color:var(--paper); }
  .size-row{ display:flex; gap:6px; margin-top:12px; }
  .size-btn{ font-family:'JetBrains Mono', monospace; font-size:11px; width:28px; height:28px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; border-radius:2px; }
  .size-btn.selected{ border-color:var(--ink); background:var(--ink); color:var(--paper); }
  .no-results{ text-align:center; padding:40px 20px; opacity:.5; font-size:13px; grid-column:1/-1; background:var(--paper); }

  /* ---------- WHY DASHT ---------- */
  .why{ max-width:820px; margin:0 auto; padding:70px 20px; }
  .why-grid{ display:grid; grid-template-columns:1fr; gap:2px; background:var(--line); border:1px solid var(--line); margin-top:10px; }
  @media (min-width:640px){ .why-grid{ grid-template-columns:repeat(3,1fr); } }
  .why-item{ background:var(--paper); padding:26px 22px; text-align:center; }
  .why-item svg{ margin-bottom:12px; }
  .why-item h3{ font-size:14px; margin-bottom:8px; }
  .why-item p{ font-size:12.5px; opacity:.65; line-height:1.6; }

  /* ---------- STORY ---------- */
  .story{ max-width:760px; margin:0 auto; padding:20px 20px 80px; text-align:center; }
  .story .urdu{ font-size:40px; margin-bottom:20px; }
  .story p{ font-size:15px; line-height:1.75; opacity:.8; }
  .story p + p{ margin-top:14px; }

  /* ---------- CART DRAWER ---------- */
  .overlay{ position:fixed; inset:0; background:rgba(22,21,15,0.4); opacity:0; pointer-events:none; transition:opacity .25s; z-index:50; }
  .overlay.open{ opacity:1; pointer-events:all; }
  .drawer{
    position:fixed; top:0; right:0; height:100%; width:min(420px, 92vw);
    background:var(--paper); z-index:60; transform:translateX(100%); transition:transform .3s ease;
    display:flex; flex-direction:column; border-left:1px solid var(--line);
  }
  .drawer.open{ transform:translateX(0); }
  .drawer-view{ display:none; flex-direction:column; height:100%; }
  .drawer-view.active{ display:flex; }
  .drawer-head{ padding:22px 24px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; }
  .drawer-head h3{ font-size:13px; letter-spacing:.18em; text-transform:uppercase; }
  .close-btn{ font-size:20px; line-height:1; }
  .drawer-body{ flex:1; overflow-y:auto; padding:8px 24px; }
  .drawer-item{ display:flex; justify-content:space-between; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line); gap:10px; }
  .di-word{ font-family:'Noto Nastaliq Urdu', serif; font-size:20px; }
  .di-meta{ font-size:11px; opacity:.55; margin-top:3px; }
  .di-qty{ display:flex; align-items:center; gap:8px; margin-top:8px; }
  .qty-btn{ width:20px; height:20px; border:1px solid var(--line); font-size:12px; border-radius:2px; }
  .di-remove{ font-size:11px; opacity:.5; text-decoration:underline; margin-top:8px; display:inline-block; }
  .di-price{ font-family:'JetBrains Mono', monospace; font-size:13px; white-space:nowrap; }
  .empty-cart{ padding:40px 0; text-align:center; opacity:.5; font-size:13px; }
  .drawer-foot{ padding:18px 24px 22px; border-top:1px solid var(--line); }
  .sum-row{ display:flex; justify-content:space-between; font-size:13px; margin-bottom:8px; opacity:.75; }
  .sum-row.total-row{ font-size:14px; opacity:1; margin-top:10px; padding-top:10px; border-top:1px solid var(--line); margin-bottom:16px; }
  .sum-row .mono{ font-size:14px; }
  .total-row .mono{ font-size:16px; }
  .free-ship-note{ font-size:11px; color:var(--indigo); margin-bottom:10px; }
  .primary-btn{ display:block; width:100%; text-align:center; background:var(--indigo); color:var(--paper); padding:14px; font-size:13px; letter-spacing:.1em; text-transform:uppercase; border-radius:2px; transition:opacity .15s; }
  .primary-btn:hover{ opacity:.85; }
  .primary-btn.disabled{ opacity:.35; pointer-events:none; }
  .foot-note{ font-size:10.5px; opacity:.5; margin-top:10px; line-height:1.5; }
  .field{ margin-bottom:14px; }
  .field label{ display:block; font-size:11px; letter-spacing:.08em; text-transform:uppercase; opacity:.6; margin-bottom:6px; }
  .field input, .field textarea{ width:100%; border:1px solid var(--line); background:var(--paper); padding:10px 12px; font-size:14px; border-radius:2px; color:var(--ink); }
  .field input:focus, .field textarea:focus{ outline:2px solid var(--indigo); outline-offset:1px; }
  .field textarea{ resize:vertical; min-height:60px; }
  .back-link{ font-size:11px; letter-spacing:.05em; text-transform:uppercase; opacity:.6; margin-bottom:16px; display:inline-block; }
  .order-summary-mini{ font-size:11px; opacity:.6; margin-bottom:18px; line-height:1.7; border-bottom:1px solid var(--line); padding-bottom:14px; }
  .success-state{ padding:60px 10px; text-align:center; }
  .success-state .urdu{ font-size:40px; margin-bottom:16px; }
  .success-state h4{ font-size:16px; margin-bottom:10px; }
  .success-state p{ font-size:13px; opacity:.65; line-height:1.6; margin-bottom:24px; }

  /* ---------- POLICY MODAL ---------- */
  .policy-modal{ position:fixed; inset:0; z-index:70; display:none; align-items:center; justify-content:center; padding:20px; background:rgba(22,21,15,0.5); }
  .policy-modal.open{ display:flex; }
  .policy-box{ background:var(--paper); max-width:520px; width:100%; max-height:80vh; overflow-y:auto; padding:32px 28px; border:1px solid var(--line); position:relative; }
  .policy-box h3{ font-size:16px; margin-bottom:16px; }
  .policy-box p{ font-size:13.5px; line-height:1.75; opacity:.8; margin-bottom:12px; }
  .policy-close{ position:absolute; top:18px; right:20px; font-size:20px; }

  /* ---------- FOOTER ---------- */
  footer{ max-width:900px; margin:0 auto; padding:50px 20px 60px; border-top:1px solid var(--line); }
  .footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; margin-bottom:36px; }
  .footer-col h4{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; opacity:.5; margin-bottom:12px; }
  .footer-col a, .footer-col span{ display:block; font-size:13px; opacity:.75; margin-bottom:8px; }
  .footer-col a:hover{ opacity:1; text-decoration:underline; }
  .vip{ border-top:1px solid var(--line); padding-top:26px; margin-bottom:26px; }
  .vip h4{ font-size:12px; letter-spacing:.15em; text-transform:uppercase; margin-bottom:12px; }
  .vip-form{ display:flex; max-width:380px; border:1px solid var(--ink); }
  .vip-form input{ flex:1; border:none; background:transparent; padding:11px 14px; font-size:13px; outline:none; }
  .vip-form button{ padding:11px 18px; background:var(--ink); color:var(--paper); font-size:12px; letter-spacing:.05em; text-transform:uppercase; }
  .vip-msg{ font-size:11.5px; margin-top:8px; opacity:.7; }
  .footer-bottom{ font-size:11px; opacity:.5; letter-spacing:.03em; }

  @media (max-width:560px){
    header{ padding:12px 16px; }
    .shop, .why, .story{ padding-left:16px; padding-right:16px; }
  }

/* ---------- PRODUCT CARD LINK (homepage grid) ---------- */
.card-link{ display:block; color:inherit; text-decoration:none; }

/* ---------- PRODUCT DETAIL PAGE ---------- */
.pdp-crumb{ max-width:900px; margin:0 auto; padding:16px 20px 0; font-size:12px; opacity:.6; letter-spacing:.03em; }
.pdp-crumb a:hover{ text-decoration:underline; }
.pdp-wrap{ max-width:900px; margin:0 auto; padding:20px 20px 70px; display:grid; grid-template-columns:1fr; gap:30px; }
@media (min-width:720px){ .pdp-wrap{ grid-template-columns:1fr 1fr; gap:44px; } }
.pdp-gallery{ display:flex; flex-direction:column; gap:10px; }
.gallery-main-frame{ width:100%; aspect-ratio:1/1; border:1px solid var(--line); overflow:hidden; background:var(--paper-dim); display:flex; align-items:center; justify-content:center; }
.gallery-main-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-main-frame .tee-art{ margin:0; width:70%; }
.gallery-thumbs{ display:grid; grid-template-columns:repeat(4, 1fr); gap:8px; }
.gallery-thumb{ aspect-ratio:1/1; border:1px solid var(--line); overflow:hidden; cursor:pointer; background:var(--paper-dim); opacity:.6; transition:opacity .15s, border-color .15s; }
.gallery-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-thumb.active{ opacity:1; border-color:var(--ink); }
.pdp-info{ display:flex; flex-direction:column; }
.pdp-badge{ align-self:flex-start; font-size:9.5px; letter-spacing:.08em; text-transform:uppercase; background:var(--rust); color:var(--paper); padding:3px 8px; border-radius:12px; margin-bottom:14px; }
.pdp-word{ font-family:'Space Grotesk', sans-serif; font-weight:700; font-size:32px; line-height:1.1; margin-bottom:8px; letter-spacing:-0.01em; }
.pdp-meaning{ font-size:14px; opacity:.6; margin-bottom:16px; }
.pdp-price{ display:flex; align-items:baseline; gap:10px; margin-bottom:22px; }
.pdp-price .price-original{ font-size:15px; }
.pdp-price .price-sale{ font-size:22px; }
.pdp-section-label{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; opacity:.55; margin-bottom:10px; }
.pdp-sizes{ display:flex; gap:8px; margin-bottom:24px; }
.pdp-sizes .size-btn{ width:40px; height:40px; font-size:12px; }
.pdp-add-btn{ display:block; width:100%; text-align:center; background:var(--indigo); color:var(--paper); padding:15px; font-size:13px; letter-spacing:.1em; text-transform:uppercase; border-radius:2px; margin-bottom:24px; transition:opacity .15s; }
.pdp-add-btn:hover{ opacity:.85; }
.pdp-add-btn.added{ background:var(--ink); }
.pdp-desc{ font-size:14px; line-height:1.75; opacity:.75; margin-bottom:20px; }
.pdp-meta-list{ font-size:12.5px; opacity:.6; line-height:2; border-top:1px solid var(--line); padding-top:16px; }
.pdp-features{ list-style:none; margin:0 0 20px; padding:0; }
.pdp-features li{ font-size:13.5px; opacity:.75; line-height:1.9; padding-left:22px; position:relative; }
.pdp-features li::before{ content:"✔"; position:absolute; left:0; color:var(--rust); font-size:11px; top:3px; }
.size-chart-link{ font-size:11px; text-decoration:underline; opacity:.7; text-transform:none; letter-spacing:0; font-weight:400; margin-left:8px; cursor:pointer; }
.size-chart-img{ width:100%; display:block; border:1px solid var(--line); }
