:root {
  --primary: #d4618f;
  --primary-dark: #b84879;
  --primary-light: #f8dfe8;
  --primary-glow: rgba(212,97,143,0.25);
  --primary-neon: rgba(212,97,143,0.5);
  --gold: #c9a84c;
  --gold-dark: #b08f3a;
  --gold-light: #f0e2b8;
  --gold-glow: rgba(201,168,76,0.35);
  --gold-neon: rgba(201,168,76,0.5);
  --diamond: rgba(255,255,255,0.9);
  --secondary: #2c2c2c;
  --bg: #fffafb;
  --bg-card: #ffffff;
  --text: #2c2c2c;
  --text-light: #999;
  --text-white: #ffffff;
  --shadow: 0 2px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 15px 50px rgba(0,0,0,0.13);
  --neon-pink: 0 0 15px rgba(212,97,143,0.3), 0 0 40px rgba(212,97,143,0.1);
  --neon-gold: 0 0 15px rgba(201,168,76,0.3), 0 0 40px rgba(201,168,76,0.1);
  --neon-soft: 0 0 8px rgba(212,97,143,0.15), 0 0 20px rgba(201,168,76,0.08);
  --radius: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --nav-height: 70px;
  --header-height: 65px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background: url('../assets/bg-institut.png') center/cover no-repeat;
  background-attachment: fixed;
  image-rendering: auto;
  -webkit-image-rendering: auto;
}

.hidden { display: none !important; }

/* ========== SPARKLE PARTICLES ========== */
.sparkle-container {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
}
.sparkle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: white; opacity: 0;
  animation: sparkleFloat 3s ease-in-out infinite;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.6), 0 0 12px rgba(201,168,76,0.3);
}
.sparkle::before {
  content: ''; position: absolute; top: -1px; left: 50%; width: 1px; height: 6px;
  background: linear-gradient(transparent, white, transparent); transform: translateX(-50%);
}
.sparkle::after {
  content: ''; position: absolute; left: -1px; top: 50%; width: 6px; height: 1px;
  background: linear-gradient(transparent, white, transparent); transform: translateY(-50%);
}
@keyframes sparkleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 1; transform: translateY(-10px) scale(1); }
  80% { opacity: 0.8; transform: translateY(-40px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-60px) scale(0); }
}

/* Diamond shapes */
.diamond-deco {
  position: absolute; width: 8px; height: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(201,168,76,0.5));
  transform: rotate(45deg); opacity: 0.6;
  box-shadow: 0 0 8px rgba(201,168,76,0.4), 0 0 3px rgba(255,255,255,0.8);
  animation: diamondPulse 2s ease-in-out infinite alternate;
}
@keyframes diamondPulse {
  0% { opacity: 0.4; box-shadow: 0 0 6px rgba(201,168,76,0.3); }
  100% { opacity: 0.8; box-shadow: 0 0 12px rgba(201,168,76,0.6), 0 0 4px rgba(255,255,255,0.9); }
}

/* Rhinestone dots */
.rhinestone {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, white, var(--gold-light), var(--gold));
  box-shadow: 0 0 4px rgba(201,168,76,0.5), inset 0 -1px 2px rgba(0,0,0,0.1);
  margin: 0 3px;
}

/* Glitter shimmer overlay */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-effect {
  position: relative; overflow: hidden;
}
.shimmer-effect::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 60%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

/* ========== SPLASH ========== */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: url('../assets/bg-institut.png') center/cover no-repeat #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.splash.fade-out { opacity: 0; pointer-events: none; }
.splash-content { text-align: center; color: var(--text); position: relative; }
.splash-logo-img {
  width: 140px; height: 140px; margin: 0 auto 16px; display: block;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(201,168,76,0.6);
  box-shadow: 0 0 30px rgba(201,168,76,0.3), 0 0 60px rgba(212,97,143,0.15);
  animation: logoBreath 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212,97,143,0.2)) drop-shadow(0 0 40px rgba(201,168,76,0.15));
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(212,97,143,0.2)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 30px rgba(212,97,143,0.35)) drop-shadow(0 0 50px rgba(201,168,76,0.2)); }
}
.splash-text-overlay {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(8px);
  padding: 10px 24px; border-radius: 12px;
  display: inline-block;
}
.splash-content h1 {
  font-size: 14px; margin-bottom: 4px; font-family: var(--font-body);
  letter-spacing: 4px; text-transform: uppercase; font-weight: 500;
  color: var(--gold);
}
.splash-content p {
  font-size: 13px; color: var(--text-light); font-weight: 300;
  margin: 0;
}
.splash-loader {
  width: 60px; height: 4px; background: var(--primary-light);
  border-radius: 4px; margin: 25px auto 0; overflow: hidden;
  position: relative; box-shadow: var(--neon-soft);
}
.splash-loader::after {
  content: ''; position: absolute; left: -60px; top: 0;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  border-radius: 4px; animation: loaderSlide 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--gold-glow);
}
@keyframes loaderSlide { 0% { left: -60px; } 100% { left: 100%; } }
.splash-sparkles { position: absolute; inset: -50px; pointer-events: none; }

/* ========== HEADER ========== */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-height);
  background: #ffffff;
  color: var(--text); z-index: 100;
  display: flex; align-items: center; padding: 0 16px;
  box-shadow: none;
  border-bottom: none;
  isolation: isolate;
}
.header-content { display: flex; align-items: center; gap: 12px; width: 100%; }
.header-logo-img {
  height: 40px; width: auto; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(212,97,143,0.15));
}
.header-info { flex: 1; }
.header-info h1 {
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--secondary);
  position: relative; display: inline-block;
}
.header-info p { font-size: 11px; color: var(--text-light); font-weight: 300; }

