/* =====================================================
   PrintShubh — Sections — Why · Collection · Best · Testimonials · CTA · Footer · Categories
   ===================================================== */

.why {
    background: #ffffff;
    padding: var(--pad-section) 6vw;
    position: relative;
    overflow: hidden;
  }

.why::before {
    content: "";
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,138,74,0.06), transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
  }

.why-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
  }

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

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

.why-label::before,
  .why-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(176,138,74,0.35);
  }

.why-label::before { left: -30px; }

.why-label::after  { right: -30px; }

.why-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;
  }

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

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

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

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(13,13,13,0.05);
    border-radius: 24px;
    padding: 44px 32px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #faf5ec 0%, #f8f5ef 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
    border-radius: 24px;
  }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: rgba(176,138,74,0.20);
  }

.feature-card:hover::after { opacity: 1; }

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

.feature-card:hover .feature-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 10px 24px rgba(176,138,74,0.20);
  }

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

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

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

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

.collection-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-left: 36px;
  }

.collection-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 1px;
    background: rgba(176,138,74,0.55);
  }

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

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

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

.collection-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 1px solid rgba(13,13,13,0.18);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
  }

.collection-cta:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
  }

.collection-cta .arrow { transition: transform .3s ease; display: inline-block; }

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

.collection-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
  }

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

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

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

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

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

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

.best-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
  }

.product-card:hover .product-img img { transform: scale(1.06); }

.product-card:hover .product-cta {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

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

.final-cta {
    padding: 100px 6vw;
    background: #faf8f4;
  }

.footer {
    background: #0a0a0a;
    color: #ddd;
    padding: 90px 6vw 36px;
  }

.footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
  }

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

.footer-tag {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
    margin-bottom: 26px;
  }

.footer-social {
    display: flex;
    gap: 12px;
  }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.7);
    transition: all .3s ease;
    text-decoration: none;
  }

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
  }

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
  }

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

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color .25s ease, padding-left .25s ease;
  }

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

.footer-bottom {
    max-width: 1320px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 22px;
    transition: color .25s ease;
  }

.footer-bottom a:hover { color: var(--gold); }

.cats-overview {
    background: #ffffff;
    padding: var(--pad-section) 6vw;
    position: relative;
  }

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

.cat-tile {
    position: relative;
    aspect-ratio: 1 / 1.15;
    border-radius: 22px;
    overflow: hidden;
    background: #efe6d3;
    text-decoration: none;
    cursor: pointer;
    transition: transform .5s var(--ease), box-shadow .5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }

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

.cat-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
  }

.cat-tile:hover .cat-tile-img { transform: scale(1.10); }

.cat-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  }

.cat-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
  }

.cat-tile-num {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
  }

.cat-tile-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #fff;
    margin-bottom: 4px;
  }

.cat-tile-count {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
  }

.live-trust-strip {
    background: var(--ink);
    color: #f5ede0;
    padding: 22px 6vw;
    overflow: hidden;
    position: relative;
  }

.live-trust-track {
    display: flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
    animation: trustScroll 38s linear infinite;
  }

.live-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #e8dcc6;
  }

.live-trust-item strong { color: var(--gold); font-weight: 700; }

.live-trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; opacity: 0.8; }

.live-trust-strip:hover .live-trust-track { animation-play-state: paused; }

.cat-tile {
    transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  }

.cat-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.65) 100%);
    opacity: 0.6;
    transition: opacity .5s var(--ease);
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
  }

.cat-tile-content { z-index: 2; }

.cat-tile:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35);
    z-index: 3;
  }

.cat-tile:hover::after { opacity: 0.85; }

.cat-tile-img {
    transition: transform 1s var(--ease), filter .5s var(--ease);
  }

.cat-tile:hover .cat-tile-img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.1);
  }

.pc-card-img,
  .cat-tile {
    background:
      linear-gradient(110deg, #efe6d3 8%, #f5ede0 18%, #efe6d3 33%) #efe6d3;
    background-size: 200% 100%;
    animation: cardSkeleton 1.6s linear infinite;
  }

.pc-card-img img,
  .cat-tile-img {
    background: #f5ede0;
  }

.pc-card-img img.loaded,
  .cat-tile-img.loaded {
    background: transparent;
  }

.pc-card-img:has(img.loaded),
  .cat-tile:has(.cat-tile-img.loaded) {
    animation: none;
    background: #f5ede0;
  }

.cat-tile {
    border: 1px solid transparent;
    transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s ease;
  }

.cat-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 0 var(--gold);
    transition: box-shadow .5s var(--ease);
    pointer-events: none;
    z-index: 3;
  }

.cat-tile:hover::before {
    box-shadow: inset 0 0 0 2px var(--gold);
  }

.cat-tile-cta {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--gold);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }

.cat-tile:hover .cat-tile-cta {
    opacity: 1;
    transform: translateY(0);
  }

.why, .collection, .how-works, .shop, .best, .printcat,
  .testimonials, .contact-section, .final-cta {
    scroll-margin-top: 90px;
  }

.pc-card-img img,
  .cat-tile-img {
    opacity: 0;
    transition: opacity .6s var(--ease), transform 1.2s var(--ease);
  }

.pc-card-img img.loaded,
  .cat-tile-img.loaded {
    opacity: 1;
  }

.cat5-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
  }

.cat5-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

.cat5-tile {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background: #1a1a1a;
    cursor: pointer;
  }

.cat5-tile.cat5-tall { min-height: 500px; }

.cat5-stack .cat5-tile { flex: 1; min-height: 230px; }

.cat5-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform .7s var(--ease), opacity .5s ease;
  }

.cat5-tile:hover .cat5-img {
    transform: scale(1.07);
    opacity: 0.72;
  }

.cat5-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
    transition: background .5s ease;
  }

.cat5-tile:hover .cat5-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.82) 100%);
  }

.cat5-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 24px;
  }

.cat5-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
  }

.cat5-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.15;
    transition: color .3s ease;
  }

.cat5-stack .cat5-name { font-size: 20px; }

.cat5-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 16px;
    letter-spacing: 0.3px;
    line-height: 1.5;
  }

.cat5-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: background .35s ease, border-color .35s ease, transform .35s ease;
  }

.cat5-tile:hover .cat5-cta {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateX(3px);
  }

.cat5-tile:hover .cat5-name { color: #f5ede0; }