/* =========================================================
   TYA Queen of Fashion — style.css
   Full Design System — Pink Brand Theme
   ========================================================= */

/* ─── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,400&display=swap');

/* ─── CSS Variables ────────────────────────────────────── */
:root {
  --pink-50: #FFF0F5;
  --pink-100: #FFD6E7;
  --pink-200: #FFB3CF;
  --pink-300: #FF85B3;
  --pink-400: #FF5599;
  --pink-500: #FF2080;
  --pink-600: #E0006B;
  --pink-700: #B80058;
  --pink-800: #8C0043;
  --pink-900: #5C002B;

  --rose-gold: #B76E79;
  --blush: #FADADD;
  --champagne: #F7E7CE;
  --white: #FFFFFF;
  --off-white: #FFF8FA;
  --dark: #1A0010;
  --text-main: #3D0020;
  --text-muted: #9B4D6A;

  --gradient-hero: linear-gradient(135deg, #FF85B3 0%, #FF2080 50%, #B80058 100%);
  --gradient-soft: linear-gradient(180deg, #FFF0F5 0%, #FFD6E7 100%);
  --gradient-card: linear-gradient(135deg, #FFF0F5 0%, #FFD6E7 100%);
  --shadow-pink: 0 8px 32px rgba(255, 32, 128, 0.2);
  --shadow-card: 0 4px 24px rgba(184, 0, 88, 0.12);
  --shadow-deep: 0 16px 48px rgba(184, 0, 88, 0.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1280px;
  --section-pad: 96px 0;
}

/* ─── Reset & Base ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--off-white);
  overflow-x: clip; /* 'clip' prevents horizontal overflow without creating a scroll container — preserves position:sticky */
  width: 100%;
  position: relative;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Utilities ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

.section-pad {
  padding: var(--section-pad);
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--pink-500);
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 32, 128, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--pink-500);
  border-color: var(--pink-300);
}

.btn--outline:hover {
  background: var(--pink-50);
  border-color: var(--pink-500);
  transform: translateY(-2px);
}

.btn--pink-border {
  border-color: var(--pink-500);
  color: var(--pink-600);
}

.btn--pink-border:hover {
  background: var(--pink-500);
  color: var(--white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--pink-900);
  border-color: var(--pink-900);
}

.btn .arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ─── Badge ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--new {
  background: var(--pink-500);
  color: #fff;
}

.badge--sale {
  background: #FF5C5C;
  color: #fff;
}

.badge--best {
  background: var(--champagne);
  color: var(--text-main);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(255, 32, 128, 0.08);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 24px rgba(255, 32, 128, 0.15);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform var(--transition);
}

.navbar__logo-text {
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink-600);
  display: block;
}

.navbar__logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--pink-500);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* Nav actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-main);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.navbar__icon-btn:hover {
  background: var(--pink-50);
  color: var(--pink-500);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  animation: popIn 0.3s var(--transition-spring);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Offcanvas Nav — Backdrop ──────────────────────── */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1098;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ── Mobile Offcanvas Nav — Drawer ────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1099;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(255, 32, 128, 0.18);
  border-left: 1px solid rgba(255, 32, 128, 0.1);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* ── Drawer Header ─────────────────────────────────────────── */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 32, 128, 0.1);
  background: linear-gradient(135deg, rgba(255, 32, 128, 0.06), rgba(184, 0, 88, 0.04));
}

.mobile-nav__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}

.mobile-nav__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 32, 128, 0.2);
  background: rgba(255, 32, 128, 0.06);
  color: var(--pink-500);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.mobile-nav__close:hover {
  background: var(--pink-500);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Nav List ──────────────────────────────────────────────── */
.mobile-nav__list {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.mobile-nav__item {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-nav.open .mobile-nav__item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav__item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav__item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav__item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.26s; }

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  position: relative;
}

.mobile-nav__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-hero);
  border-radius: 0 4px 4px 0;
  transition: height 0.25s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  background: rgba(255, 32, 128, 0.06);
  color: var(--pink-500);
  padding-left: 30px;
}

.mobile-nav__link:hover::before,
.mobile-nav__link.active::before {
  height: 60%;
}

