:root {
      --midnight-black: #0C0C0C;
      --champagne-gold: #F4F4F4;
      --amber-accent: #25549C;
      --smoky-gray: #5E5E5E;
      --porcelain-white: #F4F4F4;
      --glass-tint: rgba(255, 255, 255, 0.08);
      --glass-tint-light: rgba(255, 255, 255, 0.12);
      --font-serif: 'Cormorant Garamond', serif;
      --font-sans: 'Inter', sans-serif;
      --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-fast: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }
    a{
      text-decoration: none;
    }
    body {
      font-family: var(--font-sans);
      background: var(--midnight-black);
      color: var(--porcelain-white);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 300vh;
    }

    ::selection {
      background: var(--champagne-gold);
      color: var(--midnight-black);
    }

    /* Grain texture */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ===============================
       NAVBAR
    ================================ */
    .modern-navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modern-navbar.hidden {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }

    .navbar-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 170px;
      transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Logo */
    .navbar-logo {
      position: absolute;
      left: 60px;
      top: 10px;

    }

    .logo-image {
      height: 160px;
      transition: var(--transition-smooth);
    }

    /* Center Buttons Container */
    .navbar-buttons {
      display: flex;
      gap: 60px;
      align-items: center;
      opacity: 1;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-buttons.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .nav-btn {
      text-decoration: none;
      color: var(--champagne-gold);
      font-size: 19px;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding: 14px 28px;
      border-radius: 10px;
      transition: var(--transition-smooth);
      position: relative;
      white-space: nowrap;
    }

    .nav-btn::after {
      content: '';
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 2px;
      background: var(--amber-accent);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-btn:hover {
      background: var(--glass-tint-light);
      color: white;
    }

    .nav-btn:hover::after {
      transform: translateX(-50%) scaleX(1);
    }

    /* ===============================
       HAMBURGER
    ================================ */
    .hamburger-menu {
      position: fixed;
      top: 61px;
      right: 60px;
      width: 48px;
      height: 48px;
      border: 2px solid white;
      background: rgba(12, 12, 12, 0.85);
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      z-index: 2000;
      transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                  background 0.3s ease,
                  box-shadow 0.3s ease;
      opacity: 1;
      pointer-events: all;
    }

    .hamburger-menu.scrolled {
      top: 8.5px;
      background: rgba(12, 12, 12, 0.85);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .hamburger-line {
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger-menu.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }
    .hamburger-menu.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }



    /* ===============================
       DROPDOWN
    ================================ */
    .dropdown-menu {
      position: fixed;
      top: 110px;
      right: 95px;
      width: 280px;
      background: rgba(12, 12, 12, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 12px;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 5500;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .dropdown-menu.scrolled {
      top: 57px;
    }


    .dropdown-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-link {
      display: block;
      padding: 14px 18px;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 16px;
      font-weight: 500;
    }

    .dropdown-link:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateX(4px);
    }

    .dropdown-divider {
      border: none;
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 14px 0;
    }


.top-control-bar {
  display: none;
}

    /* ===============================
   MOBILE NAVBAR FIX
================================ */



@media (max-width: 768px) {
      /* ===============================
       TOP CONTROL BAR (Behind Hamburger & Cart)
    ================================ */
    .top-control-bar {
      display: block;
      position: fixed;
      top: -100px;
      left: 0;
      width: 100%;
      height: 100px;
      background: rgba(12, 12, 12, 0.98);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      z-index: 1999;
      transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .top-control-bar.visible {
      top: 0;
    }
  .top-control-bar {
    height: 80px;
    top: -80px;
  }

  .hamburger-menu {
    right: 15px;
    top: 25px;
  }

  .hamburger-menu.scrolled {
    top: 16px;
  }

  .dropdown-menu {
    right: 50px;
    top: 73px;
    width: calc(100vw - 40px);
    max-width: 320px;
  }

  .dropdown-menu.scrolled {
    top: 64px;
  }


  .navbar-logo{
    left: 0;
    right: 0;
  }

  /* Hide center buttons on mobile */
  .navbar-buttons {
    display: none;
  }

  .navbar-container{
    display: flex;
    justify-content: space-between;
  }

}

/* ===============================
   FEATURED ANNOUNCEMENT
================================ */
.featured-announcement {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 100%);
  overflow: hidden;
  animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid rgba(244, 244, 244, 0.1);
}

.featured-announcement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(244, 244, 244, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-announcement.hidden {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }
  to {
    opacity: 0;
    transform: translateY(-50px);
    max-height: 0;
  }
}

.announcement-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(244, 244, 244, 0.2);
  border-radius: 12px;
  color: rgba(244, 244, 244, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-close:hover {
  background: rgba(12, 12, 12, 0.95);
  border-color: rgba(244, 244, 244, 0.5);
  color: #F4F4F4;
  transform: rotate(90deg) scale(1.05);
}

.announcement-close svg {
  width: 22px;
  height: 22px;
}

.announcement-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
  align-items: center;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.announcement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-image-wrapper:hover .announcement-image {
  transform: scale(1.05);
}

.announcement-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.3) 0%,
    rgba(12, 12, 12, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.announcement-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(244, 244, 244, 0.2);
  border-radius: 12px;
  color: #F4F4F4;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 244, 244, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px 5px rgba(244, 244, 244, 0);
  }
}

.announcement-badge svg {
  width: 18px;
  height: 18px;
}

.announcement-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.announcement-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 244, 244, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: #F4F4F4;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.announcement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: #F4F4F4;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 0;
}

.announcement-description {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(244, 244, 244, 0.8);
  line-height: 1.8;
  margin: 0;
}

.announcement-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(244, 244, 244, 0.05);
  border: 1px solid rgba(244, 244, 244, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-item svg {
  width: 24px;
  height: 24px;
  color: rgba(244, 244, 244, 0.6);
  flex-shrink: 0;
}

.detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(244, 244, 244, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #F4F4F4;
}

.announcement-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.announcement-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.announcement-btn.primary {
  background: #F4F4F4;
  color: #0C0C0C;
  border: 2px solid #F4F4F4;
}

.announcement-btn.primary:hover {
  background: transparent;
  color: #F4F4F4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 244, 244, 0.2);
}

.announcement-btn.primary svg {
  width: 18px;
  height: 18px;
}

.announcement-btn.secondary {
  background: transparent;
  color: #F4F4F4;
  border: 2px solid rgba(244, 244, 244, 0.3);
}

.announcement-btn.secondary:hover {
  background: rgba(244, 244, 244, 0.1);
  border-color: #F4F4F4;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .announcement-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .announcement-image-wrapper {
    height: 400px;
  }

  .announcement-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .announcement-container {
    padding: 50px 24px;
    gap: 32px;
  }

  .announcement-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .announcement-close svg {
    width: 18px;
    height: 18px;
  }

  .announcement-image-wrapper {
    height: 300px;
    border-radius: 16px;
  }

  .announcement-badge {
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 11px;
  }

  .announcement-badge svg {
    width: 16px;
    height: 16px;
  }

  .announcement-title {
    font-size: 32px;
  }

  .announcement-description {
    font-size: 15px;
  }

  .announcement-details {
    padding: 24px;
  }

  .announcement-actions {
    flex-direction: column;
  }

  .announcement-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

.announcement-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 60px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(244, 244, 244, 0.2);
  border: 2px solid rgba(244, 244, 244, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.indicator:hover {
  background: rgba(244, 244, 244, 0.4);
  border-color: rgba(244, 244, 244, 0.5);
  transform: scale(1.2);
}

.indicator.active {
  width: 32px;
  border-radius: 6px;
  background: #F4F4F4;
  border-color: #F4F4F4;
}

@media (max-width: 768px) {
  .announcement-indicators {
    padding: 0 24px 32px 24px;
    gap: 10px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 28px;
  }
}


    /* ===================================
       HERO SECTION
       =================================== */

    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .parallax-layer {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .layer-1 {
      background: linear-gradient(135deg, rgba(12, 12, 12, 0.8) 0%, rgba(200, 134, 60, 0.15) 100%);
      z-index: 3;
    }

    .layer-2 {
      background: radial-gradient(circle at 30% 50%, rgba(37, 84, 156, 0.15) 0%, transparent 50%);
      z-index: 2;
    }

    .layer-3 {
      background: linear-gradient(to bottom, rgba(12, 12, 12, 0.85) 0%, rgba(12, 12, 12, 0.9) 100%),
                  url('https://images.pexels.com/photos/941861/pexels-photo-941861.jpeg?auto=compress&cs=tinysrgb&w=1920');
      background-size: cover;
      background-position: center;
      z-index: 1;
    }

    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 4;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      animation: float 8s ease-in-out infinite;
    }

    .shape-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(37, 84, 156, 0.3), transparent);
    }

    .shape-dot {
      width: 4px;
      height: 4px;
      background: rgba(37, 84, 156, 0.4);
      border-radius: 50%;
      box-shadow: 0 0 20px rgba(37, 84, 156, 0.3);
    }

    .shape-1 {
      width: 150px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 120px;
      bottom: 30%;
      right: 12%;
      animation-delay: 3s;
    }

    .shape-3 {
      top: 35%;
      right: 20%;
      animation-delay: 1.5s;
    }

    .shape-4 {
      bottom: 40%;
      left: 15%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
      }
      50% {
        transform: translateY(-30px);
        opacity: 0.8;
      }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 20px;
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(48px, 8vw, 120px);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 30px;
      overflow: hidden;
    }

    .title-line {
      display: block;
      opacity: 0;
      transform: translateY(100px);
      animation: fadeUp 1s ease forwards;
      font-size: 150px;
    }

    .title-accent {
      background: linear-gradient(135deg, #25549C 0%, rgba(37, 84, 156, 0.8) 50%, #F4F4F4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
      filter: drop-shadow(0 4px 12px rgba(37, 84, 156, 0.4));
    }

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

    .hero-subtitle {
      font-size: clamp(16px, 2vw, 20px);
      letter-spacing: 3px;
      color: var(--smoky-gray);
      margin-bottom: 50px;
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.7s;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1s;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* Modern Sophisticated Button */
    .primary-order-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px 48px;
      background: rgba(255, 255, 255, 0.05);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      border-radius: 50px;
      color: var(--champagne-gold);
      font-size: 16px;
      letter-spacing: 2px;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      backdrop-filter: blur(10px);
      cursor: pointer;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    /* Shimmer effect overlay */
    .primary-order-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
      );
      transition: left 0.6s ease;
    }

    /* Glow effect */
    .primary-order-button::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(
        135deg,
        rgba(37, 84, 156, 0.3),
        rgba(94, 94, 94, 0.2),
        rgba(244, 244, 244, 0.1)
      );
      border-radius: 50px;
      z-index: -1;
      opacity: 0;
      filter: blur(15px);
      transition: opacity 0.4s ease;
    }

    .primary-order-button span {
      position: relative;
      z-index: 1;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* Arrow icon */
    .primary-order-button svg {
      width: 18px;
      height: 18px;
      position: relative;
      z-index: 1;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* Hover state */
    .primary-order-button:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
      box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .primary-order-button:hover::before {
      left: 100%;
    }

    .primary-order-button:hover::after {
      opacity: 1;
    }

    .primary-order-button:hover span {
      transform: translateX(-3px);
    }

    .primary-order-button:hover svg {
      transform: translateX(4px);
    }

    /* Active state */
    .primary-order-button:active {
      transform: translateY(0);
      box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--champagne-gold);
      font-size: 11px;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1.5s;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, var(--champagne-gold));
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% {
        opacity: 0.3;
      }
      50% {
        opacity: 1;
      }
    }

    .content-section {
      padding: 100px 60px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .content-section h2 {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--champagne-gold);
    }

    .content-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--smoky-gray);
      margin-bottom: 1rem;
    }


/* ===================================
   SPECIAL OFFERS SECTION
   =================================== */

.special-offers-section {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--midnight-black) 0%, rgba(37, 84, 156, 0.03) 100%);
  position: relative;
}

.offers-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.offers-header {
  margin-bottom: 60px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
}

/* 👇 If there is ONLY ONE card */
.offers-grid > .offer-card:only-child {
  grid-column: 1 / -1;   /* span full grid */
  max-width: 700px;     /* control width */
  margin: 0 auto;       /* center it */
}

.offer-card {
  position: relative;
  display: flex;
  gap: 30px;
  padding: 30px;
  background: var(--glass-tint);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--champagne-gold);
  transform: scaleY(0);
  transition: var(--transition-smooth);
}

.offer-card:hover::before {
  transform: scaleY(1);
}

.offer-card:hover {
  border-color: var(--champagne-gold);
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(37, 84, 156, 0.2);
}

.offer-card:hover .offer-image img {
  transform: scale(1.1);
}

.offer-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--midnight-black);
  border: 1px solid rgba(37, 84, 156, 0.15);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.offer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.offer-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  width: fit-content;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--porcelain-white);
}

.offer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--smoky-gray);
}

.offer-price {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.offer-price span {
  font-size: 16px;
  color: var(--smoky-gray);
  text-decoration: line-through;
  margin-left: 10px;
}

/* ===================================
   MENU PREVIEW SECTION
   =================================== */

.menu-preview-section {
  padding: 100px 60px;
  background: var(--midnight-black);
  position: relative;
  overflow: hidden;
}

.preview-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.menu-carousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.menu-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.menu-carousel-track {
  display: flex;
  gap: 30px;
  animation: scrollMenu 60s linear infinite;
  width: max-content;
  will-change: transform;
}

.menu-carousel-track:hover {
  animation-play-state: paused;
}

/* True infinite loop: animate exactly 50% since we have original + cloned items */
@keyframes scrollMenu {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50%), 0, 0);
  }
}

.preview-item {
  position: relative;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-width: 350px;
  flex-shrink: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.preview-item:hover {
  border-color: var(--champagne-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37, 84, 156, 0.2);
}

.preview-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  will-change: transform;
}

.preview-item:hover .preview-image {
  transform: scale(1.05);
}

.preview-info {
  padding: 25px;
}

.preview-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.preview-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #999595;
}

.preview-price {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(37, 84, 156, 0.4);
}

.preview-price::before {
  content: '€';
  font-size: 11px;
  margin-right: 1px;
}

/* ===================================
   ESSENCE SECTION
   =================================== */

.essence-section {
  padding: 150px 60px;
  position: relative;
  overflow: hidden;
}