/* Hamburger button */
.menu-burger {
  background: none; border: none; cursor: pointer; padding: 8px;
  display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.menu-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--secondary); transition: all 0.3s;
}
.menu-burger:hover span { background: var(--primary); }

/* Side overlay */
.side-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
  animation: fadeIn 0.3s ease;
}

/* Side menu */
.side-menu {
  position: fixed; top: 0; right: -300px; bottom: 0; width: 280px;
  background: #ffffff; z-index: 200;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-menu.open { right: 0; }

.side-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid rgba(212,97,143,0.08);
}
.side-logo { height: 45px; width: auto; }
.side-close {
  background: none; border: none; font-size: 20px; color: var(--text-light);
  cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.side-close:hover { background: rgba(212,97,143,0.06); color: var(--primary); }

.side-menu-links {
  flex: 1; padding: 12px 0; overflow-y: auto;
}
.side-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; font-size: 15px; font-weight: 500;
  color: var(--secondary); cursor: pointer; transition: all 0.2s;
  text-decoration: none; font-family: var(--font-body);
}
.side-link i {
  width: 36px; height: 36px; border-radius: 12px;
  background: rgba(212,97,143,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--primary); transition: all 0.3s;
}
.side-link:hover {
  background: rgba(212,97,143,0.04);
}
.side-link:hover i {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; box-shadow: 0 4px 12px rgba(212,97,143,0.2);
}
.side-divider {
  height: 1px; margin: 8px 24px;
  background: linear-gradient(90deg, transparent, rgba(212,97,143,0.12), transparent);
}
.side-section-label {
  padding: 10px 24px 2px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary);
  font-family: var(--font-body);
}

.side-menu-footer {
  padding: 20px 24px; border-top: 1px solid rgba(212,97,143,0.08);
  text-align: center;
}
/* Navigation choice modal */
.modal-nav {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  text-align: center; max-width: 320px; width: 90%; animation: modalIn 0.3s ease;
}
.modal-nav h3 {
  font-size: 18px; font-family: var(--font-display); color: var(--secondary);
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.modal-nav h3 i { color: var(--primary); }
.nav-choices { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.nav-choice {
  background: none; border: 2px solid rgba(212,97,143,0.1); border-radius: 16px;
  padding: 20px 24px; cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-body); flex: 1;
}
.nav-choice:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,97,143,0.15); }
.nav-choice-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
}
.nav-choice-icon.gmaps { background: linear-gradient(135deg, #4285f4, #34a853); }
.nav-choice-icon.waze { background: linear-gradient(135deg, #33ccff, #05b5f0); }
.nav-choice span { font-size: 13px; font-weight: 600; color: var(--secondary); }
.btn-nav-cancel {
  background: none; border: none; color: var(--text-light); font-size: 14px;
  font-weight: 500; cursor: pointer; padding: 8px 20px; font-family: var(--font-body);
  transition: color 0.2s;
}
.btn-nav-cancel:hover { color: var(--primary); }

.side-menu-footer p {
  font-size: 13px; font-weight: 600; color: var(--secondary);
  font-family: var(--font-display);
}
.side-menu-footer span { font-size: 11px; color: var(--text-light); }

/* ========== BOTTOM NAV ========== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: var(--nav-height);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(15px);
  display: flex; z-index: 100;
  box-shadow: 0 -1px 20px rgba(212,97,143,0.06);
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(212,97,143,0.06);
}
.nav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; border: none; background: none;
  color: #ccc; font-size: 10px; cursor: pointer;
  transition: all 0.3s; position: relative; font-family: var(--font-body); font-weight: 500;
}
.nav-btn i { font-size: 19px; transition: all 0.3s; }
.nav-btn.active { color: var(--primary); }
.nav-btn.active i {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 0 6px var(--primary-neon));
}
.nav-btn.active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px var(--primary-neon);
}

/* ========== MAIN ========== */
.app-main { padding-top: var(--header-height); padding-bottom: var(--nav-height); min-height: 100vh; }
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ========== HERO SLIDER ========== */
.hero-slider { position: relative; height: 400px; overflow: hidden; }
.hero-slides { position: relative; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.8s ease;
  background-color: #1a1024;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.slide-content {
  text-align: center; color: white; padding: 20px;
  max-width: 500px; animation: slideContentIn 0.8s ease;
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; height: 85%;
}
@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-badge {
  display: inline-block; padding: 6px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: auto;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 15px rgba(255,255,255,0.05), inset 0 0 15px rgba(255,255,255,0.05);
}
.slide-content h2 {
  font-size: 38px; font-weight: 700; margin-bottom: auto;
  font-family: var(--font-display); line-height: 1.3;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}
.slide-content h2 span {
  background: linear-gradient(90deg, #ffffff, #ff7eb3, #ffcf48, #ff7eb3, #ffffff);
  background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTextShine 5s ease-in-out infinite;
}
@keyframes heroTextShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.slide-content p {
  font-size: 15px; opacity: 0.95; margin-bottom: 24px;
  font-weight: 300; line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.slide-content p span {
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
  padding: 2px 12px; border-radius: 6px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.btn-hero {
  background: rgba(255,255,255,0.95); color: var(--primary-dark); border: none;
  padding: 14px 34px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), var(--neon-pink);
}
.btn-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.1) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 3s ease infinite;
}
.btn-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 0 25px var(--primary-neon), 0 0 50px rgba(201,168,76,0.15);
}
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s; box-shadow: 0 0 4px rgba(255,255,255,0.2);
}
.dot.active {
  background: linear-gradient(90deg, var(--primary), var(--gold));
  width: 28px; border-radius: 5px;
  box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--gold-glow);
}
.hero-arrow {
  position: absolute; bottom: 55px; top: auto;
  z-index: 10; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
  color: white; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; transition: all 0.3s;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 15px rgba(255,255,255,0.15);
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* ========== QUICK ACTIONS ========== */
.quick-actions {
  display: flex; justify-content: center; gap: 20px;
  padding: 16px 20px; margin-top: -35px; position: relative; z-index: 5;
  background: rgba(255,250,251,0.7); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); margin-left: 10px; margin-right: 10px;
}
.quick-action {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; transition: transform 0.3s;
}
.quick-action:hover { transform: translateY(-3px); }
.qa-icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
  transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1), var(--neon-soft);
}
.qa-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  background-size: 300% 300%; animation: shimmer 4s ease infinite;
}
.quick-action:hover .qa-icon {
  box-shadow: 0 6px 25px rgba(0,0,0,0.15), 0 0 20px var(--primary-neon);
  transform: scale(1.05);
}
.quick-action span { font-size: 11px; font-weight: 600; color: var(--text); }

