/* ==========================================
   1. GLOBAL RESETS & DESIGN TOKENS
   ========================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #faf7f6;
  color: #4b3f3a;
  line-height: 1.6;
}

a {
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-main: #faf7f6;
  --bg-soft: #fff7f4;
  --bg-soft-2: #fff3ee;
  --bg-header: #ffe0ea;
  --brand: #b2455a;
  --brand-dark: #7a3b4a;
  --text-soft: #9a6b5f;
  --border: #f1b6c6;
  --border-soft: #f1cfc4;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(178, 69, 90, 0.08);
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  padding: 6px 10px;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.shrink {
  padding: 3px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 2px 4px;
  margin: -2px -4px;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 0.25s ease, height 0.25s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.15;
  min-width: 0;
  transition: transform 0.25s ease;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.25s ease;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 2px;
  transition: font-size 0.25s ease;
}

.site-header.shrink .brand-logo { 
  width: 36px; 
  height: 36px; 
}

.site-header.shrink .brand-name { 
  font-size: 17px; 
}

.site-header.shrink .brand-tagline { 
  font-size: 11px; 
}

.menu-toggle {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  font-family: inherit;
  line-height: 1;
  border-radius: 0;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.28);
}

.menu-toggle .menu-icon {
  font-size: 22px;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav > a,
.nav-dropbtn {
  text-decoration: none;
  color: #4b3f3a;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.main-nav > a:hover,
.nav-dropbtn:hover {
  color: var(--brand);
}

.categories-icon {
  color: #d4a514;
  font-size: 14px;
  font-weight: 700;
  margin-right: 2px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 24px;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #4b3f3a;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-content {
    display: block;
  }
}

/* ==========================================
   3. HERO & TRUST STRIPS
   ========================================== */
.hero,
.section,
.footer-section,
#home,
#top-picks,
#skincare-recommendations,
#haircare-recommendations,
#quick-skincare-routine,
#quick-haircare-routine,
#beauty-faqs,
#about,
#ordering,
#disclaimer,
#affiliate,
#privacy,
#contact,
#makeup {
  scroll-margin-top: 95px;
}

.hero {
  background: var(--white);
  text-align: center;
  padding: 28px 16px 22px;
  border-bottom: 1px solid #f4e1e7;
}

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

.top-affiliate-banner {
  background: transparent;
  color: #7a6e69;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 16px auto;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

.top-affiliate-banner strong {
  color: var(--brand, #b2455a);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--brand);
}

.hero p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  font-size: 12.5px;
  font-weight: 600;
}

.trust-strip div {
  text-align: center;
  color: var(--brand-dark);
}

.brand-strip {
  background: var(--white);
  text-align: center;
  padding: 22px 16px;
  border-bottom: 1px solid var(--border-soft);
}

.brand-strip h2 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #9b4562;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 12px;
}

.brand-logos img {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.brand-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* ==========================================
   4. SECTIONS & GENERAL LAYOUT
   ========================================== */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 28px 16px;
}

.section-title {
  margin: 0 0 10px;
  padding: 11px 14px;
  border-left: 6px solid var(--brand);
  border-radius: 10px;
  background: #ffe0ea;
  font-size: 21px;
  line-height: 1.35;
  color: var(--brand-dark);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.section-title.clicked {
  transform: scale(0.985);
  background: #ffd2e1;
  box-shadow: 0 0 0 2px rgba(201, 90, 123, 0.12), 0 8px 18px rgba(201, 90, 123, 0.22);
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.section-divider { 
  display: none; 
}

.section-heading-wrap {
  margin-bottom: 8px;
}

.subcategory-heading {
  margin-top: 40px;
  padding: 12px 16px;
  background: #ffe3ea;
  color: #b23a48;
  border-left: 5px solid #ff4d6d;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  scroll-margin-top: 150px;
  white-space: normal;
  word-break: break-word;
}

.subcategory-heading:hover {
  background: #ffd6df;
  transform: translateX(3px);
}

.subcategory-heading:target {
  background: #ffe6ec;
  color: #a52d45;
  border-left: 5px solid #ff4d6d;
  box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.24), 0 12px 28px rgba(255, 77, 109, 0.20);
  animation: subcategoryPulse 1.6s ease-in-out 2;
}

@keyframes subcategoryPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.22), 0 12px 26px rgba(255, 77, 109, 0.18);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 77, 109, 0.34), 0 16px 34px rgba(255, 77, 109, 0.28);
  }
}

