/* ===== CSS Variables ===== */
    :root {
      --primary: #8B5A2B;
      --primary-dark: #6d4722;
      --light: #f8f5f2;
      --dark: #2a2a2a;
      --text: #4a4a4a;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(0,0,0,0.1);
      --shadow-hover: 0 25px 50px rgba(0,0,0,0.12);
      --transition: all 0.3s ease;
      --border-radius: 12px;
    }
    
    /* ===== Reset & Base ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      line-height: 1.7;
      background-color: #f9f9f9;
      overflow-x: hidden;
    }
    
    /* ===== Typography ===== */
    h1, h2, h3 {
      font-weight: 300;
      line-height: 1.2;
    }
    
    .playfair {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    
    /* ===== Hero Section ===== */
    .beverage-hero {
      height: 103vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: -80px;
    }
    
    .beverage-parallax {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                  url('../images/beverages_hero.jpg');
      background-size: cover;
      background-position: center;
      will-change: transform;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 6rem);
      font-weight: 400;
      color: var(--white);
      letter-spacing: 5px;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .hero-line {
      width: 150px;
      height: 2px;
      background: var(--primary);
      margin: 0 auto;
      position: relative;
    }
    
    .hero-line::before, 
    .hero-line::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--primary);
      top: 50%;
      transform: translateY(-50%);
    }
    
    .hero-line::before { left: -5px; }
    .hero-line::after { right: -5px; }
    
    /* ===== Scroll Indicator ===== */
    .scroll-indicator {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      z-index: 2;
    }
    
    .scroll-indicator span {
      font-size: 12px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
    }
    
    .scroll-arrow {
      width: 20px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      position: relative;
    }
    
    .scroll-arrow::before {
      content: '';
      position: absolute;
      width: 4px;
      height: 8px;
      background: var(--primary);
      border-radius: 2px;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollDown 2s infinite;
    }
    
    @keyframes scrollDown {
      0% { transform: translate(-50%, 0); opacity: 1; }
      100% { transform: translate(-50%, 15px); opacity: 0; }
    }
    
    /* ===== Section Base Styles ===== */
    section {
      position: relative;
      padding: 100px 0;
    }
    
    .section-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
    }
    
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      margin-bottom: 50px;
      text-align: center;
      color: var(--primary);
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
    }
    
    .section-subtitle {
      font-size: 1.3rem;
      font-weight: 300;
      margin-bottom: 40px;
      text-align: center;
      color: var(--primary);
    }
    
    /* ===== Cocktail Carousel ===== */
    .cocktail-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .cocktail-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 20px;
      letter-spacing: -1.2px;
    }
    
    .cocktail-carousel {
      width: 100%;
      max-width: 1300px;
      margin: 40px auto;
      overflow: hidden;
      position: relative;
    }
    
    .carousel-viewport {
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }
    
    .carousel-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll 30s linear infinite;
      transform: translateZ(0);
    }
    
    .cocktail-card {
      width: 300px;
      flex-shrink: 0;
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .cocktail-card:hover {
      transform: translateY(-5px);
    }
    
    .cocktail-card img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    
    .cocktail-card:hover img {
      transform: scale(1.05);
    }
    
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-960px); }
    }
    
    /* ===== Beverage Showcase ===== */
    .beverage-showcase {
      background: linear-gradient(rgba(248, 245, 242, 0.9), rgba(248, 245, 242, 0.9)), 
                 url('https://starbeans.ceylonlensmedia.com/wp-content/uploads/2025/06/beverages-1.webp');
      background-size: cover;
      background-attachment: fixed;
      padding: 120px 0;
    }
    
    .beverage-content {
      background: rgba(255, 255, 255, 0.85);
      padding: 60px;
      max-width: 900px;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(5px);
    }
    
    .beverage-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.5rem);
      color: var(--primary);
      margin-bottom: 30px;
      text-align: center;
    }
    
    .beverage-content p {
      margin-bottom: 25px;
      font-size: 1.1rem;
      line-height: 1.8;
    }
    
    .beverage-content p:last-child {
      margin-bottom: 0;
    }
    
    /* ===== Beverage Categories ===== */
    .beverage-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin: 60px auto;
      max-width: 1200px;
    }
    
    .category-card {
      background: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }
    
    .category-image {
      position: relative;
      height: 250px;
      overflow: hidden;
    }
    
    .category-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    
    .category-card:hover .category-image img {
      transform: scale(1.05);
    }
    
    .category-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.4));
    }
    
    .category-content {
      padding: 30px;
      text-align: center;
    }
    
    .category-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .category-description {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text);
    }
    
    /* ===== Responsive Design ===== */
    @media (max-width: 992px) {
      .cocktail-card {
        width: 280px;
      }
      
      @keyframes scroll {
        100% { transform: translateX(-860px); }
      }
      
      .beverage-content {
        padding: 40px;
      }
    }
    
    @media (max-width: 768px) {
      .cocktail-card {
        width: 260px;
      }
      
      .cocktail-card img {
        height: 300px;
      }
      
      @keyframes scroll {
        100% { transform: translateX(-780px); }
      }
      
      .beverage-content {
        padding: 30px;
      }
    }
    
    @media (max-width: 576px) {
      .cocktail-card {
        width: 220px;
      }
      
      @keyframes scroll {
        100% { transform: translateX(-700px); }
      }
    }