/* ================================================================
   Finsty (Finsty) Fashions | Main Stylesheet
   Exact match to PDF design — Light theme
   ================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS / CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors — from screenshot */
  --clr-bg:            #E8E8E8;        /* Page background light gray    */
  --clr-bg-white:      #FFFFFF;        /* White panel                   */
  --clr-navbar-bg:     #FFFFFF;        /* Navbar white background       */
  --clr-primary:       #6B5FE4;        /* Purple — Download App button  */
  --clr-primary-hover: #5448c8;
  --clr-cta-red:       #8B1A1A;        /* Dark red — hero CTA button    */
  --clr-cta-red-hover: #6e1414;
  --clr-text-dark:     #1A1A1A;        /* Near-black — main headings    */
  --clr-text-body:     #444444;        /* Body / paragraph text         */
  --clr-text-muted:    #777777;        /* Tagline / meta text           */
  --clr-text-nav:      #333333;        /* Nav link color                */
  --clr-white:         #FFFFFF;

  /* Feature card colors */
  --clr-card-bg:       #FFFFFF;
  --clr-card-shadow:   rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Misc */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-full: 9999px;
  --navbar-h:    72px;
  --container-max: 1280px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
  --transition:  0.25s ease;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ----------------------------------------------------------------
   3. UTILITIES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0.6rem auto 0;
  line-height: 1.7;
}

/* Pill buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-purple {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-purple:hover {
  background: var(--clr-primary-hover);
  transform: translateY(-1px);
}

.btn-red {
  background: var(--clr-cta-red);
  color: var(--clr-white);
}
.btn-red:hover {
  background: var(--clr-cta-red-hover);
  transform: translateY(-1px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  margin-top: 5px;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: transparent;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, margin-top 0.3s ease;
}

.navbar.scrolled {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .container {
  height: 100%;
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

/* Desktop nav */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
  margin-right: 2rem;
}

.navbar__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-nav);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.navbar__link:hover         { color: var(--clr-primary); }
.navbar__link:hover::after  { width: 100%; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 1050; /* higher than navbar 1000 */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  background: none;
  color: var(--clr-text-dark);
  line-height: 1;
}

.mobile-nav__link {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--clr-primary); }

/* ================================================================
   HERO SECTION  — exact match to screenshot
   ================================================================ */
