@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 - RUŽA I MASLAČAK COLOR PALETTE
   ============================================= */
:root {
  --color-rose: #C2185B;
  --color-rose-light: #E91E8C;
  --color-rose-pale: #FCE4EC;
  --color-rose-dark: #880E4F;
  --color-dandelion: #F9A825;
  --color-dandelion-light: #FFD54F;
  --color-dandelion-pale: #FFFDE7;
  --color-dandelion-dark: #E65100;
  --color-stem: #2E7D32;
  --color-stem-light: #4CAF50;
  --color-stem-pale: #E8F5E9;
  --color-petal-cream: #FFF8F0;
  --color-petal-blush: #FDEEF4;
  --color-bark: #5D4037;
  --color-bark-light: #8D6E63;
  --color-soil: #3E2723;
  --color-white: #FFFFFF;
  --color-off-white: #FAFAF8;
  --color-mist: #F5F0EB;
  --color-shadow: rgba(194, 24, 91, 0.15);
  --color-shadow-dark: rgba(136, 14, 79, 0.25);

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 20px rgba(194, 24, 91, 0.1);
  --shadow-medium: 0 8px 32px rgba(194, 24, 91, 0.18);
  --shadow-strong: 0 16px 48px rgba(136, 14, 79, 0.22);
  --shadow-card: 0 2px 16px rgba(93, 64, 55, 0.12);
  --shadow-hover: 0 12px 40px rgba(194, 24, 91, 0.28);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   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-body);
  background-color: var(--color-off-white);
  color: var(--color-soil);
  line-height: 1.7;
  overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
  background: var(--color-petal-blush);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-petal-blush);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-rose-light) 0%, var(--color-rose) 100%);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-rose-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
}

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

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  color: var(--color-bark);
  line-height: 1.8;
}

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

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

/* =============================================
   STICKY HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 24, 91, 0.12);
  box-shadow: 0 2px 24px rgba(194, 24, 91, 0.08);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 248, 240, 0.99);
  box-shadow: 0 4px 32px rgba(194, 24, 91, 0.14);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose) 50%, var(--color-dandelion-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.site-logo-icon {
  font-size: 1.8rem;
  color: var(--color-rose);
  animation: sway 3s ease-in-out infinite;
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-bark);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-dandelion));
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--color-rose);
  background: var(--color-petal-blush);
}

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

.nav-link.active {
  color: var(--color-rose);
  background: var(--color-rose-pale);
  font-weight: 600;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--color-petal-blush);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--color-rose);
  font-size: 1.4rem;
}

.mobile-menu-toggle:hover {
  background: var(--color-rose-pale);
  color: var(--color-rose-dark);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--color-white);
  border-top: 1px solid rgba(194, 24, 91, 0.1);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.1);
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

.mobile-menu .nav-link::before {
  display: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

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

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-rose) 100%);
  box-shadow: 0 8px 28px rgba(194, 24, 91, 0.45);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.35);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, var(--color-dandelion) 0%, var(--color-dandelion-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(249, 168, 37, 0.35);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-dandelion-light) 0%, var(--color-dandelion) 100%);
  box-shadow: 0 8px 28px rgba(249, 168, 37, 0.45);
  transform: translateY(-2px);
  color: var(--color-white);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--color-rose);
  border: 2px solid var(--color-rose);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-rose);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.3);
  transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost {
  background: var(--color-petal-blush);
  color: var(--color-rose);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--color-rose-pale);
  color: var(--color-rose-dark);
  transform: translateY(-1px);
}

/* Large/Small variants */
.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.42rem 1.1rem;
  font-size: 0.82rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-soil) 0%, var(--color-bark) 100%);
  color: var(--color-petal-cream);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 32px rgba(62, 39, 35, 0.3);
  border-top: 3px solid var(--color-rose);
  animation: slideUpIn 0.5s ease forwards;
}

@keyframes slideUpIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
}

.cookie-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dandelion-light);
  margin-bottom: 0.3rem;
}

