:root {
  /* Color Palette */
  --color-dark: #0D0D0D;
  --color-charcoal: #1F1F1F;
  --color-graphite: #2C2C2C;
  --color-gray: #3D3D3D;
  --color-silver: #8A8A8A;
  --color-light: #F5F5F5;
  --color-accent: #FF6B6B;
  --color-accent-secondary: #4ECDC4;
  --color-accent-tertiary: #FFD166;
  
  /* Natural Flower Colors */
  --color-flower-red: #E63946;
  --color-flower-pink: #FFAFCC;
  --color-flower-yellow: #FFDD00;
  --color-flower-purple: #6A0DAD;
  --color-flower-green: #606C38;

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-indices */
  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-high: 100;
  --z-highest: 1000;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-light);
  background-color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover, a:focus {
  color: var(--color-accent-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--color-graphite);
  color: var(--color-light);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover, .btn:focus {
  background-color: var(--color-gray);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-accent);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-flower-red);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-accent);
}

/* Header */
.site-header {
  position: relative;
  padding: var(--space-sm) 0;
  transition: all var(--transition-medium);
  z-index: var(--z-high);
  overflow: hidden;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-light);
}

.logo:hover {
  color: var(--color-accent);
}

/* Navigation */
.nav-trigger {
  display: none;
}

.nav-label {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-link {
  color: var(--color-silver);
  font-weight: 500;
  position: relative;
  padding: var(--space-xxs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-medium);
}

.nav-link:hover {
  color: var(--color-light);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  z-index: var(--z-above);
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-silver);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.7));
  z-index: var(--z-normal);
}

/* Section styles */
.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-accent);
  margin: var(--space-sm) auto;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background-color: var(--color-charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.product-description {
  color: var(--color-silver);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.feature-item {
  padding: var(--space-md);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.feature-title {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.feature-text {
  color: var(--color-silver);
  font-size: 0.9rem;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text {
  padding: var(--space-md);
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--color-accent);
  position: absolute;
}

.testimonial-text::before {
  top: -10px;
  left: -20px;
}

.testimonial-text::after {
  bottom: -10px;
  right: -20px;
}

.testimonial-author {
  font-weight: 700;
}

/* Contact */
.contact-section {
  position: relative;
  padding: var(--space-xl) 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.contact-details {
  color: var(--color-silver);
}

.contact-details strong {
  color: var(--color-light);
  display: block;
  margin-bottom: var(--space-xxs);
}

.contact-form {
  background-color: var(--color-charcoal);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-dark);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-sm);
  color: var(--color-light);
  font-family: var(--font-secondary);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--color-silver);
}

/* Map */
.map-container {
  height: 400px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-xl);
}

/* Footer */
.site-footer {
  background-color: var(--color-charcoal);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-silver);
  max-width: 300px;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: var(--space-xs);
}

.footer-link a {
  color: var(--color-silver);
  font-size: 0.9rem;
}

.footer-link a:hover {
  color: var(--color-light);
}

.copyright {
  text-align: center;
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-gray);
  font-size: 0.9rem;
  color: var(--color-silver);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  padding: var(--space-md);
  z-index: var(--z-highest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-notice.active {
  transform: translateY(0);
}

.cookie-text {
  margin-right: var(--space-md);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* 404 Page */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.error-message {
  margin-bottom: var(--space-lg);
}

/* Thank You Page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-accent-tertiary);
  margin-bottom: var(--space-md);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Immersive Petal Background Animation */
.petal-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-below);
  opacity: 0.1;
}

/* Media Queries */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    transition: right var(--transition-medium);
    z-index: var(--z-high);
  }
  
  .nav-menu.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-trigger {
    display: none;
  }
  
  .nav-label {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-light);
  }
  
  .nav-trigger:checked ~ .nav-menu {
    right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .cookie-notice {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}