/* ========== SECTION TITLES WITH RHINESTONES ========== */
.home-section { padding: 28px 0 10px; }
.section-title {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 8px 20px; margin-bottom: 18px;
  background: rgba(255,250,251,0.75); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); margin-left: 10px; margin-right: 10px;
}
.section-title h3 {
  font-size: 22px; font-weight: 600; font-family: var(--font-display);
  color: var(--text); position: relative; display: inline-block;
}
.section-title h3::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-neon);
}
.section-title p { font-size: 13px; color: var(--text-light); margin-top: 8px; font-weight: 300; }
.see-all-btn {
  background: none; border: none; color: var(--gold);
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); transition: all 0.3s; white-space: nowrap;
}
.see-all-btn:hover { gap: 10px; color: var(--gold-dark); text-shadow: 0 0 10px var(--gold-glow); }

/* Rhinestone divider */
.rhinestone-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 8px 0; margin: 0 20px;
}
.rhinestone-divider .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

/* ========== CAROUSELS ========== */
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel {
  display: flex; gap: 16px; overflow-x: auto;
  padding: 4px 20px 20px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar { display: none; }

/* TOP PRESTATIONS CARDS */
.top-card {
  flex: 0 0 260px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  background: white; transition: all 0.4s; cursor: pointer; position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,97,143,0.05);
}
.top-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--neon-soft);
  border-color: rgba(212,97,143,0.12);
}
.top-card-img { height: 170px; position: relative; overflow: hidden; }
.top-card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.top-card:hover .top-card-img img { transform: scale(1.08); }
.top-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; color: var(--primary-dark);
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.top-card-price {
  position: absolute; bottom: 12px; right: 12px;
  padding: 6px 16px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; font-size: 16px; font-weight: 700;
  box-shadow: 0 3px 12px var(--primary-glow), var(--neon-pink);
}
.top-card-info { padding: 16px; }
.top-card-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.top-card-info p {
  font-size: 12px; color: var(--text-light); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.top-card-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
  padding-top: 10px; border-top: 1px solid #f8f3f5;
}
.top-card-meta span { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }

/* ========== CATEGORIES SHOWCASE ========== */
.categories-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 20px;
}
.cat-card {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  height: 120px; cursor: pointer; transition: all 0.3s;
}
.cat-card:hover {
  transform: scale(1.03);
  box-shadow: var(--neon-soft);
}
.cat-card-bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: white; gap: 8px;
  padding: 10px; text-align: center;
}
.cat-card-bg i {
  font-size: 28px; opacity: 0.95;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}
.cat-card-bg span {
  font-size: 11px; font-weight: 600; line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
/* Glitter overlay on category cards */
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.4), transparent);
  pointer-events: none; animation: glitterTwinkle 3s ease-in-out infinite alternate;
}
@keyframes glitterTwinkle {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ========== PROMO BANNER V2 - LOYALTY MOCKUP ========== */
.promo-banner-v2 {
  margin: 28px 20px; border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1024 0%, #2d1640 40%, #3a1248 70%, #1a1024 100%);
  padding: 28px 24px; position: relative; overflow: hidden;
  cursor: pointer; display: flex; gap: 20px; align-items: center;
  box-shadow: 0 8px 32px rgba(212,97,143,0.2), 0 0 60px rgba(212,97,143,0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}
.promo-banner-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,97,143,0.3), 0 0 80px rgba(201,168,76,0.1);
}
.promo-banner-v2::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 200px 150px at 10% 90%, rgba(212,97,143,0.15), transparent),
    radial-gradient(ellipse 200px 150px at 90% 10%, rgba(201,168,76,0.12), transparent),
    radial-gradient(ellipse 300px 200px at 50% 50%, rgba(212,97,143,0.05), transparent);
  pointer-events: none;
}
.promo-banner-v2::after {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,97,143,0.3), transparent 40%, transparent 60%, rgba(201,168,76,0.3));
  z-index: 0; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor; padding: 1px;
}
.promo-v2-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.promo-v2-left { flex: 1; position: relative; z-index: 2; }
.promo-v2-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, var(--gold), #e0c35a);
  color: #1a1024; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 15px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 25px rgba(201,168,76,0.6), 0 0 50px rgba(201,168,76,0.2); }
}
.promo-v2-left h3 {
  font-size: 22px; font-family: var(--font-display); color: white;
  margin-bottom: 8px; line-height: 1.3;
  text-shadow: 0 0 30px rgba(212,97,143,0.3);
}
.promo-v2-left p {
  font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.6;
  font-weight: 300; margin-bottom: 16px;
}
.btn-promo-v2 {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border: none; padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(212,97,143,0.3);
  transition: all 0.3s;
}
.btn-promo-v2::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 3s ease infinite;
}
.btn-promo-v2:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,97,143,0.4); }
.promo-arrow { font-size: 11px; transition: transform 0.3s; }
.promo-banner-v2:hover .promo-arrow { transform: translateX(4px); }

