* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

.highlighted-section {
  outline: 2px solid #3F20FB;
  background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

:root {
  /* Base colors */
  --color-base: #ffffff;
  --color-base-50: #f9fafb;
  --color-base-100: #f3f4f6;
  --color-base-200: #e5e7eb;
  --color-base-300: #d1d5db;
  --color-base-400: #9ca3af;
  --color-base-500: #6b7280;
  --color-base-600: #4b5563;  
  --color-base-700: #374151;
  --color-base-800: #1f2937;  
  --color-base-900: #111827;
  --color-base-content: #1f2937;

  /* Primary colors */
  --color-primary: #3b82f6;
  --color-primary-50: #eff6ff;
  --color-primary-100: #dbeafe;
  --color-primary-200: #bfdbfe;
  --color-primary-300: #93c5fd;
  --color-primary-400: #60a5fa;
  --color-primary-500: #3b82f6;
  --color-primary-600: #2563eb;
  --color-primary-700: #1d4ed8;
  --color-primary-800: #1e40af;
  --color-primary-900: #1e3a8a;
  --color-primary-focus: #2563eb;
  --color-primary-content: #ffffff;

  /* Secondary colors */
  --color-secondary: #8b5cf6;
  --color-secondary-50: #f5f3ff;
  --color-secondary-100: #ede9fe;
  --color-secondary-200: #ddd6fe;
  --color-secondary-300: #c4b5fd;
  --color-secondary-400: #a78bfa;
  --color-secondary-500: #8b5cf6;
  --color-secondary-600: #7c3aed;
  --color-secondary-700: #6d28d9;
  --color-secondary-800: #5b21b6;
  --color-secondary-900: #4c1d95;
  --color-secondary-focus: #7c3aed;
  --color-secondary-content: #ffffff;

  /* Accent colors */
  --color-accent: #f472b6;
  --color-accent-50: #fdf2f8;
  --color-accent-100: #fce7f3;
  --color-accent-200: #fbcfe8;
  --color-accent-300: #f9a8d4;
  --color-accent-400: #f472b6;
  --color-accent-500: #ec4899;
  --color-accent-600: #db2777;
  --color-accent-700: #be185d;
  --color-accent-800: #9d174d;
  --color-accent-900: #831843;
  --color-accent-focus: #db2777;
  --color-accent-content: #ffffff;

  /* Neutral colors */
  --color-neutral: #6b7280;
  --color-neutral-50: #f9fafb;
  --color-neutral-100: #f3f4f6;
  --color-neutral-200: #e5e7eb;
  --color-neutral-300: #d1d5db;
  --color-neutral-400: #9ca3af;
  --color-neutral-500: #6b7280;
  --color-neutral-600: #4b5563;
  --color-neutral-700: #374151;
  --color-neutral-800: #1f2937;
  --color-neutral-900: #111827;
  --color-neutral-focus: #4b5563;
  --color-neutral-content: #ffffff;

  /* Info colors */
  --color-info: #3b82f6;
  --color-info-50: #eff6ff;
  --color-info-100: #dbeafe;
  --color-info-200: #bfdbfe;
  --color-info-300: #93c5fd;
  --color-info-400: #60a5fa;
  --color-info-500: #3b82f6;
  --color-info-600: #2563eb;
  --color-info-700: #1d4ed8;
  --color-info-800: #1e40af;
  --color-info-900: #1e3a8a;
  --color-info-focus: #2563eb;
  --color-info-content: #ffffff;

  /* Success colors */
  --color-success: #10b981;
  --color-success-50: #ecfdf5;
  --color-success-100: #d1fae5;
  --color-success-200: #a7f3d0;
  --color-success-300: #6ee7b7;
  --color-success-400: #34d399;
  --color-success-500: #10b981;
  --color-success-600: #059669;
  --color-success-700: #047857;
  --color-success-800: #065f46;
  --color-success-900: #064e3b;
  --color-success-focus: #059669;
  --color-success-content: #ffffff;

  /* Warning colors */
  --color-warning: #f59e0b;
  --color-warning-50: #fffbeb;
  --color-warning-100: #fef3c7;
  --color-warning-200: #fde68a;
  --color-warning-300: #fcd34d;
  --color-warning-400: #fbbf24;
  --color-warning-500: #f59e0b;
  --color-warning-600: #d97706;
  --color-warning-700: #b45309;
  --color-warning-800: #92400e;
  --color-warning-900: #78350f;
  --color-warning-focus: #d97706;
  --color-warning-content: #ffffff;

  /* Error colors */
  --color-error: #ef4444;
  --color-error-50: #fef2f2;
  --color-error-100: #fee2e2;
  --color-error-200: #fecaca;
  --color-error-300: #fca5a5;
  --color-error-400: #f87171;
  --color-error-500: #ef4444;
  --color-error-600: #dc2626;
  --color-error-700: #b91c1c;
  --color-error-800: #991b1b;
  --color-error-900: #7f1d1d;
  --color-error-focus: #dc2626;
  --color-error-content: #ffffff;
}

/* Dark theme */
.dark {
  /* Base colors */
  --color-base: #1f2937;
  --color-base-50: #111827;
  --color-base-100: #1f2937;
  --color-base-200: #374151;
  --color-base-300: #4b5563;
  --color-base-400: #6b7280;
  --color-base-500: #9ca3af;
  --color-base-600: #d1d5db;
  --color-base-700: #e5e7eb;
  --color-base-800: #f3f4f6;
  --color-base-900: #f9fafb;
  --color-base-content: #f9fafb;

  /* Primary colors */
  --color-primary: #60a5fa;
  --color-primary-50: #1e3a8a;
  --color-primary-100: #1e40af;
  --color-primary-200: #1d4ed8;
  --color-primary-300: #2563eb;
  --color-primary-400: #3b82f6;
  --color-primary-500: #60a5fa;
  --color-primary-600: #93c5fd;
  --color-primary-700: #bfdbfe;
  --color-primary-800: #dbeafe;
  --color-primary-900: #eff6ff;
  --color-primary-focus: #3b82f6;
  --color-primary-content: #1f2937;

  /* Secondary colors */
  --color-secondary: #a78bfa;
  --color-secondary-50: #4c1d95;
  --color-secondary-100: #5b21b6;
  --color-secondary-200: #6d28d9;
  --color-secondary-300: #7c3aed;
  --color-secondary-400: #8b5cf6;
  --color-secondary-500: #a78bfa;
  --color-secondary-600: #c4b5fd;
  --color-secondary-700: #ddd6fe;
  --color-secondary-800: #ede9fe;
  --color-secondary-900: #f5f3ff;
  --color-secondary-focus: #8b5cf6;
  --color-secondary-content: #1f2937;

  /* Accent colors */
  --color-accent: #f472b6;
  --color-accent-50: #831843;
  --color-accent-100: #9d174d;
  --color-accent-200: #be185d;
  --color-accent-300: #db2777;
  --color-accent-400: #ec4899;
  --color-accent-500: #f472b6;
  --color-accent-600: #f9a8d4;
  --color-accent-700: #fbcfe8;
  --color-accent-800: #fce7f3;
  --color-accent-900: #fdf2f8;
  --color-accent-focus: #ec4899;
  --color-accent-content: #1f2937;

  /* Info colors */
  --color-info: #60a5fa;
  --color-info-50: #1e3a8a;
  --color-info-100: #1e40af;
  --color-info-200: #1d4ed8;
  --color-info-300: #2563eb;
  --color-info-400: #3b82f6;
  --color-info-500: #60a5fa;
  --color-info-600: #93c5fd;
  --color-info-700: #bfdbfe;
  --color-info-800: #dbeafe;
  --color-info-900: #eff6ff;
  --color-info-focus: #3b82f6;
  --color-info-content: #1f2937;

  /* Success colors */
  --color-success: #34d399;
  --color-success-50: #064e3b;
  --color-success-100: #065f46;
  --color-success-200: #047857;
  --color-success-300: #059669;
  --color-success-400: #10b981;
  --color-success-500: #34d399;
  --color-success-600: #6ee7b7;
  --color-success-700: #a7f3d0;
  --color-success-800: #d1fae5;
  --color-success-900: #ecfdf5;
  --color-success-focus: #10b981;
  --color-success-content: #1f2937;

  /* Warning colors */
  --color-warning: #fbbf24;
  --color-warning-50: #78350f;
  --color-warning-100: #92400e;
  --color-warning-200: #b45309;
  --color-warning-300: #d97706;
  --color-warning-400: #f59e0b;
  --color-warning-500: #fbbf24;
  --color-warning-600: #fcd34d;
  --color-warning-700: #fde68a;
  --color-warning-800: #fef3c7;
  --color-warning-900: #fffbeb;
  --color-warning-focus: #f59e0b;
  --color-warning-content: #1f2937;

  /* Error colors */
  --color-error: #f87171;
  --color-error-50: #7f1d1d;
  --color-error-100: #991b1b;
  --color-error-200: #b91c1c;
  --color-error-300: #dc2626;
  --color-error-400: #ef4444;
  --color-error-500: #f87171;
  --color-error-600: #fca5a5;
  --color-error-700: #fecaca;
  --color-error-800: #fee2e2;
  --color-error-900: #fef2f2;
  --color-error-focus: #ef4444;
  --color-error-content: #1f2937;
}

/* Desktop Navigation Styles */
.desktop-nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }

  .desktop-nav ul {
    display: flex;
    gap: 2rem;
  }

  .desktop-nav a {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .desktop-nav a:hover {
    color: var(--color-secondary);
  }
}

