/* =============================================
   LEMON TREE SPA & NAIL — HOI AN
   Main Stylesheet
============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --text: #444;
  --text-light: #777;
  --white: #fff;
  --bg-light: #FAF8F3;
  --bg-cream: #F5F0E8;
  --kakao: #FAE100;
  --kakao-dark: #3A1D1D;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --line: #06C755;
  --line-dark: #04A344;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-kakao { background: var(--kakao); color: var(--kakao-dark); }
.btn-kakao:hover { background: #f0d400; }

.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-line { background: var(--line); color: var(--white); }
.btn-line:hover { background: var(--line-dark); }

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-small:hover { background: var(--gold); color: var(--white); }

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-maps:hover { background: var(--gold); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; margin-bottom: 8px; width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.btn-nav-kakao {
  background: var(--kakao) !important;
  color: var(--kakao-dark) !important;
  padding: 7px 14px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.btn-nav-whatsapp {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  padding: 7px 14px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.6);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 20px;
  white-space: nowrap;
}
.trust-item i { color: var(--gold); }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(201,168,76,0.3);
}

/* ===== ABOUT ===== */
.about { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.highlight-item strong { display: block; font-size: 0.9rem; color: var(--dark); }
.highlight-item span { font-size: 0.82rem; color: var(--text-light); }

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
}
.discount-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.discount-card {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 32px 40px;
  text-align: center;
  min-width: 220px;
}
.discount-card--big { padding: 36px 48px; }
.discount-percent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.discount-desc { color: var(--gold-light); font-size: 0.95rem; line-height: 1.5; }
.discount-desc small { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.discount-note { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ===== HOURS ===== */
.hours-section { background: var(--bg-cream); }
.hours-section .section-label,
.hours-section .section-title { text-align: center; display: block; }
.hours-section .section-title { margin-bottom: 40px; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hours-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hours-card i { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; }
.hours-info strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.hours-info span { font-size: 0.85rem; color: var(--text-light); }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.tab-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.price-table th {
  background: var(--dark);
  color: var(--gold-light);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0ebe0;
  color: var(--text);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-light); }
.price-table .highlight-row td { background: #fffbf0; font-weight: 500; }
.price-table td:first-child { font-weight: 500; }
.price-table td:not(:first-child) { color: var(--dark); font-weight: 500; }

.tip-note {
  background: var(--bg-cream);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.6;
}
.tip-note i { color: var(--gold); margin-right: 6px; }

.nail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.nail-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e0d0;
}
.nail-section h3:first-child { margin-top: 0; }
.nail-list { display: flex; flex-direction: column; gap: 8px; }
.nail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}
.nail-list li span { color: var(--text); flex: 1; }
.nail-list li strong { color: var(--dark); white-space: nowrap; font-weight: 600; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--white); }
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item--large { grid-column: span 2; }
.gallery-item--large img { height: 340px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 20px 14px 12px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-cream); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: #FFB300; font-size: 0.9rem; display: flex; gap: 2px; }
.review-card p { font-size: 0.88rem; color: var(--text); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-top: auto; }

.review-rating-card {
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
}
.review-rating-card .review-stars { justify-content: center; }
.review-rating-card p { color: rgba(255,255,255,0.8); font-style: normal; }
.review-rating-card p strong { color: var(--gold); }
.big-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid #e8e0d0;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.faq-q:hover { background: var(--bg-light); }
.faq-q i { color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q { background: var(--bg-light); color: var(--gold); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  background: var(--bg-light);
}
.faq-a p { font-size: 0.88rem; color: var(--text); line-height: 1.8; }
.faq-a a { color: var(--gold); text-decoration: underline; }
.faq-item.open .faq-a { display: block; }

/* ===== BOOK CTA ===== */
.book-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #3a2a00 100%);
  padding: 80px 0;
  text-align: center;
}
.book-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.book-cta p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== LOCATION ===== */
.location { background: var(--bg-light); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 3px; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-wa { background: var(--whatsapp); color: var(--white); }
.social-wa:hover { background: var(--whatsapp-dark); }
.social-kakao { background: var(--kakao); color: var(--kakao-dark); }
.social-kakao:hover { background: #f0d400; }
.social-line { background: var(--line); color: var(--white); }
.social-line:hover { background: var(--line-dark); }

.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 60px 0 40px;
}
.footer-brand img { width: 60px; margin-bottom: 14px; border-radius: 50%; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-links h4, .footer-contact h4, .footer-book h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: var(--gold); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--white);
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.floating-btns.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
  white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px) scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.float-btn i { font-size: 1.1rem; }
.float-kakao { background: var(--kakao); color: var(--kakao-dark); }
.float-line { background: var(--line); color: var(--white); }
.float-whatsapp { background: var(--whatsapp); color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hours-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--dark); padding: 80px 24px 40px; gap: 8px; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s ease; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { font-size: 1rem; padding: 12px 16px; }
  .nav-toggle { display: block; }
  .btn-nav-kakao, .btn-nav-whatsapp { width: 100%; text-align: center; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 320px; }
  .about-highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; }
  .review-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .nail-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 0; }
  .trust-item { padding: 6px 12px; font-size: 0.8rem; }
  .trust-divider { display: none; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-btn i { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .gallery-item--large img { height: 240px; }
  .why-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .discount-grid { flex-direction: column; align-items: center; }
}
