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

:root {
  --bg-primary: #080a0f;
  --bg-secondary: #0f1118;
  --bg-tertiary: #151820;
  --bg-card: rgba(18, 22, 32, 0.78);
  --bg-glass: rgba(12, 15, 22, 0.68);
  --gold-primary: #c9a87c;
  --gold-light: #e8cfa0;
  --gold-dark: #8a6c44;
  --gold-gradient: linear-gradient(135deg, #e8cfa0 0%, #c9a87c 50%, #8a6c44 100%);
  --gold-glow: rgba(201, 168, 124, 0.22);
  --silver-accent: #8a9bb0;
  --text-main: #f0f2f5;
  --text-muted: #8a9bb0;
  --text-subtle: #5a6475;
  --border-light: rgba(201, 168, 124, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: clip;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif,
.section-title,
.hero-title {
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

h1+p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 820px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.text-gold {
  color: var(--gold-primary) !important;
}

.text-silver {
  color: var(--silver-accent) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-subtle {
  color: var(--text-subtle) !important;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-charcoal-1 {
  background-color: var(--bg-primary);
}

.bg-charcoal-2 {
  background-color: var(--bg-secondary);
}

.bg-charcoal-3 {
  background-color: var(--bg-tertiary);
}

.max-w-700 {
  max-width: 700px;
}

.max-w-900 {
  max-width: 900px;
}

/* ===================== HEADER ===================== */
.primeaussiedining-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(8, 10, 15, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.primeaussiedining-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 124, 0.3));
}

.primeaussiedining-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

.primeaussiedining-nav ul li a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.35rem 0.2rem;
  position: relative;
}

.primeaussiedining-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.primeaussiedining-nav ul li a:hover::after,
.primeaussiedining-nav ul li a.active::after {
  width: 100%;
}

.primeaussiedining-nav ul li a:hover {
  color: var(--gold-light);
}

.primeaussiedining-contacts {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.primeaussiedining-contacts div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.primeaussiedining-contacts i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.primeaussiedining-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--gold-primary);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.primeaussiedining-burger:hover {
  background: rgba(201, 168, 124, 0.12);
  color: var(--gold-light);
}

.primeaussiedining-mobile-menu {
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  height: calc(100vh - 73px);
  background: rgba(8, 10, 15, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1040;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  overflow-y: auto;
  border-top: 1px solid var(--border-light);
}

.primeaussiedining-mobile-menu.open {
  display: flex;
}

.primeaussiedining-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.primeaussiedining-mobile-nav ul li a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-main);
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.primeaussiedining-mobile-nav ul li a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.primeaussiedining-mobile-contacts {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.primeaussiedining-mobile-contacts div {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.primeaussiedining-mobile-contacts i {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===================== FOOTER ===================== */
.primeaussiedining-footer {
  background: #050609;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links li a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 3px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-social-icons a:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--gold-glow);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.footer-compliance-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.1rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-accordion .footer-accordion-btn {
  display: none;
}

/* ===================== BUTTONS ===================== */
.luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.luxury-btn-gold {
  background: var(--gold-gradient);
  color: #08090d;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.luxury-btn-gold:hover {
  background: linear-gradient(135deg, #ffffff 0%, #c9a87c 100%);
  color: #040506;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 124, 0.38);
}

.luxury-btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-light);
}

.luxury-btn-outline:hover {
  background: rgba(201, 168, 124, 0.1);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================== CARDS ===================== */
.luxury-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.luxury-card:hover::before {
  background: var(--gold-gradient);
}

.luxury-card-gold {
  border-color: var(--border-light);
  background: radial-gradient(circle at top right, rgba(201, 168, 124, 0.09) 0%, rgba(15, 17, 24, 0.92) 100%);
}

/* ===================== SECTIONS ===================== */
.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.8rem;
  border-radius: 30px;
  background: rgba(201, 168, 124, 0.07);
  border: 1px solid rgba(201, 168, 124, 0.22);
}

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

.hero-split-frame {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.hero-media-box {
  min-height: 480px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

.hero-media-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 124, 0.12);
  border-radius: 10px;
  pointer-events: none;
}

/* ===================== BADGES ===================== */
.badge-gold {
  background: rgba(201, 168, 124, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 124, 0.3);
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  border-radius: 3px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ===================== TICKER ===================== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #060709;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.1rem 0;
  white-space: nowrap;
}

.ticker-move {
  display: inline-block;
  animation: ticker 36s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.ticker-item i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===================== IMAGE FRAMES ===================== */
.image-frame-luxury {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

/* ===================== QUOTE ===================== */
.quote-block-luxury {
  border-left: 2px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(201, 168, 124, 0.04);
  border-radius: 0 6px 6px 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 0.5rem;
  font-style: normal;
}

/* ===================== STATS ===================== */
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===================== ACCORDION ===================== */
.accordion-luxury .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle) !important;
  border-radius: 8px !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-luxury .accordion-item:hover {
  border-color: var(--border-light) !important;
}

.accordion-luxury .accordion-button {
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1.3rem 1.5rem;
  box-shadow: none !important;
}

.accordion-luxury .accordion-button:not(.collapsed) {
  color: var(--gold-light);
  background: rgba(201, 168, 124, 0.05);
}

.accordion-luxury .accordion-button::after {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(2deg);
}

.accordion-luxury .accordion-body {
  padding: 1.2rem 1.5rem 1.7rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.82;
  border-top: 1px solid var(--border-subtle);
}

/* ===================== TABLE ===================== */
.table-luxury {
  width: 100%;
  color: var(--text-main);
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
}

.table-luxury th {
  background: rgba(201, 168, 124, 0.09);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.table-luxury td {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.table-luxury tr:last-child td {
  border-bottom: none;
}

.table-luxury tr:hover td {
  background: rgba(201, 168, 124, 0.04);
  color: var(--text-main);
}

/* ===================== FORMS ===================== */
.form-control-luxury {
  background: rgba(15, 17, 24, 0.88);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  color: var(--text-main);
  padding: 0.82rem 1.1rem;
  font-size: 0.93rem;
  transition: var(--transition-smooth);
  width: 100%;
  font-family: var(--font-sans);
}

.form-control-luxury:focus {
  background: rgba(20, 23, 32, 0.96);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.15);
  color: #ffffff;
  outline: none;
}

.form-control-luxury.is-invalid {
  border-color: #c0392b;
}

.form-control-luxury::placeholder {
  color: var(--text-subtle);
}

.form-label-luxury {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  display: block;
}

.form-check-input-luxury {
  background-color: rgba(15, 17, 24, 0.88);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  accent-color: var(--gold-primary);
}

.form-check-input-luxury:checked {
  background-color: var(--gold-primary);
  border-color: var(--gold-light);
}

/* ===================== ALERTS ===================== */
.custom-alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.custom-alert-success {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.4);
  color: #6fcf97;
}

.custom-alert-danger {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: #e57373;
}

/* ===================== SPINNER ===================== */
.spinner-luxury {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: #0a0a0f;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ===================== MENU FILTERS ===================== */
.menu-filter-pill {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-filter-pill:hover,
.menu-filter-pill.active {
  background: var(--gold-gradient);
  color: #08090d;
  border-color: var(--gold-light);
  font-weight: 600;
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* ===================== DISH CARDS ===================== */
.dish-grid-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.6rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dish-grid-card:hover,
.dish-grid-card.selected {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  background: radial-gradient(circle at top, rgba(201, 168, 124, 0.07), var(--bg-card));
}

.dish-detail-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

/* ===================== COOKIE BANNER ===================== */
.cookie-box-luxury {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 99999;
  display: none;
  background: rgba(12, 14, 20, 0.97);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 124, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  backdrop-filter: blur(16px);
}

/* ===================== STEP INDICATOR ===================== */
.step-indicator-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-indicator-dot {
  flex: 1;
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.step-indicator-dot.active {
  background: var(--gold-gradient);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ===================== COUNTDOWN / JACKPOT ===================== */
.jackpot-counter {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(201, 168, 124, 0.5);
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  min-width: 80px;
  display: block;
  text-align: center;
  line-height: 1.2;
}

.countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 0.4rem;
}

/* ===================== TABS ===================== */
.luxury-tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.luxury-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: -1px;
}

.luxury-tab-btn:hover {
  color: var(--gold-primary);
}

.luxury-tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-primary);
}

.luxury-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.luxury-tab-content.active {
  display: block;
}

/* ===================== MAP EMBED ===================== */
.map-frame-luxury {
  width: 100%;
  min-height: 320px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.map-frame-luxury iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) contrast(0.85) saturate(0.8);
}

/* ===================== LEADERBOARD ===================== */
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 0.6rem;
  transition: var(--transition-smooth);
}

.leaderboard-row:hover {
  border-color: var(--border-light);
  background: rgba(201, 168, 124, 0.04);
}

.leaderboard-rank {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-primary);
  min-width: 36px;
  text-align: center;
}

.leaderboard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--bg-tertiary));
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ===================== PRICING CARDS ===================== */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--border-light);
  background: radial-gradient(circle at top right, rgba(201, 168, 124, 0.1) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 0 1px rgba(201, 168, 124, 0.2);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin: 1rem 0 0.4rem;
}

/* ===================== SERVICE CARDS ===================== */
.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 124, 0.07);
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.luxury-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #08090d;
  border-color: var(--gold-light);
}