/* Loyalty Mockup Card */
.promo-v2-right { flex: 0 0 140px; position: relative; z-index: 2; }
.loyalty-mockup { position: relative; perspective: 800px; }
.mockup-glow {
  position: absolute; inset: -15px; border-radius: 20px;
  background: radial-gradient(ellipse at center, rgba(212,97,143,0.25), transparent 70%);
  filter: blur(10px); animation: mockupGlow 4s ease-in-out infinite alternate; z-index: 0;
}
@keyframes mockupGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}
.mockup-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(10px); border-radius: 14px;
  padding: 12px; position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: mockupFloat 6s ease-in-out infinite;
  transform: rotateY(-5deg) rotateX(3deg);
}
@keyframes mockupFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-6px); }
}
.mockup-card-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-logo { height: 18px; width: auto; filter: brightness(1.2); }
.mockup-card-header span {
  font-size: 9px; color: rgba(255,255,255,0.8); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.mockup-stamps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-bottom: 8px;
}
.mockup-stamp {
  width: 100%; aspect-ratio: 1; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-size: 10px;
  transition: all 0.3s;
}
.mockup-stamp.filled {
  background: linear-gradient(135deg, var(--primary), #e88aaf);
  color: white; box-shadow: 0 0 8px rgba(212,97,143,0.4);
  animation: stampPop 0.5s ease-out backwards;
}
.mockup-stamp.filled.delay1 { animation-delay: 0.3s; }
.mockup-stamp.filled.delay2 { animation-delay: 0.6s; }
.mockup-stamp.filled.delay3 { animation-delay: 0.9s; }
.mockup-stamp.filled.delay4 { animation-delay: 1.2s; }
@keyframes stampPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.mockup-stamp.empty {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.15); border: 1px dashed rgba(255,255,255,0.1);
}
.mockup-stamp.gift {
  background: linear-gradient(135deg, var(--gold), #e0c35a);
  color: #1a1024; font-size: 11px;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  animation: giftPulse 2s ease-in-out infinite;
}
@keyframes giftPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(201,168,76,0.5); transform: scale(1); }
  50% { box-shadow: 0 0 20px rgba(201,168,76,0.8), 0 0 40px rgba(201,168,76,0.2); transform: scale(1.05); }
}
.mockup-progress {
  height: 3px; background: rgba(255,255,255,0.08); border-radius: 3px;
  overflow: hidden; margin-bottom: 6px;
}
.mockup-progress-bar {
  height: 100%; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  animation: progressFill 1.5s 0.5s ease-out forwards;
  box-shadow: 0 0 8px rgba(212,97,143,0.5);
}
@keyframes progressFill {
  0% { width: 0; }
  100% { width: 50%; }
}
.mockup-footer {
  text-align: center; font-size: 8px; color: rgba(255,255,255,0.5);
  font-weight: 500; letter-spacing: 0.5px;
}

/* Mobile: stack layout */
@media (max-width: 400px) {
  .promo-banner-v2 { flex-direction: column; text-align: center; }
  .promo-v2-right { flex: none; }
  .promo-v2-left { order: 2; }
  .promo-v2-right { order: 1; }
  .mockup-card { transform: rotateY(0) rotateX(3deg); }
  @keyframes mockupFloat {
    0%, 100% { transform: rotateY(0) rotateX(3deg) translateY(0); }
    50% { transform: rotateY(0) rotateX(1deg) translateY(-6px); }
  }
}

/* ========== TEAM CAROUSEL ========== */
.team-card {
  flex: 0 0 200px; scroll-snap-align: start;
  background: white; border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: all 0.4s;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,97,143,0.05);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--neon-soft);
  border-color: rgba(212,97,143,0.1);
}
.team-photo { width: 100%; height: 200px; position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; font-weight: 700; color: white;
  font-family: var(--font-display); position: relative; overflow: hidden;
}
/* Glitter on team avatar */
.team-avatar::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 20% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 70% 70%, rgba(255,255,255,0.4), transparent);
  pointer-events: none; animation: glitterTwinkle 2s ease-in-out infinite alternate;
}
.team-info { padding: 16px 14px; }
.team-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-info .team-role {
  font-size: 12px; color: var(--gold); font-weight: 500; margin-bottom: 8px;
  text-shadow: 0 0 8px var(--gold-glow);
}
.team-info p {
  font-size: 11px; color: var(--text-light); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ========== GIFT CARD BANNER ========== */
.giftcard-banner {
  margin: 10px 20px 0; border-radius: var(--radius);
  background: white; display: flex; align-items: center; padding: 20px;
  gap: 20px; cursor: pointer; transition: all 0.3s;
  overflow: hidden; border: 1px solid rgba(201,168,76,0.1);
  box-shadow: var(--shadow-md);
}
.giftcard-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--neon-gold);
  border-color: rgba(201,168,76,0.2);
}
.gcb-visual { flex-shrink: 0; }
.gcb-card {
  width: 100px; height: 65px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  overflow: hidden; position: relative;
  box-shadow: 0 4px 15px var(--primary-glow), var(--neon-pink);
}
/* Glitter on gift card */
.gcb-card::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 75% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.4), transparent);
  pointer-events: none; animation: glitterTwinkle 2s ease-in-out infinite alternate;
}
.gcb-card-inner {
  padding: 10px 12px; color: white; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; z-index: 1;
}
.gcb-logo { font-size: 14px; font-weight: 700; font-family: var(--font-display); }
.gcb-text { font-size: 8px; font-weight: 500; letter-spacing: 0.5px; opacity: 0.85; }
.gcb-amount { font-size: 10px; font-weight: 700; }
.gcb-info { flex: 1; }
.gcb-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.gcb-info p { font-size: 12px; color: var(--text-light); line-height: 1.4; }
.gcb-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 8px;
  text-shadow: 0 0 6px var(--gold-glow);
}

