@layer reset, theme, base, components, utilities, a11y;

@layer reset {
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}

@layer theme {
  :root {
    --green: #0C513F;
    --green-dark: #083A2E;
    --green-light: #e8f5f0;
    --yellow: #FFC501;
    --yellow-hover: #e0ae00;
    --yellow-light: #fff8e0;
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --bg-surface: #ffffff;
    --text: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #aeaeb2;
    --border: #e5e5ea;
    --border-light: #f0f0f2;
    --separator: rgba(60,60,67,0.06);
    --overlay: rgba(0,0,0,0.82);
    --overlay-mid: rgba(0,0,0,0.5);
    --overlay-light: rgba(0,0,0,0.15);
    --hero-overlay: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    --hero-text: #ffffff;
    --hero-text-secondary: rgba(255,255,255,0.78);
    --hero-text-muted: rgba(255,255,255,0.45);
    --footer-bg: #1d1d1f;
    --navbar-bg: rgba(255,255,255,0.78);
    --navbar-border: rgba(60,60,67,0.06);
    --input-bg: #f5f5f7;
    --input-border: #e5e5ea;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 999px;
  }

  [data-theme="dark"] {
    --bg: #000000;
    --bg-alt: #1c1c1e;
    --bg-surface: #1c1c1e;
    --text: #f5f5f7;
    --text-secondary: #98989d;
    --text-tertiary: #636366;
    --border: #38383a;
    --border-light: #2c2c2e;
    --separator: rgba(255,255,255,0.06);
    --overlay: rgba(0,0,0,0.92);
    --overlay-mid: rgba(0,0,0,0.65);
    --overlay-light: rgba(0,0,0,0.35);
    --footer-bg: #000000;
    --navbar-bg: rgba(0,0,0,0.78);
    --navbar-border: rgba(255,255,255,0.06);
    --input-bg: #2c2c2e;
    --input-border: #38383a;
    --green-light: rgba(12,81,63,0.15);
    --yellow-light: rgba(255,197,1,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.35);
  }
}

@layer base {
  html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    padding-top: 64px;
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
  }

  ::selection { background: var(--green); color: #fff; }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .section-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    body { padding-top: 0; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.625rem; }
    .container { padding: 0 1.25rem; }
  }
}

