/* ==========================================================================
   TUN+ E-Commerce Stylesheet (Rose & Viburnum / Kalina Theme)
   Senior Frontend Engineering Standards - Zero Bloat, Ultra High Performance
   ========================================================================== */

:root {
  /* Brand Rose & Viburnum Colors */
  --rose-primary: #c0385d;
  --rose-primary-dark: #a12749;
  --rose-primary-deep: #7f1832;
  --rose-primary-light: #fdf2f5;
  --rose-primary-subtle: #fbe6ec;
  --rose-accent: #e76f8a;
  --rose-gold: #e2a8b3;
  --rose-border: rgba(192, 56, 93, 0.16);
  --rose-glow: rgba(192, 56, 93, 0.35);

  /* Surfaces & Neutrals */
  --bg-page: #fdfafb;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f8eef1;
  --text-dark: #25191d;
  --text-muted: #5e4e54;
  --text-light: #8e7d83;
  --border-light: #eddde2;

  /* Typography */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(36, 25, 29, 0.05);
  --shadow-md: 0 8px 24px rgba(192, 56, 93, 0.08);
  --shadow-lg: 0 16px 40px rgba(192, 56, 93, 0.14);

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: var(--rose-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--rose-primary-dark);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #7f1832, #c0385d, #7f1832);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.3px;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-deep));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 12px var(--rose-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rose-primary);
}

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

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--rose-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--rose-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--rose-primary-light);
  border: 1px solid var(--rose-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-primary-deep);
}

.header-phone-link:hover {
  background: var(--rose-primary-subtle);
  color: var(--rose-primary-dark);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-dark));
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--rose-glow);
  transition: var(--transition);
}

.cart-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--rose-glow);
}

.cart-badge {
  background: #ffffff;
  color: var(--rose-primary-deep);
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-btn span {
  width: 100%;
  height: 3px;
  background: var(--rose-primary-deep);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  height: 100vh;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: var(--rose-primary-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--rose-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
}

.drawer-nav a:hover {
  color: var(--rose-primary);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Button Outline / Dynamic Contour Animation
   Moving contour around buttons on mouse hover!
   ========================================================================== */
.btn-contour {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
  box-shadow: 0 4px 15px var(--rose-glow);
}

.btn-contour::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    transparent 0deg,
    transparent 220deg,
    #ffa6b9 270deg,
    #ffffff 320deg,
    var(--rose-primary) 360deg
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
  z-index: -2;
}

.btn-contour:hover::before {
  opacity: 1;
  animation: rotateContour 1.8s linear infinite;
}

.btn-contour::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-dark));
  border-radius: 47px;
  z-index: -1;
  transition: background 0.3s ease;
}

.btn-contour:hover::after {
  background: linear-gradient(135deg, var(--rose-primary-dark), var(--rose-primary-deep));
}

.btn-contour:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 56, 93, 0.45);
}

.btn-contour:active {
  transform: translateY(0);
}

@keyframes rotateContour {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Secondary outline button with moving contour */
.btn-outline-contour {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--rose-primary-deep);
  background: #ffffff;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  border: 1px solid var(--rose-border);
  box-shadow: var(--shadow-sm);
}

.btn-outline-contour::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    transparent 0deg,
    transparent 220deg,
    var(--rose-primary) 280deg,
    #ffccd7 320deg,
    var(--rose-primary-deep) 360deg
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
  z-index: -2;
}

.btn-outline-contour:hover::before {
  opacity: 1;
  animation: rotateContour 1.8s linear infinite;
}

.btn-outline-contour::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 48px;
  z-index: -1;
  transition: background 0.3s ease;
}

.btn-outline-contour:hover::after {
  background: var(--rose-primary-light);
}

.btn-outline-contour:hover {
  color: var(--rose-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 56, 93, 0.15);
}

/* SVG icon format */
.btn-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-contour:hover .btn-icon,
.btn-outline-contour:hover .btn-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 85% 20%, rgba(251, 230, 236, 0.85) 0%, rgba(253, 250, 251, 1) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--rose-primary-light);
  border: 1px solid var(--rose-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-primary-dark);
  margin-bottom: 20px;
}

.hero-badge-icon {
  width: 15px;
  height: 15px;
  fill: var(--rose-primary);
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--rose-primary-deep);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--rose-primary);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-primary);
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.trust-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-text p {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rose-border);
  background: #ffffff;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-border);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-deep));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.floating-badge-text strong {
  display: block;
  font-size: 15px;
  color: var(--rose-primary-deep);
}

.floating-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-surface-alt);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rose-primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.title-ornament {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rose-primary), transparent);
  margin: 16px auto 0;
  border-radius: 3px;
}

/* ==========================================================================
   Special Offer / Spotlight Bundle (Duo Pack)
   ========================================================================== */
.spotlight-offer {
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 50%, #fcedf1 100%);
  border: 2px solid var(--rose-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.spotlight-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-border);
}

.spotlight-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rose-primary-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.spotlight-details h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 12px;
}