/* Container Styles */
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Responsive Visibility Classes */
.hide-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
  
  .hide-tablet {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

/* Mobile First Approach */
/* Base styles (mobile) are already defined above */

/* Tablet (768px and up) */
@media screen and (min-width: 768px) {
  /* Header */
  #header {
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
  }

  /* Hero Section */
  #hero h1 {
    font-size: 2.5rem;
  }

  /* Bouquet Collection */
  #bouquet-carousel .snap-start {
    min-width: 45%;
  }

  /* How It Works */
  #how-it-works {
    padding: 3rem 2rem;
  }

  /* About Section */
  #about {
    padding: 3rem 2rem;
  }

  /* Footer */
  #footer {
    padding: 3rem 2rem;
  }
}

/* Desktop (1024px and up) */
@media screen and (min-width: 1024px) {
  /* Header */
  #header {
    padding: 1.5rem 3rem;
  }

  /* Hide mobile menu button on desktop */
  #menu-toggle {
    display: none;
  }

  /* Show desktop navigation */
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  /* Hero Section */
  #hero {
    padding: 4rem 3rem;
  }

  #hero h1 {
    font-size: 3rem;
  }

  /* Bouquet Collection */
  #bouquet-carousel .snap-start {
    min-width: 30%;
  }

  /* How It Works */
  #how-it-works {
    padding: 4rem 3rem;
  }

  /* About Section */
  #about {
    padding: 4rem 3rem;
  }

  /* Footer */
  #footer {
    padding: 4rem 3rem;
  }
}

