/* =====================================================
   PrintShubh — Base · Tokens · Nav · Buttons · Utilities
   ===================================================== */

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

:root {
    --bg-1: #f8f5ef;
    --bg-2: #ffffff;
    --ink: #0d0d0d;
    --ink-soft: #1a1a1a;
    --muted: #666666;
    --line: rgba(13, 13, 13, 0.08);
    --gold: #C49A54;
    --gold-soft: rgba(196, 154, 84, 0.18);
    --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.10);
    --shadow-card-hover: 0 30px 70px rgba(0, 0, 0, 0.14);
    --shadow-btn: 0 14px 30px rgba(13, 13, 13, 0.18);
    --radius-img: 28px;
    --radius-pill: 999px;
    --ease: cubic-bezier(.2,.8,.2,1);
    --pad-hero: 120px;
    --pad-section: 70px;
    --pad-gallery: 140px;
  }

html, body {
    background: linear-gradient(135deg, #f8f5ef, #ffffff);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
  }

/* ---------- Page Loading Fade ---------- */

body {
    opacity: 0;
    transition: opacity 0.9s ease;
  }

body.loaded {
    opacity: 1;
  }

.page-loader {
    position: fixed;
    inset: 0;
    background: #f8f5ef;
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
  }

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }

.loader-mark {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--ink);
    position: relative;
    overflow: hidden;
  }

.loader-mark span { color: var(--gold); }

.loader-mark::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    animation: loaderLine 1.4s cubic-bezier(.2,.8,.2,1) forwards;
  }

@keyframes loaderLine {
    0%   { width: 0;   left: 0; }
    50%  { width: 100%; left: 0; }
    100% { width: 0;   left: 100%; }
  }

/* ---------- Sticky Luxury Navigation ---------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: padding 0.4s var(--ease),
                background 0.4s ease,
                backdrop-filter 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
  }

.nav.scrolled {
    padding: 14px 6vw;
    background: rgba(248, 245, 239, 0.78);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(13,13,13,0.05);
  }

.brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--ink);
  }

.brand span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    transition: color .25s ease;
  }

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width .35s var(--ease);
  }

.nav-links a:hover { color: var(--ink); }

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: transform .3s var(--ease), box-shadow .3s ease;
  }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
  }

/* ---------- Hero Section ---------- */

/* subtle decorative orbs */

/* ---------- Left content ---------- */

.content {
    max-width: 520px;
  }

/* CTA buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease, color .3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
  }

.btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 26px rgba(13, 13, 13, 0.18);
  }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(13, 13, 13, 0.25);
  }

.btn-primary .arrow {
    transition: transform .3s ease;
    display: inline-block;
  }

.btn-primary:hover .arrow {
    transform: translateX(4px);
  }

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(13,13,13,0.18);
  }

.btn-secondary:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13,13,13,0.18);
  }

/* trust line */

/* ---------- Right visual — Cinematic Video ---------- */

/* Cinematic dark luxury overlay */

/* Floating review card */

/* Floating premium tag (top-right) */

/* ---------- Responsive ---------- */

/* Reveal animation (hero) */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise .9s cubic-bezier(.2,.8,.2,1) forwards;
  }

.reveal.d1 { animation-delay: .05s; }

.reveal.d2 { animation-delay: .15s; }

.reveal.d3 { animation-delay: .25s; }

.reveal.d4 { animation-delay: .35s; }

.reveal.d5 { animation-delay: .45s; }

.reveal.d6 { animation-delay: .55s; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
  }

/* ---------- Universal Scroll Reveal ---------- */

.on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
    will-change: opacity, transform;
  }

.on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
  }

/* Stagger for grouped children */

.stagger > .on-scroll.in-view:nth-child(1) { transition-delay: 0.05s; }

.stagger > .on-scroll.in-view:nth-child(2) { transition-delay: 0.15s; }

.stagger > .on-scroll.in-view:nth-child(3) { transition-delay: 0.25s; }

.stagger > .on-scroll.in-view:nth-child(4) { transition-delay: 0.35s; }

.stagger > .on-scroll.in-view:nth-child(5) { transition-delay: 0.45s; }

.stagger > .on-scroll.in-view:nth-child(6) { transition-delay: 0.55s; }

.stagger > .on-scroll.in-view:nth-child(7) { transition-delay: 0.65s; }

.stagger > .on-scroll.in-view:nth-child(8) { transition-delay: 0.75s; }

/* =====================================================
     SECTION 2 — Why Choose PrintShubh
     ===================================================== */

/* 4-card grid */

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f6ecd8, #ece0c2);
    display: grid;
    place-items: center;
    color: var(--gold);
    margin-bottom: 28px;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
  }

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
  }