.spotlight-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.spotlight-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.spotlight-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rose-primary-light);
  color: var(--rose-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.price-current {
  font-size: 36px;
  font-weight: 800;
  color: var(--rose-primary-deep);
}

.price-old {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-badge {
  background: #fdf0ed;
  color: #c94a29;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ==========================================================================
   Product Grid & Cards
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--rose-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 56, 93, 0.4);
}

.product-thumb {
  position: relative;
  background: #fdf8f9;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  color: var(--rose-primary-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--rose-border);
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rose-primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-title a {
  color: inherit;
}

.product-title a:hover {
  color: var(--rose-primary);
}

.product-short-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-ingredients-snippet {
  background: var(--rose-primary-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  border-left: 3px solid var(--rose-primary);
}

.product-ingredients-snippet strong {
  color: var(--rose-primary-deep);
  display: block;
  margin-bottom: 2px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
}

.product-price-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  line-height: 1;
}

.product-price-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-top: 3px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

/* ==========================================================================
   Ingredients Showcase (Kalina & Botanicals)
   ========================================================================== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-primary);
}

.ingredient-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-primary-light);
  color: var(--rose-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.ingredient-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ingredient-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 6px;
}

.ingredient-latin {
  font-size: 13px;
  font-style: italic;
  color: var(--rose-primary);
  margin-bottom: 10px;
  display: block;
}

.ingredient-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Why Choose Us (Pillars)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-primary);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-primary-light);
  color: var(--rose-primary);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pillar-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Steps / How To Order
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-deep));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px var(--rose-glow);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Customer Experiences (Google Ads Compliant Lifestyle Feedback)
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-primary-light);
  color: var(--rose-primary-deep);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--rose-primary-deep);
}

.author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--rose-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--rose-primary-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-primary-light);
  color: var(--rose-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--rose-primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  background: #fffdfd;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Order Form & Random Data Generator (Track.js Compliant)
   ========================================================================== */
.order-section {
  background: linear-gradient(135deg, #fcedf1 0%, #ffffff 50%, #f7e6eb 100%);
  border-top: 1px solid var(--rose-border);
  border-bottom: 1px solid var(--rose-border);
}

.order-box {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid var(--rose-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.order-box-header {
  text-align: center;
  margin-bottom: 28px;
}

.order-box-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 8px;
}

.order-box-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.tun-order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--rose-primary-deep);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--rose-primary);
  box-shadow: 0 0 0 4px var(--rose-glow);
}

.sample-gen-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.btn-sample-gen {
  background: none;
  border: none;
  color: var(--rose-primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-sample-gen:hover {
  background: var(--rose-primary-light);
  color: var(--rose-primary-dark);
}

.btn-sample-gen svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.order-product-select {
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-dark);
  background: #ffffff;
  cursor: pointer;
}

.order-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 17px;
}

.order-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}

/* ==========================================================================
   Product Detail Pages (Dedicated Composition View)
   ========================================================================== */
.product-detail-hero {
  padding: 50px 0 70px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-img {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--rose-border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.product-main-img img {
  width: 100%;
  height: auto;
}

.product-info-panel h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}

.product-detail-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rose-primary-light);
  color: var(--rose-primary-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: var(--rose-primary-light);
  border-radius: 16px;
  border: 1px solid var(--rose-border);
}

.detail-price-curr {
  font-size: 32px;
  font-weight: 800;
  color: var(--rose-primary-deep);
}

.detail-price-old {
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}

.composition-table-wrap {
  margin: 30px 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.composition-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.composition-table th {
  background: var(--rose-primary-light);
  color: var(--rose-primary-deep);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid var(--rose-border);
}

.composition-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.composition-table tr:last-child td {
  border-bottom: none;
}

.composition-table tr:nth-child(even) td {
  background: #fdfafb;
}

.usage-box {
  background: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.usage-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--rose-primary-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.usage-box p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   Thank You Page (Zahvalnica)
   ========================================================================== */
.thanks-card {
  max-width: 680px;
  margin: 40px auto;
  background: #ffffff;
  border: 2px solid var(--rose-border);
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.thanks-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-deep));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px var(--rose-glow);
}

.thanks-card h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 12px;
}

.thanks-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.thanks-info-list {
  background: var(--rose-primary-light);
  border: 1px solid var(--rose-border);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.thanks-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.thanks-info-item:last-child {
  border-bottom: none;
}

.thanks-info-item strong {
  color: var(--rose-primary-deep);
}

/* ==========================================================================
   Static Legal & Info Pages
   ========================================================================== */
.page-header {
  padding: 50px 0 30px;
  background: var(--bg-surface-alt);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--rose-primary-deep);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.legal-content {
  max-width: 850px;
  margin: 50px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--rose-primary-deep);
  margin: 30px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-dark);
}

.legal-content li {
  margin-bottom: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: #1f1418;
  color: #e5d8dc;
  padding: 70px 0 30px;
  border-top: 4px solid var(--rose-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo-title {
  color: #ffffff;
}

.footer-brand .logo-subtitle {
  color: #ff9cb1;
}

.footer-desc {
  font-size: 14px;
  color: #b5a3a8;
  line-height: 1.6;
  margin: 16px 0 20px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--rose-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #c9bac0;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #c9bac0;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #ffb8c7;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--rose-primary);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 12px;
  color: #9f8c92;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #8c7980;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #a8979e;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-bar {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-floating-badge {
    left: 20px;
  }

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

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

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

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

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

  .main-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

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

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

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

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

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