/* Large Desktop (1280px and up) */
@media screen and (min-width: 1280px) {
  /* Container max-width for larger screens */
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Hero Section */
  #hero {
    padding: 5rem 4rem;
  }

  #hero h1 {
    font-size: 3.5rem;
  }

  /* Bouquet Collection */
  #bouquet-carousel .snap-start {
    min-width: 25%;
  }
}

/* Bouquet Carousel Styles */
#bouquet-carousel {
  position: relative;
  overflow: hidden;
}

#bouquet-carousel .flex {
  display: flex;
 
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

#bouquet-carousel .flex:active {
  cursor: grabbing;
}

/* Remove custom carousel card overrides */
#bouquet-carousel .snap-start,
#bouquet-carousel .snap-start .relative.h-48,
#bouquet-carousel .snap-start img,
#bouquet-carousel .snap-start .p-4,
#bouquet-carousel .snap-start .absolute.top-3.right-3,
#bouquet-carousel .snap-start .relative.h-48 + .p-4 {
  all: unset;
}

@media screen and (min-width: 768px) {
  #bouquet-carousel .snap-start {
    min-width: 45%;
  }
}

@media screen and (min-width: 1024px) {
  #bouquet-carousel .snap-start {
    min-width: 30%;
  }
}

@media screen and (min-width: 1280px) {
  #bouquet-carousel .snap-start {
    min-width: 25%;
  }
}