.parallax-section {
  position: relative;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  will-change: transform;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.essence-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.essence-card {
  position: relative;
  padding: 60px;
  background: var(--glass-tint);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  will-change: opacity, transform;
}

.card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--champagne-gold);
  border-left: 2px solid var(--champagne-gold);
}

.essence-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--champagne-gold);
  text-transform: uppercase;
}

.essence-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 20px 0 30px;
  line-height: 1.3;
}

.essence-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoky-gray);
  margin-bottom: 20px;
}

.essence-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--smoky-gray);
}

.essence-image {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(12, 12, 12, 0.7));
}

.image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--midnight-black);
  transform: translateY(-100%);
  animation: unmask 1.5s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes unmask {
  to {
    transform: translateY(-200%);
  }
}

/* ===================================
   TRIAD SECTION
   =================================== */

.triad-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--midnight-black) 0%, rgba(200, 134, 60, 0.05) 50%, var(--midnight-black) 100%);
  position: relative;
  overflow: hidden;
}

.triad-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.triad-card {
  position: relative;
  padding: 60px 40px;
  background: var(--glass-tint);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 84, 156, 0.15);
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.triad-card:hover {
  transform: translateY(-10px);
  border-color: var(--champagne-gold);
  box-shadow: 0 30px 60px rgba(37, 84, 156, 0.2);
}

.triad-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: var(--champagne-gold);
}

.triad-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

.triad-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #999595;
  margin-bottom: 30px;
}

.triad-underline {
  width: 0;
  height: 2px;
  background: var(--champagne-gold);
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.triad-card:hover .triad-underline {
  width: 60px;
}

/* ===================================
   MENU SECTION
   =================================== */

.menu-section {
  padding: 150px 60px;
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--champagne-gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  margin-top: 15px;
}

.menu-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.menu-item {
  position: relative;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-item:hover {
  border-color: var(--champagne-gold);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 84, 156, 0.2);
}

.menu-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.menu-img-1 {
  background-image: url('https://images.pexels.com/photos/566566/pexels-photo-566566.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-img-2 {
  background-image: url('https://images.pexels.com/photos/769289/pexels-photo-769289.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-img-3 {
  background-image: url('https://images.pexels.com/photos/1640772/pexels-photo-1640772.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-img-4 {
  background-image: url('https://images.pexels.com/photos/338713/pexels-photo-338713.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-img-5 {
  background-image: url('https://images.pexels.com/photos/1283219/pexels-photo-1283219.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-img-6 {
  background-image: url('https://images.pexels.com/photos/2067396/pexels-photo-2067396.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(12, 12, 12, 0.8));
}

.menu-item:hover .menu-image {
  transform: scale(1.1);
}

.menu-info {
  padding: 30px;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.menu-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--smoky-gray);
  margin-bottom: 15px;
}

.menu-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.menu-item:hover .menu-ingredients {
  opacity: 1;
  max-height: 100px;
  margin-top: 15px;
}

.menu-ingredients span {
  padding: 5px 12px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--champagne-gold);
}

.menu-price {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(37, 84, 156, 0.4);
}

.menu-price::before {
  content: '$';
  font-size: 12px;
  margin-right: 2px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */


.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(37, 84, 156, 0.15) 100%);
  overflow: hidden;
}

/* Background Image with Overlay */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/696218/pexels-photo-696218.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  z-index: 0;
  filter: grayscale(30%) brightness(0.7);
}

/* Subtle Gradient Overlay */
.testimonials-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(37, 84, 156, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(37, 84, 156, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure content is above background */
.testimonials-header,
.testimonials-carousel {
  position: relative;
  z-index: 2;
}

.testimonial-shapes {
  z-index: 1;
}

.carousel-btn-phn .carousel-btn{
  display: none;
}
.testimonials-section {

  padding: 150px 60px;
  background: linear-gradient(180deg, var(--midnight-black) 0%, rgba(94, 94, 94, 0.05) 50%, var(--midnight-black) 100%);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5vh;
}

.testimonials-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 60px;
  background: var(--glass-tint-light);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--champagne-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--porcelain-white);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--champagne-gold);
}

.author-title {
  font-size: 13px;
  color: var(--smoky-gray);
  letter-spacing: 1px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--champagne-gold);
  background: transparent;
  color: var(--champagne-gold);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  box-shadow: 0 0 30px rgba(37, 84, 156, 0.4);
}

/* ===================================
   NATURE & RECREATION SECTION
   =================================== */

.nature-section {
  padding: 150px 60px;
  background: linear-gradient(180deg,
    var(--midnight-black) 0%,
    rgba(37, 84, 156, 0.08) 50%,
    var(--midnight-black) 100%
  );
  position: relative;
  overflow: hidden;
}

.nature-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.nature-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.nature-subtitle {
  font-size: 18px;
  color: var(--smoky-gray);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Main Grid Layout */
.nature-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ===== Left Side: Image Gallery ===== */
.nature-gallery {
  position: relative;
  height: 800px;
}

.gallery-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image {
  position: absolute;
  overflow: hidden;
  border: 2px solid rgba(37, 84, 156, 0.3);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.gallery-image:hover {
  transform: scale(1.05) translateY(-10px);
  border-color: var(--amber-accent);
  box-shadow: 0 30px 80px rgba(37, 84, 156, 0.4);
  z-index: 10 !important;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: opacity 0.4s ease;
}

.gallery-image:hover .image-overlay {
  opacity: 0.7;
}

.image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--porcelain-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-image:hover .image-label {
  opacity: 1;
  transform: translateY(0);
}

/* Image Positioning - Stacked Album Style */
.gallery-image-1 {
  width: 50%;
  height: 45%;
  top: 0;
  left: 0;
  z-index: 5;
}

.gallery-image-2 {
  width: 55%;
  height: 40%;
  top: 10%;
  right: 0;
  z-index: 4;
}

.gallery-image-3 {
  width: 48%;
  height: 42%;
  bottom: 15%;
  left: 5%;
  z-index: 3;
}

.gallery-image-4 {
  width: 45%;
  height: 38%;
  bottom: 0;
  right: 8%;
  z-index: 2;
}

.gallery-image-5 {
  width: 38%;
  height: 35%;
  top: 42%;
  left: 28%;
  z-index: 6;
}

/* ===== Right Side: Content ===== */
.nature-content {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nature-feature {
  background: var(--glass-tint);
  backdrop-filter: blur(20px);
  padding: 35px;
  border: 1px solid rgba(37, 84, 156, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nature-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--amber-accent);
  transition: height 0.4s ease;
}

.nature-feature:hover::before {
  height: 100%;
}

.nature-feature:hover {
  background: var(--glass-tint-light);
  border-color: var(--amber-accent);
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber-accent);
  transition: transform 0.4s ease;
}

.nature-feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 15px;
}

.feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--smoky-gray);
}

/* CTA Box */
.nature-cta {
  background: linear-gradient(135deg,
    rgba(37, 84, 156, 0.15) 0%,
    rgba(37, 84, 156, 0.05) 100%
  );
  padding: 40px;
  border: 1px solid rgba(37, 84, 156, 0.3);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.nature-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(37, 84, 156, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 84, 156, 0.2);
  padding: 12px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-badge svg {
  width: 20px;
  height: 20px;
  color: var(--amber-accent);
}

.cta-badge span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--porcelain-white);
  position: relative;
  z-index: 2;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */


@media (max-width: 768px) {

  .carousel-btn{
    display: none;
  }
  .carousel-btn-phn{
    display: flex;
    gap: 50px;
  }
  .carousel-btn-phn .carousel-btn{
    display: block;
  }
  .quote-mark{
    display: none;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .essence-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .essence-image {
    height: 400px;
  }

  .triad-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Nature Section Responsive */
  .nature-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .nature-gallery {
    height: 600px;
  }

  .nature-content {
    position: relative;
    top: 0;
  }

}

@media (max-width: 768px) {

  .title-line{
    font-size: 70px;
  }

  .vertical-label {
    display: none;
  }

  .main-nav.scrolled .nav-logo-img {
    height: 50px;
  }

  .menu-btn,
  .track-order-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .secondary-hamburger {
    width: 44px;
    height: 44px;
  }

  .secondary-dropdown {
    width: 260px;
    top: 90px;
  }

  .secondary-dropdown.active {
    left: 20px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: var(--transition-fast);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-right {
    display: none;
  }

  .special-offers-section,
  .menu-preview-section,
  .essence-section,
  .menu-section,
  .testimonials-section,
  .nature-section {
    padding: 80px 20px;
  }

  /* Nature Section Mobile */
  .nature-header {
    margin-bottom: 60px;
  }

  .nature-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .nature-gallery {
    height: 500px;
  }

  .gallery-image-1 {
    width: 55%;
    height: 40%;
  }

  .gallery-image-2 {
    width: 60%;
    height: 38%;
  }

  .gallery-image-3 {
    width: 52%;
    height: 40%;
  }

  .gallery-image-4 {
    width: 50%;
    height: 36%;
  }

  .gallery-image-5 {
    width: 42%;
    height: 33%;
  }

  .nature-feature {
    padding: 30px 25px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-desc {
    font-size: 14px;
  }

  .nature-cta {
    padding: 30px 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button,
  .order-button {
    width: 100%;
    justify-content: center;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .menu-carousel-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .preview-item {
    min-width: 280px;
  }

  @keyframes scrollMenu {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(calc(-50%), 0, 0);
    }
  }

  .essence-card {
    padding: 40px 30px;
  }

  .essence-stats {
    gap: 30px;
  }

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

  .testimonials-carousel {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-btn {
    position: static;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

}

@media (max-width: 480px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .essence-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/* ===================================
   ORDER PAGE STYLES
   =================================== */

.order-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.order-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}



.order-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  height: 75vh;
}

/* Category Navigation */
.category-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(37, 84, 156, 0.3);
  padding: 20px 0;
  transition: box-shadow 0.3s ease,
              transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 84, 156, 0.15);
}

.category-nav.scrolled {
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.3),
              0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(37, 84, 156, 0.5);
  transform: translateY(0);
}

.category-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-container::-webkit-scrollbar {
  display: none;
}

.category-link {
  color: rgba(244, 244, 244, 0.6);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  white-space: nowrap;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 5px;
}

.category-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #25549C 0%, rgba(37, 84, 156, 0.6) 100%);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px rgba(37, 84, 156, 0.3);
}

.category-link:hover,
.category-link.active {
  color: #F4F4F4;
  text-shadow: 0 0 12px rgba(37, 84, 156, 0.4);
}

.category-link:hover::after,
.category-link.active::after {
  width: 100%;
}

/* Menu Category Section */
.menu-category-section {
  padding: 100px 60px;
  background: var(--midnight-black);
  position: relative;
}

.menu-category-section:nth-child(even) {
  background: linear-gradient(180deg, var(--midnight-black) 0%, rgba(37, 84, 156, 0.02) 50%, var(--midnight-black) 100%);
}

.menu-category-container {
  max-width: 1400px;
  margin: 0 auto;
}

.category-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.category-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: #F4F4F4;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 2px 20px rgba(37, 84, 156, 0.3);
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #25549C 0%, rgba(37, 84, 156, 0.4) 100%);
  box-shadow: 0 2px 12px rgba(37, 84, 156, 0.5);
}

.category-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 10px;
}

.age-badge {
  background: linear-gradient(135deg, #d32f2f, #c62828);
  color: white;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.drinks-subcategory {
  margin-bottom: 60px;
}

.subcategory-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne-gold);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.subcategory-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

/*ALCOHOLIC SECTION*/

.alcoholic-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(198, 173, 137, 0.2);
}

.alcoholic-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.15), rgba(198, 40, 40, 0.15));
  border: 2px solid rgba(211, 47, 47, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.alcoholic-warning svg {
  width: 28px;
  height: 28px;
  color: #d32f2f;
  flex-shrink: 0;
}

.alcoholic-warning span {
  font-size: 14px;
  font-weight: 600;
  color: var(--porcelain-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .alcoholic-warning {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }

  .alcoholic-warning svg {
    width: 24px;
    height: 24px;
  }

  .alcoholic-warning span {
    font-size: 12px;
  }
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.4);
  color: rgba(244, 244, 244, 0.7);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #25549C 0%, rgba(37, 84, 156, 0.8) 100%);
  color: #F4F4F4;
  border-color: #25549C;
  box-shadow: 0 4px 15px rgba(37, 84, 156, 0.4);
  transform: translateY(-1px);
}

.sort-select {
  padding: 10px 20px;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.3);
  color: var(--porcelain-white);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-fast);
}

.sort-select:hover,
.sort-select:focus {
  border-color: var(--champagne-gold);
}

.sort-select option {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(15px);
  color: var(--porcelain-white);
  padding: 10px;
}



/* Menu Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.menu-card {
  position: relative;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.6s ease forwards;
  box-shadow: 0 4px 20px rgba(37, 84, 156, 0.1);
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }
.menu-card:nth-child(6) { animation-delay: 0.6s; }

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

.menu-card:hover {
  border-color: #25549C;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(37, 84, 156, 0.3),
              0 0 40px rgba(37, 84, 156, 0.2);
}

.menu-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
}

.new-badge {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
}

.popular-badge {
  background: linear-gradient(135deg, #FF6B6B, #EE5A52);
  color: white;
}

.spicy-badge {
  background: linear-gradient(135deg, #FF4500, #FF6347);
  color: white;
}

.chef-badge {
  background: var(--champagne-gold);
  color: var(--midnight-black);
}

.menu-card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image {
  transform: scale(1.1);
}

.menu-card-content {
  padding: 30px;
}
.menu-card-footer{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #F4F4F4;
  transition: all 0.3s ease;
}

.menu-card:hover .menu-card-title {
  color: #F4F4F4;
  text-shadow: 0 0 20px rgba(37, 84, 156, 0.6);
}

.menu-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--smoky-gray);
  margin-bottom: 25px;
  min-height: 60px;
}


.menu-card-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #F4F4F4;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(37, 84, 156, 0.4);
}

.menu-order-btn {
  padding: 12px 30px;
  background: transparent;
  border: 1px solid #25549C;
  color: #F4F4F4;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.menu-order-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #25549C 0%, rgba(37, 84, 156, 0.85) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.menu-order-btn:hover::before {
  left: 0;
}

.menu-order-btn:hover {
  color: #F4F4F4;
  border-color: #25549C;
  box-shadow: 0 6px 25px rgba(37, 84, 156, 0.5);
  transform: translateY(-2px);
}

/* Order Page Responsive */
@media (max-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  .sort-select-option{
   max-width: 70%;
  }

  .sort-select option{
    width: 20px;
  }

  .category-container {
    padding: 0 20px;
    gap: 25px;
  }

  .menu-category-section {
    padding: 60px 20px;
  }

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

  .category-controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    display: flex;
    align-items: center;
  }

  .filter-group {
    width: 100%;
    justify-content: space-between;
  }

  .filter-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 11px;
  }

  .sort-select {
    width: 100%;
  }

  .order-hero-section {
    min-height: 65vh;
    padding-top: 80px;
  }

  .category-nav {
    top: 60px;
  }

  .category-nav.scrolled {
    top: 80px;
  }
}