.mobile-nav__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 32, 128, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--pink-500);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav__link:hover .mobile-nav__icon,
.mobile-nav__link.active .mobile-nav__icon {
  background: var(--gradient-hero);
  color: #fff;
}

/* ── Divider ───────────────────────────────────────────────── */
.mobile-nav__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 32, 128, 0.2), transparent);
  margin: 8px 24px;
}

/* ── Social Icons ──────────────────────────────────────────── */
.mobile-nav__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.32s, transform 0.35s ease 0.32s;
}

.mobile-nav.open .mobile-nav__socials {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 32, 128, 0.08);
  color: var(--pink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mobile-nav__social-btn:hover {
  background: var(--gradient-hero);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Tagline ───────────────────────────────────────────────── */
.mobile-nav__tagline {
  padding: 12px 24px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.35s ease 0.38s;
}

.mobile-nav.open .mobile-nav__tagline {
  opacity: 1;
}



/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 60% 40%, rgba(255, 133, 179, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(183, 110, 121, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(255, 32, 128, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, var(--pink-50) 0%, var(--blush) 40%, var(--pink-100) 100%);
  animation: meshShift 15s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% {
    background-position: 0% 0%;
    filter: hue-rotate(0deg);
  }

  100% {
    background-position: 100% 100%;
    filter: hue-rotate(10deg);
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 32, 128, 0.6), rgba(255, 133, 179, 0.2));
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Sparkle decorations */
.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 1.2rem;
  animation: sparklePulse 3s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes sparklePulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.4) rotate(180deg);
    opacity: 0.9;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}

.hero__pretext {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: 16px;
  display: block;
}

.hero__headline {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__headline .line-1 {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-muted);
}

.hero__headline .line-2 {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  font-style: italic;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.0;
  margin: 4px 0;
}

.hero__headline .line-3 {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--text-main);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 36px;
}

.hero__stats>div {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink-600);
  line-height: 1;
}

.hero__stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.float-1 {
  width: 220px;
  height: 280px;
  top: 20px;
  left: 60px;
  z-index: 3;
  transform: rotate(-4deg);
}

.float-2 {
  width: 200px;
  height: 240px;
  top: 80px;
  right: 40px;
  z-index: 2;
  transform: rotate(5deg);
}

.float-3 {
  width: 180px;
  height: 220px;
  bottom: 30px;
  left: 130px;
  z-index: 4;
  transform: rotate(-2deg);
}

.floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder for floating images */
.floating-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pink-300);
}

.hero__badge {
  position: absolute;
  background: var(--gradient-hero);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-pink);
  white-space: nowrap;
  z-index: 5;
}

.hero__badge--sale {
  top: 60px;
  right: 10px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--pink-400);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.6;
  }
}

/* =========================================================
   ANNOUNCEMENT TICKER
   ========================================================= */
.ticker {
  background: var(--pink-500);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 900;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker__item {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-right: 60px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   CATEGORY SECTION
   ========================================================= */
.categories {
  background: var(--off-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--pink-100);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-deep);
  border-color: var(--pink-300);
}

.category-card:hover::before {
  opacity: 0.06;
}

.category-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  transition: transform var(--transition-spring);
}

.category-card:hover .category-card__icon {
  transform: scale(1.2) rotate(-5deg);
}

.category-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.category-card__count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: auto;
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pink-500);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}

.category-card:hover .category-card__arrow {
  transform: translateX(4px);
  background: var(--pink-700);
}

/* =========================================================
   FEATURED / NEW ARRIVALS — SWIPER CAROUSEL
   ========================================================= */
.featured {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--pink-50) 100%);
  padding: var(--section-pad);
  overflow: hidden;
}

.featured .section-header {
  margin-bottom: 40px;
}

.featured-swiper {
  overflow: visible !important;
  padding: 16px 4px 32px !important;
}

/* =========================================================
   PRODUCT CARD (shared)
   ========================================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: var(--pink-100);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gradient-card);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.08);
}

/* Placeholder */
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--gradient-card);
  color: var(--pink-300);
}

/* Badges on card */
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

/* Wishlist */
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.product-card__wishlist:hover,
.product-card__wishlist.active {
  color: var(--pink-500);
  background: #fff;
  transform: scale(1.15);
}

/* Quick Add */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--gradient-hero);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

