/* Modern Professional Restaurant Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #F6EDE4;
  font-weight: 400;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  position: relative;
}

/* Beautiful Mexican-inspired background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 25% 25%, #C4824A 3px, transparent 3px),
    radial-gradient(circle at 75% 75%, #9CAF8E 2px, transparent 2px),
    linear-gradient(45deg, transparent 49%, rgba(196, 130, 74, 0.25) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(156, 175, 142, 0.25) 50%, transparent 51%);
  background-size: 60px 60px, 40px 40px, 80px 80px, 80px 80px;
  background-position: 0 0, 30px 30px, 0 0, 40px 40px;
  pointer-events: none;
}

/* Mexican textile texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(139, 111, 71, 0.5) 3px,
      rgba(139, 111, 71, 0.5) 4px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 2px,
      rgba(225, 123, 71, 0.4) 3px,
      rgba(225, 123, 71, 0.4) 4px);
  background-size: 25px 25px, 30px 30px;
  pointer-events: none;
}

/* FINAL Authentic Birria Color Palette */
:root {
  --birria-red: #B62929;
  /* Primary birria red */
  --dark-birria: #8E1F1F;
  /* Dark birria overlay for gradients */
  --tortilla-base: #F6EDE4;
  /* Clean, warm tortilla background */
  --mexican-gold: #D9A441;
  /* Mexican gold - use sparingly */
  --text-primary: #2A2A2A;
  /* Main text color */
  --text-light: #FFFFFF;
  /* White text on dark sections */
  --text-secondary: #6B4F42;
  /* Muted brown for secondary text */
  --white: #FFFFFF;
  /* Pure white for cards */
  --nav-warm: #FFF8F2;
  /* Warm tinted nav background */
  --neutral-light: #FAF7F4;
  /* Very light cream */
  --border-light: #E8DDD1;
  /* Light border color */
  --shadow-light: 0 2px 8px rgba(42, 42, 42, 0.08);
  --shadow-medium: 0 6px 20px rgba(42, 42, 42, 0.08);
  --shadow-heavy: 0 8px 32px rgba(42, 42, 42, 0.12);
  --gradient-birria: linear-gradient(180deg, var(--birria-red) 0%, var(--dark-birria) 100%);
  --gradient-gold: linear-gradient(180deg, var(--mexican-gold) 0%, #C98E31 100%);

  /* Mexican-inspired accent colors */
  --terra-cotta: #C4824A;
  --sage-green: #9CAF8E;
  --clay-orange: #E17B47;
  --sunset-peach: #F4D4C7;
  --adobe-brown: #8B6F47;

  /* Legacy variable mappings for compatibility */
  --primary-dark: var(--text-primary);
  --primary-red: var(--birria-red);
  --secondary-gold: var(--mexican-gold);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

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

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Header */
.header {
  background: var(--nav-warm);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo-section {
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 0.75rem;
}

.tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.nav-menu a:hover {
  color: var(--birria-red);
}

.cart-icon {
  background: var(--birria-red);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
}

.cart-icon:hover {
  background: var(--dark-birria);
  transform: translateY(-1px);
}

.cart-badge {
  background: var(--mexican-gold);
  color: var(--text-primary);
  border-radius: 50%;
  padding: 0.2rem 0.4rem;
  font-size: 0.7rem;
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

/* Hero Section - Fixed */
.hero {
  margin-top: 80px;
  background: linear-gradient(180deg,
      #D9A441 0%,
      #C98E31 60%,
      rgba(201, 142, 49, 0) 100%);
  padding: 2rem;
  text-align: center;
  position: relative;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 250px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><filter id="paper"><feTurbulence type="fractalNoise" baseFrequency="0.04" numOctaves="5" seed="1"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" fill="white" opacity="0.05" filter="url(%23paper)"/></svg>');
  pointer-events: none;
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-button {
  background: var(--birria-red);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--dark-birria);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Menu Styles */
.menu-container {
  background: #F0E6D8;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Mexican-inspired decorative borders for menu container */
.menu-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--terra-cotta) 0px,
      var(--terra-cotta) 15px,
      var(--sage-green) 15px,
      var(--sage-green) 30px,
      var(--clay-orange) 30px,
      var(--clay-orange) 45px,
      var(--mexican-gold) 45px,
      var(--mexican-gold) 60px);
  opacity: 0.7;
}

.menu-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--mexican-gold) 0px,
      var(--mexican-gold) 15px,
      var(--clay-orange) 15px,
      var(--clay-orange) 30px,
      var(--sage-green) 30px,
      var(--sage-green) 45px,
      var(--terra-cotta) 45px,
      var(--terra-cotta) 60px);
  opacity: 0.7;
}

.menu-category {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.category-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-weight: 600;
  position: relative;
}


.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
}

/* Mexican decorative borders for menu items */
.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--mexican-gold) 0%,
      var(--terra-cotta) 25%,
      var(--sage-green) 50%,
      var(--clay-orange) 75%,
      var(--mexican-gold) 100%);
}

/* Subtle Mexican pottery texture on menu cards */
.menu-item::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 130, 74, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(225, 123, 71, 0.02) 1px, transparent 1px);
  background-size: 25px 25px, 35px 35px;
  background-position: 0 0, 12px 18px;
  pointer-events: none;
  z-index: 0;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(182, 41, 41, 0.15);
}