/* ===================================
   CHECKOUT PLACEHOLDER STYLES
   =================================== */

.checkout-placeholder-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(200, 134, 60, 0.1) 100%);
  padding: 150px 20px 100px;
}

.checkout-placeholder-container {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.checkout-content {
  background: var(--glass-tint);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.checkout-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

.checkout-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  color: var(--champagne-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.checkout-icon svg {
  width: 100%;
  height: 100%;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 30px;
}

.checkout-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoky-gray);
  margin-bottom: 15px;
}

.checkout-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .checkout-content {
    padding: 60px 30px;
  }

  .checkout-buttons {
    flex-direction: column;
  }

  .checkout-buttons .cta-button,
  .checkout-buttons .order-button {
    width: 100%;
  }
}

/* ===================================
   CUSTOMIZE BURGER PAGE STYLES
   =================================== */

.customize-hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.9) 0%, rgba(200, 134, 60, 0.2) 100%);
  margin-bottom: -50px;
}

.customize-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.customize-hero-background .layer-1 {
  background: radial-gradient(circle at 50% 50%, rgba(37, 84, 156, 0.1) 0%, transparent 70%);
}

.customize-hero-background .layer-2 {
  background: linear-gradient(to bottom, rgba(12, 12, 12, 0.3), rgba(12, 12, 12, 0.8));
}

.customize-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  animation: fadeUp 1s ease forwards;
}

.customize-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.customize-hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 2px;
  color: var(--smoky-gray);
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}

.customize-content-section {
  padding: 80px 60px 120px;
  background: var(--midnight-black);
  position: relative;
}

.customize-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  position: relative;
}

.customize-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Burger Overview Card */
.burger-overview-card {
  background: var(--glass-tint);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.burger-overview-card:hover {
  border-color: var(--champagne-gold);
  box-shadow: 0 20px 60px rgba(37, 84, 156, 0.3);
}

.overview-image-wrapper {
  position: relative;
  overflow: hidden;
}

.overview-image {
  height: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.burger-overview-card:hover .overview-image {
  transform: scale(1.1);
}

.image-shimmer {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%);
  }
  100% {
    transform: translate(200%, 200%);
  }
}

.overview-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 10px;
}

.overview-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoky-gray);
}

.overview-base-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.ingredient-tag {
  padding: 8px 16px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--champagne-gold);
  border-radius: 20px;
  transition: var(--transition-fast);
}

.ingredient-tag:hover {
  background: rgba(37, 84, 156, 0.2);
  border-color: var(--champagne-gold);
}

.overview-base-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 84, 156, 0.2);
}

.overview-base-price .price-label {
  font-size: 14px;
  color: var(--smoky-gray);
  letter-spacing: 1px;
}

.overview-base-price .price-value {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne-gold);
  font-weight: 600;
}

/* Customization Section */
.customization-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--porcelain-white);
}

.reset-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  color: var(--champagne-gold);
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.reset-btn svg {
  width: 16px;
  height: 16px;
}

.reset-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
  box-shadow: 0 5px 20px rgba(37, 84, 156, 0.3);
}

/* Ingredients Category */
.ingredients-category {
  margin-bottom: 50px;
}

.category-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.category-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--champagne-gold);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Ingredient Card */
.ingredient-card {
  position: relative;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.15);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.ingredient-card:hover {
  border-color: var(--champagne-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 84, 156, 0.2);
}

.ingredient-card.premium {
  border-color: rgba(37, 84, 156, 0.3);
}

.ingredient-card.changed {
  background: rgba(37, 84, 156, 0.05);
  border-color: var(--champagne-gold);
  animation: highlightPulse 0.5s ease;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(37, 84, 156, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 84, 156, 0.4);
  }
}

.premium-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  color: var(--midnight-black);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
}

.ingredient-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: var(--champagne-gold);
  transition: var(--transition-fast);
}

.ingredient-card:hover .ingredient-icon {
  transform: scale(1.1) rotate(5deg);
}

.ingredient-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ingredient-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--porcelain-white);
  letter-spacing: 0.5px;
}

.ingredient-price {
  font-size: 12px;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ingredient-card.premium .ingredient-price {
  color: var(--champagne-gold);
  font-weight: 500;
}

/* Ingredient Controls */
.ingredient-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 12, 12, 0.5);
  padding: 8px;
  border-radius: 25px;
  flex-shrink: 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(37, 84, 156, 0.3);
  background: transparent;
  color: var(--champagne-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 50%;
  font-weight: 300;
}

.qty-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
  transform: scale(1.1);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-value {
  min-width: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--porcelain-white);
  transition: var(--transition-fast);
}

.qty-value.updated {
  color: var(--champagne-gold);
  animation: numberPop 0.3s ease;
}

@keyframes numberPop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* Price Summary */
.price-summary-section {
  background: var(--glass-tint-light);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.3);
  padding: 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.price-summary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.price-row .price-label {
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
}

.price-row .price-amount {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--porcelain-white);
  font-weight: 500;
}

.extras-row .price-amount {
  color: var(--champagne-gold);
  transition: var(--transition-fast);
}

.price-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 84, 156, 0.3), transparent);
  margin: 10px 0;
}

.total-row {
  margin-top: 10px;
}

.total-row .price-label {
  font-size: 18px;
  color: var(--porcelain-white);
  font-weight: 600;
  letter-spacing: 1px;
}

.total-row .price-amount {
  font-size: 36px;
  color: var(--champagne-gold);
  font-weight: 600;
  transition: var(--transition-fast);
}

.total-row .price-amount.updated {
  animation: priceUpdate 0.5s ease;
}

@keyframes priceUpdate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    color: var(--amber-accent);
  }
}

.price-note {
  font-size: 12px;
  color: var(--smoky-gray);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* Sidebar */
.customize-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.sidebar-card {
  background: var(--glass-tint-light);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.3);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sidebar-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sidebar-content {
  padding: 20px;
}

.sidebar-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sidebar-item-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin-bottom: 10px;
}

.sidebar-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.sidebar-ingredient {
  padding: 6px 12px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.2);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--porcelain-white);
  border-radius: 12px;
  animation: ingredientFadeIn 0.3s ease;
}

@keyframes ingredientFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ingredientFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes ingredientUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    background: rgba(37, 84, 156, 0.3);
  }
  100% {
    transform: scale(1);
  }
}

.sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(37, 84, 156, 0.2);
  border-bottom: 1px solid rgba(37, 84, 156, 0.2);
  margin-bottom: 5px;
}

.sidebar-total-label {
  font-size: 14px;
  color: var(--smoky-gray);
  letter-spacing: 1px;
}

.sidebar-total-price {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--champagne-gold);
  font-weight: 600;
  transition: var(--transition-fast);
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.sidebar-confirm-btn {
  width: 100%;
  padding: 18px 30px;
  background: var(--champagne-gold);
  border: none;
  color: var(--midnight-black);
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.sidebar-confirm-btn.primary {
  background: var(--champagne-gold);
  color: var(--midnight-black);
}

.sidebar-confirm-btn.secondary {
  background: transparent;
  border: 2px solid var(--champagne-gold);
  color: var(--champagne-gold);
  padding: 16px 30px;
}

.sidebar-confirm-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.sidebar-confirm-btn.primary:hover {
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.5);
  transform: translateY(-3px);
}

.sidebar-confirm-btn.secondary:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.4);
  transform: translateY(-3px);
}

.sidebar-confirm-btn:hover svg {
  transform: translateX(5px);
}

.sidebar-confirm-btn.secondary:hover svg {
  transform: scale(1.2);
}

.sidebar-confirm-btn:active {
  transform: translateY(-1px);
}

.sidebar-confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Drinks Sidebar Specific Styles */
.sidebar-drinks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 80px;
}

.sidebar-empty-state {
  color: var(--smoky-gray);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  opacity: 0.7;
  font-style: italic;
}

.sidebar-drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 8px;
  transition: var(--transition-fast);
  animation: ingredientFadeIn 0.3s ease;
}

.sidebar-drink-item:hover {
  background: rgba(37, 84, 156, 0.1);
  border-color: rgba(37, 84, 156, 0.3);
}

.sidebar-drink-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-drink-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--porcelain-white);
  letter-spacing: 0.5px;
}

.sidebar-drink-qty {
  font-size: 11px;
  color: var(--smoky-gray);
  font-weight: 500;
}

.sidebar-drink-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-drink-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--champagne-gold);
}

.sidebar-remove-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sidebar-remove-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.sidebar-remove-btn svg {
  width: 14px;
  height: 14px;
  color: var(--smoky-gray);
  transition: color 0.3s ease;
}

.sidebar-remove-btn:hover svg {
  color: #ef4444;
}

.sidebar-options-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(37, 84, 156, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(37, 84, 156, 0.1);
}

.option-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--porcelain-white);
}

.option-summary-item svg {
  width: 16px;
  height: 16px;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

.option-summary-item span {
  color: var(--smoky-gray);
  font-weight: 500;
}

/* ===================================
   MODERN DRINKS PAGE STYLES
=================================== */

/* Drinks Hero Section */
.drinks-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 120px 20px 80px;
}

.drinks-hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--champagne-gold) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--amber-accent) 0%, transparent 70%);
  top: 40%;
  right: -5%;
  animation-delay: 5s;
}

.gradient-orb.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--champagne-gold) 0%, transparent 70%);
  bottom: -10%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

.drinks-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50px;
  color: var(--champagne-gold);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  animation: slideDown 0.8s ease-out;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
}

.drinks-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.title-word {
  color: #F4F4F4;
  animation: slideUp 0.8s ease-out both;
}

.title-word:nth-child(1) {
  animation-delay: 0.2s;
}

.title-word:nth-child(2) {
  animation-delay: 0.4s;
}

.title-word:nth-child(3) {
  animation-delay: 0.6s;
}

.title-word.accent {
  background: linear-gradient(135deg, #25549C 0%, rgba(37, 84, 156, 0.85) 50%, #F4F4F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(37, 84, 156, 0.6);
  filter: drop-shadow(0 4px 15px rgba(37, 84, 156, 0.5));
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.drinks-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(244, 244, 244, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #25549C 0%, #F4F4F4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(37, 84, 156, 0.4));
}

.stat-label {
  font-size: 0.875rem;
  color: var(--smoky-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(37, 84, 156, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--smoky-gray);
  font-size: 0.875rem;
  letter-spacing: 1px;
  animation: fadeIn 1.5s ease-out 1.2s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--champagne-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--champagne-gold);
  border-radius: 2px;
  animation: scroll 2s ease-out infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* Main Section */
.drinks-main-section {
  background: var(--midnight-black);
  padding: 60px 20px 0px;
}

.drinks-layout-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  position: relative;
}

/* Filter Bar */
.drinks-filter-bar {
  grid-column: 1 / -1;
  position: sticky;
  top: 70px;
  z-index: 90;
  margin-bottom: 30px;
  width: 67%;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drinks-filter-bar.scrolled {
  top: 0;
}

.filter-bar-inner {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 50px;
  color: var(--porcelain-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-chip svg {
  width: 16px;
  height: 16px;
}

.filter-chip:hover {
  background: rgba(37, 84, 156, 0.1);
  border-color: var(--champagne-gold);
}

.filter-chip.active {
  background: var(--champagne-gold);
  border-color: var(--champagne-gold);
  color: var(--midnight-black);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 50px;
  min-width: 280px;
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--smoky-gray);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--porcelain-white);
  font-size: 14px;
  outline: none;
}

.search-box input::placeholder {
  color: var(--smoky-gray);
}

/* Drinks Content Wrapper */
.drinks-content-wrapper {
  grid-column: 1;
}

/* Drinks Grid */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.drink-card {
  position: relative;
  animation: fadeInUp 0.6s ease-out both;
}

.drink-card:nth-child(1) { animation-delay: 0.1s; }
.drink-card:nth-child(2) { animation-delay: 0.2s; }
.drink-card:nth-child(3) { animation-delay: 0.3s; }
.drink-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.drink-card-inner {
  background: rgba(37, 84, 156, 0.03);
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.drink-card-inner:hover {
  border-color: rgba(37, 84, 156, 0.3);
  box-shadow: 0 20px 60px rgba(37, 84, 156, 0.15);
  transform: translateY(-5px);
}

.drink-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.drink-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 12, 12, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.drink-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drink-card-inner:hover .drink-card-image {
  transform: scale(1.1);
}

.drink-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: rgba(37, 84, 156, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.drink-card-badge svg {
  width: 20px;
  height: 20px;
  color: var(--midnight-black);
}

.quick-select-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: rgba(12, 12, 12, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.drink-card-inner:hover .quick-select-btn {
  opacity: 1;
  transform: scale(1);
}

.quick-select-btn:hover {
  background: var(--champagne-gold);
  border-color: var(--champagne-gold);
}

.quick-select-btn svg {
  width: 20px;
  height: 20px;
  color: var(--porcelain-white);
  transition: color 0.3s ease;
}

.quick-select-btn:hover svg {
  color: var(--midnight-black);
}

.quick-select-btn.selected {
  background: var(--champagne-gold);
  border-color: var(--champagne-gold);
  opacity: 1;
  transform: scale(1);
}

.quick-select-btn.selected svg {
  color: var(--midnight-black);
}

.drink-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.drink-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.drink-card-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--porcelain-white);
  line-height: 1.3;
  flex: 1;
}

.drink-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-label {
  font-size: 0.75rem;
  color: var(--smoky-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--champagne-gold);
}

.drink-card-description {
  font-size: 0.875rem;
  color: var(--smoky-gray);
  line-height: 1.6;
  flex: 1;
}

.drink-quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quantity-label {
  font-size: 0.875rem;
  color: var(--porcelain-white);
  font-weight: 500;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 12px;
  padding: 4px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--porcelain-white);
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
}

.qty-btn svg {
  width: 16px;
  height: 16px;
}

.qty-input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--porcelain-white);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  pointer-events: none;
}

.drink-add-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--champagne-gold);
  border: none;
  border-radius: 12px;
  color: var(--midnight-black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.drink-add-btn:hover {
  background: var(--amber-accent);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.3);
  transform: translateY(-2px);
}

