/* ==========================================================================
   feet.in.life - Modern Pedicure & Foot Wellness Salon Design System
   ========================================================================== */

:root {
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Color Palette - Luxury Warm Nude & Rose Gold Aesthetic */
  --bg-primary: #FAF6F3;
  --bg-secondary: #F3EAE4;
  --bg-card: #FFFFFF;
  --bg-dark: #1F1B19;
  --bg-dark-card: #2B2523;

  --text-main: #2C2623;
  --text-muted: #6E6460;
  --text-light: #F7F3F0;
  --text-gold: #C69584;

  --rose-gold: #D4A396;
  --rose-gold-dark: #B87B6C;
  --rose-gold-light: #F5E5E0;
  --rose-gold-glow: rgba(212, 163, 150, 0.35);

  --accent-gold: #D4AF37;
  --accent-green: #7A9A8B;

  --border-light: rgba(212, 163, 150, 0.25);
  --border-dark: rgba(255, 255, 255, 0.1);

  --shadow-sm: 0 4px 12px rgba(44, 38, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 38, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 38, 35, 0.12);
  --shadow-glow: 0 0 25px var(--rose-gold-glow);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--rose-gold-dark), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gold { color: var(--rose-gold); }

/* Grids */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--rose-gold-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(184, 123, 108, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose-gold);
  color: var(--text-main);
}
.btn-outline:hover {
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
}
.btn-danger {
  background: #b42318;
  color: #fff;
}
.btn-danger:hover { background: #8f1c13; }

.admin-sticky-menu {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 20px 0 30px;
  padding: 12px;
  background: rgba(250, 246, 243, 0.96);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.admin-sticky-menu a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  background: var(--bg-dark);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}
.admin-sticky-menu a:hover { background: var(--rose-gold-dark); }
.admin-section { scroll-margin-top: 95px; }

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-main);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #FFFFFF;
  font-weight: 600;
}
.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3);
}

.btn-admin {
  background: #2C2623;
  color: #E8C3B9;
  border: 1px solid rgba(212, 163, 150, 0.3);
}
.btn-admin:hover {
  background: #3D3531;
  color: #FFFFFF;
}

.btn-full { width: 100%; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-links {
  display: flex;
  gap: 20px;
}
.top-bar-links a:hover {
  color: var(--rose-gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 243, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 46px;
  height: 54px;
  color: var(--rose-gold-dark);
  flex: 0 0 auto;
}
.logo-mark img,
.logo-mark-large img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-main);
}
.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  gap: 30px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition-normal);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.active {
  color: var(--rose-gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 120px;
  background:
    linear-gradient(90deg, rgba(250, 246, 243, 0.97) 0%, rgba(250, 246, 243, 0.91) 48%, rgba(245, 234, 228, 0.76) 100%),
    url('/assets/hero-salon-background.webp') right center / cover no-repeat;
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}
.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 90%;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}
.hero-badge-item i {
  color: var(--rose-gold-dark);
  font-size: 1.1rem;
}

/* Hero Glass Card */
.hero-card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}
.logo-mark-large {
  width: 92px;
  height: 110px;
  margin: 0 auto 15px;
}
.salon-logo-hero h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.salon-logo-hero p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}
.hero-rating {
  display: block;
  background: var(--bg-primary);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-normal);
}
.hero-rating:hover,
.hero-rating:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rose-gold);
  box-shadow: var(--shadow-sm);
}
.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 4px;
}
.hero-instagram-pill {
  font-size: 0.85rem;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.reviews-section { background: var(--bg-primary); }
.reviews-grid { margin-bottom: 35px; }
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review-card p { margin: 10px 0 16px; color: var(--text-muted); }
.review-stars { color: #F59E0B; letter-spacing: 2px; font-size: 1.15rem; }
.review-form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.review-form-card > p { color: var(--text-muted); margin-bottom: 22px; }
.review-consent { display:flex; gap:10px; align-items:flex-start; margin: 18px 0; }
.review-consent input { margin-top: 4px; }
.hp-field { position:absolute; left:-10000px; width:1px; height:1px; }

/* Section Common Headers */
.section-header {
  margin-bottom: 50px;
}
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Price Section */
.price-section {
  background: var(--bg-secondary);
}
.price-tabs, .gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn, .g-tab-btn {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.tab-btn.active, .g-tab-btn.active {
  background: var(--rose-gold-dark);
  color: #FFFFFF;
  border-color: var(--rose-gold-dark);
  box-shadow: var(--shadow-sm);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.price-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}
.price-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.price-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  white-space: nowrap;
}
.price-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
}
.price-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px stroke var(--border-light);
}

