/* ============================================
   FREEZEAL Design System
   Premium Sanitary Pad Brand
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Primary Colors */
  --primary: #D81B60;
  --primary-dark: #C2185B;
  --primary-light: #F48FB1;
  --primary-ultra-light: #FCE4EC;

  /* Accent Colors */
  --accent-orange: #FFA000;
  --accent-orange-light: #FFE0B2;
  --accent-blue: #42A5F5;
  --accent-blue-light: #BBDEFB;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-pink-light: #FFF0F5;
  --bg-pink-subtle: #FFF8FA;
  --bg-grey-light: #F8F9FA;
  --bg-grey: #F0F2F5;
  --bg-dark: #1A1A2E;
  --bg-dark-light: #2D2D44;

  /* Text Colors */
  --text-dark: #1A1A2E;
  --text-heading: #1A1A2E;
  --text-body: #4A4A5A;
  --text-muted: #8A8A9A;
  --text-white: #FFFFFF;
  --text-on-primary: #FFFFFF;

  /* Borders */
  --border-light: #E8E8F0;
  --border-medium: #D0D0D8;
  --border-primary: #F48FB1;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.15);
  --shadow-pink: 0 4px 20px rgba(216, 27, 96, 0.2);
  --shadow-card-hover: 0 12px 40px rgba(216, 27, 96, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography Scale */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-floating: 500;
  --z-toast: 600;

  /* Layout */
  --container-max: 1350px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--leading-tight);
  font-weight: 700;
}

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-md);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-body);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--pink {
  background-color: var(--bg-pink-light);
}

.section--grey {
  background-color: var(--bg-grey-light);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-ultra-light);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-md);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Grid System ── */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

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

.flex--wrap {
  flex-wrap: wrap;
}

.flex--gap-sm {
  gap: var(--space-sm);
}

.flex--gap-md {
  gap: var(--space-md);
}

.flex--gap-lg {
  gap: var(--space-lg);
}

.flex--gap-xl {
  gap: var(--space-xl);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-on-primary);
  box-shadow: var(--shadow-pink);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(216, 27, 96, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: var(--text-on-primary);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--text-body);
  padding: 10px 20px;
}

.btn--ghost:hover {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.btn--sm {
  padding: 10px 24px;
  font-size: var(--text-sm);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-md);
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

.btn--icon-sm {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

/* ── Cards ── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

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

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-pink-subtle);
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* Feature Card */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-primary);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary-ultra-light), var(--bg-pink-light));
  color: var(--primary);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-white);
  transform: scale(1.1);
}

.feature-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* Product Card */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-primary);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent-orange), #FF8F00);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__image-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--bg-pink-subtle), var(--bg-pink-light));
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}

.product-card__image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255, 240, 245, 0.5));
}

.product-card__image {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
  transform: scale(1.08);
}

.product-card__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.product-card__size {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.product-card__specs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.product-card__spec {
  font-size: var(--text-xs);
  background: var(--bg-grey-light);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.product-card__protection {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-card__protection-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.product-card__protection-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-grey);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.product-card__protection-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transition: width var(--transition-slow);
}

.product-card__actions {
  display: flex;
  gap: var(--space-sm);
}

.product-card__actions .btn {
  flex: 1;
}

/* ── Header / Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary);
  z-index: var(--z-sticky);
}

.header__logo-icon {
  width: 90px;
  height: auto;
}

.header__logo span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header__nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.header__nav-link--active {
  font-weight: 600;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__search-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-body);
  transition: all var(--transition-base);
}

.header__search-btn:hover {
  background: var(--bg-grey-light);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-body);
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header__menu-toggle:hover {
  background: var(--bg-grey-light);
}

.header__menu-toggle .menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
}

.header__menu-toggle .menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all var(--transition-base);
}

.header__menu-toggle .menu-icon span:nth-child(1) {
  top: 0;
}

.header__menu-toggle .menu-icon span:nth-child(2) {
  top: 8px;
}

.header__menu-toggle .menu-icon span:nth-child(3) {
  top: 16px;
}

.header__menu-toggle.active .menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.header__menu-toggle.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active .menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  padding-right: var(--space-xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.footer__brand-text {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__newsletter-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.footer__newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  color: var(--text-white);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__newsletter-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-link {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-base);
}

.footer__bottom-link:hover {
  color: var(--primary-light);
}

/* ── Accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.accordion__item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.accordion__item:hover {
  border-color: var(--border-primary);
}

.accordion__item--active {
  border-color: var(--primary);
  box-shadow: var(--shadow-pink);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
}

.accordion__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
  flex: 1;
}

.accordion__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-grey-light);
  color: var(--text-muted);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.accordion__item--active .accordion__icon {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion__body {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
}

/* ── Testimonial Card ── */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card__quote {
  font-size: var(--text-4xl);
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-heading);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.testimonial-card__stars {
  color: var(--accent-orange);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

/* ── Forms ── */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text-dark);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-ultra-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8A9A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error {
  font-size: var(--text-xs);
  color: #E53935;
  margin-top: var(--space-xs);
}

/* ── Breadcrumbs ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: var(--space-lg) 0;
}

.breadcrumb__link {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.breadcrumb__link:hover {
  color: var(--primary);
}

.breadcrumb__separator {
  color: var(--border-medium);
}

.breadcrumb__current {
  color: var(--text-heading);
  font-weight: 500;
}

/* ── Badge / Tag ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--primary {
  background: var(--primary-ultra-light);
  color: var(--primary);
}

.badge--orange {
  background: var(--accent-orange-light);
  color: var(--accent-orange);
}

.badge--blue {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}

.badge--success {
  background: #E8F5E9;
  color: #2E7D32;
}

/* ── Page Hero / Banner ── */
/* ── Page Hero / Banner (Matches Home Page Hero Visuals) ── */
.page-hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 calc(var(--space-4xl) + 20px);
  background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg-pink-subtle) 30%, var(--bg-pink-light) 60%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-shapes svg {
  position: absolute;
}