.drink-add-btn svg {
  width: 18px;
  height: 18px;
}

.drink-add-btn.added {
  background: #4caf50;
  pointer-events: none;
}

/* Customization Panel */
.customization-panel {
  background: rgba(37, 84, 156, 0.03);
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 20px;
  padding: 30px;
}

.panel-header {
  margin-bottom: 30px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--porcelain-white);
  margin-bottom: 8px;
}

.panel-title svg {
  width: 28px;
  height: 28px;
  color: var(--champagne-gold);
}

.panel-subtitle {
  font-size: 0.875rem;
  color: var(--smoky-gray);
}

.customization-group {
  margin-bottom: 24px;
}

.customization-group:last-child {
  margin-bottom: 0;
}

.custom-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--porcelain-white);
  margin-bottom: 12px;
}

.custom-label svg {
  width: 20px;
  height: 20px;
  color: var(--champagne-gold);
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.size-option input {
  display: none;
}

.size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: rgba(37, 84, 156, 0.05);
  border: 2px solid rgba(37, 84, 156, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-option input:checked + .size-card {
  background: rgba(37, 84, 156, 0.15);
  border-color: var(--champagne-gold);
}

.size-card:hover {
  border-color: var(--champagne-gold);
}

.size-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--porcelain-white);
}

.size-price {
  font-size: 0.875rem;
  color: var(--smoky-gray);
}

.ice-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.toggle-option input {
  display: none;
}

.toggle-card {
  display: block;
  padding: 14px;
  text-align: center;
  background: rgba(37, 84, 156, 0.05);
  border: 2px solid rgba(37, 84, 156, 0.2);
  border-radius: 12px;
  color: var(--porcelain-white);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-option input:checked + .toggle-card {
  background: rgba(37, 84, 156, 0.15);
  border-color: var(--champagne-gold);
  color: var(--champagne-gold);
}

.toggle-card:hover {
  border-color: var(--champagne-gold);
}

.notes-textarea {
  width: 100%;
  padding: 14px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 12px;
  color: var(--porcelain-white);
  font-size: 0.875rem;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
}

.notes-textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(37, 84, 156, 0.1);
}

.notes-textarea::placeholder {
  color: var(--smoky-gray);
}

/* Modern Sidebar */
.drinks-order-sidebar {
  grid-column: 2;
  position: relative;
}

.sidebar-sticky-wrapper {
  position: sticky;
  top: 70px;
}

.sidebar-card-modern {
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sidebar-header-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
}

.sidebar-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--amber-accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 24px;
  height: 24px;
  color: var(--midnight-black);
}

.sidebar-title-wrapper {
  flex: 1;
}

.sidebar-title-modern {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--porcelain-white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.sidebar-subtitle {
  font-size: 0.875rem;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
}

.sidebar-order-list {
  min-height: 100px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.sidebar-order-list::-webkit-scrollbar {
  width: 6px;
}

.sidebar-order-list::-webkit-scrollbar-track {
  background: rgba(37, 84, 156, 0.05);
  border-radius: 10px;
}

.sidebar-order-list::-webkit-scrollbar-thumb {
  background: rgba(37, 84, 156, 0.3);
  border-radius: 10px;
}

.sidebar-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--smoky-gray);
}

.sidebar-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.sidebar-empty p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--porcelain-white);
  margin-bottom: 8px;
}

.sidebar-empty span {
  font-size: 0.875rem;
}

.sidebar-options-summary {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(37, 84, 156, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--porcelain-white);
  font-weight: 500;
}

.summary-item svg {
  width: 16px;
  height: 16px;
  color: var(--champagne-gold);
}

.sidebar-total-modern {
  padding: 20px 0;
  border-top: 1px solid rgba(37, 84, 156, 0.1);
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 1rem;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.total-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne-gold);
  transition: all 0.3s ease;
}

.total-price.updated {
  animation: priceUpdate 0.5s ease;
}

@keyframes priceUpdate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    color: var(--amber-accent);
  }
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-btn-primary,
.sidebar-btn-secondary {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
}

.sidebar-btn-primary {
  background: var(--champagne-gold);
  color: var(--midnight-black);
}

.sidebar-btn-primary:hover:not(:disabled) {
  background: var(--amber-accent);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.3);
  transform: translateY(-2px);
}

.sidebar-btn-secondary {
  background: transparent;
  border: 2px solid var(--champagne-gold);
  color: var(--champagne-gold);
}

.sidebar-btn-secondary:hover:not(:disabled) {
  background: var(--champagne-gold);
  color: var(--midnight-black);
}

.sidebar-btn-primary:disabled,
.sidebar-btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sidebar-btn-primary svg,
.sidebar-btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .drinks-layout-container {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .drinks-main-section {
  background: var(--midnight-black);
  padding: 0;
}

  .drinks-filter-bar {
    width: 100%;
  }

  .drinks-order-sidebar {
    grid-column: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--midnight-black);
    padding: 16px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .sidebar-sticky-wrapper {
    position: static;
  }

  .sidebar-card-modern {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
  }

  .sidebar-order-list {
    height: 90px;
  }

  .sidebar-header-modern {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .sidebar-total-modern {
    padding: 12px 0;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .drinks-content-wrapper {
    margin-bottom: 0;
  }

  /* Hero Section */
  .drinks-hero-section {
    min-height: 60vh;
    padding: 80px 15px 40px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-badge svg {
    width: 16px;
    height: 16px;
  }

  .drinks-hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    gap: 10px;
    margin-bottom: 20px;
  }

  .drinks-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-stats {
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-item {
    gap: 3px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-divider {
    height: 30px;
  }

  .scroll-indicator {
    bottom: 20px;
    font-size: 0.75rem;
    display: none;
  }

  .scroll-mouse {
    width: 20px;
    height: 35px;
  }

  /* Main Section */
  .drinks-main-section {
    padding: 40px 15px;
  }

  /* Filter Bar */
  .drinks-filter-bar {
    position: static;
    margin-bottom: 20px;
  }

  .filter-bar-inner {
    padding: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filter-group {
    justify-content: center;
    gap: 8px;
  }

  .filter-chip {
    padding: 8px 14px;
    font-size: 13px;
    flex: 1;
    justify-content: center;
  }

  .filter-chip svg {
    width: 14px;
    height: 14px;
  }

  .search-box {
    min-width: 100%;
    padding: 10px 16px;
  }

  .search-box input {
    font-size: 14px;
  }

  /* Drinks Grid - Compact Horizontal Layout */
  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .drink-card {
    height: auto !important;
    min-height: 140px;
  }

  .drink-card-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .drink-card-image-wrapper {
    width: 110px;
    min-width: 110px;
    height: auto;
    order: 2;
    border-radius: 0 12px 12px 0;
  }

  .drink-image-gradient {
    border-radius: 0 12px 12px 0;
  }

  .drink-card-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
  }

  .drink-card-badge {
    display: none;
  }

  .quick-select-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    opacity: 1;
    transform: scale(1);
    border-width: 1.5px;
  }

  .quick-select-btn svg {
    width: 16px;
    height: 16px;
  }

  .drink-card-body {
    padding: 12px;
    gap: 8px;
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .drink-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
  }

  .drink-card-name {
    font-size: 1rem;
    line-height: 1.2;
  }

  .drink-card-price {
    margin-top: 0;
  }

  .price-label {
    font-size: 0.7rem;
  }

  .price-value {
    font-size: 1.1rem;
  }

  .drink-card-description {
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .drink-quantity-selector {
    margin-top: auto;
    margin-bottom: 6px;
  }

  .quantity-label {
    font-size: 0.7rem;
    margin-bottom: 5px;
  }

  .quantity-controls {
    padding: 2px;
    height: 36px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .qty-btn svg {
    width: 14px;
    height: 14px;
  }

  .qty-input {
    width: 44px;
    font-size: 0.9rem;
  }

  .drink-add-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
    margin-top: auto;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .drink-add-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .drink-add-btn span {
    white-space: nowrap;
  }

  /* Sidebar */
  .drinks-order-sidebar {
    padding: 12px;
    border-top: 1px solid rgba(37, 84, 156, 0.3);
  }

  .sidebar-card-modern {
    padding: 16px;
    border-radius: 16px;
    border: none;
  }

  .sidebar-header-modern {
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: none;
  }

  .sidebar-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .sidebar-icon svg {
    width: 20px;
    height: 20px;
  }

  .sidebar-title-modern {
    font-size: 1.25rem;
  }

  .sidebar-subtitle {
    font-size: 0.8rem;
  }

  .sidebar-order-list {
    min-height: 100px;
    max-height: 120px;
    margin-bottom: 12px;
  }

  .sidebar-empty {
    padding: 25px 15px;
  }

  .sidebar-empty svg {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .sidebar-empty p {
    font-size: 0.9rem;
  }

  .sidebar-empty span {
    font-size: 0.75rem;
  }

  .sidebar-drink-item {
    padding: 10px;
    border-radius: 6px;
  }

  .sidebar-drink-name {
    font-size: 12px;
  }

  .sidebar-drink-qty {
    font-size: 10px;
  }

  .sidebar-drink-price {
    font-size: 13px;
  }

  .sidebar-remove-btn {
    width: 26px;
    height: 26px;
  }

  .sidebar-remove-btn svg {
    width: 12px;
    height: 12px;
  }

  .sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 12px;
    border-top: 1px solid rgba(37, 84, 156, 0.2);
  }

  .sidebar-total-label {
    font-size: 13px;
  }

  .sidebar-total-price {
    font-size: 22px;
  }

  .sidebar-buttons {
    gap: 10px;
  }

  .sidebar-confirm-btn {
    padding: 16px 24px;
    font-size: 13px;
  }

  .sidebar-confirm-btn.secondary {
    padding: 14px 24px;
  }

  .sidebar-confirm-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Gradient Orbs */
  .gradient-orb.orb-1 {
    width: 300px;
    height: 300px;
  }

  .gradient-orb.orb-2 {
    width: 250px;
    height: 250px;
  }

  .gradient-orb.orb-3 {
    width: 200px;
    height: 200px;
  }

  .drinks-hero-content {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .drinks-hero-section {
    padding: 70px 10px 30px;
  }

  .drinks-hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .drinks-main-section {
    padding: 30px 10px;
  }

  .filter-bar-inner {
    padding: 12px;
  }

  .filter-chip {
    padding: 7px 12px;
    font-size: 12px;
  }

  .drinks-grid {
    gap: 12px;
  }

  .drink-card {
    min-height: 135px;
  }

  .drink-card-body {
    padding: 10px;
  }

  .drink-card-name {
    font-size: 0.95rem;
  }

  .drink-card-description {
    font-size: 0.7rem;
  }

  .price-value {
    font-size: 1rem;
  }

  .drink-add-btn {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .sidebar-card-modern {
    padding: 14px;
  }

  .sidebar-title-modern {
    font-size: 1.125rem;
  }

  .sidebar-buttons {
    flex-direction: row;
  }

  .sidebar-confirm-btn {
    flex: 1;
    padding: 14px 16px;
  }

  .sidebar-confirm-btn span {
    display: none;
  }

  .sidebar-confirm-btn svg {
    width: 20px;
    height: 20px;
  }

  .total-price {
    font-size: 1.375rem;
  }
}

/* ===================================
   MOBILE RESPONSIVE STYLES
=================================== */

@media (max-width: 768px) {
  /* Hero Section */
  .customize-hero-section {
    height: 90vh;
    min-height: 300px;
    margin-bottom: -30px;
  }

  .customize-hero-content{
    top: 40px;
  }

  .customize-hero-title {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 70px;

  }

  .title-line {
    display: block;
  }

  .customize-hero-subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  /* Main Content Section */
  .customize-content-section {
    padding: 40px 20px 80px;
  }

  .customize-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .customize-main {
    gap: 30px;
  }

  /* Burger Overview Card */
  .burger-overview-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview-image-wrapper {
    width: 100%;
  }

  .overview-image {
    min-height: 250px;
  }

  .overview-content {
    padding: 30px 20px;
  }

  .overview-title {
    font-size: 28px;
  }

  .overview-description {
    font-size: 14px;
  }

  .overview-base-ingredients {
    gap: 8px;
  }

  .ingredient-tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  .overview-base-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .overview-base-price .price-value {
    font-size: 28px;
  }

  /* Customization Section */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  .reset-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Ingredients Category */
  .ingredients-category {
    margin-bottom: 40px;
  }

  .category-label {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Ingredient Card */
  .ingredient-card {
    padding: 20px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .ingredient-info {
    flex: 1;
    min-width: 0;
  }

  .ingredient-name {
    font-size: 14px;
  }

  .ingredient-price {
    font-size: 11px;
  }

  .premium-badge {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 8px;
  }

  .ingredient-controls {
    gap: 10px;
    padding: 6px;
  }

  .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .qty-value {
    min-width: 25px;
    font-size: 15px;
  }

  /* Price Summary */
  .price-summary-section {
    padding: 25px 20px;
    margin-top: 30px;
  }

  .price-breakdown {
    gap: 12px;
  }

  .price-row {
    font-size: 14px;
  }

  .price-row .price-amount {
    font-size: 18px;
  }

  .total-row .price-label {
    font-size: 16px;
  }

  .total-row .price-amount {
    font-size: 28px;
  }

  .price-note {
    font-size: 11px;
    margin-top: 15px;
  }

  /* Sidebar - Move to Bottom */
  .customize-sidebar {
    order: 2;
  }

  .sidebar-sticky {
    position: static;
  }

  .sidebar-card {
    border-radius: 0;
  }

  .sidebar-image {
    height: 150px;
  }

  .sidebar-content {
    padding: 25px 20px;
  }

  .sidebar-title {
    font-size: 12px;
  }

  .sidebar-item-name {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sidebar-ingredients {
    gap: 6px;
    margin-bottom: 15px;
    max-height: 80px;
    overflow-y: auto;
  }

  .sidebar-ingredient {
    padding: 5px 10px;
    font-size: 10px;
  }

  .sidebar-total {
    padding: 15px 0;
    margin-bottom: 15px;
  }

  .sidebar-total-label {
    font-size: 13px;
  }

  .sidebar-total-price {
    font-size: 22px;
  }

  .sidebar-buttons {
    gap: 10px;
  }

  .sidebar-confirm-btn {
    padding: 16px 24px;
    font-size: 13px;
  }

  .sidebar-confirm-btn.secondary {
    padding: 14px 24px;
  }

  .sidebar-confirm-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Make sidebar fixed at bottom on mobile */
  .customize-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--midnight-black);
    border-top: 1px solid rgba(37, 84, 156, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .sidebar-sticky {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .sidebar-card {
    background: var(--midnight-black);
    border: none;
    box-shadow: none;
  }

  .sidebar-image {
    display: none;
  }

  .sidebar-content {
    padding: 15px 20px;
  }

  .sidebar-title {
    display: none;
  }

  .sidebar-item-name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .sidebar-ingredients {
    margin-bottom: 12px;
    max-height: 60px;
  }

  .sidebar-total {
    padding: 10px 0;
    margin-bottom: 12px;
  }

  .sidebar-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .sidebar-confirm-btn {
    flex: 1;
    padding: 14px 16px;
    font-size: 11px;
  }

  .sidebar-confirm-btn span {
    display: none;
  }

  .sidebar-confirm-btn.primary::before {
    content: "Nastavi";
  }

  .sidebar-confirm-btn.secondary::before {
    content: "Potvrdi";
  }

  .sidebar-confirm-btn svg {
    width: 16px;
    height: 16px;
    margin: 0;
  }

  /* Add bottom padding to main content so it doesn't hide under fixed sidebar */

}

/* Extra small screens */
@media (max-width: 480px) {
  .customize-hero-title {
    font-size: 28px;
  }

  .overview-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .ingredient-card {
    padding: 15px;
  }

  .price-summary-section {
    padding: 20px 15px;
  }

  .total-row .price-amount {
    font-size: 24px;
  }
}


/* ===================================
   CART BUTTON & PANEL
   =================================== */

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-panel.active {
  pointer-events: all;
}

.cart-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.active .cart-panel-overlay {
  opacity: 1;
}

.cart-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background: var(--midnight-black);
  border-left: 1px solid rgba(37, 84, 156, 0.2);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-panel.active .cart-panel-content {
  transform: translateX(0);
}
/* Cart Header */
.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.15);
  background: linear-gradient(180deg, rgba(37, 84, 156, 0.05) 0%, transparent 100%);
}

.cart-panel-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--champagne-gold);
  letter-spacing: 0.5px;
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--champagne-gold);
}

.cart-close-btn svg {
  width: 20px;
  height: 20px;
}

.cart-close-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
  transform: rotate(90deg);
}
/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: rgba(37, 84, 156, 0.05);
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(37, 84, 156, 0.3);
  border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 84, 156, 0.5);
}

/* Empty State*/
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 20px;
  min-height: 400px;
}

.cart-empty-state svg {
  width: 80px;
  height: 80px;
  color: rgba(37, 84, 156, 0.3);
  stroke-width: 1.5;
}

.cart-empty-state p {
  font-size: 18px;
  color: var(--porcelain-white);
  font-weight: 500;
}

.cart-empty-state span {
  font-size: 14px;
  color: var(--smoky-gray);
}

/* Cart Item*/
.cart-item {
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: var(--transition-fast);
  animation: cartItemSlideIn 0.4s ease;
}

@keyframes cartItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item:hover {
  border-color: var(--champagne-gold);
  background: rgba(37, 84, 156, 0.08);
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--porcelain-white);
  letter-spacing: 0.5px;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.cart-item-customizations {
  font-size: 13px;
  color: var(--smoky-gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 12, 12, 0.5);
  padding: 6px 10px;
  border-radius: 20px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50%;
  color: var(--champagne-gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
}

.cart-qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--porcelain-white);
  font-weight: 600;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(231, 76, 60, 0.8);
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 6px 12px;
  border-radius: 6px;
}

.cart-item-remove:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

/* Cart Footer*/
.cart-footer {
  padding: 25px 30px;
  border-top: 1px solid rgba(37, 84, 156, 0.2);
  background: linear-gradient(0deg, rgba(37, 84, 156, 0.05) 0%, transparent 100%);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.15);
}