.feature-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
  }

.feature-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(176,138,74,0.45);
    letter-spacing: 1px;
    z-index: 2;
  }

/* Responsive grid */

/* =====================================================
     SECTION 3 — Explore Our Print Collection
     ===================================================== */

/* Top row — 2 large cards */

/* Bottom row — 3 small cards */

/* Generic card */

.cat-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
    display: block;
    background: #efe6d3;
  }

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
  }

.cat-card .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
  }

.cat-card:hover img { transform: scale(1.07); }

/* Soft gradient overlay */

.cat-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 45%, transparent 70%);
    z-index: 1;
    transition: opacity .35s ease;
  }

/* Floating text content */

.cat-card .floating {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
  }

.cat-card .cat-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
  }

.cat-card .cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

.cat-card .cat-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 380px;
    margin-bottom: 18px;
  }

.cat-card .cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    transition: gap .3s ease, border-color .3s ease;
  }

.cat-card:hover .cat-cta {
    gap: 14px;
    border-color: #fff;
  }

/* Large card sizing */

.cat-card.large { aspect-ratio: 16 / 11; }

.cat-card.large .cat-title { font-size: 36px; }

.cat-card.large .cat-text { font-size: 15px; }

/* Small card sizing */

.cat-card.small { aspect-ratio: 4 / 4.6; }

.cat-card.small .cat-title { font-size: 24px; }

.cat-card.small .floating { left: 24px; right: 24px; bottom: 24px; }

.cat-card.small .cat-text {
    font-size: 13.5px;
    margin-bottom: 0;
  }

/* Responsive */

/* ========= Shared section header utilities ========= */

.sec-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding: 0 18px;
  }

.sec-label.center::before,
  .sec-label.center::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(196,154,84,0.35);
  }

.sec-label.center::before { left: -30px; }

.sec-label.center::after  { right: -30px; }

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--ink);
    margin-bottom: 22px;
  }

.sec-title .accent { color: var(--gold); font-style: italic; }

.sec-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 620px;
  }

.sec-header-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
  }

.sec-header-center .sec-desc { margin: 0 auto; }

/* =====================================================
     SECTION 4 — How It Works
     ===================================================== */

.hw-inner { max-width: 1240px; margin: 0 auto; }

.hw-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
  }

.hw-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(196,154,84,0.45) 20%,
      rgba(196,154,84,0.45) 80%,
      transparent 100%);
    z-index: 0;
  }

.hw-step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

.hw-step-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(196,154,84,0.30);
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform .35s ease, box-shadow .35s ease;
  }

.hw-step:hover .hw-step-num {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(196,154,84,0.20);
  }

.hw-step-num svg { color: var(--gold); }

.hw-step-num::after {
    content: attr(data-step);
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--gold);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
  }

.hw-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin-bottom: 10px;
  }

.hw-step-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 220px;
    margin: 0 auto;
  }

/* =====================================================
     SECTION 5 — Best Selling Products
     ===================================================== */

.product-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5ede0;
  }

.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s ease;
  }

.product-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
  }

.product-tag.gold { background: var(--gold); }

.product-body {
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

.product-cat {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
  }

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.25;
  }

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
  }

.product-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
  }

.product-price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
  }

.product-cta {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #f8f5ef;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 1px solid rgba(13,13,13,0.08);
    transition: all .3s ease;
  }

/* =====================================================
     SECTION 5.5 — Room Inspiration Gallery (Masonry)
     ===================================================== */

.inspiration {
    background: #faf8f4;
    padding: var(--pad-gallery) 6vw;
    position: relative;
    overflow: hidden;
  }

.inspiration::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -150px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,84,0.05), transparent 70%);
    pointer-events: none;
  }

.inspiration-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
  }

.inspiration-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 70px;
    flex-wrap: wrap;
  }

.inspiration-header-left { max-width: 640px; }

/* Pinterest-style masonry */

.masonry {
    column-count: 3;
    column-gap: 22px;
  }

.masonry-item {
    display: block;
    position: relative;
    margin-bottom: 22px;
    border-radius: 24px;
    overflow: hidden;
    break-inside: avoid;
    cursor: pointer;
    background: #efe6d3;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
    text-decoration: none;
    color: inherit;
  }

.masonry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.14);
  }

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.4s var(--ease);
  }

.masonry-item:hover img { transform: scale(1.06); }

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 50%, transparent 75%);
    opacity: 0;
    transition: opacity 0.45s ease;
  }

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s ease;
    z-index: 2;
  }

.masonry-item:hover .masonry-caption {
    transform: translateY(0);
    opacity: 1;
  }