.price-note {
  margin-top: 35px;
  text-align: center;
  background: rgba(212, 163, 150, 0.15);
  padding: 16px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 27, 25, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #FFFFFF;
  opacity: 0;
  transition: var(--transition-normal);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.gallery-category {
  font-size: 0.8rem;
  color: var(--rose-gold-light);
  text-transform: uppercase;
}

/* Instagram Banner */
.insta-banner-section {
  padding: 40px 0;
}
.insta-box {
  background: linear-gradient(135deg, #1F1B19, #2B2523);
  border-radius: var(--radius-lg);
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}
.insta-info {
  display: flex;
  align-items: center;
  gap: 25px;
}
.insta-avatar {
  width: 65px;
  height: 65px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.insta-text h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.insta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.article-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.article-body {
  padding: 24px;
}
.article-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.article-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.article-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}
.article-more {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--rose-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Contact Section */
.contact-section {
  background: var(--bg-secondary);
}
.contact-info-card {
  background: var(--bg-card);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-intro {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.map-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.map-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 15px;
}
.map-footer { text-align: right; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo-name { color: var(--rose-gold-light); }
.footer-brand p {
  margin-top: 15px;
  font-size: 0.9rem;
  max-width: 320px;
}
.footer-links h4, .footer-contact h4 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a:hover { color: var(--rose-gold); }
.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-bottom {
  padding: 20px 0;
  background: #171413;
  font-size: 0.85rem;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-link-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.admin-link-btn:hover { color: var(--rose-gold); }

/* Modals */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 12, 11, 0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal.active { display: flex; }

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-lg { max-width: 780px; }
.modal-xl { max-width: 900px; }

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-primary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}
.modal-icon {
  font-size: 2.2rem;
  color: var(--rose-gold-dark);
  margin-bottom: 10px;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  background: var(--bg-primary);
  transition: var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--rose-gold-dark);
  box-shadow: 0 0 0 3px var(--rose-gold-glow);
}

/* Admin Dashboard Styles */
.admin-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
}
.admin-nav-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  overflow-x: auto;
}
.admin-tab {
  padding: 10px 18px;
  background: var(--bg-primary);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}
.admin-tab.active {
  background: var(--bg-dark);
  color: var(--rose-gold-light);
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

.admin-hint {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  z-index: 2000;
  display: none;
}
.toast.active {
  display: block;
  animation: modalIn 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .top-bar { padding: 9px 0; }
  .top-bar-content > span:first-child { display: none; }
  .top-bar-content { justify-content: center; }
  .top-bar-links {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
  }
  .top-bar-links a,
  .top-bar-links span { white-space: nowrap; }
  .hero-section {
    background:
      linear-gradient(rgba(250, 246, 243, 0.93), rgba(245, 234, 228, 0.91)),
      url('/assets/hero-salon-background.webp') 68% center / cover no-repeat;
  }
  .hero-container { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .price-grid, .gallery-grid, .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-container { grid-template-columns: 1fr; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.active { display: flex; }
  .mobile-toggle { display: block; }
  .desktop-only { display: none; }
  .header-actions .btn-admin { display: none; }
  .insta-box { flex-direction: column; text-align: center; gap: 20px; }
  .insta-info { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .top-bar { font-size: 0.79rem; }
  .top-bar-links { gap: 14px; }
}