@layer components {
  /* ==================== DESKTOP NAVBAR ==================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 64px;
    background: var(--navbar-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--navbar-border);
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;

    &.navbar-scrolled {
      box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    }
  }

  .navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-brand { display: flex; align-items: center; }

  .navbar-logo { height: 34px; width: auto; display: block; }

  .navbar-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.25rem;
    margin: 0 2rem;
  }

  .navbar-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;

    &::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: calc(100% - 1.75rem);
      height: 2px;
      background: var(--green);
      border-radius: 1px;
      transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    &:hover {
      color: var(--green);
      background: var(--separator);
    }

    &:hover::after {
      transform: translateX(-50%) scaleX(1);
    }
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.375rem;
  }

  .nav-icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;

    &:hover {
      background: var(--separator);
      color: var(--green);
    }
  }

  .nav-dd {
    position: relative;
  }

  .nav-dd-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-dd-caret {
    transition: transform 0.2s ease;
  }

  .nav-dd:hover .nav-dd-caret,
  .nav-dd.open .nav-dd-caret {
    transform: rotate(180deg);
  }

  .nav-dd-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    min-width: 180px;
    background: var(--bg-surface);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-dd:hover .nav-dd-menu,
  .nav-dd.open .nav-dd-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
  }

  .nav-dd-link {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    text-decoration: none;

    &:hover {
      background: var(--separator);
      color: var(--green);
    }
  }

  .theme-toggle-desktop {
    background: var(--input-bg);
    border: none;
    border-radius: var(--radius-full);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;

    &:hover {
      background: var(--border);
      transform: scale(1.05);
    }
  }

  @media (max-width: 768px) {
    .navbar { display: none; }
  }

  /* ==================== MOBILE TOP HEADER ==================== */
  .mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 52px;
    padding: 0 1rem;
    padding-right: calc(1rem + env(safe-area-inset-right, 0));
    padding-left: calc(1rem + env(safe-area-inset-left, 0));
    background: var(--navbar-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--navbar-border);
    align-items: center;
    justify-content: space-between;

    .mobile-header-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .mobile-header-logo {
      height: 30px;
      width: auto;
      display: block;
    }

    .mobile-header-actions {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .mobile-header-btn {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-full);
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-secondary);
      transition: all 0.2s ease;
      position: relative;
      text-decoration: none;

      &:active {
        background: var(--separator);
        transform: scale(0.92);
      }
    }

    .mobile-header-badge {
      position: absolute;
      top: 2px;
      right: 2px;
      background: var(--green);
      color: #fff;
      font-size: 0.5625rem;
      font-weight: 700;
      min-width: 16px;
      height: 16px;
      border-radius: var(--radius-full);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 3px;
      line-height: 1;
      box-shadow: 0 2px 6px rgba(12,81,63,0.3);
    }
  }

  @media (max-width: 768px) {
    body { padding-top: 52px; }
  }

  @media (min-width: 769px) {
    .mobile-header { display: none; }
  }

  /* ==================== MOBILE TAB BAR ==================== */
  .tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: var(--navbar-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid var(--navbar-border);
    padding: 0 env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);

    .tab-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-around;
      height: 100%;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: color 0.2s ease;
    padding: 0 0.5rem;
    min-width: 60px;
    text-decoration: none;
    font-family: inherit;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    user-select: none;

    &:active {
      transform: scale(0.92);
    }

    &.active {
      color: var(--green);
    }

    &.active .tab-icon {
      transform: scale(1.05);
    }
  }

  .tab-icon-wrapper {
    position: relative;
    display: flex;
  }

  .tab-icon {
    display: block;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .tab-label {
    font-size: 0.5625rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .tab-badge {
    position: absolute;
    top: -3px;
    right: -5px;
    background: var(--green);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  .tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--green);
    border-radius: 1.5px;
  }

  .tab-cart-btn {
    position: relative;
  }

  @media (max-width: 768px) {
    .tab-bar { display: flex; }
    body { padding-bottom: 60px; }
  }

  /* ==================== MORE SHEET (mobile) ==================== */
  .sheet-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;

    &.open {
      display: block;
      opacity: 1;
    }
  }

  .sheet {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2001;
    background: var(--bg-surface);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: 0.75rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    &.open {
      display: block;
      transform: translateY(0);
    }
  }

  .sheet-handle {
    width: 40px;
    height: 5px;
    border-radius: 2.5px;
    background: var(--border-strong, #d1d1d6);
    margin: 0 auto 0.75rem;
  }

  .sheet-header {
    padding: 0 1.5rem 0.75rem;
  }

  .sheet-title {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .sheet-body {
    padding: 0 0.75rem;
  }

  .sheet-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background 0.15s ease;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;

    &:hover {
      background: var(--separator);
    }

    &:active {
      background: var(--border);
    }
  }

  .sheet-divider {
    height: 1px;
    background: var(--separator);
    margin: 0.5rem 0;
  }

  @media (min-width: 769px) {
    .sheet-overlay,
    .sheet { display: none !important; }
  }

  /* ==================== HERO ==================== */
  .hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    .hero-image-wrapper { position: absolute; inset: 0; }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: opacity;

      &.active { opacity: 1; }
    }

    .hero-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.15);
      width: 48px;
      height: 48px;
      border-radius: var(--radius-full);
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;

      &:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-50%) scale(1.06);
        border-color: rgba(255,255,255,0.3);
      }
    }

    .hero-carousel-prev { left: 1.5rem; }
    .hero-carousel-next { right: 1.5rem; }

    .hero-carousel-dots {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      gap: 0.5rem;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: var(--radius-full);
      border: none;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;

      &.active {
        background: #fff;
        width: 28px;
        border-radius: 3px;
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 1.5rem 4rem;
      width: 100%;
    }

    .hero-text { max-width: 580px; }

    .hero-badge {
      display: inline-block;
      background: rgba(255,197,1,0.1);
      color: var(--yellow);
      padding: 0.375rem 1rem;
      border-radius: var(--radius-full);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      border: 1px solid rgba(255,197,1,0.15);
      backdrop-filter: blur(8px);
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 1rem;
      letter-spacing: -0.035em;
      color: var(--hero-text);
      text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    }

    .hero-description {
      color: var(--hero-text-secondary);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 460px;
      line-height: 1.6;
      text-shadow: 0 1px 8px rgba(0,0,0,0.1);
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    .stat { position: relative; }

    .stat + .stat {
      padding-left: 2rem;

      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 36px;
        background: rgba(255,255,255,0.15);
      }
    }

    .stat-value {
      display: block;
      font-size: 1.375rem;
      font-weight: 700;
      color: var(--hero-text);
      letter-spacing: -0.01em;
    }

    .stat-label {
      font-size: 0.8125rem;
      color: var(--hero-text-muted);
      margin-top: 0.125rem;
    }

    .hero-scroll {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.3);
      font-size: 0.625rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      animation: hero-scroll-bounce 2.5s ease-in-out infinite;
    }

    .hero-scroll-dot {
      width: 4px;
      height: 4px;
      border-radius: var(--radius-full);
      background: rgba(255,255,255,0.3);
      animation: hero-scroll-dot 2.5s ease-in-out infinite;
    }

    @keyframes hero-scroll-bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    @keyframes hero-scroll-dot {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;

      .btn {
        border-radius: var(--radius-full);
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
        border-width: 1px;
      }

      .btn-secondary {
        background: rgba(255,255,255,0.08);
        color: #fff;
        border-color: rgba(255,255,255,0.2);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);

        &:hover {
          background: rgba(255,255,255,0.15);
          border-color: rgba(255,255,255,0.35);
          box-shadow: none;
        }

        &:active {
          transform: scale(0.97);
        }
      }
    }

    @media (max-width: 768px) {
      min-height: calc(100dvh - 52px);

      .hero-title { font-size: 2.5rem; }

      .hero-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 100%);
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 5rem 1.25rem 1.5rem;
      }

      .hero-text { max-width: 100%; }

      .hero-description { font-size: 1rem; }

      .hero-stats { gap: 1.25rem; }

      .stat + .stat {
        padding-left: 1.25rem;
        &::before { height: 24px; }
      }

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

      .hero-carousel-prev,
      .hero-carousel-next { display: none; }
    }
  }

  /* ==================== BUTTONS ==================== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
    font-family: inherit;
    -webkit-user-select: none;
    user-select: none;

    &:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    &:active { transform: scale(0.97); }
    &:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
  }

  .btn-primary {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-full);

    &:hover {
      background: var(--green-dark);
      box-shadow: 0 4px 20px rgba(12,81,63,0.3);
    }
  }

  .btn-secondary {
    background: var(--bg-surface);
    color: var(--text);
    border: 1px solid var(--border-strong, var(--border));

    &:hover {
      border-color: var(--green);
      color: var(--green);
    }
  }

  .btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);

    &:hover {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 16px rgba(12,81,63,0.2);
    }
  }

  .btn-icon { width: 20px; height: 20px; border-radius: 4px; }
  .btn-full { width: 100%; }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  /* ==================== MENU SECTION ==================== */
  .menu-section { background: var(--bg-alt); }

  .menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0.375rem;
    background: var(--input-bg);
    border-radius: var(--radius-lg);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-filter {
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;

    &:hover { color: var(--text); }

    &.active {
      background: var(--bg-surface);
      color: var(--green);
      font-weight: 600;
      box-shadow: var(--shadow-sm);
    }
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }

  .menu-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--border-strong, var(--border));
    }
  }

  .menu-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .menu-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--green-light), var(--yellow-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
  }

  .menu-card-body {
    padding: 1.125rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

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

  .menu-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .menu-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
  }

  .menu-card-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
  }

  .menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--separator);
  }

  .menu-card-category {
    font-size: 0.6875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }

  .menu-card-sold-out {
    opacity: 0.55;
    pointer-events: none;
  }

  .menu-card-badge-sold {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
  }

  .menu-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted, var(--text-tertiary));
    grid-column: 1 / -1;
  }

  .section-footer {
    text-align: center;
    margin-top: 2.5rem;
  }

  @media (max-width: 768px) {
    .menu-grid { grid-template-columns: 1fr; gap: 1rem; }
    .menu-filters { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; border-radius: var(--radius-md); padding: 0.25rem; }
    .menu-filter { white-space: nowrap; font-size: 0.75rem; padding: 0.375rem 0.875rem; }
    .menu-card-image { height: 180px; }
  }

  /* ==================== ABOUT ==================== */
  .about-section {
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
    }
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);

    &:hover .about-image {
      transform: scale(1.04);
    }
  }

  .about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .about-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
  }

  .about-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.25rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex: 1;

    &:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--green);
    }
  }

  .feature-icon { font-size: 1.5rem; }
  .feature-text { font-size: 0.8125rem; font-weight: 600; text-align: center; }

  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { height: 280px; }
    .about-features { gap: 0.75rem; }
  }

  /* ==================== RESERVATION ==================== */
  .reservation-section { background: var(--bg); }

  .reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .reservation-info-card {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
  }

  .reservation-info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .reservation-info-card > p {
    font-size: 0.9375rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);

    &:last-child { border-bottom: none; }
  }

  .hours-list .day { font-weight: 500; }
  .hours-list .time { opacity: 0.75; }

  .hours-today {
    display: inline-block;
    background: rgba(255,197,1,0.12);
    color: var(--yellow);
    padding: 0.3125rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
  }

  .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
  }

  .reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  @media (max-width: 768px) {
    .reservation-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .reservation-form .form-row { grid-template-columns: 1fr; }
  }

  /* ==================== MAP ==================== */
  .map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 1.5rem;

    iframe {
      display: block;
      width: 100%;
      height: 280px;
      border: none;
    }
  }

  /* ==================== FORM ELEMENTS ==================== */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }

  .form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.01em;
  }

  .form-input {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;

    &::placeholder { color: var(--text-tertiary); }

    &:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(12,81,63,0.1);
    }

    select& {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23636366' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.875rem center;
      padding-right: 2.5rem;
    }
  }

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

  /* ==================== CONTACT ==================== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.2s ease;

    &:hover {
      box-shadow: var(--shadow-sm);
    }
  }

  .contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.0625rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    border-radius: var(--radius-md);
  }

  .contact-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .contact-value { font-size: 0.9375rem; }

  .contact-link {
    color: var(--green);
    transition: color 0.2s;

    &:hover { color: var(--yellow); }
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  /* ==================== DIALOG ==================== */
  dialog {
    background: var(--bg-surface);
    color: var(--text);
    border: none;
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 380px;
    width: 88%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    animation: dialog-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    &::backdrop {
      background: rgba(0,0,0,0.35);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    @keyframes dialog-in {
      from { opacity: 0; transform: scale(0.9) translateY(10px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
  }

  .dialog-icon {
    font-size: 3rem;
    margin-bottom: 0.875rem;
    display: block;
  }

  .dialog-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
  }

  .dialog-message {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  /* ==================== CART ==================== */
  .cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--green);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(12,81,63,0.3);
  }

  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    &.open { opacity: 1; pointer-events: auto; }
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.08);

    &.open { transform: translateX(0); }
  }

  .cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--separator);
    flex-shrink: 0;

    h3 { font-size: 1.125rem; font-weight: 600; }
  }

  .cart-close {
    background: var(--input-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.2s;

    &:hover { background: var(--border); }
  }

  .cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
  }

  .cart-items { display: flex; flex-direction: column; gap: 0.75rem; }

  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--separator);
  }

  .cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
  }

  .cart-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-item-mods {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.125rem;
  }

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

  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
  }

  .cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.15s;
    padding: 0;

    &:hover { border-color: var(--green); color: var(--green); }
    &:active { transform: scale(0.9); }
  }

  .cart-qty {
    font-size: 0.9375rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
  }

  .cart-remove-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    padding: 0.25rem;
    transition: color 0.15s;

    &:hover { color: #dc2626; }
  }

  .cart-drawer-footer {
    flex-shrink: 0;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--separator);
    background: var(--bg);
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .cart-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
  }

  .cart-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .cart-checkout-form .form-input {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }

  .cart-checkout-form .form-textarea {
    min-height: 50px;
    resize: vertical;
  }

  .cart-checkout-form .btn { margin-top: 0.25rem; }

  @media (max-width: 480px) {
    .cart-drawer { max-width: 100%; }
  }

  /* ==================== MODIFIER DIALOG ==================== */
  #modifierDialog {
    border: none;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    max-width: 420px;
    width: 90vw;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    background: var(--bg-surface);
    color: var(--text);

    &::backdrop {
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
  }

  .modifier-dialog-content {
    h3 { font-size: 1.125rem; }
  }

  .mod-option-label {
    transition: all 0.2s;
    &:hover { border-color: var(--green); background: rgba(12,81,63,0.04); }
    input:checked + span { color: var(--green); font-weight: 600; }
    input:checked ~ span:not(input) { color: var(--green); }
  }

  /* ==================== NEWSLETTER ==================== */
  .newsletter-bar {
    background: var(--green);
    padding: 3rem 1.5rem;
  }

  .newsletter-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .newsletter-text h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
  }

  .newsletter-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9375rem;
  }

  .newsletter-form {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
  }

  .newsletter-input {
    padding: 0.75rem 1.125rem;
    border-radius: var(--radius-full);
    border: none;
    font-family: inherit;
    font-size: 0.9375rem;
    width: 280px;
    outline: none;
  }

  .newsletter-btn { white-space: nowrap; }

  @media (max-width: 768px) {
    .newsletter-bar-inner {
      flex-direction: column;
      text-align: center;
    }

    .newsletter-form {
      width: 100%;
      flex-direction: column;
    }

    .newsletter-input { width: 100%; }
  }

  /* ==================== WHATSAPP FLOAT ==================== */
  .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;

    &:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    }

    &::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: var(--radius-full);
      background: rgba(37,211,102,0.12);
      animation: whatsapp-pulse 2.5s ease-in-out infinite;
    }

    svg {
      width: 28px;
      height: 28px;
      position: relative;
      z-index: 1;
    }
  }

  @keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
  }

  /* ==================== SCROLL TO TOP ==================== */
  .scroll-top {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 998;
    width: 44px;
    height: 44px;
    background: var(--bg-surface);
    color: var(--text);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border);
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);

    &.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    &:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: var(--shadow-lg);
    }
  }

  /* ==================== CATERING ==================== */
  .catering-section { background: var(--green-light); }

  .catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .catering-info h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
  }

  .catering-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .catering-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .catering-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
  }

  .catering-benefits .check {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    flex-shrink: 0;
  }

  .catering-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .catering-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  @media (max-width: 768px) {
    .catering-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .catering-form .form-row { grid-template-columns: 1fr; }
  }

  /* ==================== SOCIAL ==================== */
  .social-links-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .social-link-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text);
    font-weight: 500;
    font-size: 0.8125rem;
    transition: all 0.2s;

    &:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
  }

  .social-link-btn .soc-icon { font-size: 1.125rem; }
  .instagram-btn:hover { border-color: #E4405F; color: #E4405F; }
  .facebook-btn:hover { border-color: #1877F2; color: #1877F2; }
  .tiktok-btn:hover { border-color: #000; }

  /* ==================== GALLERY ==================== */
  .gallery-section { background: var(--bg-alt); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    &:hover {
      img { transform: scale(1.06); }
      .gallery-overlay { opacity: 1; }
    }
  }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.75rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  @media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ==================== EVENTS ==================== */
  .events-section { background: var(--bg-alt); }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
  }

  .event-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
  }

  .event-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
  }

  .event-card:hover .event-card-image img { transform: scale(1.04); }

  .event-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .event-date-badge {
    position: absolute;
    top: -1.25rem;
    right: 1.25rem;
    background: var(--green);
    color: #fff;
    border-radius: var(--radius-md);
    width: 54px;
    text-align: center;
    padding: 0.5rem 0;
    box-shadow: 0 4px 16px rgba(12,81,63,0.25);
  }

  .event-date-month {
    display: block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .event-date-day {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .event-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-right: 3.5rem;
  }

  .event-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
  }

  .event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    border-top: 1px solid var(--separator);
    padding-top: 0.75rem;
  }

  @media (max-width: 768px) {
    .events-grid { grid-template-columns: 1fr; }
  }

  /* ==================== FOOTER ==================== */
  .footer {
    background: var(--footer-bg);
    padding: 4rem 1.5rem 2rem;

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-logo {
      height: 44px;
      width: auto;
      display: block;
      margin-bottom: 0.75rem;
      filter: brightness(0) invert(1);
    }

    .footer-tagline {
      color: rgba(255,255,255,0.45);
      font-size: 0.9375rem;
    }

    .footer-heading {
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-link {
      color: rgba(255,255,255,0.45);
      font-size: 0.9375rem;
      transition: color 0.2s;

      &:hover { color: var(--yellow); }
    }

    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;

      li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255,255,255,0.45);
        font-size: 0.9375rem;
      }
    }

    .footer-bottom {
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
      color: rgba(255,255,255,0.25);
      font-size: 0.8125rem;
    }

    @media (max-width: 768px) {
      padding: 3rem 1.25rem 1.5rem;

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
  }
}

@layer utilities {
  [data-aos] {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  [data-aos].aos-animate { opacity: 1; transform: none; }
  [data-aos="fade-right"] { transform: translateX(-30px); }
  [data-aos="fade-left"] { transform: translateX(30px); }
  [data-aos="fade-up"] { transform: translateY(30px); }
  [data-aos="zoom-in"] { transform: scale(0.92); }
}

@layer a11y {
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }

    [data-aos] { opacity: 1 !important; transform: none !important; }
  }

  /* ==================== CART TOAST ==================== */
  .cart-toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10000;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.125rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    max-width: 360px;
    pointer-events: none;
  }
  .cart-toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cart-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
  }
  .cart-toast-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
  }

  @media (max-width: 480px) {
    .cart-toast {
      top: 0.75rem;
      right: 0.75rem;
      left: 0.75rem;
      max-width: none;
      padding: 0.75rem 1rem;
    }
  }
}