.masonry-caption .m-tag {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.28);
    margin-bottom: 10px;
  }

.masonry-caption .m-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

/* =====================================================
     SECTION 6 — Testimonials
     ===================================================== */

.t-inner { max-width: 1240px; margin: 0 auto; }

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

.t-card {
    background: #fff;
    border-radius: 24px;
    padding: 38px 32px 32px;
    border: 1px solid rgba(13,13,13,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
  }

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  }

.t-quote {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 0.6;
    color: rgba(196,154,84,0.18);
    position: absolute;
    top: 30px; right: 30px;
    pointer-events: none;
  }

.t-stars {
    display: flex;
    gap: 4px;
    color: #f5b400;
    margin-bottom: 18px;
    font-size: 16px;
  }

.t-text {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 26px;
    position: relative;
  }

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(13,13,13,0.08);
  }

.t-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #efe6d3, #d8c39a);
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    flex-shrink: 0;
  }

.t-author-info { display: flex; flex-direction: column; }

.t-author-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }

.t-author-loc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* =====================================================
     SECTION 7 — Studio Process / Behind The Scenes
     ===================================================== */

.studio-bts {
    background: #ffffff;
    padding: var(--pad-section) 6vw;
  }

.studio-inner { max-width: 1320px; margin: 0 auto; }

.studio-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 290px 290px;
    gap: 22px;
  }

.studio-tile {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #efe6d3;
    box-shadow: 0 18px 50px rgba(0,0,0,0.07);
    transition: transform .4s ease;
  }

.studio-tile:hover { transform: scale(1.02); }

.studio-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

.studio-tile:hover img { transform: scale(1.06); }

.studio-tile.large { grid-row: span 2; }

.tile-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11.5px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
  }

/* =====================================================
     SECTION 8 — FAQ
     ===================================================== */

.faq {
    background: linear-gradient(180deg, #ffffff, #faf8f4);
    padding: var(--pad-section) 6vw;
  }

.faq-inner { max-width: 920px; margin: 0 auto; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.faq-item {
    background: #fff;
    border: 1px solid rgba(13,13,13,0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease;
  }

.faq-item[open] {
    border-color: rgba(196,154,84,0.30);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--gold);
    transition: transform .3s ease;
    line-height: 1;
  }

.faq-item[open] summary::after { content: "−"; }

.faq-answer {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
  }

/* =====================================================
     SECTION 9 — Final CTA
     ===================================================== */

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #0d0d0d;
    border-radius: 36px;
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

.cta-card::before {
    content: "";
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,84,0.20), transparent 70%);
    top: -220px; left: -120px;
    pointer-events: none;
  }

.cta-card::after {
    content: "";
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,84,0.12), transparent 70%);
    bottom: -220px; right: -120px;
    pointer-events: none;
  }

.cta-card > * { position: relative; z-index: 1; }

.cta-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
  }

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: #fff;
    margin-bottom: 22px;
  }

.cta-title .accent { color: var(--gold); font-style: italic; }

.cta-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 auto 38px;
  }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 14px 36px rgba(196,154,84,0.40);
  }

.cta-button:hover {
    background: #fff;
    color: #0d0d0d;
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(255,255,255,0.20);
  }

.cta-button .arrow { transition: transform .3s ease; }

.cta-button:hover .arrow { transform: translateX(4px); }

/* =====================================================
     SECTION 10 — Footer
     ===================================================== */

/* =====================================================
     Responsive — sections 4-10
     ===================================================== */

/* =====================================================
     SECTION SHOP — Product Category Tabs + Filtered Grid
     ===================================================== */

.shop {
    background: linear-gradient(180deg, #faf8f4, #ffffff);
    padding: var(--pad-section) 6vw;
    position: relative;
    overflow: hidden;
  }

.shop-inner { max-width: 1320px; margin: 0 auto; }

.shop-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
  }

/* Horizontal tab navigation */

.tab-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 0 24px;
    margin: 0 auto 50px;
    max-width: 1240px;
    border-bottom: 1px solid rgba(13,13,13,0.08);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

.tab-bar::-webkit-scrollbar { display: none; }

.tab {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 14px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.2px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
  }

.tab::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: -25px;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--ease);
  }

.tab:hover { color: var(--ink); }

.tab.active {
    color: var(--ink);
    font-weight: 600;
  }

.tab.active::after { transform: scaleX(1); }

/* Category preview banner */

.cat-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 50px;
    align-items: stretch;
    min-height: 280px;
  }

.cat-banner-text {
    background: #faf8f4;
    border-radius: 28px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(13,13,13,0.04);
  }

.cat-banner-text .eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
  }

.cat-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 14px;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