/* ========== INFO SECTION - HOURS & CONTACT ========== */
.info-section {
  padding: 10px 20px 20px; display: flex; flex-direction: column; gap: 14px;
}
.info-section-header {
  text-align: center; margin-bottom: 4px;
  background: rgba(255,250,251,0.75); backdrop-filter: blur(8px);
  border-radius: var(--radius-sm); padding: 14px;
}
.info-badge {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 4px 20px rgba(212,97,143,0.25);
}
.info-section-header h3 {
  font-size: 20px; font-family: var(--font-display); font-weight: 600; color: var(--secondary);
  margin-bottom: 4px;
}
.info-section-header p { font-size: 12px; color: var(--text-light); font-weight: 300; }

/* Info Card */
.info-card {
  background: white; border-radius: var(--radius); padding: 20px;
  border: 1px solid rgba(212,97,143,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.info-card:hover {
  box-shadow: 0 8px 32px rgba(212,97,143,0.1), var(--neon-soft);
  border-color: rgba(212,97,143,0.1);
  transform: translateY(-2px);
}
.info-card-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.info-icon-wrap { flex-shrink: 0; }
.info-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, #fce4ec, #f8d7e3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  box-shadow: 0 4px 12px rgba(212,97,143,0.1);
  transition: all 0.3s;
}
.info-icon.gold {
  background: linear-gradient(135deg, #fdf0d0, #f5e6b8);
  color: var(--gold-dark);
  box-shadow: 0 4px 12px rgba(201,168,76,0.12);
}
.info-card:hover .info-icon { transform: scale(1.08); box-shadow: 0 4px 16px rgba(212,97,143,0.2); }
.info-card:hover .info-icon.gold { box-shadow: 0 4px 16px rgba(201,168,76,0.2); }
.info-card-top h4 {
  font-size: 15px; font-weight: 600; color: var(--secondary);
  font-family: var(--font-display); margin-bottom: 2px;
}
.info-subtitle { font-size: 11px; color: var(--text-light); font-weight: 300; }

/* Hours list */
.hours-list { display: flex; flex-direction: column; gap: 2px; }
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 10px; transition: background 0.2s;
}
.hour-row:nth-child(odd) { background: rgba(212,97,143,0.02); }
.hour-row:hover { background: rgba(212,97,143,0.05); }
.hour-day {
  font-weight: 600; font-size: 12px; text-transform: capitalize; color: var(--secondary);
}
.hour-time {
  font-size: 12px; color: var(--text-light); font-weight: 400;
  background: rgba(212,97,143,0.04); padding: 3px 10px; border-radius: 20px;
}
.hour-closed {
  color: #e74c3c; background: rgba(231,76,60,0.06) !important;
  padding: 3px 10px; border-radius: 20px; font-size: 12px;
}
.hour-row-today {
  background: linear-gradient(135deg, rgba(212,97,143,0.08), rgba(201,168,76,0.06)) !important;
  border: 1px solid rgba(212,97,143,0.1);
}
.hour-row-today .hour-day { color: var(--primary); }

/* Open/Closed status */
.info-card-status {
  margin-top: 14px; text-align: center; padding: 8px 16px;
  border-radius: 12px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.info-card-status.open {
  background: linear-gradient(135deg, rgba(46,204,113,0.08), rgba(46,204,113,0.04));
  color: #27ae60; border: 1px solid rgba(46,204,113,0.12);
}
.info-card-status.closed {
  background: linear-gradient(135deg, rgba(231,76,60,0.08), rgba(231,76,60,0.04));
  color: #e74c3c; border: 1px solid rgba(231,76,60,0.12);
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}
.status-dot.open { background: #27ae60; box-shadow: 0 0 8px rgba(46,204,113,0.5); }
.status-dot.closed { background: #e74c3c; box-shadow: 0 0 8px rgba(231,76,60,0.5); }
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Contact details */
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(201,168,76,0.03); border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.06); transition: all 0.3s;
}
.contact-row:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.12); }
.contact-row i {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #fdf0d0, #f5e6b8);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--gold-dark); flex-shrink: 0;
}
.contact-row span { font-size: 13px; color: var(--secondary); font-weight: 500; }

/* Info action buttons */
.info-actions { display: flex; gap: 10px; }
.btn-info-primary {
  flex: 1; background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border: none; padding: 12px 18px; border-radius: 14px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(212,97,143,0.2);
  position: relative; overflow: hidden;
}
.btn-info-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 3s ease infinite;
}
.btn-info-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,97,143,0.3), var(--neon-pink);
}
.btn-info-outline {
  flex: 0 0 auto; background: none;
  border: 1.5px solid rgba(201,168,76,0.3); color: var(--gold-dark);
  padding: 12px 18px; border-radius: 14px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-info-outline:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  border-color: var(--gold); color: var(--gold-dark);
  box-shadow: var(--neon-gold);
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border: none; padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); position: relative; overflow: hidden;
  box-shadow: 0 4px 18px var(--primary-glow), var(--neon-soft);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 3s ease infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--primary-glow), 0 0 20px var(--primary-neon), 0 0 40px var(--gold-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: white; color: var(--primary); border: 2px solid var(--primary);
  padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: var(--primary); color: white;
  box-shadow: var(--neon-pink);
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary), #e88aaf);
  color: white; padding: 30px 20px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 30% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 50% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 70% 50%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(255,255,255,0.4), transparent);
  pointer-events: none; animation: glitterTwinkle 2s ease-in-out infinite alternate;
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 20px;
  background: transparent; border-radius: 20px 20px 0 0;
}
.page-header h2 {
  font-size: 24px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); position: relative;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.page-header p { font-size: 14px; opacity: 0.9; font-weight: 300; position: relative; }

