/* ========================================
   TUBA ŞİMŞEK COLLECTION — Design System
   ======================================== */

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

:root {
  --ivory: #f9f6f0;
  --white: #ffffff;
  --parchment: #f2ece0;
  --gold: #b8965a;
  --gold-lt: #d4b47a;
  --gold-dk: #8a6c38;
  --charcoal: #1c1a18;
  --ink: #2e2b26;
  --ash: #6b6560;
  --border: #e2d9c8;
  --success: #4a7c59;
  --danger: #a94442;
  --warning: #c49a2a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(28,26,24,.06);
  --shadow-md: 0 4px 20px rgba(28,26,24,.1);
  --shadow-lg: 0 8px 40px rgba(28,26,24,.15);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--charcoal); line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 4vw, 1.6rem); font-weight: 600; }
.section-label { font-family: var(--font-sans); font-size: .8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--ash); max-width: 600px; margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem; transition: var(--transition); letter-spacing: .5px; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 2px solid var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #8b3735; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #3a6347; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(249,246,240,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-user-btn { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; border: 1px solid var(--border); font-size: .85rem; font-weight: 500; transition: var(--transition); }
.nav-user-btn:hover { border-color: var(--gold); color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Pages ── */
.page { display: none; opacity: 0; transition: opacity .4s ease; min-height: 100vh; padding-top: 80px; }
.page.active { display: block; opacity: 1; }

/* Delete Modal */
.delete-modal { text-align: center; max-width: 400px; }
.delete-icon-wrapper { 
  background: rgba(169, 68, 66, 0.1); width: 64px; height: 64px; 
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.delete-alert-icon { font-size: 2rem; }
.delete-modal-actions { display: flex; gap: 16px; margin-top: 24px; }
.delete-modal-actions .btn { flex: 1; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #8a3534; border-color: #8a3534; }

/* ── Hero Modern ── */
.hero-modern {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 80px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,26,24,0.3) 0%, rgba(28,26,24,0.7) 100%);
  z-index: 1;
}
.hero-content-modern {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-content-modern h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-content-modern p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ── Stats ── */
.stats-bar {
  background: var(--charcoal); padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-item h3 { font-size: 2rem; color: var(--gold); margin-bottom: 4px; }
.stat-item p { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ── Services ── */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-lt); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--ash); font-size: .9rem; }

/* ── Reviews ── */
.reviews { padding: 100px 0; background: var(--parchment); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
}
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-style: italic; color: var(--ink); margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .8rem; color: var(--ash); }

/* ── Instagram ── */
.instagram-section { padding: 80px 0; text-align: center; }
.instagram-section .btn { margin-top: 24px; }

/* ── CTA ── */
.cta-bar {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2622 100%);
  padding: 60px 0; text-align: center;
}
.cta-bar h2 { color: var(--white); margin-bottom: 12px; }
.cta-bar p { color: rgba(255,255,255,.7); margin-bottom: 28px; }

/* ── Footer ── */
.footer { background: var(--charcoal); padding: 60px 0 24px; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--gold); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: .85rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 60px 0; text-align: center;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--ivory) 100%);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ash); }

/* ── Gallery ── */
.gallery-section { padding: 60px 0; }
.gallery-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; font-size: .85rem; font-weight: 500;
  border: 1px solid var(--border); transition: var(--transition); background: var(--white);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,.6), transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-card:hover .card-overlay { opacity: 1; }
.gallery-card .card-overlay span { color: #fff; font-size: .85rem; font-weight: 500; }
.gallery-info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 600;
}
.gallery-desc {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: 12px;
  flex: 1;
}
.gallery-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}
.edit-btn {
  position: absolute; top: 8px; right: 48px; z-index: 5;
  background: var(--gold); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; opacity: 0; transition: var(--transition);
}
.gallery-card:hover .edit-btn { opacity: 1; }
.gallery-empty {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  color: var(--ash); font-size: 1.1rem;
}
.gallery-empty .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: .4; }