.cat-banner-text h3 .accent { color: var(--gold); font-style: italic; }

.cat-banner-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 24px;
    max-width: 420px;
  }

.cat-banner-meta {
    display: flex;
    gap: 28px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(13,13,13,0.08);
    flex-wrap: wrap;
  }

.cat-meta-item .label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 4px;
  }

.cat-meta-item .value {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
  }

.cat-banner-image {
    border-radius: 28px;
    overflow: hidden;
    background: #efe6d3;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
    transition: transform 0.6s var(--ease);
    min-height: 280px;
  }

.cat-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease, transform 1.4s var(--ease);
  }

/* Product grid for active tab */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    transition: opacity 0.4s ease;
  }

.shop-grid.fading { opacity: 0; }

.shop-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13,13,13,0.05);
    box-shadow: 0 14px 40px rgba(0,0,0,0.04);
    transition: transform .4s var(--ease), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
  }

.shop-card-img {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: #f5ede0;
  }

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }

.shop-card:hover .shop-card-img img { transform: scale(1.07); }

.shop-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
  }

.shop-tag.gold { background: var(--gold); }

.shop-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.shop-card-cat {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
  }

.shop-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.25;
  }

.shop-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
  }

.shop-card-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--ink);
  }

.shop-card-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
  }

.shop-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f5ef;
    display: grid;
    place-items: center;
    color: var(--ink);
    border: 1px solid rgba(13,13,13,0.08);
    transition: all .3s ease;
  }

.shop-card:hover .shop-card-arrow {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateX(2px);
  }

/* =====================================================
     SECTION STUDIO — Live Customization Studio (3-panel)
     ===================================================== */

.studio {
    background: #0d0d0d;
    color: #fff;
    padding: var(--pad-section) 6vw;
    position: relative;
    overflow: hidden;
  }

.studio::before {
    content: "";
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,84,0.10), transparent 70%);
    top: -200px; left: -250px;
    pointer-events: none;
  }

.studio-inner-wrap {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

.studio-header-block {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }

.studio-header-block .sec-label { color: var(--gold); }

.studio-header-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: #fff;
    margin-bottom: 22px;
  }

.studio-header-block h2 .accent { color: var(--gold); font-style: italic; }

.studio-header-block p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto;
  }

/* 3-panel grid */

.studio-board {
    display: grid;
    grid-template-columns: 290px 1fr 320px;
    gap: 28px;
    background: #141414;
    border-radius: 32px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  }

/* Panels */

.studio-panel {
    background: #1a1a1a;
    border-radius: 22px;
    padding: 26px 22px;
    border: 1px solid rgba(255,255,255,0.04);
  }

.panel-title {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 18px;
  }

.panel-block {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

.panel-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }

.panel-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.panel-label .val {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
  }

/* Upload */

.upload-zone {
    border: 1.5px dashed rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
  }

.upload-zone:hover {
    border-color: var(--gold);
    background: rgba(196,154,84,0.04);
  }

.upload-zone.has-file {
    border-color: var(--gold);
    background: rgba(196,154,84,0.06);
  }

.upload-zone svg { color: var(--gold); margin-bottom: 8px; }

.upload-zone .upload-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
  }

.upload-zone .upload-hint {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
  }

.upload-zone input[type="file"] { display: none; }

/* Pill row (sizes) */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

.pill {
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
  }

.pill:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

.pill.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
  }

/* Slider */

.slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

.slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.10);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
  }

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
  }

.slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid #fff;
  }

/* Frame swatches */

.swatch-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

.swatch {
    aspect-ratio: 1;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
    overflow: visible;
  }

.swatch::after {
    content: attr(data-name);
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9.5px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.25s ease;
    white-space: nowrap;
  }

.swatch:hover::after { opacity: 1; }

.swatch:hover { transform: scale(1.05); }

.swatch.active {
    border-color: var(--gold);
    transform: scale(1.05);
  }

.swatch.active::after { opacity: 1; color: var(--gold); }

.sw-black { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }

.sw-oak { background: linear-gradient(135deg, #c8a06d, #a07e4f); }

.sw-white { background: linear-gradient(135deg, #f5f0e6, #e6dfd0); }

.sw-gold { background: linear-gradient(135deg, #e0c78a, #c49a54); }

.sw-floating { background: linear-gradient(135deg, #2c2c2c, #424242); border: 1px solid rgba(255,255,255,0.15); }

.sw-walnut { background: linear-gradient(135deg, #6b4226, #4a2c18); }

/* CENTER — Live Preview */

.preview-stage {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 22px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    transition: background 0.5s ease;
  }

.preview-stage[data-bg="wall"]  { background: linear-gradient(180deg, #d8cdb8, #c2b59f); }

.preview-stage[data-bg="dark"]  { background: linear-gradient(135deg, #1a1a1a, #0d0d0d); }

.preview-stage[data-bg="beige"] { background: linear-gradient(135deg, #efe6d3, #d8cdb8); }

.preview-stage[data-bg="white"] { background: linear-gradient(135deg, #ffffff, #f0ebe2); }

/* Preview tab bar */

.preview-tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
    align-self: center;
    z-index: 3;
  }

.preview-tab {
    background: transparent;
    border: none;
    padding: 8px 16px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
  }

.preview-tab:hover { color: #fff; }

.preview-tab.active {
    background: rgba(255,255,255,0.10);
    color: #fff;
  }

.frame-mockup {
    position: relative;
    transition: width 0.5s var(--ease), height 0.5s var(--ease), padding 0.4s var(--ease), background 0.4s ease, box-shadow 0.4s ease, transform 0.5s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.40),
      0 12px 24px rgba(0,0,0,0.20);
    background: #141414;
    padding: 22px;
    margin-top: 20px;
  }

.frame-mockup[data-frame="black"]    { background: #141414; }

.frame-mockup[data-frame="oak"]      { background: linear-gradient(135deg, #c8a06d, #a07e4f); }

.frame-mockup[data-frame="white"]    { background: linear-gradient(135deg, #f5f0e6, #e6dfd0); }

.frame-mockup[data-frame="gold"]     { background: linear-gradient(135deg, #e0c78a, #c49a54); }

.frame-mockup[data-frame="floating"] { background: transparent; padding: 6px; box-shadow: 0 25px 60px rgba(0,0,0,0.45); }

.frame-mockup[data-frame="walnut"]   { background: linear-gradient(135deg, #6b4226, #4a2c18); }

.frame-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #f5ede0;
    transition: border-radius 0.4s ease;
  }

.frame-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.4s var(--ease);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
  }

.frame-inner img:active { cursor: grabbing; }

/* Mode-driven preview behaviors */

.preview-stage[data-mode="closeup"] .frame-mockup { padding: 30px; transform: scale(1.08); }

.preview-stage[data-mode="table"]::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
  }

.preview-stage[data-mode="packaging"] .frame-mockup { transform: rotate(-4deg); }

.preview-stage[data-mode="packaging"]::before {
    content: "PrintShubh ✦ Studio Packaged";
    position: absolute;
    bottom: 70px;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.4);
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
  }

.size-label {
    position: absolute;
    top: 90px;
    right: 30px;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    z-index: 4;
  }

.bg-switcher {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0,0,0,0.50);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 4;
  }

.bg-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, transform 0.25s ease;
  }

.bg-dot:hover { transform: scale(1.15); }

.bg-dot.active { border-color: var(--gold); }

.bg-dot[data-bg="wall"]  { background: #c2b59f; }

.bg-dot[data-bg="dark"]  { background: #0d0d0d; }

.bg-dot[data-bg="beige"] { background: #efe6d3; }

.bg-dot[data-bg="white"] { background: #f5ede0; }

/* RIGHT — Order Summary */

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13.5px;
  }

.summary-row .key { color: rgba(255,255,255,0.5); }

.summary-row .val { color: #fff; font-weight: 500; }

.summary-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 16px 0;
  }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 22px;
  }

.summary-total .key { font-size: 13px; color: rgba(255,255,255,0.6); }

.summary-total .val {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
  }

.summary-total .val small {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    margin-left: 8px;
  }

.delivery-est {
    background: rgba(196,154,84,0.08);
    border: 1px solid rgba(196,154,84,0.18);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
  }

.delivery-est svg { color: var(--gold); flex-shrink: 0; }

.delivery-est .txt {
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255,255,255,0.7);
  }

.delivery-est .txt strong { color: #fff; font-weight: 600; }

.add-cart {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

.add-cart:hover {
    background: #d4a866;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(196,154,84,0.35);
  }

.save-design {
    width: 100%;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.save-design:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
  }

/* =====================================================
     SECTION DETAIL — Featured Product Detail Page
     ===================================================== */

.detail {
    background: #ffffff;
    padding: var(--pad-section) 6vw;
  }

.detail-inner { max-width: 1320px; margin: 0 auto; }

.detail-top-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }

.detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

.detail-gallery {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    position: sticky;
    top: 100px;
  }

.thumb-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.thumb {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s ease, transform 0.25s ease;
    background: #efe6d3;
  }

.thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

.thumb:hover { transform: scale(1.05); }

.thumb.active { border-color: var(--ink); }

.main-img {
    aspect-ratio: 1;
    border-radius: 28px;
    overflow: hidden;
    background: #efe6d3;
    box-shadow: 0 30px 70px rgba(0,0,0,0.10);
    position: relative;
  }

.main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), opacity 0.4s ease;
  }

.main-img:hover img { transform: scale(1.05); }

.main-img-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--gold);
    color: #fff;
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    z-index: 2;
  }

.detail-info { position: sticky; top: 100px; }

.detail-cat {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
  }

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 18px;
  }

.detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13.5px;
    color: var(--muted);
  }

.detail-rating .stars { color: #f5b400; letter-spacing: 1px; }

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
  }

.detail-price .now {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
  }

.detail-price .was {
    font-size: 17px;
    color: var(--muted);
    text-decoration: line-through;
  }

.detail-price .save {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(196,154,84,0.10);
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
  }

.detail-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 28px;
  }

.detail-block { margin-bottom: 26px; }

.detail-block-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
  }

.detail-block-label small {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0;
  }

.size-row, .material-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

.size-pill, .material-pill {
    padding: 11px 16px;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(13,13,13,0.10);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
  }

.size-pill:hover, .material-pill:hover {
    border-color: var(--ink);
  }

.size-pill.active, .material-pill.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

.detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
  }

.detail-actions .btn-primary { flex: 1; }

.wishlist-btn {
    width: 56px; height: 56px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid rgba(13,13,13,0.10);
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
  }

.wishlist-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

.detail-trust {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

.detail-trust-item svg { color: var(--gold); margin-bottom: 8px; }

.detail-trust-item .t-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
  }

.detail-trust-item .t-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
  }

/* Delivery timeline */

.delivery-timeline {
    margin-top: 90px;
    padding: 60px 50px;
    background: #faf8f4;
    border-radius: 32px;
    border: 1px solid rgba(13,13,13,0.04);
  }

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 40px;
  }

.timeline-grid::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,154,84,0.45) 20%, rgba(196,154,84,0.45) 80%, transparent);
    z-index: 0;
  }

.timeline-step { text-align: center; position: relative; z-index: 1; }

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(196,154,84,0.30);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  }

.timeline-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
  }

.timeline-step p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
  }

/* =====================================================
     HEADER UPGRADE — Mega Menu + Utility Icons + Phone
     ===================================================== */

.nav {
    gap: 28px;
  }

.nav-left { display: flex; align-items: center; gap: 38px; flex: 1; min-width: 0; }

.nav-right { display: flex; align-items: center; gap: 8px; }

/* Mega menu trigger lives inside nav-links */

.nav-links { align-items: center; }

.has-mega { position: relative; }

.mega-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

.mega-trigger svg {
    transition: transform .35s var(--ease);
    opacity: 0.6;
  }

.has-mega:hover .mega-trigger svg { transform: rotate(180deg); opacity: 1; }

/* Mega panel (dropdown) */

.mega-panel {
    position: fixed;
    top: 78px;
    left: 6vw;
    right: 6vw;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(13,13,13,0.06);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.10);
    padding: 40px 44px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .4s ease, transform .4s var(--ease), visibility 0s linear .4s;
    z-index: 99;
  }

.nav.scrolled .mega-panel { top: 64px; }

.has-mega:hover .mega-panel,
  .mega-panel:hover,
  .mega-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s var(--ease), visibility 0s linear 0s;
  }

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 36px;
  }

.mega-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(13,13,13,0.08);
  }

.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.mega-col a {
    font-size: 13.5px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .25s ease, padding-left .25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

.mega-col a::before {
    content: "→";
    opacity: 0;
    color: var(--gold);
    transform: translateX(-6px);
    transition: opacity .25s ease, transform .25s ease;
  }

.mega-col a:hover {
    color: var(--ink);
    padding-left: 4px;
  }

.mega-col a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

.mega-feature {
    background: linear-gradient(135deg, #faf8f4, #efe6d3);
    border-radius: 16px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

.mega-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1615873968403-89e068629265?auto=format&fit=crop&w=600&q=85') center/cover;
    opacity: 0.55;
  }

.mega-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
  }

.mega-feature .mf-content {
    position: relative;
    z-index: 1;
    color: #fff;
  }

.mega-feature .mf-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
  }

.mega-feature h6 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: #fff;
  }

