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

:root {
  --pink-light: #F8E8E0;
  --pink-medium: #F5D5C8;
  --neutral-bg: #FAF7F5;
  --neutral-warm: #F0EBE3;
  --white: #FFFFFF;
  --sage: #D4E2D4;
  --lavender: #E8E0F0;
  --rose-btn: #E8A0BF;
  --rose-btn-hover: #D88AAD;
  --text-dark: #2D2D2D;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --star-gold: #F0B429;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--neutral-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0 24px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.navbar-logo span {
  color: var(--rose-btn);
}

.navbar-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-dark);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose-btn);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 50%, var(--lavender) 100%);
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero h1 .accent {
  color: var(--rose-btn);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--rose-btn);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1.5px solid var(--neutral-warm);
}

.btn-secondary:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.category-card.coming-soon {
  opacity: 0.55;
  cursor: default;
}

.category-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.category-card .badge-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  background: var(--neutral-warm);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

/* ===== TRUST / WHY SECTION ===== */
.trust-section {
  background: var(--white);
  padding: 80px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--neutral-bg);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.trust-card .trust-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footer-brand .footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand .footer-logo span {
  color: var(--rose-btn);
}

.footer-brand p {
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--rose-btn);
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.affiliate-disclosure-footer {
  font-size: 0.75rem;
  margin-top: 8px;
  opacity: 0.6;
}

/* ===== CLEANSERS PAGE ===== */
.page-header {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 48px 24px 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Affiliate banner */
.affiliate-banner {
  background: var(--neutral-warm);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== SIDEBAR + GRID LAYOUT ===== */
.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* ===== FILTERS (Sidebar) ===== */
.filters {
  position: sticky;
  top: 80px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.filters-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 6px;
  padding-left: 4px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--text-medium);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
}

.filter-btn:hover {
  background: var(--pink-light);
  color: var(--rose-btn-hover);
}

.filter-btn.active {
  background: var(--rose-btn);
  color: var(--white);
  border-color: var(--rose-btn);
  font-weight: 600;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-bg);
  padding: 24px;
  overflow: hidden;
}

.product-card-img img {
  max-height: 200px;
  object-fit: contain;
  transition: transform var(--transition);
}

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

/* Broken image fallback */
.img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), var(--lavender));
  border-radius: var(--radius-sm);
  gap: 8px;
}

.fallback-initial {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-btn);
  opacity: 0.6;
}

.fallback-text {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

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

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.product-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--text-dark);
}

.product-description {
  font-size: 0.83rem;
  color: var(--text-medium);
  margin-bottom: 12px;
  line-height: 1.6;
  flex: 1;
}

