@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

  * {
    box-sizing: border-box;
  }

  /* ── Navbar ── */
  .lux-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: rgba(12, 44, 23, 0.97);
    /* Deep Green */
    border-bottom: 1px solid rgba(211, 159, 60, 0.2);
    /* Gold border */
    transition: box-shadow 0.3s ease;
  }

  .lux-nav::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(211, 159, 60, 0.4), transparent);
  }

  .lux-nav.scrolled {
    box-shadow: 0 4px 24px rgba(12, 44, 23, 0.6);
    /* Deep Green shadow */
  }

  .lux-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* ── Brand ── */
  .lux-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .lux-brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(211, 159, 60, 0.4);
    padding: 2px;
    transition: border-color 0.3s;
  }

  .lux-brand:hover .lux-brand-logo {
    border-color: #d39f3c;
    /* Gold */
  }

  .lux-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f5f0e8;
    white-space: nowrap;
    transition: color 0.3s;
    display: none;
  }

  /* ── Desktop Links ── */
  .lux-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .lux-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b4c5b9;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
  }

  .lux-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: #d39f3c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .lux-links a:hover,
  .lux-links a.active {
    color: #f5f0e8;
  }

  .lux-links a:hover::after,
  .lux-links a.active::after {
    transform: scaleX(1);
  }

  /* Phone CTA button */
  .lux-phone-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b4c5b9 !important;
    text-decoration: none;
    border: 1px solid rgba(180, 197, 185, 0.3);
    padding: 8px 14px !important;
    border-radius: 2px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
  }

  .lux-phone-btn::after {
    display: none !important;
  }

  .lux-phone-btn:hover {
    background: rgba(245, 240, 232, 0.05);
    border-color: #f5f0e8;
    color: #f5f0e8 !important;
  }

  /* Luxury "Book Now" Button */
  .lux-book-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0c2c17 !important;
    background: #d39f3c;
    text-decoration: none;
    border: 1px solid #d39f3c;
    padding: 8px 16px !important;
    border-radius: 2px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
  }

  .lux-book-btn::after {
    display: none !important;
  }

  .lux-book-btn:hover {
    background: #c39230;
    border-color: #c39230;
    color: #ffffff !important;
  }

  .lux-book-btn:active {
    transform: scale(0.97);
  }

  .lux-cart-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f5f0e8 !important;
    background: rgba(245, 240, 232, 0.06);
    text-decoration: none;
    border: 1px solid rgba(211, 159, 60, 0.35);
    padding: 8px 10px !important;
    border-radius: 2px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
    white-space: nowrap;
    position: relative;
  }

  .lux-cart-btn::after {
    display: none !important;
  }

  .lux-cart-btn:hover {
    background: rgba(211, 159, 60, 0.1);
    border-color: #d39f3c;
    color: #ffffff !important;
  }

  .lux-cart-btn:active {
    transform: scale(0.97);
  }

  .lux-cart-label {
    display: none;
  }

  .lux-cart-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #d39f3c;
    color: #0c2c17;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }

  /* ── Mobile Hamburger ── */
  .lux-hamburger {
    display: none;
    background: transparent;
    border: 1px solid rgba(211, 159, 60, 0.4);
    color: #d39f3c;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
  }

  .lux-hamburger:hover {
    background: rgba(211, 159, 60, 0.1);
  }

  /* ── Overlay ── */
  .lux-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(0.5px);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .lux-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* ── Mobile Drawer ── */
  .lux-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    /* Made slightly wider to accommodate larger text */
    max-width: 85vw;
    height: 100%;
    background: #0c2c17;
    border-right: 1px solid rgba(211, 159, 60, 0.15);
    z-index: 1070;
    transform: translateX(-100%);
    transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
  }

  .lux-drawer.open {
    transform: translateX(0);
  }

  .lux-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #d39f3c, transparent 60%);
  }

  .lux-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(211, 159, 60, 0.12);
  }

  .lux-drawer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5f0e8;
  }

  .lux-drawer-close {
    background: transparent;
    border: 1px solid rgba(211, 159, 60, 0.35);
    color: #d39f3c;
    width: 34px;
    height: 34px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
  }

  .lux-drawer-close:hover {
    background: rgba(211, 159, 60, 0.1);
  }

  /* UPDATED: More Apparent Links & Icons */
  .lux-drawer-links {
    padding: 20px 0;
  }

  .lux-drawer-links a {
    display: flex;
    align-items: center;
    gap: 18px;
    /* Bigger gap between icon and text */
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    /* Significantly larger text */
    font-weight: 500;
    letter-spacing: 2px;
    /* Adjusted tracking for larger text */
    text-transform: uppercase;
    color: #f5f0e8;
    /* Brighter text color */
    text-decoration: none;
    padding: 16px 24px;
    /* Larger tap area */
    border-bottom: 1px solid rgba(211, 159, 60, 0.1);
    /* Slightly more visible separator */
    transition: color 0.3s, padding-left 0.3s, background 0.3s;
  }

  .lux-drawer-links a i {
    color: #d39f3c;
    /* Solid Gold icons for high visibility */
    width: 24px;
    font-size: 1.3rem;
    /* Much larger icons */
    text-align: center;
  }

  .lux-drawer-links a:hover,
  .lux-drawer-links a.active {
    color: #ffffff;
    padding-left: 32px;
    background: rgba(211, 159, 60, 0.08);
  }

  /* UPDATED: Book Now stands out as a solid button */
  .lux-drawer-links a.lux-drawer-book {
    background: #d39f3c;
    color: #0c2c17;
    font-weight: 600;
    margin: 15px 24px;
    border-radius: 4px;
    justify-content: center;
    border: none;
    padding: 15px 24px;
  }

  .lux-drawer-links a.lux-drawer-book i {
    color: #0c2c17;
  }

  .lux-drawer-links a.lux-drawer-book:hover {
    background: #c39230;
    color: #ffffff;
    padding-left: 24px;
    /* Disable the sliding hover effect for this specific button */
  }

  .lux-drawer-links a.lux-drawer-book:hover i {
    color: #ffffff;
  }

  .lux-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(211, 159, 60, 0.1);
    margin-top: 8px;
  }

  .lux-drawer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
  }

  .lux-drawer-social a {
    width: 38px;
    height: 38px;
    /* Larger social buttons */
    border-radius: 50%;
    border: 1px solid rgba(211, 159, 60, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d39f3c;
    /* Gold icons */
    font-size: 1rem;
    /* Larger icon size */
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }

  .lux-drawer-social a:hover {
    background: #d39f3c;
    border-color: #d39f3c;
    color: #0c2c17;
  }

  .lux-drawer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .lux-drawer-info i {
    color: #d39f3c;
    font-size: 1.1rem;
    /* Larger info icons */
    margin-top: 2px;
  }

  .lux-drawer-info span {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    /* Larger text */
    font-weight: 400;
    /* Increased weight for readability */
    color: #f5f0e8;
    line-height: 1.6;
  }

  /* ── Responsive ── */
  @media (max-width: 991px) {
    .lux-links {
      display: none;
    }

    .lux-hamburger {
      display: flex;
    }

    .lux-nav-inner {
      padding: 0 20px;
    }
  }

  @media (max-width: 1280px) {
    .lux-phone-btn {
      display: none;
    }
  }