/* Utility icons (search/wishlist/cart) */

.icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
  }

.icon-btn:hover {
    background: rgba(13,13,13,0.05);
    border-color: rgba(13,13,13,0.08);
    transform: translateY(-1px);
  }

.nav.scrolled .icon-btn:hover { background: rgba(255,255,255,0.6); }

/* Search input expanded */

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

.search-input {
    width: 0;
    opacity: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--ink);
    transition: width .4s var(--ease), opacity .3s ease, padding .4s var(--ease);
    outline: none;
  }

.search-wrap.open .search-input {
    width: 200px;
    opacity: 1;
    padding: 10px 16px;
    background: rgba(13,13,13,0.04);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(13,13,13,0.08);
  }

.search-wrap.open .search-input:focus {
    border-color: var(--gold);
    background: #fff;
  }

/* Phone & WhatsApp pills */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: transparent;
    text-decoration: none;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(13,13,13,0.10);
    transition: all .3s ease;
  }

.nav-phone:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-1px);
  }

.nav-phone svg { color: var(--gold); transition: color .3s ease; }

.nav-phone:hover svg { color: var(--gold); }

.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  }

.nav-wa:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37,211,102,0.35);
  }

/* Mobile burger */

.burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(13,13,13,0.05);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s ease, opacity .3s ease;
  }