.hero__wave-bottom {
  bottom: -2px;
  left: 0;
  width: 100%;
}

.hero__circle-1 {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 27, 96, 0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero__circle-2 {
  position: absolute;
  bottom: 15%;
  left: -8%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.05) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite 1s;
}

.hero__circle-3 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 160, 0, 0.04) 0%, transparent 70%);
  animation: float 7s ease-in-out infinite 0.5s;
}

.hero__dots {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--primary-light) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.3;
}

/* Floating Soft Feathers (PNG Image) */
.hero__feather {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.65;
  filter: drop-shadow(0 6px 15px rgba(216, 27, 96, 0.15));
}

.hero__feather--1 {
  top: 10%;
  left: 5%;
  width: 90px;
  height: 90px;
  transform: rotate(-25deg);
  animation: floatFeather1 9s ease-in-out infinite;
}

.hero__feather--2 {
  top: 18%;
  right: 10%;
  width: 110px;
  height: 110px;
  transform: rotate(35deg);
  animation: floatFeather2 11s ease-in-out infinite 1.5s;
}

.hero__feather--3 {
  bottom: 20%;
  left: 12%;
  width: 80px;
  height: 80px;
  transform: rotate(-15deg);
  animation: floatFeather3 8s ease-in-out infinite 0.8s;
}

.hero__feather--4 {
  bottom: 16%;
  right: 5%;
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  animation: floatFeather1 12s ease-in-out infinite 2s;
}

.hero__feather--5 {
  top: 42%;
  left: 44%;
  width: 70px;
  height: 70px;
  transform: rotate(-40deg);
  animation: floatFeather2 10s ease-in-out infinite 0.5s;
  opacity: 0.45;
}

@keyframes floatFeather1 {
  0%, 100% { transform: translateY(0) rotate(-25deg) scale(1); }
  50% { transform: translateY(-22px) rotate(-15deg) scale(1.05); }
}

@keyframes floatFeather2 {
  0%, 100% { transform: translateY(0) rotate(35deg) scale(1); }
  50% { transform: translateY(-18px) rotate(22deg) scale(1.04); }
}

@keyframes floatFeather3 {
  0%, 100% { transform: translateY(0) rotate(-15deg) scale(1); }
  50% { transform: translateY(-15px) rotate(-5deg) scale(1.03); }
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--text-md);
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* ── Floating Buttons ── */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-floating);
  transition: all var(--transition-base);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  box-shadow: var(--shadow-md);
  z-index: var(--z-floating);
  transition: all var(--transition-base);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── Animations ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--left {
  transform: translateX(-30px);
}

.reveal--right {
  transform: translateX(30px);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.reveal--visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.reveal--visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger.reveal--visible>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger.reveal--visible>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger.reveal--visible>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger.reveal--visible>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger.reveal--visible>*:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger.reveal--visible>*:nth-child(8) {
  transition-delay: 0.4s;
}

.stagger.reveal--visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility Classes ── */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.text-white {
  color: var(--text-white);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mt-3xl {
  margin-top: var(--space-3xl);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.75rem;
    --text-4xl: 2.25rem;
    --text-3xl: 2rem;
  }

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

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --header-height: 70px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  /* Mobile Navigation */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-xs);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    overflow-y: auto;
  }

  .header__nav--open {
    right: 0;
  }

  .header__nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }

  .header__menu-toggle {
    display: flex;
  }

  .header__actions .btn {
    display: none;
  }

  .header__actions .header__search-btn {
    display: flex;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-sticky) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .mobile-overlay--visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Footer Mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__newsletter-form {
    flex-direction: column;
  }

  /* Product Card Mobile */
  .product-card__actions {
    flex-direction: column;
  }

  .page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .page-hero__title {
    font-size: var(--text-3xl);
  }

  /* Floating buttons */
  .floating-whatsapp {
    right: 20px;
    bottom: 90px;
    width: 50px;
    height: 50px;
  }

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

@media (max-width: 480px) {
  :root {
    --text-5xl: 1.875rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: var(--text-sm);
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: var(--text-base);
  }

  .feature-card {
    padding: var(--space-xl) var(--space-lg);
  }
}

/* ── Print Styles ── */
@media print {

  .header,
  .footer,
  .floating-whatsapp,
  .back-to-top {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .section {
    padding: 1rem 0;
  }
}