@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

/* ============================================
   CSS VARIABLES - CVJETNA KUĆA COLOR PALETTE
   ============================================ */
:root {
  --blush-rose: #E8A0B4;
  --deep-burgundy: #6B1E3A;
  --soft-peach: #F5C6A0;
  --sage-green: #7A9E7E;
  --dusty-lavender: #B5A8C8;
  --cream-white: #FDF6F0;
  --warm-ivory: #F9EFE3;
  --forest-green: #3D6B4F;
  --golden-petal: #D4A843;
  --charcoal-stem: #2C2C2C;
  --petal-pink: #F2C4CE;
  --mist-gray: #E8E4E0;
  --shadow-rose: rgba(107, 30, 58, 0.15);
  --shadow-sage: rgba(61, 107, 79, 0.12);
  --gradient-petal: linear-gradient(135deg, #E8A0B4 0%, #F5C6A0 50%, #B5A8C8 100%);
  --gradient-leaf: linear-gradient(135deg, #3D6B4F 0%, #7A9E7E 100%);
  --gradient-warm: linear-gradient(180deg, #FDF6F0 0%, #F9EFE3 100%);
  --font-primary: 'Georgia', 'Times New Roman', serif;
  --font-secondary: 'Arial', 'Helvetica', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius-soft: 16px;
  --border-radius-pill: 50px;
  --border-radius-card: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--cream-white);
  color: var(--charcoal-stem);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm-ivory);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blush-rose), var(--deep-burgundy));
  border-radius: 4px;
  border: 1px solid var(--warm-ivory);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--deep-burgundy), var(--blush-rose));
}

::-webkit-scrollbar-corner {
  background: var(--warm-ivory);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--deep-burgundy);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1rem, 2vw, 1.4rem);
}

p {
  color: var(--charcoal-stem);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--deep-burgundy);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 160, 180, 0.3);
  box-shadow: 0 2px 20px var(--shadow-rose);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(253, 246, 240, 0.98);
  box-shadow: 0 4px 30px var(--shadow-rose);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.site-logo:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-petal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px var(--shadow-rose);
  transition: var(--transition-bounce);
}

.site-logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-rose);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--sage-green);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--blush-rose);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-stem);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-petal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--deep-burgundy);
  background: rgba(232, 160, 180, 0.1);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--deep-burgundy);
  font-weight: 600;
}

.nav-link.active::after {
  width: 60%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--mist-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal-stem);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.header-icon-btn:hover {
  background: var(--gradient-petal);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px var(--shadow-rose);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--mist-gray);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: var(--transition-smooth);
  padding: 10px;
}

.mobile-menu-toggle:hover {
  background: rgba(232, 160, 180, 0.15);
  border-color: var(--blush-rose);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--deep-burgundy);
  border-radius: 2px;
  transition: var(--transition-smooth);
  display: block;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--cream-white);
  border-top: 1px solid rgba(232, 160, 180, 0.3);
  padding: 1.5rem;
  box-shadow: 0 10px 30px var(--shadow-rose);
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--charcoal-stem);
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition-smooth);
  text-decoration: none;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.mobile-nav-link:hover {
  background: rgba(232, 160, 180, 0.15);
  color: var(--deep-burgundy);
  padding-left: 1.5rem;
}

.mobile-nav-link i {
  color: var(--blush-rose);
  font-size: 1.1rem;
  width: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-petal);
  color: var(--deep-burgundy);
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--shadow-rose);
  color: var(--deep-burgundy);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-burgundy);
  border: 2px solid var(--deep-burgundy);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--deep-burgundy);
  color: var(--cream-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-rose);
}

.btn-forest {
  background: var(--gradient-leaf);
  color: white;
  box-shadow: 0 4px 20px var(--shadow-sage);
}

.btn-forest:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--shadow-sage);
  color: white;
}

.btn-golden {
  background: linear-gradient(135deg, var(--golden-petal), #E8C060);
  color: var(--charcoal-stem);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-golden:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
  color: var(--charcoal-stem);
}

.btn-ghost {
  background: rgba(253, 246, 240, 0.8);
  color: var(--deep-burgundy);
  border: 1.5px solid var(--blush-rose);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--blush-rose);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-rose);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 900px;
  background: rgba(44, 44, 44, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-card);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(232, 160, 180, 0.2);
  animation: slideUpBanner 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpBanner {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-petal);
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: cookieWobble 2s ease-in-out infinite;
}

@keyframes cookieWobble {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.cookie-content {
  flex: 1;
}

.cookie-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-white);
  margin-bottom: 0.35rem;
}