.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }

.burger.open span:nth-child(2) { opacity: 0; }

.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */

.mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 90vw);
    height: 100vh;
    background: #fff;
    box-shadow: -20px 0 50px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 200;
    overflow-y: auto;
    padding: 90px 30px 40px;
    display: flex;
    flex-direction: column;
  }

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

.mobile-drawer ul a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(13,13,13,0.06);
    transition: padding-left .25s ease, color .25s ease;
  }

.mobile-drawer ul a:hover { padding-left: 6px; color: var(--gold); }

.mobile-drawer .md-section {
    margin-top: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

.mobile-drawer .md-bottom {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(13,13,13,0.08);
  }

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
    z-index: 150;
  }

.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility 0s linear 0s;
  }

/* =====================================================
     SECTION CATEGORIES OVERVIEW — 10 Premium Categories
     ===================================================== */

.cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

/* =====================================================
     SECTION PRINTCAT — Reusable Tabbed Print Section
     (used for Mug, T-Shirt, Frame)
     ===================================================== */

.printcat {
    padding: var(--pad-section) 6vw;
    position: relative;
    overflow: hidden;
  }

.printcat.alt { background: linear-gradient(180deg, #ffffff, #faf8f4); }

.printcat.dark-alt { background: #faf8f4; }

.printcat-inner { max-width: 1320px; margin: 0 auto; }

.printcat-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(13,13,13,0.08);
  }

.printcat-header-left { max-width: 720px; }

.printcat-cta-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s ease, color .3s ease;
  }

.printcat-cta-link:hover { gap: 14px; color: var(--gold); }

/* Subtab strip (lighter pill style than .tab-bar) */

.subtab-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 36px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

.subtab-bar::-webkit-scrollbar { display: none; }

.subtab {
    flex-shrink: 0;
    padding: 11px 20px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid rgba(13,13,13,0.10);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
  }

.subtab:hover { border-color: var(--ink); }

.subtab.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

.printcat.dark-alt .subtab { background: #fff; }

.printcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: opacity .35s ease;
  }

.printcat-grid.fading { opacity: 0; }

/* Reuses .shop-card structure but with own class for clarity */

.pc-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(13,13,13,0.05);
    box-shadow: 0 10px 32px rgba(0,0,0,0.04);
    transition: transform .4s var(--ease), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
  }

.pc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
  }

.pc-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5ede0;
  }

.pc-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }

.pc-card:hover .pc-card-img img { transform: scale(1.08); }

/* Floating action icons on hover (wishlist + quick view) */

.pc-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .35s ease, transform .35s var(--ease);
    z-index: 2;
  }

.pc-card:hover .pc-actions { opacity: 1; transform: translateX(0); }

.pc-action {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(13,13,13,0.08);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
  }

.pc-action:hover {
    background: var(--ink);
    color: #fff;
    transform: scale(1.05);
  }

.pc-action.wished { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Sale badge */

.pc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
  }

.pc-badge.gold { background: var(--gold); }

.pc-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }

.pc-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 8px;
  }

.pc-rating .stars { color: #f5b400; letter-spacing: 0.5px; font-size: 12px; }

.pc-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.25;
  }

.pc-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
  }

.pc-card-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
  }

.pc-card-price small {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
  }

.pc-customize {
    font-size: 11.5px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .3s ease;
  }

.pc-customize:hover { gap: 8px; }

/* =====================================================
     QUICK VIEW MODAL (SPA-style product drawer)
     ===================================================== */

.quick-view {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility 0s linear .4s;
  }

.quick-view.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, visibility 0s linear 0s;
  }

.qv-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

.qv-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(960px, 92vw);
    max-height: 88vh;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0,0,0,0.30);
    transition: transform .5s var(--ease);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