/* ========== CATEGORY FILTER ========== */
.category-filter {
  display: flex; gap: 10px; padding: 16px 20px; overflow-x: auto;
  -webkit-overflow-scrolling: touch; margin-top: -10px;
}
.category-filter::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; padding: 10px 18px; border-radius: 50px;
  border: 2px solid var(--primary-light); background: white;
  color: var(--text); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
}
.cat-btn.active, .cat-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border-color: transparent;
  box-shadow: 0 3px 12px var(--primary-glow), var(--neon-soft);
}

/* ========== PRESTATIONS LIST ========== */
.prestations-grid { padding: 10px 20px 100px; }
.prestation-card {
  background: white; border-radius: var(--radius-md); padding: 16px;
  margin-bottom: 12px; display: flex; align-items: center; gap: 14px;
  transition: all 0.3s; cursor: pointer;
  box-shadow: var(--shadow); border: 1px solid rgba(212,97,143,0.04);
}
.prestation-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md), var(--neon-soft);
  border-color: rgba(212,97,143,0.1);
}
.prestation-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), rgba(212,97,143,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary); flex-shrink: 0;
}
.prestation-info { flex: 1; }
.prestation-info h4 { font-size: 14px; margin-bottom: 4px; font-weight: 600; }
.prestation-info p { font-size: 12px; color: var(--text-light); margin-bottom: 5px; }
.prestation-meta { display: flex; gap: 12px; }
.prestation-meta span { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.prestation-price {
  font-size: 18px; font-weight: 700; white-space: nowrap;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-float {
  position: fixed; bottom: calc(var(--nav-height) + 16px);
  left: 50%; transform: translateX(-50%); z-index: 50;
}

.category-header {
  font-size: 17px; font-weight: 700;
  margin: 20px 0 10px; padding-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid var(--primary-light);
}
.category-header:first-child { margin-top: 10px; }

/* ========== LOYALTY ========== */
.loyalty-lookup {
  padding: 20px; margin-top: -10px;
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,250,251,0.8); backdrop-filter: blur(8px);
  border-radius: var(--radius); margin-left: 10px; margin-right: 10px;
}
.input-group {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: var(--radius-sm); padding: 0 16px;
  border: 2px solid transparent; transition: all 0.3s;
  box-shadow: var(--shadow);
}
.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow), var(--neon-soft);
}
.input-group i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.input-group input, .input-group textarea {
  flex: 1; border: none; padding: 14px 0; font-size: 15px;
  background: none; outline: none; color: var(--text); font-family: var(--font-body);
}
.input-group textarea { resize: vertical; }

