/* Shared CSS — extracted from inline styles */
/* ===== Google Fonts ===== */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

    /* ===== CSS Variables (Design Tokens) ===== */
    :root {
      --background: hsl(0, 0%, 4%);
      --foreground: hsl(43, 30%, 90%);
      --card: hsl(0, 0%, 7%);
      --card-foreground: hsl(43, 30%, 90%);
      --popover: hsl(0, 0%, 6%);
      --popover-foreground: hsl(43, 30%, 90%);
      --primary: hsl(43, 56%, 52%);
      --primary-foreground: hsl(0, 0%, 4%);
      --secondary: hsl(0, 0%, 12%);
      --secondary-foreground: hsl(43, 30%, 90%);
      --muted: hsl(0, 0%, 12%);
      --muted-foreground: hsl(0, 0%, 55%);
      --accent: hsl(43, 56%, 52%);
      --accent-foreground: hsl(0, 0%, 4%);
      --destructive: hsl(0, 84.2%, 60.2%);
      --destructive-foreground: hsl(0, 0%, 98%);
      --border: hsl(0, 0%, 16%);
      --input: hsl(0, 0%, 16%);
      --ring: hsl(43, 56%, 52%);
      --gold: hsl(43, 56%, 52%);
      --gold-light: hsl(43, 60%, 65%);
      --gold-dark: hsl(43, 50%, 40%);
      --radius: 0.75rem;
    }

    /* ===== Reset & Base ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border-color: var(--border);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--background);
      color: var(--foreground);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    ul,
    ol {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    input {
      font-family: inherit;
    }

    .font-serif {
      font-family: 'Playfair Display', Georgia, serif;
    }

    .text-gold {
      color: var(--gold);
    }

    /* ===== Scrollbar ===== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--background);
    }

    ::-webkit-scrollbar-thumb {
      background: hsl(0, 0%, 20%);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold);
    }

    /* ===== Animations ===== */
    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes fadeOut {
      from {
        opacity: 1;
        transform: scale(1);
      }

      to {
        opacity: 0;
        transform: scale(0.95);
      }
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
      }

      to {
        transform: translateX(0);
      }
    }

    @keyframes slideOutRight {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(100%);
      }
    }

    .animate-pulse {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 50;
      transition: all 0.5s ease;
    }

    .navbar.scrolled {
      background: hsla(0, 0%, 4%, 0.8);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid hsla(0, 0%, 16%, 0.5);
      box-shadow: 0 10px 40px hsla(0, 0%, 4%, 0.2);
    }

    .navbar-inner {
      max-width: 80rem;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 14rem;
      padding: 0 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-img {
      height: 220px;
      width: auto;
    }

    @media (max-width: 768px) {
      .navbar-inner {
        height: 5rem;
      }

      .logo-img {
        height: auto;
        max-height: 80%;
        width: auto;
      }
    }

    .logo-icon {
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      border: 1px solid hsla(43, 56%, 52%, 0.4);
      background: hsla(43, 56%, 52%, 0.1);
    }

    .logo-icon span {
      font-family: 'Playfair Display', serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--gold);
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.125rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--foreground);
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--muted-foreground);
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-btn {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      transition: all 0.3s;
      position: relative;
    }

    .nav-btn:hover {
      background: var(--secondary);
    }

    .nav-btn svg {
      width: 18px;
      height: 18px;
      color: var(--muted-foreground);
      transition: color 0.3s;
    }

    .nav-btn:hover svg {
      color: var(--foreground);
    }

    .nav-btn.account-btn {
      display: none;
    }

    .cart-badge {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: var(--gold);
      color: var(--primary-foreground);
      font-size: 10px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-btn {
      display: flex;
    }

    .menu-btn svg {
      width: 20px;
      height: 20px;
    }

    /* Search Dropdown */
    .search-dropdown {
      position: absolute;
      right: 0;
      top: 3rem;
      width: 18rem;
      padding: 0.75rem;
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 7%, 0.95);
      backdrop-filter: blur(24px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      display: none;
    }

    .search-dropdown.open {
      display: block;
    }

    .search-dropdown input {
      width: 100%;
      padding: 0.625rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 12%, 0.5);
      font-size: 0.875rem;
      color: var(--foreground);
      outline: none;
      transition: border-color 0.3s;
    }

    .search-dropdown input::placeholder {
      color: var(--muted-foreground);
    }

    .search-dropdown input:focus {
      border-color: hsla(43, 56%, 52%, 0.5);
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      padding: 1rem;
      border-top: 1px solid hsla(0, 0%, 16%, 0.5);
      background: hsla(0, 0%, 4%, 0.95);
      backdrop-filter: blur(24px);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: all 0.3s;
    }

    .mobile-menu a:hover {
      background: var(--secondary);
      color: var(--foreground);
    }

    .mobile-menu .divider {
      margin-top: 0.5rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--border);
    }

    .mobile-menu .account-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .mobile-menu .account-link svg {
      width: 16px;
      height: 16px;
    }

    /* ===== AGE GATE ===== */
    .age-gate-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      background: hsla(0, 0%, 4%, 0.95);
      backdrop-filter: blur(24px);
      transition: opacity 0.5s;
    }

    .age-gate-overlay.exiting {
      opacity: 0;
    }

    .age-gate-overlay.hidden {
      display: none;
    }

    .age-gate-card {
      position: relative;
      width: 100%;
      max-width: 28rem;
      margin: 0 1rem;
      padding: 2rem;
      text-align: center;
      border-radius: 1rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 7%, 0.8);
      backdrop-filter: blur(16px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      transition: all 0.5s;
    }

    .age-gate-card.exiting {
      transform: scale(0.95);
      opacity: 0;
    }

    .age-gate-accent {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 6rem;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .age-gate-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid hsla(43, 56%, 52%, 0.3);
      background: hsla(43, 56%, 52%, 0.1);
    }

    .age-gate-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--gold);
    }

    .age-gate-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }

    .age-gate-card .desc {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .age-gate-card .desc span {
      font-weight: 600;
      color: var(--gold);
    }

    .age-gate-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .btn-gold {
      padding: 0.875rem 1.5rem;
      border-radius: 0.5rem;
      background: var(--gold);
      color: var(--primary-foreground);
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      box-shadow: 0 10px 40px hsla(43, 56%, 52%, 0.2);
    }

    .btn-secondary {
      padding: 0.875rem 1.5rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: var(--secondary);
      color: var(--secondary-foreground);
      font-size: 0.875rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-secondary:hover {
      border-color: hsla(0, 0%, 55%, 0.3);
      background: hsla(0, 0%, 12%, 0.8);
    }

    .age-gate-card .legal {
      margin-top: 1.5rem;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      background: var(--background);
      padding-top: 5rem;
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    .hero-glow-1 {
      position: absolute;
      right: -8rem;
      top: 25%;
      width: 24rem;
      height: 24rem;
      border-radius: 50%;
      background: hsla(43, 56%, 52%, 0.05);
      filter: blur(48px);
    }

    .hero-glow-2 {
      position: absolute;
      left: -8rem;
      bottom: 25%;
      width: 16rem;
      height: 16rem;
      border-radius: 50%;
      background: hsla(43, 56%, 52%, 0.03);
      filter: blur(48px);
    }

    .hero-inner {
      position: relative;
      max-width: 80rem;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      padding: 4rem 1rem;
    }

    .hero-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
      margin-bottom: 1.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      border: 1px solid hsla(43, 56%, 52%, 0.2);
      background: hsla(43, 56%, 52%, 0.05);
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }

    .hero-badge span:last-child {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--foreground);
      text-wrap: balance;
      margin-bottom: 1.5rem;
    }

    .hero p.subtitle {
      max-width: 32rem;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hero-buttons .btn-gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
    }

    .hero-buttons .btn-gold svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s;
    }

    .hero-buttons .btn-gold:hover svg {
      transform: translateX(4px);
    }

    .hero-buttons .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 12%, 0.5);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--secondary-foreground);
      transition: all 0.3s;
    }

    .hero-buttons .btn-outline:hover {
      border-color: hsla(43, 56%, 52%, 0.3);
      background: var(--secondary);
    }

    /* Trust Badges */
    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid hsla(0, 0%, 16%, 0.5);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    .trust-badge-icon {
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background: var(--secondary);
    }

    .trust-badge-icon svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }

    .trust-badge-text p:first-child {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--foreground);
    }

    .trust-badge-text p:last-child {
      font-size: 11px;
      color: var(--muted-foreground);
    }

    /* Hero Image */
    .hero-image {
      flex: 1;
      position: relative;
      width: 100%;
    }

    .hero-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
    }

    .hero-image-overlay {
      position: absolute;
      inset: 0;
      border-radius: 1rem;
      z-index: 1;
      background: linear-gradient(to top, var(--background), transparent, transparent);
    }

    .hero-image-wrapper img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .hero-floating-badge {
      position: absolute;
      bottom: -1rem;
      left: -1rem;
      z-index: 2;
      padding: 0.75rem 1.25rem;
      border-radius: 0.75rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
      background: hsla(0, 0%, 7%, 0.9);
      backdrop-filter: blur(16px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .hero-floating-badge p:first-child {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--muted-foreground);
    }

    .hero-floating-badge p:last-child {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }

    .hero-divider {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    /* ===== CATEGORIES ===== */
    .categories {
      position: relative;
      background: var(--background);
      padding: 5rem 0;
    }

    .categories-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .section-header {
      max-width: 42rem;
      margin-bottom: 4rem;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.875rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--foreground);
      text-wrap: balance;
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--muted-foreground);
    }

    .categories-grid {
      display: grid;
      gap: 1.5rem;
    }

    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
      background: var(--card);
      transition: all 0.5s;
    }

    .category-card:hover {
      border-color: hsla(43, 56%, 52%, 0.3);
      box-shadow: 0 25px 50px hsla(43, 56%, 52%, 0.05);
    }

    .category-card-image {
      position: relative;
      height: 16rem;
      overflow: hidden;
    }

    .category-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s;
    }

    .category-card:hover .category-card-image img {
      transform: scale(1.05);
    }

    .category-card-image .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--card), hsla(0, 0%, 7%, 0.6), transparent);
    }

    .category-card-content {
      position: relative;
      padding: 0 1.5rem 2rem;
    }

    .category-icon {
      width: 3rem;
      height: 3rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      border: 1px solid hsla(43, 56%, 52%, 0.2);
      background: hsla(43, 56%, 52%, 0.1);
    }

    .category-icon svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .category-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .category-card p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .category-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--gold);
      transition: color 0.3s;
    }

    .category-link:hover {
      color: var(--gold-light);
    }

    .category-link svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s;
    }

    .category-link:hover svg {
      transform: translateX(4px);
    }

    /* ===== SERVICE AREAS ===== */
    .service-areas {
      position: relative;
      background: var(--background);
      padding: 5rem 0;
    }

    .service-areas-divider {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    .service-areas-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .service-areas-grid {
      display: grid;
      gap: 3rem;
    }

    .availability-checker {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }

    .availability-checker input {
      flex: 1;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 12%, 0.5);
      font-size: 0.875rem;
      color: var(--foreground);
      outline: none;
      transition: all 0.3s;
    }

    .availability-checker input::placeholder {
      color: var(--muted-foreground);
    }

    .availability-checker input:focus {
      border-color: hsla(43, 56%, 52%, 0.5);
      box-shadow: 0 0 0 2px hsla(43, 56%, 52%, 0.1);
    }

    .check-result {
      margin-top: 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      display: none;
    }

    .check-result.available {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #34d399;
    }

    .check-result.unavailable {
      display: block;
      color: var(--muted-foreground);
    }

    .cities-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .city-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      border-radius: 0.75rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
      background: var(--card);
      transition: all 0.3s;
    }

    .city-card.active:hover {
      border-color: hsla(43, 56%, 52%, 0.3);
      box-shadow: 0 10px 40px hsla(43, 56%, 52%, 0.05);
    }

    .city-card.inactive {
      border-color: hsla(0, 0%, 16%, 0.3);
      background: hsla(0, 0%, 12%, 0.2);
      opacity: 0.6;
    }

    .city-icon {
      width: 2.25rem;
      height: 2.25rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
    }

    .city-card.active .city-icon {
      background: hsla(43, 56%, 52%, 0.1);
    }

    .city-card.inactive .city-icon {
      background: var(--secondary);
    }

    .city-icon svg {
      width: 16px;
      height: 16px;
    }

    .city-card.active .city-icon svg {
      color: var(--gold);
    }

    .city-card.inactive .city-icon svg {
      color: var(--muted-foreground);
    }

    .city-info {
      flex: 1;
      min-width: 0;
    }

    .city-info .name {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--foreground);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .city-info .province {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .city-card .chevron {
      width: 16px;
      height: 16px;
      color: var(--muted-foreground);
      transition: all 0.3s;
    }

    .city-card.active:hover .chevron {
      color: var(--gold);
      transform: translateX(2px);
    }

    .city-card .soon-badge {
      padding: 0.125rem 0.5rem;
      border-radius: 9999px;
      background: var(--secondary);
      font-size: 10px;
      font-weight: 500;
      color: var(--muted-foreground);
    }

    /* ===== CART SIDEBAR ===== */
    .cart-backdrop {
      position: fixed;
      inset: 0;
      z-index: 60;
      background: hsla(0, 0%, 4%, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .cart-backdrop.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 70;
      width: 100%;
      max-width: 28rem;
      display: flex;
      flex-direction: column;
      border-left: 1px solid var(--border);
      background: var(--card);
      box-shadow: -25px 0 50px rgba(0, 0, 0, 0.5);
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cart-sidebar.open {
      transform: translateX(0);
    }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
    }

    .cart-header-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .cart-header-left svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .cart-header-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--foreground);
    }

    .cart-count-badge {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: hsla(43, 56%, 52%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--gold);
    }

    .cart-close {
      width: 2.25rem;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      transition: background 0.3s;
    }

    .cart-close:hover {
      background: var(--secondary);
    }

    .cart-close svg {
      width: 20px;
      height: 20px;
      color: var(--muted-foreground);
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 1rem 1.5rem;
    }

    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5rem 0;
      text-align: center;
    }

    .cart-empty-icon {
      width: 4rem;
      height: 4rem;
      margin-bottom: 1rem;
      border-radius: 50%;
      background: var(--secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cart-empty-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--muted-foreground);
    }

    .cart-empty p:first-of-type {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.25rem;
    }

    .cart-empty p:last-of-type {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .cart-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      border-radius: 0.75rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
      background: hsla(0, 0%, 12%, 0.3);
      margin-bottom: 1rem;
      transition: background 0.3s;
    }

    .cart-item:hover {
      background: hsla(0, 0%, 12%, 0.5);
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-category {
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
    }

    .cart-item-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--foreground);
      margin-top: 0.125rem;
    }

    .cart-item-price {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-top: 0.25rem;
    }

    .cart-item-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
    }

    .cart-remove {
      width: 1.75rem;
      height: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.375rem;
      transition: all 0.3s;
    }

    .cart-remove:hover {
      background: hsla(0, 84.2%, 60.2%, 0.1);
    }

    .cart-remove svg {
      width: 14px;
      height: 14px;
      color: var(--muted-foreground);
    }

    .cart-remove:hover svg {
      color: var(--destructive);
    }

    .qty-controls {
      display: flex;
      align-items: center;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background: var(--card);
    }

    .qty-btn {
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }

    .qty-btn:first-child {
      border-radius: 0.5rem 0 0 0.5rem;
    }

    .qty-btn:last-child {
      border-radius: 0 0.5rem 0.5rem 0;
    }

    .qty-btn:hover {
      background: var(--secondary);
    }

    .qty-btn svg {
      width: 12px;
      height: 12px;
      color: var(--muted-foreground);
    }

    .qty-value {
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--foreground);
    }

    .cart-footer {
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
    }

    .cart-totals {
      margin-bottom: 1rem;
    }

    .cart-total-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .cart-total-row .label {
      color: var(--muted-foreground);
    }

    .cart-total-row .value {
      color: var(--foreground);
    }

    .cart-total-row.total {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid var(--border);
    }

    .cart-total-row.total .label {
      font-weight: 600;
    }

    .cart-total-row.total .value {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gold);
    }

    .cart-footer .btn-gold {
      width: 100%;
      text-align: center;
    }

    .cart-footer .legal {
      margin-top: 0.75rem;
      text-align: center;
      font-size: 11px;
      color: var(--muted-foreground);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      position: relative;
      border-top: 1px solid var(--border);
      background: var(--card);
      padding-bottom: 0;
      overflow: hidden;
    }

    .footer-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 1rem 1rem 0;
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
    }

    .footer-brand p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--muted-foreground);
      margin-bottom: 0.75rem;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      transition: color 0.3s;
    }

    .footer-contact a:hover {
      color: var(--gold);
    }

    .footer-contact a svg {
      width: 16px;
      height: 16px;
    }

    .footer-col h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: capitalize;
      color: var(--gold);
      margin-bottom: 0.85rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .footer-col a {
      font-size: 0.9rem;
      color: var(--foreground);
      transition: color 0.3s;
    }

    .footer-col a:hover {
      color: var(--gold);
    }

    .compliance-banner {
      margin-top: 1rem;
      padding: 1.25rem 1.5rem;
      border-radius: 0.75rem;
      border: 1px solid hsla(0, 0%, 16%, 0.5);
      background: hsla(0, 0%, 12%, 0.3);
    }

    .compliance-inner {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .compliance-icon {
      width: 2.25rem;
      height: 2.25rem;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background: hsla(43, 56%, 52%, 0.1);
    }

    .compliance-icon svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }

    .compliance-inner .title {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--foreground);
      margin-bottom: 0.25rem;
    }

    .compliance-inner .text {
      font-size: 0.75rem;
      line-height: 1.7;
      color: var(--muted-foreground);
    }

    .compliance-inner .text a {
      color: var(--gold);
    }

    .compliance-inner .text a:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer-bottom {
      margin-top: 0.5rem;
      padding-top: 0.5rem;
      padding-bottom: 0;
      margin-bottom: 0;
      border-top: 1px solid hsla(0, 0%, 16%, 0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: var(--muted-foreground);
      text-align: center;
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.75rem;
      color: var(--muted-foreground);
      transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
      color: var(--gold);
    }

    /* Mobile: center footer brand */
    .footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      align-self: start;
    }

    .footer-brand .logo {
      justify-content: center;
    }

    .footer-brand .footer-contact {
      align-items: center;
    }

    .footer-col {
      text-align: center;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    /* Desktop: left-align footer brand */
    @media (min-width: 768px) {
      .footer-brand {
        align-items: flex-start;
        text-align: left;
      }

      .footer-brand .logo {
        justify-content: flex-start;
      }

      .footer-brand .footer-contact {
        align-items: flex-start;
      }

      .footer-col {
        text-align: left;
      }

      .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    }

    /* ===== RESPONSIVE ===== */
    @media (min-width: 640px) {
      .hero h1 {
        font-size: 3rem;
      }

      .hero-buttons {
        flex-direction: row;
        gap: 1rem;
      }

      .age-gate-buttons {
        flex-direction: row;
        gap: 1rem;
      }

      .age-gate-card {
        padding: 3rem;
      }

      .age-gate-card h2 {
        font-size: 1.875rem;
      }
    }

    @media (min-width: 768px) {
      .navbar-inner {
        height: 5rem;
        padding: 0 2rem;
      }

      .nav-links {
        display: flex;
      }

      .nav-btn.account-btn {
        display: flex;
      }

      .menu-btn {
        display: none;
      }

      .mobile-menu {
        display: none !important;
      }

      .logo-text {
        font-size: 1.25rem;
      }

      .hero-inner {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 2rem;
      }

      .hero h1 {
        font-size: 3.5rem;
      }

      .hero p.subtitle {
        font-size: 1.125rem;
      }

      .categories {
        padding: 8rem 0;
      }

      .categories-inner {
        padding: 0 2rem;
      }

      .categories-grid {
        grid-template-columns: 1fr 1fr;
      }

      .category-card-image {
        height: 20rem;
      }

      .category-card-content {
        padding: 0 2rem 2rem;
      }

      .section-header h2 {
        font-size: 2.5rem;
      }

      .service-areas {
        padding: 8rem 0;
      }

      .service-areas-inner {
        padding: 0 2rem;
      }

      .service-areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }

      .footer-inner {
        padding: 4rem 2rem 5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        flex-direction: row;
      }
    }

    @media (min-width: 1024px) {
      .hero-inner {
        min-height: calc(100vh - 80px);
        padding-top: 0;
        padding-bottom: 0;
      }

      .hero h1 {
        font-size: 3.75rem;
      }

      .section-header h2 {
        font-size: 3rem;
      }

      .categories-grid {
        gap: 2rem;
      }

      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
      }

      .hero-floating-badge {
        left: -2rem;
      }
    }

    @media (min-width: 1280px) {
      .hero h1 {
        font-size: 4.5rem;
      }
    }

    /* ===== MOBILE COMPACT REFINEMENTS ===== */
    @media (max-width: 768px) {
      /* --- Navbar: more compact --- */
      .navbar-inner {
        height: 4.5rem;
        padding: 0 0.75rem;
      }
      .logo-img {
        max-height: 10rem;
      }
      .nav-btn {
        width: 2rem;
        height: 2rem;
      }
      .nav-btn svg {
        width: 16px;
        height: 16px;
      }
      .menu-btn svg {
        width: 18px;
        height: 18px;
      }

      /* --- Hero: tighter, smaller --- */
      .hero {
        min-height: auto;
        padding-top: 3.5rem;
      }
      .hero-inner {
        padding: 2rem 0.875rem;
        gap: 1.5rem;
      }
      .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
      }
      .hero p.subtitle {
        font-size: 0.825rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
      }
      .hero-badge {
        margin-bottom: 0.75rem;
        padding: 0.25rem 0.75rem;
      }
      .hero-badge span:last-child {
        font-size: 0.625rem;
      }
      .hero-buttons .btn-gold,
      .hero-buttons .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
      }

      /* --- Trust Badges: compact --- */
      .trust-badges {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
      }
      .trust-badge-icon {
        width: 1.75rem;
        height: 1.75rem;
      }
      .trust-badge-icon svg {
        width: 13px;
        height: 13px;
      }
      .trust-badge-text p:first-child {
        font-size: 0.675rem;
      }
      .trust-badge-text p:last-child {
        font-size: 9px;
      }

      /* --- Section spacing: tighter --- */
      .categories {
        padding: 2.5rem 0;
      }
      .section-header {
        margin-bottom: 2rem;
      }
      .section-header h2 {
        font-size: 1.4rem;
      }
      .section-header p {
        font-size: 0.8rem;
      }

      /* --- Category Cards: compact --- */
      .category-card {
        padding: 1.25rem;
      }
      .category-icon {
        width: 2.5rem;
        height: 2.5rem;
      }
      .category-icon svg {
        width: 20px;
        height: 20px;
      }
      .category-card h3 {
        font-size: 1.1rem;
      }
      .category-card p {
        font-size: 0.8rem;
        line-height: 1.5;
      }

      /* --- Product Cards: compact vertically --- */
      .product-card {
        padding: 1rem;
      }
      .product-card h3 {
        font-size: 1rem;
      }
      .product-card p {
        font-size: 0.775rem;
        line-height: 1.5;
      }
      .btn-gold, .btn-secondary {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
      }

      /* --- FAQ Section: compact --- */
      .faq-section {
        padding: 2.5rem 0;
      }
      .faq-section h2 {
        font-size: 1.4rem;
      }
      .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.825rem;
      }
      .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.8rem;
      }

      /* --- Footer: keep original single-column centered --- */
      .footer-brand {
        margin-top: -6rem !important;
      }
      .footer-brand .logo-img {
        max-height: 16rem;
        margin-bottom: 1rem;
      }
      .footer-inner {
        padding: 0 1rem 2.5rem;
      }
      .footer-brand p {
        font-size: 0.8rem;
      }
      .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
      }
      .footer-col a {
        font-size: 0.8rem;
      }
      .footer-contact a {
        font-size: 0.8rem;
      }

      /* --- Compliance Banner: compact --- */
      .compliance-banner {
        padding: 1rem;
      }
      .compliance-inner h4 {
        font-size: 0.7rem;
      }
      .compliance-inner p {
        font-size: 0.7rem;
        line-height: 1.5;
      }

      /* --- Footer SEO / Popular Searches: compact --- */
      .footer-seo {
        padding: 1.5rem 0;
      }
      .footer-seo h3 {
        font-size: 1.1rem;
      }
      .footer-seo a {
        font-size: 0.775rem;
      }

      /* --- Copyright footer: compact --- */
      .footer-bottom {
        padding: 1rem;
      }
      .footer-bottom p {
        font-size: 0.7rem;
      }

      /* --- Age Gate: slightly smaller --- */
      .age-gate-card {
        padding: 1.5rem;
        margin: 0 0.75rem;
      }
      .age-gate-card h2 {
        font-size: 1.25rem;
      }
      .age-gate-card .desc {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
      }
      .age-gate-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
      }

      /* --- Floating phone button: slightly smaller --- */
      .phone-float,
      .phone-fab {
        width: 3rem;
        height: 3rem;
        bottom: 1rem;
        right: 1rem;
      }
      .phone-float svg,
      .phone-fab svg {
        width: 18px;
        height: 18px;
      }
    }