.cart-total-label {
  font-size: 16px;
  color: var(--smoky-gray);
  letter-spacing: 1px;
}

.cart-total-price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.cart-finish-btn {
  width: 100%;
  padding: 18px 30px;
  background: var(--champagne-gold);
  border: none;
  border-radius: 8px;
  color: var(--midnight-black);
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cart-finish-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--amber-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cart-finish-btn span,
.cart-finish-btn svg {
  position: relative;
  z-index: 1;
}

.cart-finish-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.cart-finish-btn:hover::before {
  width: 400px;
  height: 400px;
}

.cart-finish-btn:hover {
  box-shadow: 0 10px 40px rgba(37, 84, 156, 0.5);
  transform: translateY(-2px);
}

.cart-finish-btn:hover svg {
  transform: translateX(5px);
}


.track-order-btn {
  position: relative;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--champagne-gold);
  color: var(--champagne-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
}

.track-order-btn svg {
  width: 20px;
  height: 20px;
}

.track-order-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  box-shadow: 0 0 20px rgba(37, 84, 156, 0.4);
}

.cart-btn {
  position: fixed;
  top: 61px;
  right: 118px;
  width: 48px;
  height: 48px;
  border: 2px solid white;
  background: rgba(12, 12, 12, 0.85);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
  opacity: 1;
  pointer-events: all;
  color: white;
}

.cart-btn.scrolled {
  top: 8.5px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-text {
  font-weight: 500;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--champagne-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--midnight-black);
  animation: cartCountPulse 0.3s ease;
}

@keyframes cartCountPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.cart-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}

.cart-panel.active {
  pointer-events: all;
}

.cart-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-panel.active .cart-panel-overlay {
  opacity: 1;
}

.cart-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background: var(--midnight-black);
  border-left: 1px solid rgba(37, 84, 156, 0.3);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-panel.active .cart-panel-content {
  transform: translateX(0);
}

.cart-panel-header {
  padding: 30px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--champagne-gold);
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  color: var(--champagne-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-close-btn svg {
  width: 20px;
  height: 20px;
}

.cart-close-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
  color: var(--smoky-gray);
  text-align: center;
  padding: 40px 20px;
}

.cart-empty-state svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.cart-empty-state p {
  font-size: 18px;
  color: var(--porcelain-white);
  margin: 0;
}

.cart-empty-state span {
  font-size: 14px;
  color: var(--smoky-gray);
}

.cart-item {
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.15);
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  animation: cartItemFadeIn 0.3s ease;
}

@keyframes cartItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--porcelain-white);
}

.cart-item-price {
  font-size: 16px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.cart-item-ingredients {
  font-size: 12px;
  color: var(--smoky-gray);
  line-height: 1.5;
}

.cart-item-remove {
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  color: var(--smoky-gray);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  align-self: flex-start;
}

.cart-item-remove:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
  color: #ff6b6b;
}



.cart-finish-btn {
  width: 100%;
  padding: 18px 30px;
  background: var(--champagne-gold);
  border: none;
  color: var(--midnight-black);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
}

.cart-finish-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.cart-finish-btn:hover {
  background: var(--amber-accent);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.5);
  transform: translateY(-3px);
}

.cart-finish-btn:hover svg {
  transform: translateX(5px);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  padding: 15px 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.5);
  z-index: 3000;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {

  .cart-btn {
    right: 82px;
    top: 25px;
  }

  .cart-btn.scrolled {
    top: 16px;
  }

  .cart-panel-content {
    width: 100%;
  }

  .nav-right {
    position: fixed;
    top: 15px;
    right: 60px;
    display: flex;
  }

  .track-order-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .track-order-btn span {
    display: none;
  }

  .cart-text {
    display: none;
  }

  .toast-notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    justify-content: center;
  }
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

.checkout-section {
  min-height: 100vh;
  padding: 140px 60px 100px;
  background: var(--midnight-black);
}

.checkout-container {
  max-width: 900px;
  margin: 0 auto;
}

.checkout-page-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--champagne-gold);
  margin-bottom: 50px;
  text-align: center;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.checkout-card {
  background: var(--glass-tint);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 84, 156, 0.2);
  padding: 40px;
}

.checkout-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.2);
}

.checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.checkout-order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.1);
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--porcelain-white);
  margin-bottom: 8px;
}

.checkout-item-ingredients {
  font-size: 13px;
  color: var(--smoky-gray);
  line-height: 1.6;
}

.checkout-item-price {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--champagne-gold);
  font-weight: 600;
  flex-shrink: 0;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  font-size: 18px;
  font-weight: 600;
}

.checkout-item:not(:last-child) {
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}


.checkout-total span:last-child {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne-gold);
}

.checkout-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--smoky-gray);
}

.checkout-empty p {
  font-size: 18px;
  margin-bottom: 20px;
}

.back-to-menu-link {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--champagne-gold);
  color: var(--champagne-gold);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.back-to-menu-link:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  box-shadow: 0 5px 20px rgba(37, 84, 156, 0.4);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--champagne-gold);
  text-transform: uppercase;
}

.form-group input {
  padding: 15px 20px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  color: var(--porcelain-white);
  font-size: 16px;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus {
  border-color: var(--champagne-gold);
  background: rgba(37, 84, 156, 0.08);
}

.form-group input::placeholder {
  color: var(--smoky-gray);
  opacity: 0.6;
}

.checkout-submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: var(--champagne-gold);
  border: none;
  color: var(--midnight-black);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  margin-top: 15px;
}

.checkout-submit-btn svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.checkout-submit-btn:hover {
  background: var(--amber-accent);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.5);
  transform: translateY(-3px);
}

.checkout-submit-btn:hover svg {
  transform: scale(1.2);
}

.checkout-submit-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 120px 20px 80px;
  }

  .checkout-card {
    padding: 30px 20px;
  }

  .checkout-order-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-item-price {
    align-self: flex-end;
  }
}

/* ===================================
   CHECKOUT MODAL
   =================================== */
/* ===================================
   CHECKOUT MODAL
=================================== */

.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.checkout-modal.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.checkout-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--midnight-black);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-modal.active .checkout-modal-content {
  transform: scale(1);
}

/* Modal Header */
.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.2);
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.1) 0%, transparent 100%);
}

.checkout-modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--champagne-gold);
  letter-spacing: 0.5px;
}

.checkout-modal-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--champagne-gold);
}

.checkout-modal-close svg {
  width: 20px;
  height: 20px;
}

.checkout-modal-close:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
  transform: rotate(90deg);
}

/* Modal Body */
.checkout-modal-body {
  padding: 30px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

.checkout-modal-body::-webkit-scrollbar {
  width: 6px;
}

.checkout-modal-body::-webkit-scrollbar-track {
  background: rgba(37, 84, 156, 0.05);
}

.checkout-modal-body::-webkit-scrollbar-thumb {
  background: rgba(37, 84, 156, 0.3);
  border-radius: 3px;
}

/* Order Summary */
.checkout-modal-summary {
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.checkout-modal-summary-title {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.checkout-modal-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

.checkout-modal-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.checkout-modal-item-ingredients{
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
}

.checkout-modal-item-ingredients:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.checkout-modal-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-modal-item-details {
  flex: 1;
}

.checkout-modal-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--porcelain-white);
  margin-bottom: 4px;
}

.checkout-modal-item-qty {
  font-size: 13px;
  color: var(--smoky-gray);
}

.checkout-modal-item-price {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.checkout-modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 84, 156, 0.2);
  font-size: 18px;
  font-weight: 600;
}

.checkout-modal-total span:first-child {
  color: var(--porcelain-white);
  letter-spacing: 1px;
}

.checkout-modal-total span:last-child {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--champagne-gold);
}

/* Form */
.checkout-modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--champagne-gold);
  font-weight: 500;
}

.form-group input {
  padding: 14px 18px;
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 8px;
  color: var(--porcelain-white);
  font-size: 15px;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--smoky-gray);
}

.form-group input:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(37, 84, 156, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 84, 156, 0.1);
}

.checkout-modal-submit {
  width: 100%;
  padding: 18px 30px;
  background: var(--champagne-gold);
  border: none;
  border-radius: 8px;
  color: var(--midnight-black);
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.checkout-modal-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--amber-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.checkout-modal-submit span,
.checkout-modal-submit svg {
  position: relative;
  z-index: 1;
}

.checkout-modal-submit svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.checkout-modal-submit:hover::before {
  width: 600px;
  height: 600px;
}

.checkout-modal-submit:hover {
  box-shadow: 0 10px 40px rgba(37, 84, 156, 0.5);
  transform: translateY(-2px);
}

.checkout-modal-submit:hover svg {
  transform: scale(1.2);
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 768px) {
  .cart-panel-content {
    width: 100%;
  }

  .cart-panel-header,
  .cart-items,
  .cart-footer {
    padding: 20px;
  }

  .cart-panel-title {
    font-size: 22px;
  }

  .checkout-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .checkout-modal-header,
  .checkout-modal-body {
    padding: 20px;
  }

  .checkout-modal-title {
    font-size: 20px;
  }

  .checkout-modal-summary {
    padding: 20px;
  }

  .checkout-modal-total span:last-child {
    font-size: 24px;
  }
}


.worker-dashboard-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  color: var(--midnight-black);
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.3);
  border: none;
  cursor: pointer;
}

.worker-dashboard-btn svg {
  width: 28px;
  height: 28px;
  transition: var(--transition-fast);
}

.worker-dashboard-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 84, 156, 0.5);
}

.worker-dashboard-btn:hover svg {
  transform: rotate(180deg);
}

/* ===================================
   WORKER DASHBOARD PAGE
   =================================== */

.worker-dashboard-section {
  min-height: 100vh;
  padding: 120px 60px 100px;
  background: var(--midnight-black);
}

.worker-dashboard-container {
  max-width: 1600px;
  margin: 0 auto;
}