/* ── Packages Section ── */
.packages-section {
  padding: 80px 0; background: var(--ivory);
}
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px;
}
.package-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-img-wrapper {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.package-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.package-card:hover img { transform: scale(1.05); }
.package-content {
  padding: 30px; display: flex; flex-direction: column; flex: 1;
}
.package-title {
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-dk);
  margin-bottom: 12px; font-weight: 600; text-align: center;
}
.package-desc {
  color: var(--ash); font-size: 0.95rem; margin-bottom: 24px; text-align: center;
  font-style: italic;
}
.package-features {
  list-style: none; margin-bottom: 30px; flex: 1;
}
.package-features li {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--charcoal);
}
.package-features li::before {
  content: '✓'; color: var(--gold); font-weight: bold; font-size: 1.1rem;
}
.package-card .btn { margin-top: auto; width: 100%; text-align: center; }

/* Admin controls for packages */
.package-card .admin-controls {
  position: absolute; top: 12px; right: 12px; z-index: 10; display: flex; gap: 8px; opacity: 0; transition: var(--transition);
}
.package-card:hover .admin-controls { opacity: 1; }
.package-card .admin-controls button {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-size: 1.1rem; color: #fff; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.package-card .admin-controls .edit-pkg-btn { background: var(--gold); }
.package-card .admin-controls .edit-pkg-btn:hover { background: var(--gold-dk); }
.package-card .admin-controls .delete-pkg-btn { background: var(--danger); }
.package-card .admin-controls .delete-pkg-btn:hover { background: #8a3534; }

/* Admin gallery controls */
.admin-upload-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; text-align: center;
  margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.admin-upload-panel .upload-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: .5; }
.admin-upload-panel p { color: var(--ash); margin-bottom: 24px; font-weight: 500;}

.upload-form-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.upload-form-modern input[type="text"], 
.upload-form-modern select,
.upload-form-modern textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--ivory); transition: var(--transition);
  font-family: var(--font-sans);
}
.upload-form-modern input:focus, .upload-form-modern select:focus, .upload-form-modern textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,90,.12);
}
.form-row-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ivory);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px dashed var(--border);
}
.form-row-file input[type="file"] {
  font-size: 0.9rem;
}
.gallery-card .delete-btn {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  background: var(--danger); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; opacity: 0; transition: var(--transition);
}
.gallery-card:hover .delete-btn { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer;
}

/* ── Güzellik (Beauty) Page ── */
.beauty-services { padding: 80px 0; }
.beauty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.beauty-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.beauty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.beauty-card .card-icon { font-size: 2.2rem; margin-bottom: 12px; }