.product-rating {
  color: var(--star-gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.product-rating .rating-num {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-left: 4px;
  letter-spacing: 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--pink-light);
  color: var(--text-medium);
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--rose-btn);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-shop:hover {
  background: var(--rose-btn-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Hidden state for filtered products */
.product-card.hidden {
  display: none;
}

/* No results message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===== DISCLAIMER SECTION ===== */
.disclaimer-section {
  background: var(--neutral-warm);
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-inner h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-inner p {
  font-size: 0.78rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 10px;
}

.disclaimer-inner p:last-child {
  margin-bottom: 0;
}

.disclaimer-inner a {
  color: var(--rose-btn);
  text-decoration: underline;
  font-weight: 500;
}

.disclaimer-inner a:hover {
  color: var(--rose-btn-hover);
}

/* ===== DISCLAIMER PAGE ===== */
.disclaimer-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.disclaimer-page h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.disclaimer-page .last-updated {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.disclaimer-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-light);
}

.disclaimer-page p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 14px;
}

.disclaimer-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.disclaimer-page li {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 6px;
}

.disclaimer-page a {
  color: var(--rose-btn);
  text-decoration: underline;
}

.disclaimer-page a:hover {
  color: var(--rose-btn-hover);
}

/* ===== CATEGORIES HUB PAGE ===== */
.categories-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 56px;
  text-align: center;
}

.categories-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.categories-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.categories-hub {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.category-hub-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-hub-card .hub-icon {
  font-size: 2.8rem;
  margin-bottom: 4px;
}

.category-hub-card h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.category-hub-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.category-hub-card .hub-count {
  display: inline-block;
  padding: 4px 14px;
  background: var(--pink-light);
  color: var(--rose-btn-hover);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.category-hub-card .hub-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 24px;
  background: var(--rose-btn);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.category-hub-card:hover .hub-btn {
  background: var(--rose-btn-hover);
}

/* ===== DARK MODE ===== */
body.dark-mode {
  --pink-light: #2A2025;
  --pink-medium: #3A2530;
  --neutral-bg: #1A1618;
  --neutral-warm: #252022;
  --white: #222020;
  --text-dark: #F0EAEC;
  --text-medium: #C0B8BB;
  --text-light: #8A8085;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
}

body.dark-mode .navbar {
  background: rgba(26,22,24,0.92);
  border-bottom-color: rgba(255,255,255,0.06);
}

body.dark-mode .product-card-img {
  background: #252022;
}

body.dark-mode .img-fallback {
  background: linear-gradient(135deg, #2A2025, #252030);
}

body.dark-mode .affiliate-banner {
  background: #252022;
}

body.dark-mode .footer {
  background: #111010;
}

.dark-mode-toggle {
  background: none;
  border: 1.5px solid var(--neutral-warm);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-medium);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  white-space: nowrap;
}

.dark-mode-toggle:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.dark-mode-toggle .toggle-icon {
  font-size: 1rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-btn);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

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

.back-to-top:hover {
  background: var(--rose-btn-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== WISHLIST HEART ===== */
.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 5;
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
  transform: scale(1.15);
  background: var(--white);
}

.wishlist-btn.active {
  color: #E8405E;
  background: #FFF0F2;
}

.wishlist-btn.active .heart-icon::after {
  content: '❤️';
}

.wishlist-btn .heart-icon::after {
  content: '🤍';
}

.product-card {
  position: relative;
}

/* Wishlist counter in navbar */
.wishlist-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-medium);
  transition: color var(--transition);
  position: relative;
  cursor: pointer;
}

.wishlist-counter:hover {
  color: var(--text-dark);
}

.wishlist-count-badge {
  background: var(--rose-btn);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ===== SEARCH BAR ===== */
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-medium);
  padding: 4px 8px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.search-toggle:hover {
  color: var(--text-dark);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  backdrop-filter: blur(4px);
}

.search-overlay.open {
  display: flex;
}

.search-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 640px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}

body.dark-mode .search-modal {
  background: #252022;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
  border-bottom: 1px solid var(--neutral-warm);
}

.search-input-wrap .search-icon {
  font-size: 1.2rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: transparent;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--neutral-warm);
  font-family: 'Inter', sans-serif;
}

.search-results {
  overflow-y: auto;
  padding: 8px;
  flex: 1;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.search-result-item:hover {
  background: var(--pink-light);
}

.search-result-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.search-result-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.search-result-text p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.search-no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.search-hint {
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--rose-btn);
}

.breadcrumbs .separator {
  font-size: 0.7rem;
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== TRENDING TIKTOK TAG ===== */
.tag-trending {
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
  color: white;
  font-weight: 600;
  animation: trendingPulse 2s ease-in-out infinite;
}

@keyframes trendingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.trending-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #FE2C55, #25F4EE);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== COMPARE PAGE ===== */
.compare-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.compare-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.compare-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.compare-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.compare-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  overflow: hidden;
  transition: all var(--transition);
}

.compare-card:hover {
  box-shadow: var(--shadow-md);
}

.compare-card-header {
  background: var(--pink-light);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compare-card-header h2 {
  font-size: 1.2rem;
}

.compare-category-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--rose-btn);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  background: var(--neutral-bg);
  font-weight: 600;
  width: 140px;
  vertical-align: top;
}

.compare-table td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--neutral-warm);
  line-height: 1.6;
}

.compare-table tr:last-child td,
.compare-table tr:last-child th {
  border-bottom: none;
}

.compare-table .product-col {
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.compare-winner {
  background: rgba(232,160,191,0.08);
}

.compare-verdict {
  padding: 20px 24px;
  background: var(--pink-light);
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.compare-verdict strong {
  color: var(--text-dark);
}

.compare-shop-btns {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  flex-wrap: wrap;
}

/* ===== ROUTINE BUILDER ===== */
.routine-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender) 50%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.routine-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.routine-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.routine-builder-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.routine-step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 24px;
}

.routine-step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.routine-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-btn);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.routine-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.routine-option {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: transparent;
  color: var(--text-medium);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}