/* Card Info */
.product-card__info {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.72rem;
  color: var(--pink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-600);
}

/* Collections page specific product card styles (smaller) */
.collections-page .product-card__image-wrap {
  aspect-ratio: 3/4;
}

.collections-page .product-card__info {
  padding: 12px;
}

.collections-page .product-card__name {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.collections-page .product-card__category {
  font-size: 0.68rem;
}

.collections-page .price-current {
  font-size: 1rem;
}

.collections-page .price-original {
  font-size: 0.8rem;
}

.price-original,
.price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* =========================================================
   SHOP SECTION — FILTER + GRID
   ========================================================= */
.shop {
  background: var(--off-white);
  overflow: visible;
}

.shop__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  overflow: visible;
}

/* Filter Sidebar */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 120px;
  z-index: 20;
  align-self: flex-start;
  height: fit-content;
  border: 1px solid rgba(255, 32, 128, 0.08);
}

.filter-sidebar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-main);
}

.filter-reset {
  font-size: 0.8rem;
  color: var(--pink-500);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 32, 128, 0.15);
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-group__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin-bottom: 12px;
  display: block;
}

/* Category checkboxes */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-main);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-sm);
}

.filter-checkbox:hover {
  color: var(--pink-500);
  background: var(--pink-50);
  transform: translateX(2px);
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-500);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Price range */
.price-range {
  margin-top: 8px;
}

.price-range__inputs {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.price-range__inputs input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--off-white);
}

.price-range__inputs input:focus {
  border-color: var(--pink-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 32, 128, 0.08);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--pink-500);
  height: 6px;
  cursor: pointer;
  background: var(--pink-100);
  border-radius: 999px;
}

/* Sort select */
.filter-sort {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--off-white);
  outline: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF2080' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.filter-sort:focus {
  border-color: var(--pink-400);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 32, 128, 0.08);
}

.filter-sort:focus {
  border-color: var(--pink-400);
}

/* Filter toggle (mobile) */
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--pink-200);
  color: var(--pink-600);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

/* Bottom sheet filter (mobile) */
.filter-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
  z-index: 1300;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}

.filter-sheet.open {
  transform: translateY(0);
}

.filter-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--pink-200);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.filter-sheet__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-sheet__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-50);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-sheet__close:hover {
  background: var(--pink-500);
  color: #fff;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shop__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.shop__result-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.shop__sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop__sort-wrap label {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--pink-50) 25%, var(--pink-100) 50%, var(--pink-50) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
  background: linear-gradient(180deg, var(--pink-50) 0%, var(--off-white) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image collage */
.about__images {
  position: relative;
  height: 520px;
}

.about__blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--gradient-card);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  }

  25% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 50%;
  }

  50% {
    border-radius: 50% 50% 60% 40% / 40% 60% 50% 60%;
  }

  75% {
    border-radius: 70% 30% 50% 50% / 30% 70% 60% 40%;
  }
}

.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-deep);
  z-index: 2;
}

.about__img--main {
  width: 260px;
  height: 320px;
  top: 30px;
  left: 30px;
  transform: rotate(-4deg);
}

.about__img--2 {
  width: 200px;
  height: 240px;
  bottom: 30px;
  right: 20px;
  transform: rotate(5deg);
  z-index: 3;
}

.about__img--3 {
  width: 160px;
  height: 200px;
  top: 40px;
  right: 60px;
  transform: rotate(3deg);
}

.about__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--gradient-card);
}

.about__badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  background: var(--gradient-hero);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-pink);
  z-index: 5;
  white-space: nowrap;
  animation: badgePulse 3s ease-in-out infinite;
}

/* About content */
.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-main);
}

.about__heading em {
  font-style: italic;
  color: var(--pink-500);
}

.about__text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.about__value-pill {
  padding: 10px 20px;
  background: var(--pink-50);
  border: 1.5px solid var(--pink-200);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-spring);
}