.worker-dashboard-header {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.dashboard-title-group {
  flex: 1;
  min-width: 300px;
}

.dashboard-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--champagne-gold);
  margin-bottom: 15px;
  line-height: 1.2;
}

.dashboard-subtitle {
  font-size: 18px;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.dashboard-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.2);
  padding: 25px 35px;
  min-width: 140px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card.stat-new {
  border-color: rgba(255, 140, 0, 0.4);
  background: rgba(255, 165, 0, 0.08);
}

.stat-card.stat-progress {
  border-color: rgba(33, 150, 243, 0.4);
  background: rgba(33, 150, 243, 0.08);
}

.stat-card.stat-done {
  border-color: rgba(76, 175, 80, 0.4);
  background: rgba(76, 175, 80, 0.08);
}

.stat-card.stat-total {
  border-color: rgba(37, 84, 156, 0.4);
  background: rgba(37, 84, 156, 0.08);
}

.stat-card:hover {
  border-color: var(--champagne-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 84, 156, 0.2);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--champagne-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: var(--smoky-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Filter Controls */
.worker-filter-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.worker-filter-btn {
  padding: 15px 35px;
  background: var(--glass-tint);
  border: 1px solid rgba(37, 84, 156, 0.2);
  color: var(--porcelain-white);
  font-size: 14px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  font-weight: 500;
}

.worker-filter-btn:hover {
  border-color: var(--champagne-gold);
  background: rgba(37, 84, 156, 0.1);
}

.worker-filter-btn.active {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  border-color: var(--champagne-gold);
  box-shadow: 0 5px 20px rgba(37, 84, 156, 0.3);
}

/* Orders Grid */
.worker-orders-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
}

.worker-order-card {
  background: var(--glass-tint);
  border: 3px solid rgba(37, 84, 156, 0.2);
  padding: 45px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.worker-order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: var(--smoky-gray);
  transition: var(--transition-fast);
}

.worker-order-card.status-pending {
  background: rgba(255, 165, 0, 0.08);
  border-color: rgba(255, 165, 0, 0.4);
}

.worker-order-card.status-pending::before {
  background: #FF8C00;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

.worker-order-card.status-in-progress {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.4);
}

.worker-order-card.status-in-progress::before {
  background: #2196F3;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
}

.worker-order-card.status-done {
  background: rgba(76, 175, 80, 0.08);
  border-color: rgba(76, 175, 80, 0.4);
}

.worker-order-card.status-done::before {
  background: #4CAF50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.worker-order-card.new-order {
  animation: cardPulse 2s ease-in-out;
}

@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(37, 84, 156, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(37, 84, 156, 0.4);
  }
}

.worker-order-card:hover {
  border-color: var(--champagne-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 84, 156, 0.2);
}

.worker-order-card.status-updating {
  animation: statusUpdate 0.3s ease;
}

@keyframes statusUpdate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
}

.new-order-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #EE5A52);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.6);
  animation: badgePulse 1.5s ease-in-out infinite;
  margin-bottom: 12px;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Order Card Header */
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.15);
}

.order-customer-info {
  flex: 1;
}

.order-customer-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin-bottom: 8px;
}

.order-phone {
  font-size: 15px;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
}

.order-time-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.order-time {
  font-size: 14px;
  color: var(--champagne-gold);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.order-status-badge {
  padding: 12px 28px;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.order-status-badge.status-pending {
  background: #FF8C00;
  color: white;
  border: 2px solid #FFA500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.order-status-badge.status-in-progress {
  background: #2196F3;
  color: white;
  border: 2px solid #42A5F5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.order-status-badge.status-done {
  background: #4CAF50;
  color: white;
  border: 2px solid #66BB6A;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Order Items Section */
.order-items-section {
  margin-bottom: 30px;
}

.order-section-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-item {
  background: rgba(37, 84, 156, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.1);
  padding: 20px;
  border-radius: 4px;
}

.order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.order-item-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--porcelain-white);
}

.order-item-price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.order-item-ingredients {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(37, 84, 156, 0.12);
  border-left: 4px solid var(--champagne-gold);
  margin-top: 15px;
  border-radius: 4px;
}

.order-item-ingredients svg {
  width: 24px;
  height: 24px;
  color: var(--champagne-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.order-item-ingredients span {
  font-size: 18px;
  font-weight: 600;
  color: var(--porcelain-white);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Time Selector Section */
.time-selector-section {
  padding: 25px 0;
  border-top: 1px solid rgba(37, 84, 156, 0.1);
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
  margin: 20px 0;
  transition: all 0.3s ease;
}

.time-selector-section.highlight-error {
  background: rgba(244, 67, 54, 0.1);
  border-color: rgba(244, 67, 54, 0.3);
}

.time-selector-section.shake {
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.time-selector-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-selector-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.time-dropdown {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 8px;
  color: var(--porcelain-white);
  font-size: 15px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-dropdown:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 84, 156, 0.1);
}

.time-dropdown option {
  background: var(--midnight-black);
  color: var(--porcelain-white);
  padding: 10px;
}

.manual-time-input-wrapper {
  display: flex;
  flex-direction: column;
}

.manual-time-input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 8px;
  color: var(--porcelain-white);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.manual-time-input:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 84, 156, 0.1);
}

.manual-time-input::placeholder {
  color: var(--smoky-gray);
  opacity: 0.7;
}

.time-warning {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 8px;
  color: #F44336;
  font-size: 13px;
  line-height: 1.5;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.time-warning svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.estimated-time-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 10px;
  margin: 20px 0;
  color: var(--champagne-gold);
  font-size: 14px;
  font-weight: 600;
}

.estimated-time-display svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}



.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
}

.order-total-price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--champagne-gold);
}

.order-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.order-action-btn {
  flex: 1;
  min-width: 150px;
  padding: 16px 24px;
  border: 1px solid rgba(37, 84, 156, 0.3);
  background: transparent;
  color: var(--porcelain-white);
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.order-action-btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.order-action-btn.status-btn {
  background: rgba(255, 152, 0, 0.15);
  border-color: #FF9800;
  color: #FFB74D;
  font-weight: 600;
}

.order-action-btn.status-btn:hover {
  background: #FF9800;
  border-color: #FF9800;
  color: white;
  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.5);
}

.order-action-btn.done-btn {
  background: rgba(76, 175, 80, 0.15);
  border-color: #4CAF50;
  color: #66BB6A;
  font-weight: 600;
}

.order-action-btn.done-btn:hover {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.5);
}

.order-action-btn.done-btn:hover svg {
  transform: scale(1.2);
}

.order-action-btn.reset-btn {
  background: rgba(37, 84, 156, 0.1);
}

.order-action-btn.reset-btn:hover {
  background: rgba(37, 84, 156, 0.2);
  border-color: var(--champagne-gold);
  color: var(--champagne-gold);
}

.order-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Empty State */
.worker-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  text-align: center;
  gap: 20px;
}

.worker-empty-state svg {
  width: 100px;
  height: 100px;
  color: var(--champagne-gold);
  opacity: 0.3;
}

.worker-empty-state p {
  font-size: 24px;
  color: var(--porcelain-white);
  margin: 0;
}

.worker-empty-state span {
  font-size: 16px;
  color: var(--smoky-gray);
  max-width: 400px;
}

/* Responsive */
@media (max-width: 1200px) {
  .time-selector-controls {
    gap: 14px;
  }

  .time-dropdown,
  .manual-time-input {
    font-size: 16px;
    padding: 16px 18px;
  }

  .order-action-btn {
    min-width: 140px;
    padding: 18px 26px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .dashboard-stats {
    width: 100%;
    justify-content: space-between;
  }

  .stat-card {
    flex: 1;
    min-width: 120px;
  }

  .time-dropdown,
  .manual-time-input {
    padding: 18px 20px;
    font-size: 17px;
  }

  .order-action-btn {
    padding: 20px 28px;
    font-size: 15px;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .worker-dashboard-section {
    padding: 100px 20px 80px;
  }

  .worker-dashboard-header {
    flex-direction: column;
  }

  .dashboard-stats {
    gap: 15px;
  }

  .stat-card {
    padding: 20px 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  .worker-order-card {
    padding: 25px;
  }

  .order-customer-name {
    font-size: 24px;
  }

  .order-actions {
    flex-direction: column;
  }

  .order-action-btn {
    width: 100%;
  }



  .worker-dashboard-btn {
    padding: 18px 40px;
    font-size: 14px;
  }
}

/* ===================================
   CHECKOUT SECTION
   =================================== */

.checkout-section {
  min-height: 100vh;
  padding: 140px 60px 80px;
  background: var(--midnight-black);
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.checkout-form-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 16px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

.checkout-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--champagne-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--porcelain-white);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 84, 156, 0.1);
}

.form-input::placeholder {
  color: var(--smoky-gray);
}

.submit-order-btn {
  position: relative;
  margin-top: 20px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border: none;
  border-radius: 8px;
  color: var(--midnight-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
}

.submit-order-btn span {
  position: relative;
  z-index: 2;
}

.submit-order-btn .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.4);
}

.submit-order-btn:hover .btn-glow {
  width: 300px;
  height: 300px;
}

.submit-order-btn:active {
  transform: translateY(0);
}

.order-summary-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 120px;
}

.summary-heading {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.order-items-list::-webkit-scrollbar {
  width: 6px;
}

.order-items-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.order-items-list::-webkit-scrollbar-thumb {
  background: var(--champagne-gold);
  border-radius: 3px;
}

.checkout-order-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
}

.checkout-order-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-item-details {
  flex: 1;
}

.checkout-item-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--porcelain-white);
  margin-bottom: 6px;
}

.checkout-item-ingredients {
  font-size: 13px;
  color: var(--smoky-gray);
  line-height: 1.5;
}

.checkout-item-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-left: 20px;
  white-space: nowrap;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 2px solid var(--champagne-gold);
}

.total-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--porcelain-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--champagne-gold);
}

.checkout-empty {
  text-align: center;
  padding: 40px 20px;
}

.checkout-empty p {
  font-size: 18px;
  color: var(--smoky-gray);
  margin-bottom: 20px;
}

.back-to-menu-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--champagne-gold);
  color: var(--midnight-black);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.back-to-menu-link:hover {
  background: var(--amber-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 84, 156, 0.3);
}

/* ===================================
   ORDER CONFIRMATION MODAL
   =================================== */

.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.confirmation-modal.show {
  opacity: 1;
  visibility: visible;
}

.confirmation-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(10px);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.confirmation-modal.show .confirmation-content {
  transform: scale(1);
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  color: var(--champagne-gold);
}

.confirmation-icon svg {
  width: 100%;
  height: 100%;
}

.check-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawCircle 0.8s ease-out 0.3s forwards;
}

.check-mark {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease-out 0.8s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.confirmation-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.confirmation-details {
  margin-bottom: 25px;
}

.confirmation-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row.info-total {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid var(--champagne-gold);
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: var(--smoky-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.info-value {
  font-size: 16px;
  color: var(--porcelain-white);
  font-weight: 500;
}

.info-total .info-label {
  font-size: 16px;
  color: var(--champagne-gold);
}

.info-total .info-value {
  font-size: 24px;
  color: var(--champagne-gold);
  font-weight: 700;
}

.confirmation-message {
  font-size: 15px;
  color: var(--porcelain-white);
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.9;
}

.back-to-menu-btn {
  position: relative;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border: none;
  border-radius: 8px;
  color: var(--midnight-black);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
}

.back-to-menu-btn span {
  position: relative;
  z-index: 2;
}

.back-to-menu-btn .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.back-to-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.4);
}

.back-to-menu-btn:hover .btn-glow {
  width: 300px;
  height: 300px;
}

.back-to-menu-btn:active {
  transform: translateY(0);
}

/* ===================================
   CHECKOUT RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .checkout-section {
    padding: 120px 40px 60px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-summary-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 100px 20px 40px;
  }

  .checkout-form-wrapper {
    padding: 35px 25px;
  }

  .checkout-heading {
    font-size: 32px;
  }

  .order-summary-wrapper {
    padding: 30px 25px;
  }

  .summary-heading {
    font-size: 24px;
  }

  .confirmation-content {
    padding: 40px 30px;
  }

  .confirmation-title {
    font-size: 26px;
  }

  .confirmation-icon {
    width: 80px;
    height: 80px;
  }
}

/* ===================================
   TRACK ORDER PAGE
   =================================== */

.track-order-section {

  min-height: 100vh;
  padding: 240px 60px 80px;
  background: var(--midnight-black);
}

.track-order-container {
  max-width: 800px;
  margin: 0 auto;
}

.track-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: var(--champagne-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.track-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.track-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.track-subtitle {
  font-size: 16px;
  color: var(--porcelain-white);
  opacity: 0.8;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.track-search-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.search-method-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 10px;
}

.toggle-btn {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--porcelain-white);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  color: var(--midnight-black);
  box-shadow: 0 4px 12px rgba(37, 84, 156, 0.3);
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.search-form {
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.search-form.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.form-group-track {
  display: flex;
  flex-direction: column;
}

.track-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--porcelain-white);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.track-input:focus {
  outline: none;
  border-color: var(--champagne-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(37, 84, 156, 0.1);
}

.track-input::placeholder {
  color: var(--smoky-gray);
}

.track-submit-btn {
  position: relative;
  margin-top: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border: none;
  border-radius: 10px;
  color: var(--midnight-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
}

.track-submit-btn span {
  position: relative;
  z-index: 2;
}

.track-submit-btn .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.track-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.4);
}

.track-submit-btn:hover .btn-glow {
  width: 300px;
  height: 300px;
}

.track-submit-btn:active {
  transform: translateY(0);
}

.loading-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(37, 84, 156, 0.2);
  border-top-color: var(--champagne-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 25px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 16px;
  color: var(--porcelain-white);
  opacity: 0.8;
}

.order-result {
  display: none;
  margin-top: 40px;
}

.result-card {
  display: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.result-card.show {
  opacity: 1;
  transform: translateY(0);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.order-info-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--champagne-gold);
  letter-spacing: 1px;
}

.order-id-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 8px;
  color: var(--champagne-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: monospace;
}

.status-badge {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-pending {
  background: rgba(158, 158, 158, 0.15);
  color: #9E9E9E;
  border: 1px solid rgba(158, 158, 158, 0.3);
}

.status-preparing {
  background: rgba(255, 193, 7, 0.15);
  color: #FFC107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-ready {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-size: 14px;
  color: var(--smoky-gray);
  font-weight: 500;
}

.info-value {
  font-size: 15px;
  color: var(--porcelain-white);
  font-weight: 600;
  text-align: right;
}

.order-items-section {
  margin-bottom: 35px;
}

.items-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.ordered-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ordered-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(37, 84, 156, 0.1);
  border-radius: 10px;
  transition: var(--transition-fast);
}

.ordered-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(37, 84, 156, 0.2);
}

.item-name {
  font-size: 15px;
  color: var(--porcelain-white);
  font-weight: 500;
}

.item-price {
  font-size: 16px;
  color: var(--champagne-gold);
  font-weight: 600;
}

.progress-section {
  margin-bottom: 35px;
}

.progress-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--porcelain-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--champagne-gold), var(--amber-accent));
  border-radius: 10px;
  transition: width 1s ease;
  box-shadow: 0 0 15px rgba(37, 84, 156, 0.5);
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
}