.routine-option:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.routine-option.selected {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.routine-generate-btn {
  display: block;
  margin: 32px auto 0;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  background: var(--rose-btn);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.routine-generate-btn:hover {
  background: var(--rose-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.routine-result {
  display: none;
  margin-top: 40px;
}

.routine-result.visible {
  display: block;
}

.routine-period {
  margin-bottom: 32px;
}

.routine-period h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.routine-product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.routine-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.routine-product-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--rose-btn-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.routine-product-info {
  flex: 1;
}

.routine-product-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.routine-product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.routine-product-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-right: 12px;
  white-space: nowrap;
}

.routine-total {
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 24px;
}

.routine-total h3 {
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.routine-total .total-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-btn-hover);
}

/* ===== SHAREABLE CARD ===== */
.share-card-container {
  display: none;
  margin-top: 24px;
}

.share-card-container.visible {
  display: block;
}

.share-card {
  background: linear-gradient(135deg, var(--pink-light) 0%, #fff 50%, var(--lavender) 100%);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}

.share-card-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.share-card-logo span {
  color: var(--rose-btn);
}

.share-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.share-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.share-card-routine {
  text-align: left;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.share-card-routine li {
  font-size: 0.82rem;
  color: var(--text-medium);
  padding: 4px 0;
  list-style: none;
}

.share-card-routine li::before {
  content: '✨ ';
}

.share-card-footer {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 12px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.share-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: var(--white);
  color: var(--text-medium);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.share-btn:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.share-btn-primary {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.share-btn-primary:hover {
  background: var(--rose-btn-hover);
  border-color: var(--rose-btn-hover);
  color: white;
}

/* ===== WISHLIST PAGE ===== */
.wishlist-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.wishlist-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.wishlist-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

.wishlist-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.wishlist-count-text {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.wishlist-clear-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: transparent;
  color: var(--text-medium);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}

.wishlist-clear-btn:hover {
  border-color: #E8405E;
  color: #E8405E;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.wishlist-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.wishlist-empty .empty-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.wishlist-empty h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== NAVBAR ACTIONS ===== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--neutral-warm);
  }

  .navbar-links.open {
    display: flex;
  }

  .products-layout {
    grid-template-columns: 1fr;
    padding: 24px 20px 60px;
  }

  .filters {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .filters-heading {
    width: 100%;
    text-align: center;
  }

  .filter-btn {
    width: auto;
    text-align: center;
  }

  .hero {
    padding: 64px 20px 56px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 56px 20px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .dark-mode-toggle {
    margin-left: 8px;
    padding: 5px 10px;
    font-size: 0.78rem;
  }

  .dark-mode-toggle .toggle-text {
    display: none;
  }

  .search-modal {
    width: 95%;
    margin-top: -40px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .compare-table th {
    width: 100px;
  }

  .routine-options {
    gap: 8px;
  }

  .routine-option {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .routine-product-card {
    flex-wrap: wrap;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ===== INGREDIENT GLOSSARY ===== */
.glossary-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.glossary-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.glossary-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.glossary-search-wrap {
  max-width: 500px;
  margin: 24px auto 0;
  position: relative;
}

.glossary-search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 44px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.glossary-search-wrap input:focus {
  border-color: var(--rose-btn);
}

.glossary-search-wrap::before {
  content: '🔍';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.glossary-letters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 800px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.glossary-letters button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--neutral-warm);
  background: var(--white);
  color: var(--text-medium);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.glossary-letters button:hover,
.glossary-letters button.active {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.glossary-letters button.disabled {
  opacity: 0.3;
  cursor: default;
}

.glossary-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.glossary-letter-section {
  margin-bottom: 40px;
}

.glossary-letter-section h2 {
  font-size: 1.8rem;
  color: var(--rose-btn);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink-light);
}

.glossary-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.glossary-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.glossary-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.glossary-card .glossary-aka {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
}

.glossary-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--pink-light);
  color: var(--rose-btn-hover);
  font-size: 0.7rem;
  font-weight: 600;
}

.glossary-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 6px;
}

.glossary-card .glossary-tip {
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--neutral-bg);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.faq-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 700px;
  margin: 24px auto 0;
}

.faq-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: transparent;
  color: var(--text-medium);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.faq-filter-btn:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.faq-filter-btn.active {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--rose-btn);
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--rose-btn);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-category-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--pink-light);
  color: var(--rose-btn-hover);
  font-size: 0.68rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== DUPES PAGE ===== */
.dupes-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 50%, var(--lavender) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.dupes-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.dupes-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.dupes-savings-counter {
  text-align: center;
  padding: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-medium);
}

.dupes-savings-counter .savings-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-btn);
}

.dupes-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 0;
}

.dupes-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 24px;
}

.dupe-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.dupe-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.dupe-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px;
  gap: 16px;
}