.about__value-pill:hover {
  background: var(--pink-500);
  color: #fff;
  border-color: var(--pink-500);
  transform: translateY(-3px) scale(1.03);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: linear-gradient(135deg, var(--blush) 0%, var(--pink-100) 50%, var(--blush) 100%);
  padding: var(--section-pad);
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255, 32, 128, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonials-swiper {
  padding: 20px 4px 48px !important;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(184, 0, 88, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.testimonial-card__stars {
  font-size: 1.2rem;
  color: #FFB800;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pink-600);
}

.testimonial-card__city {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =========================================================
   INSTAGRAM FEED STRIP
   ========================================================= */
.instagram {
  background: var(--off-white);
  padding: var(--section-pad);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 40px 0;
}

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--gradient-card);
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram__item:hover img {
  transform: scale(1.1);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 32, 128, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}

.instagram__item:hover .instagram__overlay {
  opacity: 1;
}

.instagram__overlay svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.instagram__overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.instagram__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--gradient-card);
}

.instagram__cta {
  text-align: center;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--pink-50) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.contact__info-title em {
  font-style: italic;
  color: var(--pink-500);
}

.contact__info-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--pink-50);
  border: 1.5px solid var(--pink-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact__detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact form */
.contact__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--pink-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 4px rgba(255, 32, 128, 0.1);
  background: #fff;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact__submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contact__submit-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.contact__submit-btn i {
  transition: transform 0.3s ease;
}

.contact__submit-btn:hover:not(:disabled) i {
  transform: translateX(4px) translateY(-2px);
}

.contact__submit-btn i.fa-spin {
  animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: successPop 0.5s var(--transition-spring);
}

@keyframes successPop {
  0% {
    transform: scale(0) rotate(-180deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pink-600);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #ffffff;
  color: var(--text-color);
  padding: 72px 0 0;
  border-top: 1px solid var(--pink-100);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--pink-600);
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
  color: var(--text-color);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: var(--pink-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--pink-600);
  transition: var(--transition);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--pink-500);
  color: #fff;
  transform: translateY(-3px);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pink-800);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--pink-600);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid var(--pink-100);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__copy a {
  color: var(--pink-600);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  font-size: 1.8rem;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.payment-icon:hover {
  color: var(--pink-600);
  transform: scale(1.15) translateY(-2px);
}

/* =========================================================
   TABLET MEDIA QUERY (768px - 1023px)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .shop__layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }

  .filter-sidebar {
    padding: 20px;
  }
}

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(90, 0, 40, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--pink-100);
  background: linear-gradient(135deg, var(--pink-50), var(--white));
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-50);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.cart-drawer__close:hover {
  background: var(--pink-500);
  color: #fff;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-drawer__body::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 2px;
}

/* Cart item */
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  margin-bottom: 12px;
  position: relative;
  align-items: flex-start;
  border: 1px solid var(--pink-50);
  transition: var(--transition);
}

.cart-item:hover {
  box-shadow: var(--shadow-card);
}

.cart-item__img {
  width: 72px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gradient-card);
}

.cart-item__details {
  flex: 1;
}

.cart-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 10px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-full);
  width: fit-content;
  overflow: hidden;
}

.cart-item__qty button {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-item__qty button:hover {
  background: var(--pink-50);
}

.cart-item__qty span {
  width: 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-item__remove:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Empty cart */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.cart-empty__icon {
  font-size: 4rem;
}

.cart-empty p {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* Cart footer */
.cart-drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--pink-100);
  background: var(--off-white);
}

.cart-summary {
  margin-bottom: 16px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.cart-summary__row.total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px solid var(--pink-100);
  margin-top: 8px;
  padding-top: 12px;
}

.cart-summary__row.total .cart-total-val {
  color: var(--pink-600);
  font-size: 1.15rem;
}

/* =========================================================
   CHECKOUT MODAL
   ========================================================= */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(90, 0, 40, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition);
  scrollbar-width: thin;
  scrollbar-color: var(--pink-200) transparent;
}

.checkout-modal__card::-webkit-scrollbar {
  width: 4px;
}

.checkout-modal__card::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-modal__card::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 2px;
}

.checkout-modal__card::-webkit-scrollbar-thumb:hover {
  background: var(--pink-400);
}

.checkout-modal.open .checkout-modal__card {
  transform: scale(1) translateY(0);
}

.checkout-modal__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--pink-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

.checkout-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-50);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.checkout-modal__close:hover {
  background: var(--pink-500);
  color: #fff;
}

