/* ============================================================
   Blue Salt Restaurant – Main Stylesheet
   Colors: Deep Blue #0A1F5C, Bright Blue #1A3FBF, Gold #D4AF37
   ============================================================ */

:root {
  --blue-dark: #0A1F5C;
  --blue-mid: #1A3FBF;
  --blue-light: #2D5BE3;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-light: #E8ECF4;
  --gray-mid: #8892A4;
  --gray-dark: #2C3345;
  --text-dark: #1A1D2E;
  --text-body: #3D4155;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10,31,92,0.12);
  --shadow-lg: 0 8px 40px rgba(10,31,92,0.18);
  --transition: 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.25; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- LANGUAGE BAR ---- */
.lang-bar {
  background: var(--blue-dark);
  padding: 6px 0;
  text-align: right;
}
.lang-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--gold);
  background: rgba(212,175,55,0.15);
}
.lang-sep { color: var(--gray-mid); font-size: 0.75rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-logo img { height: 160px; width: auto; max-width: 260px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.btn-order {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-order:hover {
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  transform: translateY(-2px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn-sm:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}
.btn-reserve {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(212,175,55,0.55);
  animation: pulse-gold 2s infinite;
}
.btn-reserve:hover {
  background: var(--gold-light);
  color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.65);
  animation: none;
}
@keyframes pulse-gold {
  0%   { box-shadow: 0 4px 18px rgba(212,175,55,0.55); }
  50%  { box-shadow: 0 4px 28px rgba(212,175,55,0.9), 0 0 0 6px rgba(212,175,55,0.18); }
  100% { box-shadow: 0 4px 18px rgba(212,175,55,0.55); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/Banner(3).webp') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,92,0.82) 0%, rgba(26,63,191,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 24px;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- HIGHLIGHTS BAR ---- */
.highlights-bar {
  background: var(--blue-dark);
  padding: 20px 0;
}
.highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hi-icon { font-size: 1.4rem; }

/* ---- SECTION COMMON ---- */
.section-pad { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-pad h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--text-dark);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ---- ABOUT ---- */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-text p {
  color: var(--text-body);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-detail { display: flex; flex-direction: column; gap: 2px; }
.about-detail strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-mid); }
.about-detail span, .about-detail a { font-size: 0.95rem; color: var(--text-body); }

/* ---- MENU SECTION ---- */
.menu-section { background: var(--white); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-light);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover img { transform: scale(1.05); }
.menu-card-body { padding: 20px; }
.menu-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}
.menu-card.no-img .menu-card-body { padding: 28px; }
.menu-card.no-img {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-light) 100%);
  display: flex;
  align-items: center;
}
.menu-cta { text-align: center; margin-top: 16px; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--blue-dark); }
.gallery-section .section-tag { background: rgba(212,175,55,0.2); }
.gallery-section h2 { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,0.7); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,92,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Playfair Display', serif;
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,31,92,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-box img { width: 100%; max-height: 70vh; object-fit: contain; background: #000; }
.modal-box p {
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---- MUST-TRY ---- */
.must-try { background: var(--off-white); }
.must-try-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.mt-img-wrap { overflow: hidden; }
.mt-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mt-card:hover .mt-img-wrap img { transform: scale(1.06); }
.mt-body { padding: 24px; }
.mt-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.mt-badge-chef { background: var(--blue-mid); color: var(--white); }
.mt-badge-new { background: #2ECC71; color: var(--white); }
.mt-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.mt-body p { font-size: 0.92rem; color: var(--gray-mid); margin-bottom: 20px; }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
}
.faq-q:hover { color: var(--blue-mid); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-mid);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding-bottom: 20px;
  color: var(--text-body);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.cd-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a { font-size: 0.97rem; color: var(--text-body); }
.social-links { display: flex; gap: 14px; margin-top: 32px; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--text-dark); transform: translateY(-3px); }
.social-link svg { width: 20px; height: 20px; }
.social-link i { font-size: 18px; line-height: 1; }
.contact-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ---- FOOTER ---- */
.footer { background: var(--blue-dark); color: var(--white); padding: 64px 0 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 100px; margin-bottom: 16px; background: white; border-radius: 8px; padding: 6px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-tagline-bold { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.9) !important; margin-top: 8px; }
.footer-tagline-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6) !important; font-style: italic; margin-top: 4px; }
.footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.92rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--gold); }
.footer-social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.footer-social-links a:hover { background: var(--gold); color: var(--text-dark); transform: translateY(-3px); }
.footer-social-links svg { width: 18px; height: 18px; }
.footer-social-links i { font-size: 16px; line-height: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-policy-link { color: rgba(255,255,255,0.75) !important; text-decoration: underline !important; font-weight: 600; }
.footer-policy-link:hover { color: var(--gold) !important; }
.footer-powered { font-size: 0.82rem; color: rgba(255,255,255,0.4) !important; }
.footer-powered a { color: rgba(255,255,255,0.6) !important; font-weight: 600; }
.footer-powered a:hover { color: var(--gold) !important; }

/* ---- FADE-IN ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .must-try-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 10px 20px; }
  .nav-logo img { height: 130px; width: auto; max-width: 220px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.4rem; }
  .section-pad { padding: 64px 0; }
  .must-try-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-inner { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 110px; width: auto; max-width: 200px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ── LOYALTY POPUP ─────────────────────────────────────────────────────── */
.loyalty-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.loyalty-overlay.active { display: flex; }
.loyalty-modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: loyaltyIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes loyaltyIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.loyalty-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.loyalty-close:hover { color: #333; }
.loyalty-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 18px;
  display: block;
}
.loyalty-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.loyalty-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}
.loyalty-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.loyalty-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.loyalty-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.loyalty-btn-blue {
  background: var(--blue-dark);
  color: #fff;
}
@media (max-width: 480px) {
  .loyalty-modal { padding: 32px 22px 28px; }
  .loyalty-title { font-size: 1.4rem; }
  .loyalty-btn { padding: 12px 24px; font-size: 0.95rem; }
}