/* Hide scrollbar but keep functionality */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

/* --- Carousel Card Screenshot Style --- */
#bouquet-carousel .snap-start {
  background: #181c2a;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 85%;
  max-width: 400px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  #bouquet-carousel .snap-start {
    min-width: 45%;
    max-width: 340px;
  }
}
@media (min-width: 1024px) {
  #bouquet-carousel .snap-start {
    min-width: 30%;
    max-width: 320px;
  }
}
@media (min-width: 1280px) {
  #bouquet-carousel .snap-start {
    min-width: 25%;
    max-width: 320px;
  }
}
#bouquet-carousel .snap-start .relative {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}


#bouquet-carousel .snap-start img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
}
#bouquet-carousel .snap-start .p-4 {
  padding: 1.25rem 1.25rem 1rem 1.25rem;
  background: #23273a;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  margin-top: 0;
}
#bouquet-carousel .snap-start .absolute.top-3.right-3 {
  top: 14px;
  right: 14px;
  z-index: 2;
  position: absolute;
  padding: 2px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9999px;
  background: #ffeeba;
  color: #7c5700;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
#bouquet-carousel .snap-start h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
#bouquet-carousel .snap-start .text-gray-400 {
  color: #b0b6c8 !important;
}
#bouquet-carousel .snap-start .text-purple-400 {
  color: #7c5cff !important;
}
#bouquet-carousel .snap-start .text-white {
  color: #fff !important;
}
#bouquet-carousel .snap-start .w-6.h-6.rounded-full {
  border: 2px solid #23273a;
}
#bouquet-carousel .snap-start .fa-star,
#bouquet-carousel .snap-start .fa-star-half-alt,
#bouquet-carousel .snap-start .fa-regular.fa-star {
  font-size: 1rem;
  margin-right: 1px;
}
#bouquet-carousel .snap-start .flex.items-center.mb-3 {
  margin-bottom: 0.7rem;
}
#bouquet-carousel .snap-start .flex.space-x-2.mb-4 {
  margin-bottom: 0.7rem;
}
#bouquet-carousel .snap-start .text-xs.mt-3.italic {
  margin-top: 0.7rem;
}

.aspect-21-9 {
  aspect-ratio: 21/9;
}
.stars-row > i {
  margin: 0 !important;
}
.card-no-height {
  height: auto;
}
.align-items-start {
  align-items: start;
}

.text-brand-purple {
  color: rgb(167, 139, 250) !important;
}
.bg-brand-purple {
  background-color: rgb(121, 54, 233) !important;
}
.hover\:bg-brand-purple:hover {
  background-color: rgb(114, 46, 224) !important;
}
.hover\:text-brand-purple:hover {
  color: rgb(167, 139, 250) !important;
}

.font-libre-baskerville {
  font-family: 'Libre Baskerville', serif !important;
}

/* Mobile-specific styles */
@media screen and (max-width: 767px) {
  #header {
    padding: 0.75rem 1rem;
  }

  #hero {
    padding: 1.5rem 1rem;
  }

  #hero h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  #bouquet-carousel .snap-start {
    min-width: 85%;
    margin: 0 0.25rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
} 