.checkout-modal__body {
  padding: 28px;
}

/* Step indicators */
.checkout-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}

.checkout-step.active .checkout-step__num {
  background: var(--pink-500);
  color: #fff;
}

.checkout-step.active {
  color: var(--pink-500);
}

.checkout-step-divider {
  width: 40px;
  height: 2px;
  background: var(--pink-100);
  margin: 0 8px;
  align-self: center;
}

/* =========================================================
   PAYMENT SUCCESS PAGE
   ========================================================= */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  padding: 40px 20px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-deep);
}

.success-card__icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: successPop 0.6s var(--transition-spring);
}

.success-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.success-card__order-id {
  background: var(--pink-50);
  border: 1.5px solid var(--pink-200);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 24px 0;
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--pink-700);
  font-weight: 700;
}

/* =========================================================
   TOAST NOTIFICATION
   ========================================================= */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: toastIn 0.35s var(--transition-spring);
}

.toast.toast--success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast.toast--error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast.toast--cart {
  background: var(--gradient-hero);
}

@keyframes toastIn {
  0% {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* =========================================================
   ANIMATIONS & KEYFRAMES
   ========================================================= */
@keyframes popIn {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================================
   SWIPER CUSTOM STYLES
   ========================================================= */
.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-card) !important;
  color: var(--pink-500) !important;
  border: 1.5px solid var(--pink-100) !important;
  transition: var(--transition) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.85rem !important;
  font-weight: 900 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--pink-500) !important;
  color: #fff !important;
  border-color: var(--pink-500) !important;
}

.swiper-pagination-bullet {
  background: var(--pink-300) !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background: var(--pink-500) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 3px !important;
}

.collections-cat-swiper .swiper-slide,
.featured-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
  height: auto;
}

/* =========================================================
   ADMIN STYLES (minimal)
   ========================================================= */
.admin-body {
  background: #f8f9fa;
  font-family: var(--font-body);
  color: var(--text-main);
}

.admin-nav {
  background: var(--dark);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-nav__brand {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--pink-300);
  font-size: 1.1rem;
}

.admin-nav__links {
  display: flex;
  gap: 20px;
}

.admin-nav__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.admin-nav__link:hover {
  color: var(--pink-300);
}

.admin-nav__link.active {
  color: var(--pink-400);
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--pink-50);
  color: var(--text-main);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--pink-100);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: var(--pink-50);
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge--paid {
  background: #dcfce7;
  color: #166534;
}

.status-badge--pending {
  background: #fef9c3;
  color: #854d0e;
}

.status-badge--failed {
  background: #fee2e2;
  color: #991b1b;
}

.status-badge--new {
  background: var(--pink-50);
  color: var(--pink-700);
}

.status-badge--processing {
  background: #dbeafe;
  color: #1e40af;
}

.status-badge--shipped {
  background: #f3e8ff;
  color: #6b21a8;
}

.status-badge--delivered {
  background: #dcfce7;
  color: #166534;
}

.status-badge--cancelled {
  background: #f1f5f9;
  color: #475569;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-50), var(--blush));
}

.admin-login-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-deep);
  text-align: center;
}

.admin-login-card .logo {
  margin-bottom: 28px;
}

.admin-login-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink-700);
  margin-bottom: 8px;
}