/* ==========================================
   5. PRODUCT CARDS & SLIDERS
   ========================================== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 7px 7px 6px;
  box-shadow: 0 4px 14px rgba(178, 69, 90, 0.08);
}

.product-media {
  position: relative;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 3px;
  border: 1px solid #d7a0ac;
  background: linear-gradient(145deg, #fff9f6 0%, #fff1ec 100%);
  box-shadow: inset 0 0 0 1px rgba(178, 69, 90, 0.08);
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #b2455a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(58, 19, 29, 0.18);
}

.product-img {
  width: 100%;
  border-radius: 7px;
  display: block;
  margin-bottom: 0;
  background: #fff;
  object-fit: cover;
}

.card-media-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.product-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider .product-img {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 0 2px 0;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: #d1d5db;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.dot.active {
  background-color: var(--brand);
  width: 16px;
  border-radius: 4px;
}

.product-title {
  margin: 0 0 1px;
  font-size: 14px;
  line-height: 1.3;
  color: #4b3f3a;
}

.product-meta {
  font-size: 11.5px;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.price-row {
  font-size: 12px;
  margin-bottom: 3px;
  color: var(--text-soft);
}

.discount-highlight {
  font-weight: 700;
  color: var(--brand);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
  width: 100%;
}

.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.price-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.price-btn.btn-amazon {
  background: #f3a847;
  color: #111111;
  border: 1px solid #e29230;
  box-shadow: 0 2px 5px rgba(243, 168, 71, 0.22);
}

.price-btn.btn-amazon:hover {
  background: #e89b37;
}

.price-btn.btn-brand {
  background: var(--brand, #b2455a);
  color: #ffffff;
  border: 1px solid var(--brand, #b2455a);
  box-shadow: 0 2px 5px rgba(178, 69, 90, 0.18);
}

.price-btn.btn-brand:hover {
  background: #9d3a4d;
  border-color: #9d3a4d;
}

.price-note,
.checkout-note {
  margin: 0 0 2px;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--text-soft);
}

.toggle-header {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.toggle-content {
  display: none;
  margin-top: 4px;
  font-size: 11.5px;
  color: #5c514c;
}

.toggle-content ul {
  margin: 0;
  padding-left: 18px;
}

.toggle-content li {
  margin-bottom: 3px;
}

/* ==========================================
   6. GUIDES, ROUTINES & MINI GRIDS
   ========================================== */
.guide-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px;
  margin-top: 18px;
  box-shadow: 0 4px 12px rgba(178, 69, 90, 0.08);
  transition: box-shadow 0.2s ease;
}

.guide-box:active {
  box-shadow: 0 7px 16px rgba(178, 69, 90, 0.12);
}

.guide-box h3 {
  margin-top: 0;
  color: var(--brand);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(178, 69, 90, 0.08);
  transition: box-shadow 0.2s ease;
}

.mini-card:active {
  box-shadow: 0 8px 18px rgba(178, 69, 90, 0.13);
}

.mini-card h4 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 15px;
}

.mini-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}

.mini-grid > .mini-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 12px) / 2);
  justify-self: center;
}

.routine-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 13px;
  color: #4b3f3a;
}

.routine-arrow {
  position: relative;
  display: block;
  width: 14px;
  height: 20px;
  margin: 0 auto;
  overflow: hidden;
  text-indent: -9999px;
  user-select: none;
}

.routine-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, #c56a82 0%, #b2455a 100%);
  opacity: 0.8;
}

.routine-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid #b2455a;
  border-bottom: 2px solid #b2455a;
  opacity: 0.8;
}