.cookie-text {
  font-size: 0.8rem;
  color: rgba(253, 246, 240, 0.75);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--blush-rose);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--soft-peach);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 0.6rem 1.5rem;
  background: var(--gradient-petal);
  color: var(--deep-burgundy);
  border: none;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.cookie-btn-decline {
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: rgba(253, 246, 240, 0.7);
  border: 1px solid rgba(253, 246, 240, 0.25);
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.cookie-btn-decline:hover {
  background: rgba(253, 246, 240, 0.1);
  color: var(--cream-white);
  border-color: rgba(253, 246, 240, 0.4);
}

.cookie-btn-settings {
  color: rgba(253, 246, 240, 0.6);
  font-size: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.cookie-btn-settings:hover {
  color: var(--blush-rose);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
}

.form-label .required {
  color: var(--blush-rose);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream-white);
  border: 1.5px solid var(--mist-gray);
  border-radius: var(--border-radius-soft);
  font-size: 0.95rem;
  color: var(--charcoal-stem);
  transition: var(--transition-smooth);
  outline: none;
  font-family: var(--font-secondary);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(44, 44, 44, 0.4);
  font-size: 0.9rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--blush-rose);
  background: white;
  box-shadow: 0 0 0 4px rgba(232, 160, 180, 0.15);
}

.form-input:hover:not(:focus),
.form-textarea:hover:not(:focus),
.form-select:hover:not(:focus) {
  border-color: rgba(232, 160, 180, 0.5);
}

.form-input.is-valid,
.form-textarea.is-valid {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 4px rgba(122, 158, 126, 0.12);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #E57373;
  box-shadow: 0 0 0 4px rgba(229, 115, 115, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 400px;
}

.form-select {
  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='%236B1E3A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--blush-rose);
  box-shadow: 0 0 0 4px rgba(232, 160, 180, 0.15);
}

/* Input with icon */
.input-with-icon {
  position: relative;
}

.input-with-icon .form-input {
  padding-left: 3rem;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blush-rose);
  font-size: 1.1rem;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.input-with-icon .form-input:focus + .input-icon,
.input-with-icon .input-icon.focused {
  color: var(--deep-burgundy);
}

/* Floating label style */
.form-group-float {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group-float .form-input {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.form-group-float .float-label {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  font-size: 0.95rem;
  color: rgba(44, 44, 44, 0.5);
  pointer-events: none;
  transition: var(--transition-smooth);
  transform-origin: left top;
}

.form-group-float .form-input:focus ~ .float-label,
.form-group-float .form-input:not(:placeholder-shown) ~ .float-label {
  transform: translateY(-8px) scale(0.78);
  color: var(--blush-rose);
  font-weight: 600;
}

/* Form helper text */
.form-helper {
  font-size: 0.78rem;
  color: rgba(44, 44, 44, 0.55);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-error {
  font-size: 0.78rem;
  color: #E57373;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-success {
  font-size: 0.78rem;
  color: var(--sage-green);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--blush-rose);
  border-radius: 6px;
  appearance: none;
  background: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.form-check-input:checked {
  background: var(--gradient-petal);
  border-color: transparent;
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--deep-burgundy);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--deep-burgundy);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--charcoal-stem);
  line-height: 1.5;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: var(--border-radius-card);
  padding: 2.5rem;
  box-shadow: 0 10px 40px var(--shadow-rose);
  border: 1px solid rgba(232, 160, 180, 0.2);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-petal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: calc(100vh - 80px);
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 160, 180, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentleFloat 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentleFloat 10s ease-in-out infinite reverse;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(232, 160, 180, 0.2);
  border: 1px solid rgba(232, 160, 180, 0.4);
  border-radius: var(--border-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--deep-burgundy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  color: var(--blush-rose);
  font-size: 0.9rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--deep-burgundy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  background: var(--gradient-petal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(44, 44, 44, 0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(44, 44, 44, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 5rem 1.5rem;
}

.section-sm {
  padding: 3rem 1.5rem;
}

.section-lg {
  padding: 7rem 1.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(232, 160, 180, 0.15);
  border: 1px solid rgba(232, 160, 180, 0.35);
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep-burgundy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--deep-burgundy);
  margin-bottom: 1rem;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(232, 160, 180, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.section-description {
  font-size: 1.05rem;
  color: rgba(44, 44, 44, 0.65);
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-petal);
  border-radius: 3px;
  margin: 1.25rem auto;
}

/* Alternating backgrounds */
.bg-cream {
  background: var(--cream-white);
}

.bg-warm {
  background: var(--warm-ivory);
}

.bg-petal {
  background: linear-gradient(135deg, rgba(232, 160, 180, 0.08) 0%, rgba(245, 198, 160, 0.08) 100%);
}

.bg-forest {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
}

.bg-dark {
  background: var(--charcoal-stem);
}

/* ============================================
   CARD STYLES
   ============================================ */
.card {
  background: white;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid rgba(232, 160, 180, 0.15);
  box-shadow: 0 4px 20px var(--shadow-rose);
  transition: var(--transition-bounce);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-rose);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.card-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.3), transparent);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover .card-image-wrapper::after {
  opacity: 1;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  color: var(--deep-burgundy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card-text {
  font-size: 0.88rem;
  color: rgba(44, 44, 44, 0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  font-family: var(--font-primary);
}

.card-price .currency {
  font-size: 0.85rem;
  vertical-align: super;
  font-weight: 600;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-badge-new {
  background: var(--deep-burgundy);
  color: white;
}

.card-badge-sale {
  background: var(--golden-petal);
  color: var(--charcoal-stem);
}

.card-badge-popular {
  background: var(--gradient-petal);
  color: var(--deep-burgundy);
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--mist-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  transition: var(--transition-bounce);
  border: 1px solid rgba(232, 160, 180, 0.15);
  box-shadow: 0 2px 15px var(--shadow-rose);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-rose);
}

.product-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition-bounce);
  z-index: 2;
  border: none;
  font-size: 1rem;
  color: var(--blush-rose);
}

.product-wishlist:hover {
  background: var(--blush-rose);
  color: white;
  transform: scale(1.15);
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: var(--border-radius-card);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(232, 160, 180, 0.15);
  box-shadow: 0 4px 20px var(--shadow-rose);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-petal);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-rose);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-petal);
  border-radius: var(--border-radius-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 25px var(--shadow-rose);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: var(--border-radius-card);
  padding: 2rem;
  border: 1px solid rgba(232, 160, 180, 0.2);
  box-shadow: 0 4px 20px var(--shadow-rose);
  position: relative;
  transition: var(--transition-bounce);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-primary);
  font-size: 5rem;
  color: rgba(232, 160, 180, 0.3);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--shadow-rose);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-star {
  color: var(--golden-petal);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush-rose);
}

.testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-petal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(232, 160, 180, 0.3);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-burgundy);
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(44, 44, 44, 0.5);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.grid-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

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

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

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

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: white;
  border-radius: var(--border-radius-soft);
  border: 1.5px solid rgba(232, 160, 180, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(107, 30, 58, 0.05);
}

.accordion-item:hover {
  border-color: rgba(232, 160, 180, 0.4);
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.accordion-item.is-open {
  border-color: var(--blush-rose);
  box-shadow: 0 6px 25px var(--shadow-rose);
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background: rgba(232, 160, 180, 0.05);
}

.accordion-item.is-open .accordion-header {
  background: rgba(232, 160, 180, 0.08);
}

.accordion-question {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-burgundy);
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--warm-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--deep-burgundy);
  transition: var(--transition-bounce);
}

.accordion-item.is-open .accordion-icon {
  background: var(--gradient-petal);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.75;
  border-top: 1px solid rgba(232, 160, 180, 0.15);
  padding-top: 1rem;
  margin: 0 1.5rem;
}

/* ============================================
   CATEGORY PILLS / TABS
   ============================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--mist-gray);
  background: white;
  color: rgba(44, 44, 44, 0.7);
  transition: var(--transition-bounce);
}

.filter-tab:hover {
  border-color: var(--blush-rose);
  color: var(--deep-burgundy);
  background: rgba(232, 160, 180, 0.1);
}

.filter-tab.active {
  background: var(--gradient-petal);
  border-color: transparent;
  color: var(--deep-burgundy);
  font-weight: 700;
  box-shadow: 0 4px 15px var(--shadow-rose);
}

/* ============================================
   BANNER / PROMO STRIP
   ============================================ */
.promo-strip {
  background: var(--deep-burgundy);
  color: white;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 21px
  );
}

.promo-strip strong {
  color: var(--soft-peach);
}

/* ============================================
   INFO CARDS / HIGHLIGHT BOXES
   ============================================ */
.info-box {
  padding: 1.5rem;
  border-radius: var(--border-radius-soft);
  border-left: 4px solid var(--blush-rose);
  background: rgba(232, 160, 180, 0.08);
  margin-bottom: 1rem;
}

.info-box-title {
  font-weight: 700;
  color: var(--deep-burgundy);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.info-box-text {
  font-size: 0.88rem;
  color: rgba(44, 44, 44, 0.7);
}

.info-box-success {
  border-left-color: var(--sage-green);
  background: rgba(122, 158, 126, 0.08);
}

.info-box-warning {
  border-left-color: var(--golden-petal);
  background: rgba(212, 168, 67, 0.08);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(232, 160, 180, 0.25);
  border-top-color: var(--blush-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

.spinner-sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Petal Loader */
.petal-loader {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.petal-loader span {
  width: 10px;
  height: 10px;
  background: var(--blush-rose);
  border-radius: 50%;
  animation: petalBounce 0.6s ease-in-out infinite alternate;
}

.petal-loader span:nth-child(2) {
  animation-delay: 0.15s;
  background: var(--deep-burgundy);
}

.petal-loader span:nth-child(3) {
  animation-delay: 0.3s;
  background: var(--sage-green);
}

@keyframes petalBounce {
  from { transform: translateY(0); opacity: 0.6; }
  to { transform: translateY(-12px); opacity: 1; }
}

/* ============================================
   FLOATING FLOWERS ANIMATION
   ============================================ */
.floating-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--blush-rose);
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}

.petal:nth-child(odd) {
  background: var(--soft-peach);
  width: 10px;
  height: 10px;
}

.petal:nth-child(3n) {
  background: var(--dusty-lavender);
  width: 8px;
  height: 8px;
}

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg);
  }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) translateX(100px);
  }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================
   TAGS & BADGES
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.tag-rose {
  background: rgba(232, 160, 180, 0.2);
  color: var(--deep-burgundy);
  border: 1px solid rgba(232, 160, 180, 0.4);
}

.tag-sage {
  background: rgba(122,