.hero {
  min-height: 600px;
  height: calc(100vh - var(--navbar-h));
  max-height: 900px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
  padding-top: var(--navbar-h);
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Diagonal white slash behind the image */
.hero__slash {
  position: absolute;
  top: 0; 
  left: 35%;
  width: 200vw;
  height: 100%;
  background: var(--clr-bg);
  clip-path: polygon(150px 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Text content — left side */
.hero__content {
  flex: 0 1 45%;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
  padding-left: 2rem;
}

/* The model image — right side */
.hero__image-wrap {
  flex: 0 1 55%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image-wrap img {
  width: 147%;
  max-width: 147%;
  max-height: 120vh;
  height: auto;
  object-fit: contain;
  position: relative;
  right: 80px;
  top: 15px;
}

.hero__tagline {
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.hero__modern {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--clr-text-dark);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.hero__trendsetter {
  font-size: clamp(3.4rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--clr-text-body);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features {
  padding: 6rem 0;
  background: var(--clr-white);
}

.features__header {
  margin-bottom: 4rem;
}

.features__header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.features__header .section-subtitle {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  max-width: 600px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--clr-card-bg);
  border: 1.5px solid #F2F2F2;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: #EBEBEB;
}

.feature-card__icon {
  display: block;
  margin-bottom: 1.5rem;
}

.feature-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.75rem;
}

.feature-card__desc {
  font-size: 0.85rem;
  color: #999999; /* Light gray to match screenshot */
  line-height: 1.6;
}

/* ================================================================
   CATEGORIES SECTION
   ================================================================ */
.categories {
  padding: 6rem 0;
  background: var(--clr-white);
}

.categories__header {
  margin-bottom: 4rem;
}

.categories__header .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
}

.categories__header .section-subtitle {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 1rem;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

/* Bento Box Placement */
.category-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.category-card:nth-child(2) { grid-column: 2; grid-row: 1 / 2; }
.category-card:nth-child(3) { grid-column: 2; grid-row: 2 / 3; }
.category-card:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }

/* Content inside card */
.category-card__content {
  position: relative;
  z-index: 3;
  padding: 2.5rem 2rem 0;
}

.category-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.category-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 90%;
}

/* Watermarks */
.category-card__watermark {
  position: absolute;
  z-index: 1;
  font-weight: 800;
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
  text-transform: capitalize;
  pointer-events: none;
  white-space: nowrap;
}

.wm-vertical-left {
  top: auto;
  bottom: 5%;
  left: -20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8rem;
  letter-spacing: -2px;
}

.wm-vertical-right {
  top: auto;
  bottom: 5%;
  right: -10px;
  writing-mode: vertical-rl;
  font-size: 8.5rem;
  letter-spacing: -2px;
}

.wm-horizontal {
  bottom: -15px;
  left: 20px;
  font-size: 5.5rem;
}

/* Images */
.category-card__img-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.category-card__img-wrap img {
  width: auto;
  max-width: 60%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: bottom center;
}

/* Card Specific Image Overrides for exact alignment */
.category-card:nth-child(1) .category-card__img-wrap {
  position: absolute;
  left:60px;
  top: 130px;
  /* justify-content: flex-end; */
}
.category-card:nth-child(1) .category-card__img-wrap img {
  max-width: 200%;
  width: 180%;
  object-fit: contain;
  object-position: bottom right;
  margin-right: -15%;
}
.category-card:nth-child(4) .category-card__img-wrap img {
  max-width: 160%;
  width: 140%;
  object-fit: cover;
  object-position: bottom;
}
.category-card:nth-child(4) .category-card__img-wrap {
  justify-content: flex-end;
}

/* Hover Animations
.category-card:hover .category-card__img-wrap img {
  transform: scale(1.08);
} */

/* ================================================================
   PROMO BANNER
   ================================================================ */
.promo {
  background: white;
  /* padding: 2rem 2rem; */
}

.promo__inner {
  position: relative;
  background: #D82A5D;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 400px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.promo__flame {
  position: absolute;
  width: 70px;
  opacity: 0.9;
  z-index: 1;
}

/* Positions based on screenshot */
.promo__flame.f1 { top: 15%; left: 8%; }
.promo__flame.f2 { top: 35%; left: 38%; }
.promo__flame.f3 { top: 20%; right: 15%; }
.promo__flame.f4 { bottom: 10%; right: 8%; }

.promo__image-col {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: 2rem;
}

.promo__model-img {
  max-width: 100%;
  max-height: 480px;
  margin-bottom: -1px;
  object-fit: contain;
  object-position: bottom;
}

.promo__text-col {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 4rem;
  color: #ffffff;
}

.promo__discount {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.promo__subtitle {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.promo__cta.btn-white {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
}

.promo__cta.btn-white:hover {
  background: #f4f4f4;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .promo__inner { flex-direction: column; text-align: center; overflow: hidden; }
  .promo__image-col { display: none; }
  .promo__text-col { align-items: center; padding: 4rem 2rem; }
  .promo__flame.f2 { display: none; }
}

/* ================================================================
   APP DOWNLOAD SECTION
   ================================================================ */
.app-download {
  padding: 8rem 0;
  background: #F1EDFA;
  overflow: hidden;
}

.app-download__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.app-download__img-wrap {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.app-download__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 700px;
  z-index: 0;
  pointer-events: none;
}

.app-download__img {
  max-width: 100%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.app-download__content {
  flex: 1;
  padding-left: 2rem;
}

.app-download__title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.app-download__desc {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.app-download__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  transition: transform var(--transition);
}

.store-badge-link:hover {
  transform: translateY(-3px);
}

.store-badge-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 2rem 0;
  font-family: var(--font-body);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr 1.2fr;
  gap: 2rem;
}

.footer__col-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  font-size: 0.95rem;
  color: #A9A9A9;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: #ffffff;
}

.footer__address-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #A9A9A9;
  margin-bottom: 2rem;
}

.footer__app-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer__badges {
  display: flex;
  gap: 1rem;
}

.footer__badge-link {
  display: inline-block;
}

.footer__badge-img {
  height: 44px;
  width: auto;
}

.footer__quality-desc {
  font-size: 0.95rem;
  color: #A9A9A9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__policy-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.footer__policy-link:hover {
  opacity: 0.8;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.footer__social-icon svg {
  fill: #A9A9A9;
}

.footer__social-icon:hover {
  transform: translateY(-2px);
}
.footer__social-icon:hover svg {
  fill: #ffffff;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  background: #D82A5D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(107,95,228,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover { transform: translateY(-3px); }

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s ease-out;
}

.scroll-top__logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  z-index: 2;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ─── iPad Pro landscape / large tablets (≤ 1366px) ─── */
@media (max-width: 1366px) {
  .hero__image-wrap img {
    width: 200%;
    max-width: 200%;
    right: 40px;
  }
  .app-download__title { font-size: 34px; }
}

/* ─── iPad Pro portrait / Small Desktops (≤ 1100px) ─── */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Categories: 2-col bento */
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 0.9rem;
  }
  .category-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .category-card:nth-child(2) { grid-column: 2; grid-row: 1 / 2; }
  .category-card:nth-child(3) { grid-column: 2; grid-row: 2 / 3; }
  .category-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; min-height: 260px; }

  /* Reset card-1 image for smaller screens */
  .category-card:nth-child(1) .category-card__img-wrap {
    position: relative;
    left: 0;
    top: 0;
    justify-content: center;
  }
  .category-card:nth-child(1) .category-card__img-wrap img {
    max-width: 100%;
    width: 90%;
    margin-right: 0;
    object-position: bottom center;
  }

  /* App download: smaller gap */
  .app-download__inner { gap: 2.5rem; }
  .app-download__title { font-size: 30px; }
  .app-download__desc  { font-size: 16px; }

  /* Hero adjustments */
  .hero__image-wrap img {
    width: 115%;
    max-width: 115%;
    right: 30px;
  }
  .hero__modern     { font-size: clamp(2.2rem, 4vw, 3.2rem); }
  .hero__trendsetter { font-size: clamp(2.8rem, 5vw, 4rem); }
}