.admin-login-card .sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.error-msg {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* =========================================================
   RESPONSIVE — TABLET (768px)
   ========================================================= */
@media (max-width: 1024px) {
  .shop__layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }

  .filter-toggle-btn {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__images {
    height: 400px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Mobile (767px) ─────────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --section-pad: 64px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }



  .hero__content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0;
  }

  .hero__visual {
    display: none;
  }

  .hero__headline .line-1 {
    font-size: 1.8rem;
  }

  .hero__headline .line-2 {
    font-size: 2.8rem;
  }

  .hero__headline .line-3 {
    font-size: 1.6rem;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card {
    padding: 24px 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card__info {
    padding: 12px;
  }

  .product-card__name {
    font-size: 0.9rem;
  }

  .about__images {
    height: 320px;
  }

  .about__img--main {
    width: 180px;
    height: 220px;
  }

  .about__img--2 {
    width: 150px;
    height: 180px;
  }

  .about__img--3 {
    display: none;
  }

  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cart-drawer {
    width: 100vw;
  }

  .checkout-modal__card {
    border-radius: var(--radius-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about__values {
    gap: 8px;
  }

  .about__value-pill {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

@media (max-width: 400px) {
  .hero__headline .line-2 {
    font-size: 2.2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MISC HELPERS
   ========================================================= */
.overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(26, 0, 16, 0.5);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay-bg.open,
.overlay-bg.show {
  opacity: 1;
  pointer-events: all;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Prevent scroll when overlay is open */
body.no-scroll {
  overflow: hidden;
}

/* Lazy load blur-up effect */
img.lazy {
  filter: blur(8px);
  transition: filter 0.4s;
}

img.lazy.loaded {
  filter: blur(0);
}

/* ── Scroll to Top Button ────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-pink);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 32, 128, 0.4);
}

/* =========================================================
   HERO BANNER SLIDER
   ========================================================= */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 88px;
  /* offset for fixed navbar */
}

.banner-swiper {
  width: 100%;
  height: clamp(480px, 80vh, 820px);
}

.banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Gradient fallback slides */
.banner-slide--gradient-1 {
  background: linear-gradient(135deg, #FF85B3 0%, #FF2080 45%, #B80058 100%);
}

.banner-slide--gradient-2 {
  background: linear-gradient(135deg, #B76E79 0%, #FF2080 50%, #5C002B 100%);
}

.banner-slide--gradient-3 {
  background: linear-gradient(135deg, #FADADD 0%, #FF85B3 40%, #E0006B 100%);
}

/* Dark overlay for text readability */
.banner-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(26, 0, 16, 0.65) 0%,
      rgba(26, 0, 16, 0.3) 60%,
      rgba(26, 0, 16, 0.05) 100%);
  z-index: 1;
}

.banner-slide__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 40px 24px;
}

.banner-slide__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.banner-slide__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-slide__heading em {
  font-style: italic;
  color: var(--pink-200);
}

.banner-slide__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.banner-slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pink-700);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.02em;
}

.banner-slide__btn span {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.banner-slide__btn:hover {
  background: var(--pink-500);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 32, 128, 0.4);
}

.banner-slide__btn:hover span {
  transform: translateX(4px);
}

/* Banner nav arrows */
.banner-btn-next,
.banner-btn-prev {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: var(--transition) !important;
}

.banner-btn-next:hover,
.banner-btn-prev:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1);
}

.banner-btn-next::after,
.banner-btn-prev::after {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

/* Pagination dots */
.banner-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.banner-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* Scroll hint arrow */
.banner-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  animation: bounceDown 2s ease-in-out infinite;
  transition: var(--transition);
}

.banner-scroll-hint svg {
  width: 18px;
  height: 18px;
}

.banner-scroll-hint:hover {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* =========================================================
   MOBILE BOTTOM NAVBAR (App-like)
   ========================================================= */
.mobile-bottom-nav {
  display: none;
  /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 32, 128, 0.12);
  box-shadow: 0 -4px 30px rgba(184, 0, 88, 0.12);
  padding: 6px 0 max(8px, env(safe-area-inset-bottom));
  height: 64px;
}

.mobile-bottom-nav {
  display: none;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
}

.mobile-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 6px;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 12px;
  margin: 0 2px;
}

.mobile-bottom-nav__item:active {
  transform: scale(0.9);
}

.mobile-bottom-nav__item.active,
.mobile-bottom-nav__item:hover {
  color: var(--pink-500);
}

.mobile-bottom-nav__item.active .mobile-bottom-nav__icon {
  background: var(--pink-50);
}

.mobile-bottom-nav__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background var(--transition);
}

.mobile-bottom-nav__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.mobile-bottom-nav__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* Cart badge on bottom nav */
.mobile-bottom-nav__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  border-radius: 99px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  animation: popIn 0.3s var(--transition-spring);
}


/* Body padding to prevent content hidden behind bottom nav on mobile */
@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  /* Scroll-to-top on mobile: 50px, sits just above bottom nav (64px + 16px gap) */
  .scroll-to-top {
    bottom: 150px;
    right: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* WhatsApp on mobile: 50px, sits 10px above scroll-to-top (80px + 50px + 10px) */
  .whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 140px;
    right: 16px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1150;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  /* Hide desktop filter sidebar on mobile */
  .filter-sidebar {
    display: none;
  }

  /* Shop layout full width on mobile */
  .shop__layout {
    grid-template-columns: 1fr;
  }

  /* Product grid responsive on mobile and tablet */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hero banner mobile */
  .hero-banner {
    margin-top: 72px;
  }

  .banner-swiper {
    height: clamp(360px, 65vw, 500px);
  }

  .banner-slide__heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .banner-slide__sub {
    font-size: 0.88rem;
    margin-bottom: 22px;
  }

  .banner-slide__btn {
    padding: 11px 24px;
    font-size: 0.88rem;
  }

  .banner-slide__content {
    padding: 28px 20px;
  }

  .banner-btn-next,
  .banner-btn-prev {
    display: none !important;
  }

  /* Container tighter on mobile */
  .container {
    padding: 0 16px;
  }

  /* Section spacing */
  :root {
    --section-pad: 52px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  /* Navbar */
  .navbar {
    padding: 10px 0;
  }

  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }



  .navbar__icon-btn.wishlist-btn,
  .navbar__icon-btn.cart-btn,
  .navbar__icon-btn.account-btn {
    display: none;
  }

  .navbar__logo-img {
    height: 40px;
    width: auto;
    max-width: 130px;
  }

  .navbar__logo-name {
    font-size: 1.05rem;
  }

  .navbar__icon-btn {
    width: 36px;
    height: 36px;
  }

  /* Categories */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 20px 12px;
  }

  .category-card__icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .category-card__name {
    font-size: 0.88rem;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__info {
    padding: 10px;
  }

  .product-card__name {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .product-card__price {
    font-size: 0.85rem;
  }

  .price-current {
    font-size: 0.9rem;
  }

  .price-original {
    font-size: 0.75rem;
  }

  /* Featured swiper */
  .featured {
    padding: 40px 0;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__images {
    height: 280px;
  }

  .about__blob {
    width: 240px;
    height: 240px;
  }

  .about__img--main {
    width: 160px;
    height: 200px;
  }

  .about__img--2 {
    width: 130px;
    height: 160px;
  }

  .about__img--3 {
    display: none;
  }

  .about__values {
    gap: 8px;
  }

  .about__value-pill {
    font-size: 0.78rem;
    padding: 7px 12px;
  }

  /* Testimonials */
  .testimonials {
    padding: 40px 0;
  }

  /* Instagram */
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer__payments {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Cart & Checkout */
  .cart-drawer {
    width: 100vw;
  }

  .checkout-modal__card {
    border-radius: var(--radius-lg);
    margin: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Shop filters */
  .shop__layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }

  .filter-toggle-btn {
    display: flex;
  }

  /* Hero section legacy */
  .hero__content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-swiper {
    height: clamp(300px, 70vw, 400px);
  }

  .banner-slide__heading {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .hero-banner {
    margin-top: 88px;
  }
}

/* =========================================================
   COLLECTIONS PAGE STYLES
   ========================================================= */
.collections-hero {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--blush) 100%);
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--pink-100);
}

.collections-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.collections-hero__title em {
  color: var(--pink-500);
  font-style: italic;
}

.collections-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.collections-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
  border: 2px solid var(--pink-100);
  overflow: visible;
  /* so dropdown shows */
  position: relative;
  z-index: 10;
  /* Same as dropdown to stay in context */
  transition: all 0.3s ease;
}

.collections-search-bar:focus-within {
  border-color: var(--pink-400);
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.18);
  transform: translateY(-2px);
}