.loyalty-result {
  margin: 20px; background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.loyalty-card-visual {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: var(--radius-md); padding: 24px; color: white;
  margin-bottom: 20px; position: relative; overflow: hidden;
  box-shadow: var(--neon-pink);
}
.loyalty-card-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 50% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.3), transparent);
  pointer-events: none; animation: glitterTwinkle 2s ease-in-out infinite alternate;
}
.loyalty-card-visual::after {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.loyalty-card-visual h3 { font-size: 20px; margin-bottom: 6px; font-family: var(--font-display); position: relative; }
.loyalty-card-visual p { opacity: 0.85; font-size: 14px; position: relative; }
.stamps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin: 20px 0; position: relative;
}
.stamp {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.3s;
}
.stamp.filled {
  background: rgba(255,255,255,0.2); border-style: solid;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 8px rgba(255,255,255,0.2), inset 0 0 6px rgba(255,255,255,0.1);
}
.stamp.filled i { color: white; filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
.loyalty-progress { font-size: 14px; margin-top: 10px; position: relative; }

.loyalty-register {
  margin: 20px; background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.loyalty-register h3 { font-size: 18px; margin-bottom: 16px; text-align: center; color: var(--primary); font-family: var(--font-display); }
.loyalty-register .input-group { margin-bottom: 12px; }
.loyalty-register .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

/* ========== GIFT CARDS ========== */
.giftcard-amounts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 20px; margin-top: -10px;
  background: rgba(255,250,251,0.8); backdrop-filter: blur(8px);
  border-radius: var(--radius); margin-left: 10px; margin-right: 10px;
}
.gc-amount-btn {
  background: white; border: 2px solid var(--primary-light);
  border-radius: var(--radius-md); padding: 20px 10px;
  text-align: center; cursor: pointer; transition: all 0.3s;
}
.gc-amount-btn:hover, .gc-amount-btn.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow), var(--neon-soft);
}
.gc-amount-btn .gc-price { font-size: 24px; font-weight: 700; color: var(--primary); }
.gc-amount-btn:hover .gc-price, .gc-amount-btn.active .gc-price { color: white; }
.gc-amount-btn .gc-label { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.gc-amount-btn:hover .gc-label, .gc-amount-btn.active .gc-label { color: rgba(255,255,255,0.8); }

.gc-custom { grid-column: 1 / -1; padding: 14px; }
.gc-custom input {
  width: 100%; text-align: center; border: none; font-size: 20px;
  font-weight: 600; background: none; outline: none; color: var(--primary);
  font-family: var(--font-body);
}

.giftcard-form {
  margin: 0 20px 20px; background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.giftcard-form h3 { font-size: 18px; margin-bottom: 16px; text-align: center; color: var(--primary); font-family: var(--font-display); }
.giftcard-form .input-group { margin-bottom: 12px; }
.giftcard-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.selected-amount {
  text-align: center; font-size: 32px; font-weight: 700;
  margin-bottom: 20px; font-family: var(--font-display);
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gift-check {
  margin: 20px; background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.gift-check h3 { font-size: 18px; margin-bottom: 16px; text-align: center; color: var(--primary); font-family: var(--font-display); }
.gift-check .input-group { margin-bottom: 12px; }
.gift-check .btn-secondary { width: 100%; justify-content: center; }
.gc-check-result { margin-top: 16px; padding: 16px; border-radius: var(--radius-sm); background: var(--bg); }
.gc-check-result .gc-valid { color: #27ae60; font-weight: 600; }
.gc-check-result .gc-expired { color: #e74c3c; font-weight: 600; }

/* ========== CUSTOM ALERT ========== */
.custom-alert {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.custom-alert.hidden { display: none; }
.custom-alert-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
}
.custom-alert-box {
  position: relative; background: white;
  border-radius: 20px; padding: 32px 28px 24px;
  text-align: center; max-width: 320px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.35s ease;
}
.custom-alert-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px;
}
.custom-alert-icon.warn {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #e65100;
}
.custom-alert-icon.error {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  color: #c62828;
}
.custom-alert-icon.info {
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  color: #283593;
}
.custom-alert-icon.success {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}
.custom-alert-box p {
  font-size: 15px; color: #333; font-weight: 500;
  line-height: 1.5; margin-bottom: 20px;
  font-family: var(--font-body);
}
.custom-alert-box button {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border: none; border-radius: 12px;
  padding: 12px 40px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
}
.custom-alert-box button:active { transform: scale(0.96); }

/* ========== PUSH NOTIFICATION POPUP ========== */
.push-popup {
  position: fixed; inset: 0; z-index: 99998;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
.push-popup.hidden { display: none; }
.push-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
}
.push-popup-box {
  position: relative; background: white;
  border-radius: 24px 24px 0 0; padding: 32px 24px 28px;
  text-align: center; width: 100%; max-width: 420px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
  animation: pushSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pushSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.push-popup-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 18px;
  color: #999; cursor: pointer; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.push-popup-close:hover { background: #f0f0f0; color: #333; }
.push-popup-bell {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 32px; color: white;
  animation: bellRing 1s ease-in-out 0.5s;
  box-shadow: 0 6px 24px rgba(196, 149, 106, 0.4);
}
@keyframes bellRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-14deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(6deg); }
  60% { transform: rotate(-4deg); }
  70% { transform: rotate(2deg); }
}
.push-popup-box h3 {
  font-family: var(--font-heading);
  font-size: 22px; color: #2c2c2c;
  margin-bottom: 8px;
}
.push-popup-box > p {
  font-size: 14px; color: #666; line-height: 1.5;
  margin-bottom: 20px; font-family: var(--font-body);
}
.push-popup-benefits {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.push-popup-benefits div {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--primary); font-weight: 600;
  background: rgba(196, 149, 106, 0.1);
  padding: 6px 12px; border-radius: 20px;
}
.push-popup-benefits div i { font-size: 13px; }
.push-popup-accept {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; border: none; border-radius: 14px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(196, 149, 106, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.push-popup-accept:active { transform: scale(0.97); }
.push-popup-accept i { margin-right: 8px; }
.push-popup-dismiss {
  background: none; border: none; color: #999;
  font-size: 14px; cursor: pointer; margin-top: 12px;
  padding: 8px 16px; font-family: var(--font-body);
}
.push-popup-dismiss:hover { color: #666; }

/* ========== QR SCANNER ========== */
.btn-qr-scan {
  width: 100%; padding: 14px; border: 2px dashed var(--gold); border-radius: var(--radius);
  background: rgba(201,168,76,0.08); color: var(--gold); font-size: 15px;
  font-weight: 600; cursor: pointer; margin-top: 10px; transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-qr-scan:hover { background: rgba(201,168,76,0.15); }
.btn-qr-scan i { margin-right: 8px; }

.qr-scanner-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: #000; display: flex; flex-direction: column;
  animation: planitySlideUp 0.35s ease;
}
.qr-scanner-modal.hidden { display: none; }
.qr-scanner-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: linear-gradient(135deg, var(--gold), var(--primary));
  color: white; flex-shrink: 0; font-weight: 600; font-family: var(--font-display);
}
.qr-scanner-header button {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: white; border: none;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.qr-scanner-status {
  padding: 20px; text-align: center; color: white; font-size: 14px;
}
.qr-scanner-status .qr-success {
  background: rgba(39,174,96,0.15); border: 1px solid #27ae60;
  border-radius: 16px; padding: 20px; margin: 10px 16px;
  color: #27ae60;
}
.qr-scanner-status .qr-success h3 { font-size: 20px; margin-bottom: 8px; }
.qr-scanner-status .qr-success .stamps-info {
  font-size: 28px; font-weight: 700; margin: 10px 0;
  color: var(--gold);
}
.qr-scanner-status .qr-error {
  background: rgba(231,76,60,0.15); border: 1px solid #e74c3c;
  border-radius: 16px; padding: 20px; margin: 10px 16px;
  color: #e74c3c;
}

/* ========== MODALS ========== */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.3s;
}
.modal-content {
  background: white; border-radius: var(--radius);
  width: 100%; max-width: 500px; position: relative;
  box-shadow: var(--shadow-xl), var(--neon-pink);
  animation: modalIn 0.4s ease;
}
@keyframes modalIn { from { transform: translateY(30px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

/* Planity Fullscreen Modal */
.planity-fullscreen {
  position: fixed; inset: 0; z-index: 10000;
  background: #fff;
  display: flex; flex-direction: column;
  animation: planitySlideUp 0.35s ease;
}
.planity-fullscreen.hidden { display: none; }
@keyframes planitySlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.planity-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white; flex-shrink: 0;
}
.planity-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
}
.planity-title i { margin-right: 8px; }
.planity-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: white;
  border: none; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.planity-close:hover { background: rgba(255,255,255,0.4); transform: rotate(90deg); }
.planity-fullscreen iframe {
  flex: 1; width: 100%; height: 100%;
  border: none; background: #fff;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--secondary); color: white; border: none;
  font-size: 16px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.3s;
}
.modal-close:hover { background: var(--primary); transform: rotate(90deg); box-shadow: var(--neon-pink); }

.modal-success { padding: 40px 24px; text-align: center; }
.success-icon { font-size: 60px; color: #27ae60; margin-bottom: 16px; }
.success-icon i { animation: popIn 0.5s ease; }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }
.modal-success h3 { font-size: 22px; margin-bottom: 10px; font-family: var(--font-display); }
.modal-success p { color: var(--text-light); margin-bottom: 20px; line-height: 1.5; }
.modal-success .gc-code {
  display: inline-block; padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-light), var(--gold-light));
  border-radius: var(--radius-sm); font-size: 20px; font-weight: 700;
  color: var(--primary-dark); letter-spacing: 2px; margin-bottom: 20px;
  box-shadow: var(--neon-soft);
}

/* ========== INSTALL BANNER ========== */
.install-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  padding: 6px 14px;
}
.install-content { display: flex; align-items: center; gap: 8px; justify-content: center; }
.install-icon { display: none; }
.install-text { flex: none; color: white; }
.install-text strong { font-size: 12px; }
.install-text p { display: none; }
.btn-install { background: white; color: var(--primary-dark); border: none; padding: 4px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.btn-dismiss { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; font-size: 14px; }
body.has-install-banner .app-header { top: 32px; }
body.has-install-banner .app-main { padding-top: calc(var(--header-height) + 32px); }

/* ========== AVIS SECTION ========== */
.avis-section { padding: 10px 20px 20px; }
.avis-header { text-align: center; margin-bottom: 20px; }
.avis-badge {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px;
  background: linear-gradient(135deg, #ffcf48, #c9a84c);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.avis-header h3 {
  font-size: 16px; font-family: var(--font-display); font-weight: 700;
  margin-bottom: 0;
  color: var(--secondary);
}
.avis-rating-mockup {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 14px 22px; margin: 0 auto 10px;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.12);
}
.avis-rating-left { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.avis-rating-score {
  font-size: 38px; font-weight: 700; font-family: var(--font-display);
  color: #fbbc05; line-height: 1;
}
.avis-rating-stars { color: #fbbc05; font-size: 12px; letter-spacing: 1px; }
.avis-rating-right { display: flex; flex-direction: column; gap: 2px; }
.avis-rating-text { font-size: 11px; color: var(--text-light); font-weight: 400; }
.avis-rating-sub { font-size: 10px; color: var(--text-light); font-weight: 300; margin: 2px 0 0; }
.avis-google-icon { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.avis-header p { font-size: 12px; color: var(--text-light); font-weight: 300; }

/* Mockup avis défilants */
.avis-mockup-wrapper {
  overflow: hidden; margin-bottom: 22px; position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.avis-mockup-track {
  display: flex; gap: 12px; animation: avisScroll 20s linear infinite;
  width: max-content;
}
@keyframes avisScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.avis-bubble {
  flex: 0 0 240px; background: white; border-radius: 16px; padding: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(212,97,143,0.06);
  transition: all 0.3s;
}
.avis-bubble:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,97,143,0.1); }
.avis-bubble-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avis-avatar {
  width: 34px; height: 34px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: white;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.avis-bubble-top strong { font-size: 13px; color: var(--secondary); display: block; }
.avis-stars { display: flex; gap: 2px; }
.avis-stars i { font-size: 10px; color: #ffcf48; }
.avis-bubble p {
  font-size: 12px; color: #555; line-height: 1.5; font-style: italic;
  margin: 0;
}

/* Boutons laisser un avis */
.avis-buttons { display: flex; flex-direction: column; gap: 10px; }
.avis-btn {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: white; border-radius: 16px; text-decoration: none;
  border: 1px solid rgba(212,97,143,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s; cursor: pointer;
}
.avis-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,97,143,0.12), var(--neon-soft);
  border-color: rgba(212,97,143,0.12);
}
.avis-btn-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.avis-paris .avis-btn-icon {
  background: transparent;
}
.avis-stmaur .avis-btn-icon {
  background: transparent;
}
.avis-btn-text { flex: 1; }
.avis-btn-text strong { font-size: 14px; color: var(--secondary); display: block; font-family: var(--font-body); }
.avis-btn-text span { font-size: 12px; color: var(--primary); font-weight: 500; }
.avis-arrow { color: var(--text-light); font-size: 13px; transition: transform 0.3s; }
.avis-btn:hover .avis-arrow { transform: translateX(4px); color: var(--primary); }

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
  .hero-slider { height: 450px; }
  .slide-content h2 { font-size: 44px; }
  .quick-actions { gap: 30px; }
  .qa-icon { width: 66px; height: 66px; font-size: 26px; border-radius: 20px; }
  .categories-showcase { grid-template-columns: repeat(3, 1fr); max-width: 600px; margin: 0 auto; padding: 0 20px; }
  .cat-card { height: 150px; }
  .top-card { flex: 0 0 300px; }
  .team-card { flex: 0 0 240px; }
  .info-section { max-width: 600px; margin: 0 auto; }
  .prestations-grid { max-width: 700px; margin: 0 auto; }
  .giftcard-amounts { max-width: 500px; margin: -10px auto 0; }
  .loyalty-lookup { max-width: 500px; margin: -10px auto 0; }
}

@media (max-width: 380px) {
  .quick-actions { gap: 12px; }
  .qa-icon { width: 50px; height: 50px; font-size: 18px; border-radius: 14px; }
  .quick-action span { font-size: 10px; }
  .top-card { flex: 0 0 220px; }
  .categories-showcase { grid-template-columns: repeat(2, 1fr); }
  .info-actions { flex-direction: column; }
}