.routine-heading-capsule {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1.5px solid #e7b2c0;
  background: #fff9f8;
  box-shadow: 0 4px 10px rgba(178, 69, 90, 0.08);
  text-align: center;
  line-height: 1.15;
}

.routine-heading-lines {
  display: block;
  font-size: 20px;
  color: var(--brand-dark);
  letter-spacing: 0.01em;
}

.routine-intro {
  text-align: center;
  max-width: 640px;
  margin: 10px auto 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.routine-card {
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 1.5px solid var(--border-soft);
  box-shadow: 0 5px 14px rgba(178, 69, 90, 0.1);
}

.routine-card:hover,
.routine-card:focus-within {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 11px 24px rgba(178, 69, 90, 0.16);
  border-color: #e2a8b8;
}

.routine-card:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(178, 69, 90, 0.18);
  border-color: #d98ea4;
}

.routine-card.clicked {
  transform: translateY(-2px) scale(1.015);
  background: #fff7fa;
  border-color: #d98ea4;
  box-shadow: 0 0 0 2px rgba(201, 90, 123, 0.08), 0 10px 22px rgba(201, 90, 123, 0.16);
}

.routine-card.in-view {
  transform: translateY(-2px) scale(1.01);
  background: #fff9fb;
  border-color: #e3a7b7;
  box-shadow: 0 0 0 3px rgba(201, 90, 123, 0.08), 0 10px 22px rgba(201, 90, 123, 0.14);
}

.routine-card h4 {
  text-align: center;
  margin-bottom: 10px;
}

.routine-flow-step {
  font-weight: 600;
}

.routine-hint {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.3;
  margin-top: -2px;
}