.menu-item.out-of-stock {
  opacity: 0.6;
  position: relative;
}

.menu-item.out-of-stock::after {
  content: "TEMPORARILY UNAVAILABLE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(182, 41, 41, 0.95);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.menu-item-image {
  height: 180px;
  background: var(--gradient-birria);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.menu-item-content {
  padding: 2rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.menu-item-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.menu-item-price {
  color: var(--birria-red);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.menu-item-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.add-to-cart-btn {
  width: 100%;
  background: var(--birria-red);
  color: var(--text-light);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(182, 41, 41, 0.3);
}

.add-to-cart-btn:hover {
  background: var(--dark-birria);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 31, 31, 0.4);
}

.add-to-cart-btn:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  right: -450px;
  top: 0;
  width: 450px;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--border-light);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-heavy);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  background: var(--dark-birria);
  color: var(--text-light);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  color: var(--text-light);
  font-size: 1.25rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-items {
  padding: 2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cart-item-price {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quantity-btn {
  background: var(--neutral-light);
  border: 1px solid var(--border-light);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--mexican-gold);
  border-color: var(--mexican-gold);
  color: var(--text-primary);
}

.cart-total {
  padding: 2rem;
  border-top: 1px solid var(--border-light);
  background: var(--neutral-light);
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.checkout-btn {
  width: 100%;
  background: var(--mexican-gold);
  color: var(--text-primary);
  padding: 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(217, 164, 65, 0.3);
}

.checkout-btn:hover {
  background: #C98E31;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 65, 0.4);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--birria-red);
  box-shadow: 0 0 0 3px rgba(182, 41, 41, 0.1);
}

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

/* Menu Preview Section */
.menu-preview {
  background: #F0E6D8;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Mexican-inspired decorative border */
.menu-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--terra-cotta) 0px,
      var(--terra-cotta) 15px,
      var(--sage-green) 15px,
      var(--sage-green) 30px,
      var(--clay-orange) 30px,
      var(--clay-orange) 45px,
      var(--mexican-gold) 45px,
      var(--mexican-gold) 60px);
  opacity: 0.7;
}

.menu-preview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--mexican-gold) 0px,
      var(--mexican-gold) 15px,
      var(--clay-orange) 15px,
      var(--clay-orange) 30px,
      var(--sage-green) 30px,
      var(--sage-green) 45px,
      var(--terra-cotta) 45px,
      var(--terra-cotta) 60px);
  opacity: 0.7;
}

.menu-preview-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu-preview h2 {
  margin-bottom: 1.5rem;
  position: relative;
}

.menu-preview h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  background: var(--mexican-gold);
}

.menu-preview p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.featured-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--mexican-gold) 0%,
      var(--terra-cotta) 25%,
      var(--sage-green) 50%,
      var(--clay-orange) 75%,
      var(--mexican-gold) 100%);
}

/* Subtle Mexican pottery texture on cards */
.featured-item::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 130, 74, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(225, 123, 71, 0.02) 1px, transparent 1px);
  background-size: 25px 25px, 35px 35px;
  background-position: 0 0, 12px 18px;
  pointer-events: none;
  z-index: 0;
}

.featured-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(182, 41, 41, 0.2);
}

.featured-item-image {
  height: 160px;
  background: var(--gradient-birria);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.featured-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.featured-item-content {
  padding: 2rem;
}

.featured-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.featured-item .price {
  color: var(--birria-red);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.featured-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--dark-birria);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--text-light);
}

/* Alert Styles */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loading States */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.spinner {
  border: 2px solid var(--border-light);
  border-top: 2px solid var(--birria-red);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    font-size: 0.8rem;
  }

  .hero {
    padding: 2rem 1rem;
    height: 240px;
  }

  .menu-container {
    padding: 0 1rem;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .featured-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }

  .hero {
    margin-top: 120px;
    padding: 1.5rem 1rem;
    height: 200px;
  }

  .menu-item-content {
    padding: 1.5rem;
  }

  .featured-item-content {
    padding: 1.5rem;
  }
}

/* Professional Button Styles */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.btn-primary {
  background: var(--birria-red);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--dark-birria);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--mexican-gold);
  background: var(--neutral-light);
}

/* Scroll positioning for fixed header */
#contact {
  scroll-margin-top: 100px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-medium {
  font-weight: 600 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

/* Professional animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}


/* Mexican decorative borders for other page containers */
.checkout-container,
.login-container,
.confirmation-container {
  position: relative;
  overflow: hidden;
}

.checkout-container::before,
.login-container::before,
.confirmation-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--terra-cotta) 0px,
      var(--terra-cotta) 15px,
      var(--sage-green) 15px,
      var(--sage-green) 30px,
      var(--clay-orange) 30px,
      var(--clay-orange) 45px,
      var(--mexican-gold) 45px,
      var(--mexican-gold) 60px);
  opacity: 0.7;
  z-index: 1;
}

.checkout-container::after,
.login-container::after,
.confirmation-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--mexican-gold) 0px,
      var(--mexican-gold) 15px,
      var(--clay-orange) 15px,
      var(--clay-orange) 30px,
      var(--sage-green) 30px,
      var(--sage-green) 45px,
      var(--terra-cotta) 45px,
      var(--terra-cotta) 60px);
  opacity: 0.7;
  z-index: 1;
}