.step-circle {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(37, 84, 156, 0.3);
  border-radius: 50%;
  background: var(--midnight-black);
  transition: var(--transition-fast);
  position: relative;
  z-index: 2;
}

.step.active .step-circle {
  border-color: var(--champagne-gold);
  background: var(--champagne-gold);
  box-shadow: 0 0 15px rgba(37, 84, 156, 0.6);
}

.step.completed .step-circle {
  border-color: var(--champagne-gold);
  background: var(--champagne-gold);
}

.step-label {
  font-size: 13px;
  color: var(--smoky-gray);
  font-weight: 500;
  text-align: center;
  transition: var(--transition-fast);
}

.step.active .step-label,
.step.completed .step-label {
  color: var(--champagne-gold);
}

.result-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.action-btn {
  flex: 1;
  min-width: 200px;
  position: relative;
  padding: 16px 30px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn span {
  position: relative;
  z-index: 2;
}

.back-btn,
.retry-btn {
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  color: var(--midnight-black);
}

.back-btn:hover,
.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.4);
}

.back-btn:hover .btn-glow,
.retry-btn:hover .btn-glow {
  width: 300px;
  height: 300px;
}

.menu-btn,
.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(37, 84, 156, 0.3);
  color: var(--porcelain-white);
}

.menu-btn:hover,
.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--champagne-gold);
  transform: translateY(-2px);
}

.not-found-card,
.error-card {
  text-align: center;
  padding: 60px 40px;
}

.not-found-icon,
.error-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.not-found-icon {
  color: var(--smoky-gray);
}

.error-icon {
  color: #F44336;
}

.not-found-icon svg,
.error-icon svg {
  width: 100%;
  height: 100%;
}

.result-message {
  font-size: 16px;
  color: var(--porcelain-white);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.not-found-card .result-title {
  color: var(--porcelain-white);
  margin-bottom: 20px;
}

.error-card .result-title {
  color: #F44336;
  margin-bottom: 20px;
}

/* ===================================
   TRACK ORDER RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .track-order-section {
    padding: 200px 20px 40px;
  }

  .track-title {
    font-size: 36px;
  }

  .track-subtitle {
    font-size: 15px;
  }

  .track-search-wrapper {
    padding: 30px 20px;
  }

  .result-card {
    padding: 30px 20px;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .result-title {
    font-size: 26px;
  }

  .status-badge {
    align-self: flex-start;
  }

  .info-value {
    font-size: 14px;
  }

  .result-actions {
    flex-direction: column;
  }

  .action-btn {
    min-width: 100%;
  }

  .not-found-card,
  .error-card {
    padding: 40px 20px;
  }

  .progress-steps {
    gap: 10px;
  }

  .step-label {
    font-size: 11px;
  }
}

/* ===================================
   ORDER SUCCESS MODAL
   =================================== */

.order-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-success-modal.active {
  display: flex;
  opacity: 1;
}

.order-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(20px);
}

.order-success-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  color: var(--champagne-gold);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawSuccessCircle 0.8s ease-out 0.2s forwards;
}

.success-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawSuccessCheck 0.5s ease-out 0.7s forwards;
}

@keyframes drawSuccessCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawSuccessCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--champagne-gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.success-message {
  font-size: 16px;
  color: var(--porcelain-white);
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 30px;
}

.order-id-display {
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-id-label {
  font-size: 13px;
  color: var(--smoky-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.order-id-value {
  font-size: 28px;
  color: var(--champagne-gold);
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 2px;
}

.success-ok-btn {
  position: relative;
  padding: 18px 60px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border: none;
  border-radius: 10px;
  color: var(--midnight-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
  width: 100%;
  font-family: var(--font-sans);
}

.success-ok-btn span {
  position: relative;
  z-index: 2;
}

.success-ok-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.success-ok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.5);
}

.success-ok-btn:hover::before {
  width: 300px;
  height: 300px;
}

.success-ok-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .order-success-content {
    padding: 40px 30px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .order-id-value {
    font-size: 24px;
  }
}


/* ===================================
   MODERN FOOTER
   =================================== */

.modern-footer {
  position: relative;
  background: linear-gradient(180deg, var(--midnight-black) 0%, #080808 100%);
  border-top: 1px solid rgba(244, 244, 244, 0.1);
  padding-top: 40px;
  padding: 0 10px;
  overflow: hidden;
}

.footer-logo-image{
  height: 160px;
}

.footer-link.mobile{
  display: none;
}

/* Subtle background pattern */
.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37, 84, 156, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244, 244, 244, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: 20px;
}

/* Footer Main Content */
.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(244, 244, 244, 0.08);
}



/* Left Side - Logo & Tagline */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05) drop-shadow(0 4px 20px rgba(244, 244, 244, 0.1));
  transition: var(--transition-smooth);
}

.footer-brand {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  height: 170px; /* bigger */
  width: auto;
}
.footer-logo:hover {
  filter: brightness(1.15) drop-shadow(0 6px 30px rgba(244, 244, 244, 0.2));
  transform: translateY(-3px);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--smoky-gray);
  max-width: 350px;
  font-style: italic;
}

.footer-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50px;
  margin-top: 20px;
  transition: var(--transition-smooth);
}

.footer-quality-badge:hover {
  background: rgba(37, 84, 156, 0.15);
  border-color: var(--amber-accent);
  transform: translateX(5px);
}

.footer-quality-badge svg {
  width: 20px;
  height: 20px;
  color: var(--amber-accent);
}

.footer-quality-badge span {
  font-size: 13px;
  color: var(--champagne-gold);
  letter-spacing: 1px;
  font-weight: 500;
}

/* Right Side - Links Grid */
.footer-links-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}



.footer-column-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--champagne-gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--amber-accent);
  transition: var(--transition-smooth);
}

.footer-column:hover .footer-column-title::after {
  width: 60px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: var(--porcelain-white);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber-accent);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--champagne-gold);
  opacity: 1;
  padding-left: 15px;
}

.footer-link:hover::before {
  width: 10px;
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--porcelain-white);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.footer-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info-item:hover {
  opacity: 1;
  color: var(--champagne-gold);
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.social-icon-link {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 244, 244, 0.15);
  border-radius: 50%;
  color: var(--champagne-gold);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-icon-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--amber-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  border-color: var(--amber-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.3);
}

.social-icon-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon-link:hover svg {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--smoky-gray);
  letter-spacing: 0.5px;
}

.footer-copyright a {
  color: var(--champagne-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-copyright a:hover {
  color: var(--amber-accent);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-link {
  color: var(--porcelain-white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  opacity: 0.7;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber-accent);
  transition: var(--transition-smooth);
}

.footer-legal-link:hover {
  color: var(--champagne-gold);
  opacity: 1;
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-divider {
  color: var(--smoky-gray);
  opacity: 0.4;
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--smoky-gray);
}

.footer-made-with svg {
  width: 14px;
  height: 14px;
  color: #e74c3c;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Newsletter Section (Optional Enhancement) */
.footer-newsletter {
  margin-top: 30px;
  padding: 24px;
  background: rgba(37, 84, 156, 0.08);
  border: 1px solid rgba(37, 84, 156, 0.2);
  border-radius: 12px;
}

.newsletter-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 244, 244, 0.15);
  border-radius: 6px;
  color: var(--porcelain-white);
  font-size: 14px;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--amber-accent);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
  color: var(--smoky-gray);
}

.newsletter-submit {
  padding: 12px 24px;
  background: var(--amber-accent);
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--champagne-gold);
  color: var(--midnight-black);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 84, 156, 0.3);
}


/* ===================================
   MOBILE FOOTER STYLES
=================================== */

@media (max-width: 768px) {

  .footer-link.mobile{
    display: block;
  }

  .modern-footer {
    padding-top: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 30px 20px;
    padding-bottom: 30px;
  }

  /* Row 1: Logo (left) + Social (right) */
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: -30px;
  }

  .footer-logo {
    height: 130px;
  }

  .footer-logo-image{
    height: 160px;
    left: 200px;
  }

  .footer-tagline,
  .footer-quality-badge {
    display: none;
  }

  /* Social icons - top right */
  .footer-links-grid {
    display: contents;
  }

  .footer-column:nth-child(5) {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-column:nth-child(5) .footer-column-title {
    display: none;
  }


  .footer-social {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-self: center;
    margin-top: 35px;
    margin-left: -20px;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
  }

  .social-icon-link svg {
    width: 18px;
    height: 18px;
  }

  /* Row 2: Navigation (left) + Contact & Hours stacked (right) */
  .footer-column:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-column:nth-child(2) {
    display: none;
  }

  /* Contact and Hours in right column, stacked */
  .footer-column:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .footer-column:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 170px;
  }

  .footer-column-title {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-links-list {
    gap: 10px;
  }

  .footer-link,
  .footer-info-item {
    font-size: 13px;
  }

  .footer-contact-info {
    gap: 10px;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 0;
    gap: 12px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-legal-link {
    font-size: 11px;
  }

  .footer-made-with {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(12px, 3vw, 16px);
    padding: 0 10px;
  }

  .primary-order-button {
    padding: 16px 32px;
    font-size: 13px;
    width: 90%;
    max-width: 300px;
  }

  .scroll-indicator {
    display: none; /* Hide on mobile */
  }
}

@media (max-width: 768px) {
  .special-offers-section {
    padding: 60px 20px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-card {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }

  .offer-image {
    width: 100%;
    height: 220px;
  }
}
@media (max-width: 768px) {
  .menu-preview-section {
    padding: 60px 0;
  }

  .preview-header {
    padding: 0 20px;
  }

  .menu-carousel-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .preview-item {
    min-width: 260px;
    max-width: 260px;
  }

  .preview-image {
    height: 180px;
  }

  @keyframes scrollMenu {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(calc(-50%), 0, 0);
    }
  }
}

@media (max-width: 768px) {

  .essence-section {
    padding: 60px 20px;
    margin-bottom: 10vh;
  }

  .essence-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .essence-card {
    padding: 35px 25px;
  }

  .essence-image {
    height: 300px;
  }

  .essence-stats {
    gap: 30px;
  }
}







/* ===================================
   DRINKS PAGE - MODERN REDESIGN
=================================== */

.floating-cart-btn {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(198, 173, 137, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 999;
}

.floating-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(198, 173, 137, 0.4);
}

.floating-cart-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--midnight-black);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--amber-accent);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.drinks-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(12, 12, 12, 0.3) 0%,
    rgba(12, 12, 12, 0.7) 70%,
    rgba(12, 12, 12, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(198, 173, 137, 0.2);
  border: 1px solid rgba(198, 173, 137, 0.4);
  border-radius: 30px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--smoky-gray);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scroll-indicator {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(198, 173, 137, 0.3);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  color: rgba(198, 173, 137, 0.6);
}

.drinks-selection-section {
  min-height: 100vh;
  padding: 80px 20px 200px;
  background: var(--midnight-black);
}

.drinks-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--smoky-gray);
}

.drinks-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.drink-showcase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 173, 137, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.drink-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(198, 173, 137, 0.3);
}

.drink-showcase-card.selected {
  border-color: rgba(198, 173, 137, 0.8);
  background: rgba(198, 173, 137, 0.05);
  box-shadow: 0 0 0 2px rgba(198, 173, 137, 0.3);
}

.showcase-card-inner {
  position: relative;
}

.showcase-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.showcase-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.drink-showcase-card:hover .showcase-card-image img {
  transform: scale(1.1);
}

.showcase-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(12, 12, 12, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.drink-showcase-card:hover .showcase-card-overlay {
  opacity: 1;
}

.quick-add-btn {
  width: 60px;
  height: 60px;
  background: rgba(198, 173, 137, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.drink-showcase-card:hover .quick-add-btn {
  transform: scale(1);
}

.quick-add-btn:hover {
  transform: scale(1.1);
  background: rgba(198, 173, 137, 1);
}

.quick-add-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--midnight-black);
  stroke-width: 3;
}

.showcase-card-content {
  padding: 25px;
}

.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.showcase-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--porcelain-white);
  margin: 0;
}

.showcase-card-icon {
  font-size: 28px;
}

.showcase-card-description {
  font-size: 14px;
  color: var(--smoky-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.showcase-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(198, 173, 137, 0.1);
}

.showcase-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-from {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--smoky-gray);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: rgba(198, 173, 137, 0.9);
}

.showcase-checkbox {
  position: relative;
  cursor: pointer;
}

.showcase-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  display: flex;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(198, 173, 137, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.showcase-checkbox input:checked + .checkbox-custom {
  background: rgba(198, 173, 137, 0.9);
  border-color: rgba(198, 173, 137, 0.9);
}

.showcase-checkbox input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 12px;
  height: 12px;
  background: var(--midnight-black);
  border-radius: 2px;
}

.showcase-quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.drink-showcase-card.selected .showcase-quantity-control {
  opacity: 1;
  transform: translateY(0);
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: rgba(198, 173, 137, 0.2);
  border: none;
  border-radius: 8px;
  color: rgba(198, 173, 137, 0.9);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(198, 173, 137, 0.9);
  color: var(--midnight-black);
  transform: scale(1.1);
}

.qty-display {
  width: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--porcelain-white);
  background: transparent;
  border: none;
  outline: none;
}

.options-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 173, 137, 0.15);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.options-panel-header {
  margin-bottom: 35px;
}

.options-panel-header h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--porcelain-white);
  text-align: center;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option-group.full-width {
  grid-column: 1 / -1;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--porcelain-white);
}