.mini-grid.routine-single {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

#quick-haircare-routine .mini-grid.routine-single .mini-card,
.routine-single .routine-card {
  width: 50% !important;
  min-width: 240px !important;
  max-width: 280px !important;
  margin: 0 auto !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

.tip-note {
  margin-top: 12px;
  background: #fff0ec;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  color: #5c514c;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tip-note.tip-body {
  font-style: italic;
}

.guide-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.guide-deep-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  background: #ffe8ee;
  border: 1px solid #efc2cf;
  color: var(--brand-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.guide-deep-link:hover {
  background: #ffd9e4;
  transform: translateY(-1px);
}

/* ==========================================
   7. FAQ SECTION
   ========================================== */
.faq-section {
  padding-top: 22px;
  padding-bottom: 26px;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-category {
  background: var(--white);
  border: 1px solid #efcfca;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(178, 69, 90, 0.08);
  overflow: hidden;
}

.faq-category-title {
  margin: 0;
  padding: 13px 14px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--brand-dark);
  background: #fff3ee;
  border-bottom: 1px solid #f1ddd7;
}

.faq-list {
  display: block;
}

.faq-list.faq-extras-collapsed .faq-extra-item {
  display: none;
}

.faq-extra-item {
  display: block;
}

.faq-item + .faq-item {
  border-top: 1px solid #f3e1dc;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 13px 14px;
  color: #4b3f3a;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  background: #fff8f6;
}

.faq-toggle {
  color: var(--brand);
  font-size: 13px;
  line-height: 1;
  margin-top: 3px;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #fffdfc;
}

.faq-answer-inner {
  margin: 0;
  padding: 0 14px 14px;
  color: #655752;
  font-size: 13px;
  line-height: 1.65;
}

.faq-more-wrap {
  padding: 8px 14px 14px;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.faq-more-toggle {
  border: 1px solid #d78ea3;
  background: #fff4f7;
  color: var(--brand);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-more-toggle:hover {
  background: #ffeaf0;
  border-color: #cc758f;
  color: var(--brand-dark);
}

/* ==========================================
   8. BLOG & ARTICLES
   ========================================== */
.blog-trending {
  padding-top: 30px;
  padding-bottom: 32px;
}

.blog-trending-intro {
  margin: 0 auto 16px;
  max-width: 660px;
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
}

.blog-slider-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.blog-slider-track {
  display: flex;
  gap: 14px;
  width: max-content;
  min-width: 100%;
}

.blog-slide-card {
  width: min(290px, calc(100vw - 46px));
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(178, 69, 90, 0.08);
  padding: 18px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.blog-slide-card:link {
  color: var(--brand-dark);
}

.blog-slide-card:hover h3 {
  color: var(--brand);
}

.blog-slide-card h3 {
  transition: color 0.25s ease;
}

.blog-slide-media {
  position: relative;
  border-radius: 10px;
  border: 1px solid #d7a0ac;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 8px;
  aspect-ratio: 16/9;
  display: block;
}

.blog-slide-badge {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b2455a, #d86a83);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  box-shadow: 0 3px 8px rgba(178, 69, 90, 0.22), 0 1px 0 rgba(255,255,255,0.25) inset;
}

.blog-slide-card p {
  margin: 4px 0 10px;
  font-size: 13px;
  color: var(--text-soft);
  flex-grow: 1;
}

.blog-slide-link {
  text-decoration: none;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-slide-link:hover {
  color: var(--brand-dark);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  align-items: start;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 8px 8px 8px;
  box-shadow: 0 4px 14px rgba(178, 69, 90, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-media {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 8px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

.blog-badge {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
}

.blog-badge.featured,
.blog-badge.new,
.blog-badge.popular {
  background: #b2455a;
}

.blog-slide-item {
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-card-thumb {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: #f7f7f7;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 14px;
}

.blog-card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #c2185b;
  font-weight: 700;
}

.blog-card-title {
  font-size: 15px;
  margin: 6px 0 8px;
  color: #222;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card-desc {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================
   9. FASHION BOX & PROMOS
   ========================================== */
.fashion-box {
  background: #fff0ec;
  border: 1.5px solid #f4d4cb;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(178, 69, 90, 0.08);
}

.fashion-box h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.3;
}

.fashion-box p {
  margin: 0 auto 12px;
  max-width: 700px;
  line-height: 1.6;
  color: #555;
}

.fashion-categories {
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 18px;
}

.fashion-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(178, 69, 90, 0.20);
  transition: all 0.25s ease;
}

.fashion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(178, 69, 90, 0.28);
}

.fashion-btn:active {
  transform: scale(0.97);
}

/* ==========================================
   10. FOOTER & BACK TO TOP
   ========================================== */
.footer-section {
  max-width: 1100px;
  margin: auto;
  padding: 16px 16px;
}

.footer-content-area {
  background: #fff6f2;
  padding: 24px 0 8px;
  margin-top: 8px;
}

.footer-section + .footer-section {
  margin-top: 0;
}

.footer-section h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--brand-dark);
}

.footer-section p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.footer-section p + p {
  margin-top: 8px;
}

.footer-note {
  margin-top: 8px;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 5px;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-list a:hover {
  text-decoration: underline;
}

.contact-support-row {
  display: block;
}

.contact-support-text {
  margin: 0;
}

.contact-support-email {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
}

.contact-support-email:hover {
  text-decoration: underline;
}

.footer-label {
  color: var(--brand);
  font-weight: 700;
  margin-right: 4px;
}

.ordering-steps {
  background: #fff0ec;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 12px 12px 12px 14px;
}

.ordering-steps p + p {
  margin-top: 10px;
}

.footer-section ul {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

.footer-section li + li {
  margin-top: 5px;
}

.footer-intro {
  max-width: 1100px;
  margin: 0 auto 12px;
  padding: 0 16px;
  text-align: center;
  color: #7a3b4a;
  font-size: 13px;
  line-height: 1.55;
}

.footer-intro strong {
  color: var(--brand-dark);
}

#contact.footer-section {
  padding-bottom: 8px;
}

.site-footer {
  background: #fff3ee;
  color: #7a3b4a;
  text-align: center;
  padding: 14px 16px 16px;
  font-size: 11px;
}

.site-footer a {
  color: #9a6b5f;
  text-decoration: underline;
  margin: 0;
}

.footer-link-feedback {
  display: inline-block;
  border-radius: 8px;
  padding: 2px 6px;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.footer-link-feedback:hover {
  background: #ffe7de;
  color: var(--brand-dark);
}

.footer-link-feedback:active {
  transform: scale(0.97);
  background: #f9d8cc;
}

.footer-trust-line {
  font-size: 13px;
  color: #7a3b4a;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-bottom-note {
  font-size: 11px;
  color: #9a6b5f;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.footer-bottom-note .globe-icon {
  line-height: 1;
}

.footer-bottom-note .footer-link-feedback {
  padding: 2px 3px;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(178, 69, 90, 0.6); /* Softened light maroon */
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 11px;
  color: #999;
}

.footer-powered {
  font-size: 11px;
  color: #7a3b4a;
  margin-top: 6px;
  font-weight: 500;
}

.footer-location {
  font-size: 10px;
  color: #9a6b5f;
  margin-top: 2px;
}

/* ==========================================
   11. RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 8px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0 0;
    width: min(270px, calc(100vw - 16px));
    box-shadow: var(--shadow);
    gap: 0;
    overflow: hidden;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav > a {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid #f4dedf;
  }

  .main-nav > a:last-of-type {
    border-bottom: none;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid #f4dedf;
  }

  .nav-dropbtn {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand-dark);
  }

  .nav-dropbtn .menu-arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .nav-dropdown.open .nav-dropbtn .menu-arrow {
    transform: rotate(180deg);
  }

  .dropdown-content {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    padding: 0;
    background: var(--bg-soft);
    border-top: none;
  }

  .nav-dropdown.open .dropdown-content {
    display: block;
  }

  .nav-dropdown.open .dropdown-content::before,
  .nav-dropdown.open .dropdown-content::after {
    content: "";
    display: block;
    height: 3px;
    background: #d9a9b2;
  }

  .dropdown-content a {
    padding: 11px 14px 11px 28px;
    font-size: 13px;
    background: var(--bg-soft);
    border-bottom: 1px solid #f1d2c9;
    color: var(--brand-dark);
  }

  .dropdown-content a:last-child {
    border-bottom: none;
  }

  .product-nav-link {
    background: #fff7df !important;
    font-weight: 700 !important;
  }

  .hero h1 {
    font-size: 22px;
  }

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

  .brand-name {
    font-size: 20px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .section-title {
    font-size: 20px;
    padding: 10px 12px;
    border-left-width: 5px;
  }

  .faq-category-title {
    font-size: 15px;
    padding: 12px 13px;
  }

  .faq-question {
    padding: 12px 13px;
    font-size: 13.5px;
  }

  .faq-answer-inner {
    padding: 0 13px 13px;
  }

  .blog-slide-card {
    width: min(274px, calc(100vw - 38px));
  }
}

@media (max-width: 520px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .main-nav {
    width: min(268px, calc(100vw - 12px));
    right: 6px;
  }

  .brand-tagline {
    font-size: 10.8px;
  }

  .routine-heading-capsule {
    max-width: 100%;
    padding: 11px 22px;
  }

  .brand {
    gap: 8px;
  }

  .fashion-box {
    padding: 20px 16px;
  }

  .fashion-box h3 {
    font-size: 20px;
  }

  .fashion-btn {
    width: 100%;
    max-width: 300px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 6px 6px 5px;
  }

  .product-media {
    padding: 3px;
  }

  .product-img {
    margin-bottom: 2px;
  }

  .product-title {
    margin-bottom: 1px;
  }

  .product-meta {
    margin-bottom: 1px;
  }

  .price-row {
    margin-bottom: 2px;
  }

  .price-btn {
    margin-bottom: 2px;
  }

  .price-note,
  .checkout-note {
    font-size: 10px;
    line-height: 1.25;
  }

  .toggle-header {
    margin-top: 10px;
  }

  .toggle-content {
    margin-top: 3px;
  }

  .footer-content-area {
    padding: 20px 0 0;
  }

  .footer-section h2 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul,
  .footer-contact-list li {
    font-size: 13px;
  }

  .contact-support-row {
    display: block;
  }
}