/* ─── iPad (768–1024px) ─── */
@media (max-width: 1024px) {
  :root { --navbar-h: 64px; }

  .hero {
    min-height: 540px;
    max-height: 800px;
  }
  .hero__image-wrap img {
    width: 200%;
    max-width: 200%;
    right: 20px;
  }
  .hero__content { flex: 0 1 50%; }
  .hero__image-wrap { flex: 0 1 50%; }

  .features { padding: 4rem 0; }
  .features__header { margin-bottom: 2.5rem; }
  .features__header .section-title { font-size: 1.9rem; }

  .categories { padding: 4rem 0; }
  .categories__header { margin-bottom: 2.5rem; }
  .categories__header .section-title { font-size: 1.9rem; }

  .app-download { padding: 5rem 0; }
  .app-download__title { font-size: 28px; }
  .app-download__desc  { font-size: 15px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─── Tablets / Large phones (≤ 960px) ─── */
@media (max-width: 960px) {
  /* Categories: even 2-col grid, no bento */
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 260px);
  }
  .category-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .category-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .category-card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .category-card:nth-child(4) { grid-column: 2; grid-row: 2; }

  /* Promo: image hides, text centres */
  .promo__inner { flex-direction: column; text-align: center; overflow: hidden; }
  .promo__image-col { display: none; }
  .promo__text-col { align-items: center; padding: 4rem 2rem; }
  .promo__flame.f2 { display: none; }

  /* App download: stack vertically */
  .app-download__inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .app-download__img-wrap {
    flex: none;
    width: 100%;
    justify-content: center;
    order: -1;
  }
  .app-download__content {
    flex: none;
    width: 100%;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-download__desc  { margin-inline: auto; max-width: 520px; }
  .app-download__badges { justify-content: center; }
  .app-download__title { text-align: center; }

  .hero__image-wrap { width: 60%; }
}

/* ─── Landscape phones / Small tablets (≤ 768px) ─── */
@media (max-width: 768px) {
  :root { --navbar-h: 60px; }

  .navbar__links,
  .navbar__cta-btn  { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero: stack vertically */
  .hero {
    align-items: flex-start;
    padding-bottom: 3rem;
    min-height: auto;
    height: auto;
    max-height: none;
    padding-top: calc(var(--navbar-h) + 1.5rem);
  }

  .hero__container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero__slash {
    width: 130%;
    left: 0;
    clip-path: none;
    opacity: 0.12;
  }

  .hero__image-wrap {
    width: 200%;
    max-width: 200%;
    flex: 0 0 auto;
    padding: 0;
    margin: 0 auto;
    overflow: visible;
  }

  .hero__image-wrap img {
    width: 150%;
    max-width: 150%;
    right: 0;
    top: 80px;
    max-height: none;
    margin-left: -15%;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0;
    flex: 0 0 auto;
    width: 100%;
  }

  .hero__desc { margin-inline: auto; max-width: 480px; }

  .hero__content .btn {
    margin: 0 auto;
  }

  /* Section padding */
  .features   { padding: 3.5rem 0; }
  .categories { padding: 3.5rem 0; }
  .app-download { padding: 4rem 0; }
  .features__header  { margin-bottom: 2rem; }
  .categories__header { margin-bottom: 2rem; }
  .features__header .section-title  { font-size: 1.7rem; }
  .categories__header .section-title { font-size: 1.7rem; }

  /* Features: single column */
  .features__grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Categories: single column */
  .categories__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
  }

  /* Reset absolute image positioning for card 1 on mobile */
  .category-card:nth-child(1) .category-card__img-wrap {
    position: relative;
    left: 0;
    top: 0;
    justify-content: center;
  }
  .category-card:nth-child(1) .category-card__img-wrap img {
    max-width: 80%;
    width: 80%;
    margin-right: 0;
    object-position: bottom center;
  }

  /* Promo tweaks */
  .promo__discount { font-size: 2.8rem; }
  .promo__subtitle { font-size: 1.4rem; }

  /* App download */
  .app-download__img { max-width: 75%; }
  .app-download__bg  { width: 160%; }
  .app-download__title { font-size: 26px; }
  .app-download__desc  { font-size: 15px; }

  /* Footer: 2-col on portrait tablet */
  .footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─── Mobile (≤ 600px) ─── */
@media (max-width: 600px) {
  .hero__image-wrap {
    width: 90%;
    max-width: 340px;
  }

  .hero__modern     { font-size: 2.4rem; }
  .hero__trendsetter { font-size: 2.8rem; }

  .category-card:nth-child(n) {
    min-height: 220px;
  }
  .category-card__title { font-size: 1.3rem; }
  .wm-vertical-left,
  .wm-vertical-right,
  .wm-horizontal { font-size: 3.5rem; }

  /* Promo */
  .promo__discount { font-size: 2.2rem; }
  .promo__subtitle { font-size: 1.2rem; }
  .promo__cta.btn-white { font-size: 0.95rem; padding: 0.8rem 2rem; }
  .promo__flame { width: 48px; }

  /* App download */
  .app-download { padding: 3.5rem 0; }
  .app-download__title { font-size: 22px; }
  .app-download__desc  { font-size: 14px; }
  .store-badge-img { height: 40px; }
  .app-download__badges { gap: 0.75rem; }
  .app-download__bg { display: none; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ─── Small Mobile (≤ 480px) ─── */
@media (max-width: 480px) {
  :root { --navbar-h: 56px; }

  .hero__container { gap: 1.5rem; padding: 0 1rem; }
  .hero__image-wrap { width: 95%; max-width: 300px; }
  .hero__modern     { font-size: 2rem; }
  .hero__trendsetter { font-size: 2.4rem; }
  .hero__desc { font-size: 0.875rem; }

  .btn { padding: 0.65rem 1.5rem; font-size: 0.875rem; }

  .category-card:nth-child(n) { min-height: 200px; }
  .category-card__content { padding: 1.5rem 1.25rem 0; }

  .promo__discount { font-size: 2rem; }
  .promo__flame { width: 38px; }

  .app-download__title { font-size: 20px; }
  .app-download__badges { flex-direction: column; align-items: center; }
  .store-badge-img { height: 44px; }
}

/* ================================================================
   POLICY PAGES
   ================================================================ */
.policy-page {
  padding-top: calc(var(--navbar-h) + 2rem);
  padding-bottom: 4rem;
  background: var(--clr-bg);
  min-height: 100vh;
}

.policy-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.policy-header {
  background: var(--clr-primary);
  color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
}

.policy-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.policy-content {
  padding: 3rem 4rem;
  color: var(--clr-text-body);
  font-size: 1.05rem;
  line-height: 1.8;
}

.policy-content h2,
.policy-content h3 {
  color: var(--clr-text-dark);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content strong {
  color: var(--clr-text-dark);
}

@media (max-width: 1024px) {
  .policy-content { padding: 2.5rem 3rem; }
}

@media (max-width: 768px) {
  .policy-header h1 { font-size: 2rem; }
  .policy-content { padding: 2rem; }
}

@media (max-width: 480px) {
  .policy-header h1 { font-size: 1.6rem; }
  .policy-header { padding: 2rem 1.25rem; }
  .policy-content { padding: 1.5rem; font-size: 0.95rem; }
}