.collections-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: transparent;
}

.collections-search-bar input::placeholder {
  color: var(--text-muted);
}

.collections-search-bar button {
  padding: 16px 28px;
  background: var(--gradient-hero);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 0 60px 60px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collections-search-bar button:hover {
  opacity: 0.92;
  transform: scale(1.03);
}

/* Collections Search Results Dropdown */
.collections-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  /* Solid white background */
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(236, 72, 153, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 20;
  /* SUPER HIGH Z-index to stay above everything */
  display: none;
  border: 1px solid var(--pink-100);
}

.collections-search-results.visible {
  display: block;
}

.search-result-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: var(--pink-50);
}

.search-result-item:first-child {
  border-radius: 20px 20px 0 0;
}

.search-result-item:last-child {
  border-radius: 0 0 20px 20px;
}

.search-result-item__img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.08);
}

.search-result-item__info h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.search-result-item__info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.search-result-item__price {
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-600);
}

.search-result-empty {
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 95px;
  /* Sit directly above scroll-to-top button (bottom: 30px + height: 50px + 15px gap) */
  right: 30px;
  /* Align horizontally with scroll-to-top button */
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1150;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20BD5F;
  transform: scale(1.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Category cards grid on collections page */
.collections-cat-section {
  padding: 64px 0 48px;
}

.collections-cat-swiper {
  margin-top: 24px;
  padding: 16px 4px 56px !important;
  position: relative;
}

.collections-cat-swiper .swiper-button-next,
.collections-cat-swiper .swiper-button-prev {
  color: var(--pink-500);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  top: 40% !important;
}

.collections-cat-swiper .swiper-button-next::after,
.collections-cat-swiper .swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: 800;
}

.collections-cat-swiper .swiper-pagination {
  bottom: 14px !important;
}

.collections-cat-swiper .swiper-pagination-bullet {
  background: var(--pink-200);
  width: 10px;
  height: 10px;
}

.collections-cat-swiper .swiper-pagination-bullet-active {
  background: var(--pink-500);
  width: 24px;
  border-radius: 10px;
}

.collections-cat-card {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.collections-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.collections-cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  text-align: center;
  border: 1.5px solid var(--pink-100);
  position: relative;
  height: 100%;
}

.collections-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--pink-300);
}