.price-section { padding: 80px 0; background: var(--parchment); }
.accordion { max-width: 700px; margin: 0 auto; }
.accordion-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.accordion-header {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; transition: var(--transition); width: 100%;
}
.accordion-header:hover { color: var(--gold); }
.accordion-header .arrow { transition: var(--transition); font-size: .8rem; }
.accordion-item.open .arrow { transform: rotate(180deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-item.open .accordion-body { max-height: 300px; padding-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.price-row:last-child { border: none; }
.price-amount { font-weight: 600; color: var(--gold); }

/* ── Contact ── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-info-list .info-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-info-list .info-label { font-size: .8rem; color: var(--ash); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-list .info-value { font-weight: 500; margin-top: 2px; }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 300px; border: none; }

/* ── Forms ── */
.form-section { padding: 80px 0; background: var(--parchment); }
.form-card {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  max-width: 600px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: .9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; background: var(--ivory);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,90,.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  width: 90%; max-width: 420px; position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 1.4rem; color: var(--ash); }
.modal h2 { margin-bottom: 8px; font-size: 1.6rem; }
.modal .modal-subtitle { color: var(--ash); margin-bottom: 24px; font-size: .9rem; }
.modal .form-group { margin-bottom: 16px; }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal-switch { text-align: center; margin-top: 16px; font-size: .85rem; color: var(--ash); }
.modal-switch a { color: var(--gold); font-weight: 600; cursor: pointer; }

/* ── Admin Tables ── */
.admin-section { padding: 60px 0; }
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-table th { background: var(--charcoal); color: var(--white); text-align: left; padding: 14px 16px; font-size: .85rem; font-weight: 600; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.admin-table tr:hover td { background: var(--ivory); }
.status-badge { padding: 4px 12px; border-radius: 50px; font-size: .75rem; font-weight: 600; }
.status-bekliyor { background: #fef3c7; color: #92400e; }
.status-onaylandi { background: #d1fae5; color: #065f46; }
.status-reddedildi { background: #fee2e2; color: #991b1b; }

/* ── Side Drawer ── */
.side-drawer {
  position: fixed; top: 0; right: -320px; z-index: 1100;
  width: 300px; height: 100vh;
  background: var(--white); box-shadow: var(--shadow-lg);
  transition: right .3s ease; padding: 32px 24px;
}
.side-drawer.open { right: 0; }
.drawer-overlay { position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,.3); display: none; }
.drawer-overlay.active { display: block; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.drawer-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; }
.drawer-user-info h4 { font-size: 1rem; }
.drawer-user-info p { font-size: .8rem; color: var(--ash); }
.drawer-menu { list-style: none; }
.drawer-menu li { margin-bottom: 4px; }
.drawer-menu a, .drawer-menu button {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px; width: 100%;
  font-size: .9rem; font-weight: 500; transition: var(--transition);
}
.drawer-menu a:hover, .drawer-menu button:hover { background: var(--ivory); color: var(--gold); }
.drawer-divider { height: 1px; background: var(--border); margin: 16px 0; }

/* ── Toast ── */
.toast-container { position: fixed; top: 100px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--white); padding: 16px 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  animation: toastIn .3s ease; min-width: 280px; font-size: .9rem;
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.info { border-left: 4px solid var(--gold); }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }

/* ── Loading ── */
.loading-spinner {
  display: inline-block; width: 24px; height: 24px;
  border: 3px solid var(--border); border-top-color: var(--gold);
  border-radius: 50%; animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content-modern h1 { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Layout & Spacing */
  .container { padding: 0 16px; }
  .page { padding-top: 70px; }
  .services, .reviews, .instagram-section, .packages-section, .beauty-services, .price-section, .contact-section, .form-section { padding: 50px 0; }
  
  /* Buttons */
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  
  /* Navbar & Hamburger */
  .nav-links { 
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(249,246,240,0.98); backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center; 
    gap: 24px; z-index: 999; opacity: 0; transition: opacity 0.3s ease;
  }
  .nav-links.open { display: flex; opacity: 1; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-actions { gap: 8px; }
  .nav-brand { font-size: 1.2rem; }
  
  /* Hero Section */
  .hero-modern { 
    background-attachment: scroll; /* Fix background zoom on iOS/mobile */
    min-height: 80vh; 
    padding: 60px 16px;
    background-position: center top;
  }
  .hero-content-modern h1 { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-content-modern p { font-size: 1rem; margin-bottom: 24px; }
  .hero-buttons { display: flex; flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item h3 { font-size: 1.5rem; }
  .services-grid, .beauty-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-grid ul { padding: 0; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  
  /* Cards & Forms */
  .form-card { padding: 24px 16px; }
  .modal { padding: 24px; width: 95%; }
  .admin-upload-panel { padding: 24px 16px; margin-bottom: 24px; }
  
  /* Typography */
  .section-desc { font-size: 0.9rem; margin-bottom: 32px; }
  
  /* Side Drawer */
  .side-drawer { width: 280px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-filters { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; flex: 1 1 auto; text-align: center; }
}