.cookie-banner-desc {
  font-size: 0.85rem;
  color: rgba(253, 238, 244, 0.85);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-desc a {
  color: var(--color-dandelion-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-accept {
  background: linear-gradient(135deg, var(--color-dandelion) 0%, var(--color-dandelion-dark) 100%);
  color: var(--color-white);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(249, 168, 37, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(249, 168, 37, 0.5);
}

.cookie-decline {
  background: transparent;
  color: rgba(253, 238, 244, 0.7);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid rgba(253, 238, 244, 0.25);
  transition: all var(--transition-normal);
}

.cookie-decline:hover {
  border-color: rgba(253, 238, 244, 0.6);
  color: var(--color-petal-cream);
  background: rgba(255, 255, 255, 0.08);
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-bark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: var(--color-white);
  border: 2px solid rgba(194, 24, 91, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-soil);
  transition: all var(--transition-normal);
  outline: none;
  box-shadow: inset 0 2px 6px rgba(194, 24, 91, 0.04);
}

.form-control:hover {
  border-color: rgba(194, 24, 91, 0.28);
}

.form-control:focus {
  border-color: var(--color-rose);
  background: var(--color-petal-cream);
  box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.1), inset 0 2px 6px rgba(194, 24, 91, 0.04);
}

.form-control::placeholder {
  color: var(--color-bark-light);
  font-style: italic;
}

.form-control:disabled {
  background: var(--color-mist);
  color: var(--color-bark-light);
  cursor: not-allowed;
  border-color: rgba(194, 24, 91, 0.08);
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C2185B' viewBox='0 0 24 24'%3E%3Cpath d='M12 15l-5-5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

/* Form Validation States */
.form-control.is-valid {
  border-color: var(--color-stem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232E7D32' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-control.is-invalid {
  border-color: var(--color-rose-light);
  background-color: #fff5f8;
}

.form-feedback {
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-feedback.valid {
  color: var(--color-stem);
}

.form-feedback.invalid {
  color: var(--color-rose-light);
}

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

.input-icon-wrapper .form-control {
  padding-left: 2.75rem;
}

.input-icon-wrapper .input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-bark-light);
  font-size: 1.1rem;
  pointer-events: none;
  transition: color var(--transition-normal);
}

.input-icon-wrapper .form-control:focus + .input-icon,
.input-icon-wrapper:focus-within .input-icon {
  color: var(--color-rose);
}

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

.form-check-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.15rem;
  accent-color: var(--color-rose);
  cursor: pointer;
}

.form-check-label {
  font-size: 0.92rem;
  color: var(--color-bark);
  cursor: pointer;
  line-height: 1.5;
}

/* Contact Form Wrapper */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(194, 24, 91, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '🌹';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(20deg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, var(--color-petal-blush) 0%, var(--color-rose-pale) 40%, var(--color-dandelion-pale) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(249, 168, 37, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.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;
  background: var(--color-white);
  color: var(--color-rose);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(194, 24, 91, 0.15);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-dandelion-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-bark-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rose);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-bark-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

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

.petal {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0% {
    transform: translateY(-60px) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(40px);
    opacity: 0;
  }
}

.petal:nth-child(1) { left: 8%; animation-duration: 8s; animation-delay: 0s; }
.petal:nth-child(2) { left: 20%; animation-duration: 11s; animation-delay: 2s; }
.petal:nth-child(3) { left: 35%; animation-duration: 9s; animation-delay: 1s; }
.petal:nth-child(4) { left: 55%; animation-duration: 12s; animation-delay: 3.5s; }
.petal:nth-child(5) { left: 70%; animation-duration: 10s; animation-delay: 1.5s; }
.petal:nth-child(6) { left: 85%; animation-duration: 8.5s; animation-delay: 4s; }

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

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-rose-pale);
  color: var(--color-rose);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(194, 24, 91, 0.15);
}

.section-title {
  margin-bottom: 0.8rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-bark-light);
  max-width: 560px;
  margin: 0 auto;
}

.divider-flower {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem auto;
  width: fit-content;
}

.divider-flower::before,
.divider-flower::after {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-rose));
  border-radius: var(--radius-full);
}

.divider-flower::after {
  background: linear-gradient(90deg, var(--color-rose), transparent);
}

.divider-flower-icon {
  color: var(--color-rose);
  font-size: 1.1rem;
}

/* =============================================
   PRODUCT / BOUQUET CARDS
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  border: 1px solid rgba(194, 24, 91, 0.06);
  position: relative;
  group: true;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(194, 24, 91, 0.15);
}

.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-petal-blush);
}

.product-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image-wrapper img {
  transform: scale(1.07);
}

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--color-rose), var(--color-rose-dark));
  color: var(--color-white);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.35);
}

.product-card-badge.seasonal {
  background: linear-gradient(135deg, var(--color-dandelion), var(--color-dandelion-dark));
}

.product-card-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--color-bark-light);
  font-size: 1.1rem;
  transition: all var(--transition-bounce);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .product-card-wishlist {
  opacity: 1;
  transform: scale(1);
}

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

.product-card-body {
  padding: 1.3rem;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-rose-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--color-bark-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-rose);
}

.price-old {
  font-size: 0.85rem;
  color: var(--color-bark-light);
  text-decoration: line-through;
}

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

.category-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-bounce);
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

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

.category-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  transition: transform var(--transition-bounce);
}

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

.category-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-rose-dark);
  margin-bottom: 0.25rem;
}

.category-card-count {
  font-size: 0.78rem;
  color: var(--color-bark-light);
}

/* =============================================
   FEATURES / USP SECTION
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(194, 24, 91, 0.08);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.feature-item:hover {
  border-color: rgba(194, 24, 91, 0.2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--color-rose-pale), var(--color-petal-blush));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-rose);
  transition: all var(--transition-bounce);
}

.feature-item:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--color-rose), var(--color-rose-dark));
  color: var(--color-white);
  transform: rotate(-5deg) scale(1.1);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-rose-dark);
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-bark-light);
  line-height: 1.6;
  margin: 0;
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(194, 24, 91, 0.07);
  position: relative;
  transition: all var(--transition-normal);
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-rose-pale);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  color: var(--color-dandelion);
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-bark);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-pale), var(--color-dandelion-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-rose);
  font-family: var(--font-heading);
  flex-shrink: 0;
  border: 2px solid rgba(194, 24, 91, 0.15);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-rose-dark);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--color-bark-light);
}

/* =============================================
   ACCORDION / FAQ
   ============================================= */
.accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(194, 24, 91, 0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(194, 24, 91, 0.08);
  background: var(--color-white);
  transition: background var(--transition-fast);
}

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

.accordion-item.active {
  background: var(--color-petal-cream);
}

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

.accordion-header:hover {
  background: var(--color-petal-blush);
}

.accordion-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-rose-dark);
  line-height: 1.4;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--color-rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  font-size: 0.9rem;
  transition: all var(--transition-bounce);
}

.accordion-item.active .accordion-icon {
  background: var(--color-rose);
  color: var(--color-white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 600px;
}

.accordion-content {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.92rem;
  color: var(--color-bark);
  line-height: 1.75;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: linear-gradient(135deg, var(--color-petal-cream) 0%, var(--color-dandelion-pale) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-dandelion), var(--color-rose));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-wrapper img {
  border-radius: var(--radius-xl);
  width: 100%;
  box-shadow: var(--shadow-strong);
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-badge-icon {
  font-size: 2rem;
}

.about-badge-years {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-rose);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--color-bark-light);
  line-height: 1.3;
}

/* =============================================
   BANNER / PROMO SECTION
   ============================================= */
.promo-banner {
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose) 50%, var(--color-dandelion-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-15deg);
  pointer-events: none;
}

.promo-banner-title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.promo-banner-text {
  color: rgba(255, 248, 240, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.promo-banner .btn {
  background: var(--color-white);
  color: var(--color-rose-dark);
  font-weight: 700;
}

.promo-banner .btn:hover {
  background: var(--color-dandelion-pale);
  transform: translateY(-2px) scale(1.03);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(136, 14, 79, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  color: var(--color-white);
  font-size: 1.5rem;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(194, 24, 91, 0.08);
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 1.5rem auto 0;
}

.newsletter-form .form-control {
  flex: 1;
  border-radius: var(--radius-full);
}

/* =============================================
   LOADING SPINNER
   ============================================= */
.spinner {
  display: inline-block;
  width: 44px;
  height: 44px;
  border: 3px solid var(--color-rose-pale);
  border-top-color: var(--color-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

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

/* Petal Spinner */
.petal-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  font-size: 1.8rem;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 240, 0.9);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.loading-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-rose);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

.badge-rose {
  background: var(--color-rose-pale);
  color: var(--color-rose-dark);
}

.badge-dandelion {
  background: var(--color-dandelion-pale);
  color: var(--color-dandelion-dark);
}

.badge-stem {
  background: var(--color-stem-pale);
  color: var(--color-stem);
}

/* =============================================
   TAGS CLOUD
   ============================================= */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  background: var(--color-petal-blush);
  color: var(--color-bark);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(194, 24, 91, 0.1);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.tag:hover,
.tag.active {
  background: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
  transform: translateY(-1px);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-bark-light);
}

.breadcrumb-item a {
  color: var(--color-rose);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--color-rose-dark);
}

.breadcrumb-separator {
  color: rgba(194, 24, 91, 0.35);
  font-size: 0.7rem;
}

.breadcrumb-item.active {
  color: var(--color-soil);
  font-weight: 500;
}

/* =============================================
   ALERTS
   ============================================= */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.alert-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.alert-text {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.alert-success {
  background: var(--color-stem-pale);
  border-color: rgba(46, 125, 50, 0.2);
  color: var(--color-stem);
}

.alert-error {
  background: #fff0f3;
  border-color: rgba(194, 24, 91, 0.2);
  color: var(--color-rose-dark);
}

.alert-warning {
  background: var(--color-dandelion-pale);
  border-color: rgba(249, 168, 37, 0.25);
  color: var(--color-dandelion-dark);
}

.alert-info {
  background: var(--color-petal-blush);
  border-color: rgba(194, 24, 91, 0.12);
  color: var(--color-rose-dark);
}

/* =============================================
   TABS
   ============================================= */
.tabs-wrapper {
  width: 100%;
}

.tabs-nav {
  display: flex;
  gap: 0.25rem;
  background