.collections-cat-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pink-500);
  margin-bottom: 14px;
  transition: transform var(--transition);
}

.collections-cat-card:hover .collections-cat-card__icon {
  transform: scale(1.12) rotate(-4deg);
}

.collections-cat-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.collections-cat-card__count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
}

.collections-cat-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pink-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Collections product section */
.collections-products {
  padding: 0 0 80px;
}

.collections-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pink-100);
}

.collections-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1.5px solid var(--pink-100);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.collections-filter-chip:hover,
.collections-filter-chip.active {
  background: var(--pink-500);
  color: #fff;
  border-color: var(--pink-500);
}

.collections-sort-wrap {
  margin-left: auto;
}

.collections-sort-select {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--pink-100);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-main);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}

.collections-sort-select:focus {
  border-color: var(--pink-400);
}

/* Empty state */
.collections-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.collections-empty__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.collections-empty h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

/* Mobile responsive for collections */
@media (max-width: 767px) {
  .collections-hero {
    padding: 80px 0 40px;
  }

  .collections-hero__title {
    font-size: 1.8rem;
  }

  .collections-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .collections-cat-card {
    padding: 22px 14px 18px;
  }

  .collections-cat-card__icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .collections-filter-bar {
    gap: 8px;
  }

  .collections-filter-chip {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .collections-sort-wrap {
    width: 100%;
  }

  .collections-sort-select {
    width: 100%;
  }
}

/* Search Overlay Modal
   ========================================================= */
.search-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-overlay-modal__close:hover {
  transform: rotate(90deg);
}

.search-overlay-modal__content {
  width: 90%;
  max-width: 600px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-deep);
}

.search-overlay-modal__content input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.search-overlay-modal__content input:focus {
  border-color: var(--pink-400);
}

.search-overlay-modal__results {
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.search-result-item:hover {
  background: var(--pink-50);
}

.search-result-item__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.search-result-item__placeholder {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--pink-400);
}

.search-result-item__info {
  flex: 1;
}

.search-result-item__info h4 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--text-main);
}

.search-result-item__info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.search-result-item__price {
  text-align: right;
}

/* ── Mobile Layout Fit for Cart & Checkout ── */
@media (max-width: 767px) {
  .cart-drawer__footer {
    padding-bottom: max(24px, calc(16px + env(safe-area-inset-bottom))) !important;
  }

  .checkout-modal__card {
    margin-bottom: 80px !important;
    /* sit above bottom navigation and safe areas */
    max-height: 80vh !important;
  }
}