/* ===================== BG GLASS ===================== */
.bg-glass {
  background: rgba(8, 10, 15, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ===================== MEMBERSHIP CARD ===================== */
.black-card-visual {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(201, 168, 124, 0.3) inset;
}

.black-card-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===================== COCKTAIL BUILDER ===================== */
.cocktail-option {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cocktail-option:hover,
.cocktail-option.selected {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(201, 168, 124, 0.07);
}

.cocktail-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

/* ===================== CHIP SCROLL ===================== */
.chip-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.chip-scroll::-webkit-scrollbar {
  display: none;
}

.chip-item {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.chip-item.active,
.chip-item:hover {
  background: var(--gold-gradient);
  color: #08090d;
  border-color: var(--gold-light);
  font-weight: 600;
}

/* ===================== BLOG CARDS ===================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-tertiary);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===================== WORLD MAP DOTS ===================== */
.partner-city {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.partner-city:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 124, 0.06);
}

.partner-city .city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 124, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 168, 124, 0);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .primeaussiedining-nav ul {
    gap: 1rem;
  }

  .primeaussiedining-contacts {
    display: none;
  }
}

@media (max-width: 992px) {
  .primeaussiedining-nav {
    display: none;
  }

  .primeaussiedining-burger {
    display: flex;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .primeaussiedining-header {
    padding: 0.75rem 1.25rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .cookie-box-luxury {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 1.2rem;
  }

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

  .footer-accordion .footer-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0;
  }

  .footer-accordion .footer-links {
    display: none;
    margin-top: 0.75rem;
  }

  .footer-accordion.open .footer-links {
    display: flex;
  }

  .footer-accordion.open .footer-accordion-btn i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .footer-title {
    display: none;
  }

  .leaderboard-row {
    flex-wrap: wrap;
  }

  .countdown-num {
    min-width: 60px;
    padding: 0.4rem 0.6rem;
  }

  .jackpot-counter {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .luxury-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .luxury-card {
    padding: 1.5rem;
  }
}