.option-label svg {
  width: 18px;
  height: 18px;
  color: rgba(198, 173, 137, 0.7);
}

.option-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-option {
  position: relative;
  cursor: pointer;
  flex: 1;
  min-width: 100px;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.pill-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(198, 173, 137, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pill-option:hover .pill-content {
  border-color: rgba(198, 173, 137, 0.4);
  background: rgba(198, 173, 137, 0.05);
}

.pill-option input:checked + .pill-content {
  background: rgba(198, 173, 137, 0.15);
  border-color: rgba(198, 173, 137, 0.8);
  box-shadow: 0 0 0 3px rgba(198, 173, 137, 0.1);
}

.pill-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--porcelain-white);
}

.pill-price {
  font-size: 12px;
  color: rgba(198, 173, 137, 0.8);
  font-weight: 500;
}

.option-textarea {
  width: 100%;
  min-height: 100px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(198, 173, 137, 0.2);
  border-radius: 12px;
  color: var(--porcelain-white);
  font-family: var(--font-sans);
  font-size: 15px;
  resize: vertical;
  transition: all 0.3s ease;
}

.option-textarea:focus {
  outline: none;
  border-color: rgba(198, 173, 137, 0.6);
  background: rgba(198, 173, 137, 0.05);
}

.option-textarea::placeholder {
  color: var(--smoky-gray);
}

.checkout-bar {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  z-index: 998;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-bar.active {
  bottom: 0;
}

.checkout-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 30px;
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(198, 173, 137, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.checkout-summary {
  display: flex;
  align-items: center;
  gap: 40px;
}

.summary-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--smoky-gray);
}

.summary-label span {
  font-size: 24px;
  font-weight: 600;
  color: var(--porcelain-white);
  margin-right: 5px;
}

.summary-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.total-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--smoky-gray);
}

.total-amount {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: rgba(198, 173, 137, 0.9);
}

.checkout-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background: rgba(198, 173, 137, 0.9);
  color: var(--midnight-black);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
  background: rgba(198, 173, 137, 1);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(198, 173, 137, 0.3);
}

.checkout-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.checkout-btn svg {
  width: 20px;
  height: 20px;
}

.success-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  background: rgba(198, 173, 137, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 300px;
}

.success-toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: var(--midnight-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(198, 173, 137, 1);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--midnight-black);
  margin-bottom: 2px;
}

.toast-message {
  font-size: 13px;
  color: rgba(12, 12, 12, 0.7);
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }

  .drinks-showcase {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .drinks-showcase {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .checkout-bar-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .checkout-summary {
    width: 100%;
    justify-content: space-between;
  }

  .checkout-btn {
    width: 100%;
    justify-content: center;
  }

  .floating-cart-btn {
    bottom: 200px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 40px;
  }

  .showcase-card-image {
    height: 240px;
  }

  .option-pills {
    flex-direction: column;
  }

  .pill-option {
    min-width: 100%;
  }

  .options-panel {
    padding: 25px 20px;
  }

  .checkout-summary {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .total-amount {
    font-size: 28px;
  }
}




















/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

.about-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(37, 84, 156, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37, 84, 156, 0.1) 0%, transparent 40%);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}

.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: 3px;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(37, 84, 156, 0.3));
}

.about-hero-subtitle {
  font-size: 22px;
  color: rgba(244, 244, 244, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 700px;
  margin: 0 auto;
}

.story-section {
  padding: 120px 24px;
  background: var(--midnight-black);
}

.story-container {
  max-width: 1400px;
  margin: 0 auto;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-label {
  display: inline-block;
  font-size: 14px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.15), rgba(37, 84, 156, 0.05));
  border: 1px solid rgba(37, 84, 156, 0.4);
  border-radius: 30px;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.story-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--smoky-gray);
  margin-bottom: 24px;
  font-weight: 300;
}

.story-image {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
}

.story-image-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.2) 0%, rgba(37, 84, 156, 0.05) 100%);
  border: 2px solid rgba(37, 84, 156, 0.2);
  border-radius: 16px;
  position: relative;
}

.story-image-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   VALUES SECTION - INFINITE SLIDER
=================================== */
.values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 84, 156, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 84, 156, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.values-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.values-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

.values-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.values-slider-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.value-card {
  flex: 0 0 380px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(20, 20, 20, 0.7) 100%);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 84, 156, 0.5);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
  box-shadow: 0 20px 60px rgba(37, 84, 156, 0.3);
}

.value-icon {
  margin-bottom: 24px;
}

.value-icon svg {
  stroke: var(--champagne-gold);
  filter: drop-shadow(0 4px 12px rgba(37, 84, 156, 0.3));
}

.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.value-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--smoky-gray);
  font-weight: 300;
}

/* ===================================
   TEAM SECTION
=================================== */
.team-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(37, 84, 156, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(37, 84, 156, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.team-subtitle {
  font-size: 18px;
  color: var(--smoky-gray);
  text-align: center;
  margin-bottom: 80px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.team-carousel-wrapper {
  position: relative;
  padding: 0 70px;
  margin-bottom: 50px;
}

.team-carousel {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.team-carousel:active {
  cursor: grabbing;
}

.team-cards-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
}

.team-member-card {
  flex: 0 0 calc(33.333% - 21.33px);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 84, 156, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.team-member-image {
  position: relative;
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.1) 0%, rgba(37, 84, 156, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.team-image-placeholder svg {
  stroke: var(--champagne-gold);
  opacity: 0.4;
}

.team-member-info {
  padding: 32px;
}

.team-member-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.team-member-role {
  display: inline-block;
  font-size: 13px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.2), rgba(37, 84, 156, 0.1));
  border: 1px solid rgba(37, 84, 156, 0.4);
  border-radius: 20px;
}

.team-member-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--smoky-gray);
  font-weight: 300;
}

.team-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.team-nav:hover:not(:disabled) {
  border-color: var(--amber-accent);
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.25) 0%, rgba(37, 84, 156, 0.15) 100%);
  transform: translateY(-50%) scale(1.1);
}

.team-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.team-nav svg {
  stroke: var(--champagne-gold);
}

.team-prev {
  left: 0;
}

.team-next {
  right: 0;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.team-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(37, 84, 156, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.team-dot:hover {
  background: rgba(37, 84, 156, 0.6);
  transform: scale(1.2);
}

.team-dot.active {
  background: linear-gradient(135deg, var(--amber-accent), rgba(37, 84, 156, 0.8));
  width: 32px;
  border-radius: 6px;
}

/* ===================================
   FEATURES SECTION - OUR COMMITMENT
=================================== */
.features-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 84, 156, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(37, 84, 156, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--champagne-gold);
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 48px;
}

.feature-highlight {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.6) 100%);
  border: 1px solid rgba(37, 84, 156, 0.15);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-highlight:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 84, 156, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-highlight-icon {
  margin-bottom: 32px;
}

.feature-highlight-icon svg {
  stroke: var(--champagne-gold);
  filter: drop-shadow(0 4px 12px rgba(37, 84, 156, 0.3));
}

.feature-highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.feature-highlight-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--smoky-gray);
  font-weight: 300;
}

/* ===================================
   ABOUT US - TESTIMONIALS (uses same styling as index.html)
=================================== */
/* Testimonials styling inherited from main .testimonials-section above */

/* ===================================
   VISIT SECTION
=================================== */
.visit-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  position: relative;
}

.visit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(37, 84, 156, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(37, 84, 156, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.visit-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber-accent) 0%, var(--champagne-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

.visit-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.visit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.2) 0%, rgba(37, 84, 156, 0.1) 100%);
  border: 1px solid rgba(37, 84, 156, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-icon svg {
  stroke: var(--amber-accent);
}

.visit-detail h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--champagne-gold);
  margin-bottom: 8px;
}

.visit-detail p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--smoky-gray);
  font-weight: 300;
}

.visit-cta {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  color: var(--midnight-black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.3);
}

.visit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 84, 156, 0.4);
}

.visit-map {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 84, 156, 0.15) 0%, rgba(37, 84, 156, 0.05) 100%);
  border: 2px solid rgba(37, 84, 156, 0.2);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  content: '📍';
  font-size: 80px;
  opacity: 0.3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .about-hero-title {
    font-size: 64px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-title {
    font-size: 44px;
  }

  .values-title,
  .testimonials-title,
  .visit-title,
  .team-title {
    font-size: 48px;
  }

  .team-member-card {
    flex: 0 0 calc(50% - 16px);
  }

  .team-carousel-wrapper {
    padding: 0 60px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large large"
      "small1 small2"
      "medium medium";
  }

  .visit-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero-title {
    font-size: 48px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .story-section,
  .values-section,
  .team-section,
  .testimonials-section,
  .visit-section {
    padding: 80px 24px;
  }

  .story-title {
    font-size: 36px;
  }

  .story-description {
    font-size: 16px;
  }

  .story-image {
    height: 400px;
  }

  .values-title,
  .testimonials-title,
  .visit-title,
  .team-title {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .team-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .team-member-card {
    flex: 0 0 100%;
  }

  .team-carousel-wrapper {
    padding: 0 50px;
  }

  .team-nav {
    width: 48px;
    height: 48px;
  }

  .team-member-image {
    height: 240px;
  }

  .team-member-info {
    padding: 28px;
  }

  .team-member-name {
    font-size: 24px;
  }

  /* Values Infinite Slider */
  .value-card {
    flex: 0 0 320px;
    padding: 40px 28px;
  }

  .value-name {
    font-size: 24px;
  }

  .value-description {
    font-size: 14px;
  }

  /* Features Section */
  .features-content {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    padding: 40px 32px;
  }

  .feature-highlight-title {
    font-size: 30px;
  }

  .feature-highlight-text {
    font-size: 15px;
  }

  /* Testimonials Slider */
  .testimonials-slider-wrapper {
    padding: 0 50px;
  }

  .testimonials-nav {
    width: 48px;
    height: 48px;
  }

  .testimonial-card {
    padding: 36px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .visit-map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .story-title,
  .values-title,
  .testimonials-title,
  .visit-title,
  .team-title {
    font-size: 32px;
  }

  .team-carousel-wrapper {
    padding: 0 40px;
  }

  .team-nav {
    width: 42px;
    height: 42px;
  }

  .team-member-image {
    height: 220px;
  }

  .team-member-info {
    padding: 24px;
  }

  .team-member-name {
    font-size: 22px;
  }

  .value-card,
  .testimonial-card {
    padding: 32px 24px;
  }

  .feature-large,
  .feature-medium {
    padding: 32px 24px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-stat {
    font-size: 44px;
  }
}

.order-id-label {
  font-size: 13px;
  color: var(--smoky-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.order-id-value {
  font-size: 28px;
  color: var(--champagne-gold);
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 2px;
}

.success-ok-btn {
  position: relative;
  padding: 18px 60px;
  background: linear-gradient(135deg, var(--champagne-gold), var(--amber-accent));
  border: none;
  border-radius: 10px;
  color: var(--midnight-black);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-fast);
  width: 100%;
  font-family: var(--font-sans);
}

.success-ok-btn span {
  position: relative;
  z-index: 2;
}

.success-ok-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.success-ok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 84, 156, 0.5);
}

.success-ok-btn:hover::before {
  width: 300px;
  height: 300px;
}

.success-ok-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .order-success-content {
    padding: 40px 30px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .order-id-value {
    font-size: 24px;
  }
}

/* ===================================
   ALLERGEN MODAL (Global)
   =================================== */
.allergen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.allergen-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.allergen-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.allergen-modal-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  border-radius: 20px;
  border: 2px solid rgba(37, 84, 156, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(37, 84, 156, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.allergen-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(37, 84, 156, 0.2);
}

.allergen-icon {
  width: 40px;
  height: 40px;
  color: #25549C;
  flex-shrink: 0;
}

.allergen-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #25549C;
  margin: 0;
  letter-spacing: 0.5px;
}

.allergen-modal-body {
  padding: 25px 30px;
}

.allergen-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px 0;
  font-weight: 500;
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.allergen-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 25px;
  font-size: 14px;
  color:       --champagne-gold;
  font-weight: 600;
  transition: all 0.3s ease;
}

.allergen-item:hover {
  background: rgba(37, 84, 156, 0.2);
  transform: translateY(-2px);
}

.allergen-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.allergen-notice,
.allergen-age-warning {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(37, 84, 156, 0.1);
  border: 1px solid rgba(37, 84, 156, 0.3);
  border-radius: 12px;
  margin-bottom: 20px;
}

.allergen-age-warning {
  background: rgba(255, 87, 34, 0.1);
  border-color: rgba(255, 87, 34, 0.3);
}

.allergen-notice svg,
.allergen-age-warning svg {
  width: 24px;
  height: 24px;
  color: rgba(37, 84, 156, 1);
  flex-shrink: 0;
  margin-top: 2px;
}

.allergen-age-warning svg {
  color: #FF5722;
}

.allergen-notice p,
.allergen-age-warning p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.allergen-age-warning p:last-child {
  margin-bottom: 0;
}

.allergen-modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 30px 30px;
  border-top: 1px solid rgba(37, 84, 156, 0.15);
}

.allergen-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.allergen-btn svg {
  width: 20px;
  height: 20px;
}

.allergen-btn-cancel {
  background: rgba(37, 84, 156, 0.1);
  color: #25549C;
  border: 1px solid rgba(37, 84, 156, 0.3);
}

.allergen-btn-cancel:hover {
  background: rgba(37, 84, 156, 0.2);
  color: #25549C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 84, 156, 0.2);
}

.allergen-btn-confirm {
  background: linear-gradient(135deg, #25549C 0%, #1e4580 100%);
  color: #F4F4F4;
  box-shadow: 0 4px 15px rgba(37, 84, 156, 0.3);
}

.allergen-btn-confirm:hover {
  background: linear-gradient(135deg, #2d66b8 0%, #25549C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 84, 156, 0.4);
}

@media (max-width: 768px) {
  .allergen-modal-content {
    max-width: 95%;
    max-height: 90vh;
  }

  .allergen-modal-header {
    padding: 20px 20px 15px;
  }

  .allergen-modal-title {
    font-size: 20px;
  }

  .allergen-icon {
    width: 32px;
    height: 32px;
  }

  .allergen-modal-body {
    padding: 20px;
  }

  .allergen-modal-footer {
    flex-direction: column;
    padding: 15px 20px 20px;
  }

  .allergen-btn {
    width: 100%;
  }
}