.dupe-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.luxury-label {
  background: var(--lavender);
  color: #6B5B95;
}

.affordable-label {
  background: var(--pink-light);
  color: var(--rose-btn-hover);
}

.dupe-vs h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.dupe-brand {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.dupe-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.luxury-price {
  color: var(--text-light);
  text-decoration: line-through;
}

.affordable-price {
  color: var(--rose-btn);
}

.dupe-arrow {
  font-size: 1.5rem;
  color: var(--rose-btn);
  font-weight: 700;
}

.dupe-details {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--neutral-warm);
}

.dupe-savings {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--rose-btn);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.dupe-why {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ===== SEASONAL PAGE ===== */
.seasonal-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.seasonal-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.seasonal-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.seasonal-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px auto 0;
}

.seasonal-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: transparent;
  color: var(--text-medium);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.seasonal-tab:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.seasonal-tab.active {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.seasonal-section {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.seasonal-section.active {
  display: block;
}

.seasonal-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.seasonal-section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.seasonal-section-header p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.seasonal-product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  transition: all var(--transition);
}

.seasonal-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.seasonal-product-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--rose-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.seasonal-product-info {
  flex: 1;
}

.seasonal-product-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.seasonal-product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.seasonal-product-price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 12px;
  white-space: nowrap;
}

.seasonal-total {
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 24px;
}

.seasonal-total h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.seasonal-total .total-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-btn-hover);
}

.seasonal-tip {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.seasonal-tip strong {
  color: var(--text-dark);
}

/* ===== BEST SELLERS PAGE ===== */
.bestsellers-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--neutral-bg) 50%, var(--lavender) 100%);
  padding: 64px 24px 48px;
  text-align: center;
}

.bestsellers-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.bestsellers-hero p {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.bestsellers-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
}

.bestsellers-tab {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  background: transparent;
  color: var(--text-medium);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.bestsellers-tab:hover {
  border-color: var(--rose-btn);
  color: var(--rose-btn);
}

.bestsellers-tab.active {
  background: var(--rose-btn);
  color: white;
  border-color: var(--rose-btn);
}

.bestsellers-section {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.bestsellers-section.active {
  display: block;
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 5;
  color: white;
  padding: 0 10px;
  white-space: nowrap;
}

.rank-gold {
  background: linear-gradient(135deg, #F0B429, #D4A017);
}

.rank-silver {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.rank-bronze {
  background: linear-gradient(135deg, #CD7F32, #B06A28);
}

.rank-default {
  background: var(--rose-btn);
}

.editors-pick-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--rose-btn);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 5;
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender) 100%);
  padding: 56px 24px;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.newsletter-inner p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-warm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--rose-btn);
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--rose-btn);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--rose-btn-hover);
  transform: translateY(-1px);
}

.newsletter-success {
  display: none;
  color: var(--rose-btn);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
}

.newsletter-fine-print {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .categories-hub {
    grid-template-columns: 1fr;
    padding: 32px 20px 60px;
  }
}

/* ===== HOMEPAGE REDESIGN — HERO LABEL & STATS ===== */
.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-btn);
  margin-bottom: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stat strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-btn);
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ===== SHOP GRID (PRIMARY ECOMMERCE CARDS) ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-btn);
}

.shop-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
}

.shop-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.shop-card-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.4;
}

.shop-card-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-btn);
}

/* ===== CURATED COLLECTIONS ===== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.collection-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.collection-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.collection-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 12px;
  line-height: 1.4;
}

.collection-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.collection-bestsellers {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
  color: #7A5C2E;
}

.collection-dupes {
  background: linear-gradient(135deg, #E8F5E8 0%, #D4ECD4 100%);
  color: #2E5A2E;
}

.collection-seasonal {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-medium) 100%);
  color: #8B4A6B;
}

.collection-compare {
  background: linear-gradient(135deg, var(--lavender) 0%, #D8D0E8 100%);
  color: #4A3B6B;
}

/* ===== TOOLS & RESOURCES (SECONDARY) ===== */
.tools-section {
  padding: 60px 24px 80px;
  background: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--neutral-bg);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--pink-light);
}

.tool-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tool-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.tool-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== HOMEPAGE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
  }
  .hero-stat strong {
    font-size: 1.3rem;
  }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 16px;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
