:root {
  /* Primary Brand Colors - Deep Teal */
  --color-brand: #0066CC;
  --color-brand-dark: #004C99;
  --color-brand-light: #3385D6;

  /* Secondary Colors - Vibrant Coral */
  --color-secondary: #FF6B6B;
  --color-secondary-dark: #E55A5A;
  --color-secondary-light: #FF8585;

  /* Accent Colors - Warm Gold */
  --color-accent: #F4A460;
  --color-accent-dark: #E08C42;
  --color-accent-light: #F7B87A;

  /* Text Colors */
  --color-text-dark: #2C3E50;
  --color-text-light: #6D7B7C;

  /* Background Colors */
  --color-bg-light: #ECF0F1;
  --color-bg-white: #FFFFFF;

  /* Semantic Colors */
  --color-success: #27AE60;
  --color-warning: #F4A460;
  --color-error: #E74C3C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  /* gray-50 */
  color: var(--color-text-dark);
}

/* Custom classes for gradients and branding */
.bg-brand-50 {
  background-color: #f0f9fa;
}

.bg-brand-100 {
  background-color: #e0f2f4;
}

.bg-brand-500 {
  background-color: var(--color-brand);
}

.bg-brand-600 {
  background-color: var(--color-brand-dark);
}

.text-brand {
  color: var(--color-brand);
}

.text-brand-300 {
  color: #8ED1D9;
}

.text-brand-400 {
  color: #4DAEBB;
}

.text-brand-500 {
  color: var(--color-brand);
}

.text-brand-600 {
  color: var(--color-brand-dark);
}

.border-brand {
  border-color: var(--color-brand);
}

.bg-secondary-50 {
  background-color: #fff5f5;
}

.bg-secondary-100 {
  background-color: #ffe3e3;
}

.bg-secondary-800 {
  background-color: #1a202c;
}

.bg-secondary-900 {
  background-color: #171923;
}

.shadow-card {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-card-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Slider classes */
.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
}

.slider-image.active {
  opacity: 1;
}

/* Shipping Calculator Styles */
.destination-option {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-circle {
  transition: all 0.2s ease;
  border-width: 1px;
}

.radio-circle.border-blue-500 {
  border-width: 1.5px;
}

#calculator-results {
  animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Animations */
#mobile-menu {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

#mobile-menu.active {
  max-height: 80vh;
  opacity: 1;
  pointer-events: auto;
}


/* Custom Scrollbar for Selects if needed */
select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}