:root {
  /* Color Palette */
  --color-charcoal: #1A1A1D;
  --color-forest: #2E3A34;
  --color-orchid: #6D214F;
  --color-coral: #C44569;
  --color-mist: #F1E8E6;
  
  /* Typography */
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-round: 50%;
  
  /* Shadows */
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 6px 12px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===============
   Reset & Base Styles
   =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-mist);
  color: var(--color-charcoal);
  font-family: var(--font-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-orchid);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-coral);
}

/* ===============
   Typography
   =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-forest);
}

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);
}

.text-center {
  text-align: center;
}

/* ===============
   Container & Layout
   =============== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

/* ===============
   Header & Navigation
   =============== */
.site-header {
  position: relative;
  padding: var(--space-md) 0;
  background-color: var(--color-charcoal);
  transform: translateY(0);
  transition: transform var(--transition-medium);
  z-index: 100;
}

.header-hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-mist);
  font-weight: 600;
  text-transform: none;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: var(--space-sm);
  color: var(--color-coral);
}

.main-nav {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--color-mist);
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-coral);
  transition: width var(--transition-medium);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-mist);
  transition: var(--transition-medium);
}

/* ===============
   Hero Section
   =============== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-forest);
  color: var(--color-mist);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-mist);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

/* ===============
   Buttons
   =============== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-coral);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-medium);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  background-color: var(--color-orchid);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-coral);
  color: var(--color-coral);
}

.btn-outline:hover {
  background-color: var(--color-coral);
  color: white;
}

.btn-dark {
  background-color: var(--color-charcoal);
}

.btn-dark:hover {
  background-color: var(--color-forest);
}

/* ===============
   Cards & Product Display
   =============== */
.card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-price {
  font-size: 1.25rem;
  color: var(--color-coral);
  font-weight: bold;
  margin-bottom: var(--space-md);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

/* ===============
   Features & Content Blocks
   =============== */
.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: var(--space-md);
  color: var(--color-coral);
  font-size: 2rem;
  text-align: center;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  margin-bottom: var(--space-sm);
}

/* ===============
   Forms
   =============== */
.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

input, 
textarea, 
select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(196, 69, 105, 0.1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: var(--space-sm);
  margin-top: 5px;
}

/* ===============
   Footer
   =============== */
.site-footer {
  background-color: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.footer-title {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: var(--color-coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
}

/* ===============
   Cookie Consent
   =============== */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--color-charcoal);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  z-index: 1000;
  display: none;
  max-width: 400px;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

/* ===============
   Animations
   =============== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===============
   Media Queries
   =============== */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-charcoal);
    padding: var(--space-lg);
    box-shadow: var(--shadow-medium);
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: var(--space-sm);
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}