.quick-view.open .qv-panel { transform: translate(-50%, -50%) scale(1); }

.qv-image {
    position: relative;
    background: #efe6d3;
    overflow: hidden;
    min-height: 480px;
  }

.qv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }

.qv-image:hover img { transform: scale(1.04); }

.qv-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: var(--gold);
    color: #fff;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    font-weight: 600;
  }

.qv-info {
    padding: 44px 40px;
    overflow-y: auto;
    max-height: 88vh;
  }

.qv-cat {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
  }

.qv-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.6px;
    color: var(--ink);
    margin-bottom: 14px;
  }

.qv-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 18px;
  }

.qv-rating .stars { color: #f5b400; letter-spacing: 1px; }

.qv-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

.qv-price .now {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
  }

.qv-price .was {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
  }

.qv-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 22px;
  }

.qv-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
  }

.qv-opt {
    padding: 9px 14px;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(13,13,13,0.10);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s ease;
  }

.qv-opt:hover { border-color: var(--ink); }

.qv-opt.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.qv-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }

.qv-actions .btn-primary { flex: 1; padding: 14px 22px; }

.qv-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }

.qv-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37,211,102,0.35);
  }

.qv-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--ink);
    z-index: 4;
    transition: transform .3s ease, background .3s ease;
  }

.qv-close:hover { transform: rotate(90deg); background: var(--ink); color: #fff; }

/* =====================================================
     WHATSAPP FLOATING BUTTON + STICKY CONTACT BAR
     ===================================================== */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(37,211,102,0.40);
    z-index: 99;
    transition: transform .3s var(--ease), box-shadow .3s ease;
    animation: waPulse 2.4s ease-in-out infinite;
  }

.wa-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37,211,102,0.55);
    animation-play-state: paused;
  }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 14px 36px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 14px 36px rgba(37,211,102,0.40), 0 0 0 14px rgba(37,211,102,0); }
  }

.wa-float-tip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

.wa-float:hover .wa-float-tip { opacity: 1; }

/* =====================================================
     HERO PREMIUM OVERRIDES — Wider visual + luxury animation
     ===================================================== */

@keyframes heroSlowZoom {
    0%, 100% { transform: scale(1.04) translate3d(0,0,0); }
    50%      { transform: scale(1.12) translate3d(-6px,-4px,0); }
  }

@keyframes heroGlow {
    0%   { opacity: 0.7; }
    100% { opacity: 1; }
  }

/* Soft floating accent on the visual */

/* =====================================================
     PREMIUM POLISH — Floating cards, trust strip, search overlay, fixes
     ===================================================== */

/* Hero skeleton background while video loads */

@keyframes heroSkeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

/* Floating product preview cards on hero */

@keyframes floatBob {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-8px) translateX(2px); }
  }

/* Live trust strip below hero */

@keyframes trustScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* Netflix-style category overlay enhancement */

/* Mobile search full-screen overlay */

/* WhatsApp button stays below modals */

.wa-float { z-index: 99 !important; }

/* =====================================================
     PHASE 1 — Hide non-essential sections
     ===================================================== */

.hidden-temp { display: none !important; }

/* =====================================================
     PHASE 2 — Cards · Categories · Polish
     ===================================================== */

/* Image skeleton loader — shows while local images are loading or missing */

@keyframes cardSkeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

/* Stop skeleton once image successfully loaded */

/* Premium hover overlay on product cards — Quick View + Customize */

.pc-card-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.38) 100%);
    opacity: 0;
    transition: opacity .45s var(--ease);
    z-index: 1;
    pointer-events: none;
  }

.pc-card:hover .pc-card-img::before { opacity: 1; }

/* Hover ring on category tiles */

/* Floating "View →" reveal on category tiles */

/* Smoother section transitions — premium spacing */

section + section {
    position: relative;
  }

/* Premium image lazy fade-in */

/* Subtle glow on featured product cards */

.pc-card.featured-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(196,154,84,0.4), transparent 50%, rgba(196,154,84,0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity .5s ease;
  }

.pc-card.featured-card:hover::after { opacity: 1; }

/* Mobile spacing tightening */

/* Mini stats — Hero strong */

/* =====================================================
     CAT5 — 5 Category Preview Grid (Mugs, Frames, Posters, Gifts, Tshirts)
     ===================================================== */

/* Responsive */

/* ── HIDE: Hero rating card, badges, float cards ── */

/* ===== Brand size upgrade (Phase 7 fix #4) ===== */
.brand-lg {
  font-size: 26px !important;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.brand-lg span {
  font-weight: 700;
}
@media (max-width: 880px) {
  .brand-lg { font-size: 22px !important; }
}
