/* ============================================================
   SADAF — Ceremony Rental Website  |  Main Stylesheet
   Theme: Deep Navy + Gold  |  Mobile-First Responsive
   ============================================================ */

/* ── Google Fonts (loaded via HTML) ─────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-light:  #162336;
  --gold:        #c9a96e;
  --gold-light:  #e8c98a;
  --gold-dark:   #a07c48;
  --white:       #ffffff;
  --off-white:   #f8f5f0;
  --gray:        #8a8a8a;
  --gray-light:  #f2f2f2;
  --text:        #2c2c2c;
  --border:      #e0d6c8;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);
  --radius:      12px;
  --transition:  0.3s ease;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
p  { font-size: 1rem; color: #555; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { color: var(--gray); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.text-center   { text-align: center; }

/* ── Utility ─────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1240px; margin: 0 auto; }
.section   { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.d-flex    { display: flex; }
.align-center { align-items: center; }
.gap-1     { gap: 0.5rem; }
.gap-2     { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-size: 1rem;
  padding: 0.85rem 2rem;
}
.btn-wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Header / Navbar ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(13,27,42,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 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-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 1.4rem;
  font-family: var(--font-head);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.5s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .section-label { font-size: 0.8rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-decor {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: min(520px, 48vw);
  opacity: 0.9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-decor img { width: 100%; height: 100%; object-fit: cover; }

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 22px 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: rgba(13,27,42,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Section Divider ──────────────────────────────────────────── */
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.divider-left { margin: 0 0 2rem; }

/* ── Category Filters ─────────────────────────────────────────── */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cat-btn {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── Clothes Grid ─────────────────────────────────────────────── */
.clothes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
}
.cloth-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.cloth-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cloth-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}
.cloth-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cloth-card:hover .cloth-card-img img { transform: scale(1.05); }

.cloth-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 50px;
}
.cloth-badge.cat-badge {
  top: 12px; left: auto; right: 12px;
  background: rgba(13,27,42,0.75);
  color: var(--gold);
}
.cloth-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}
.cloth-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.cloth-card-body .cloth-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.cloth-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cloth-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cloth-card-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  flex: 1;
  justify-content: center;
}

/* ── Gallery Page Grid ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-head);
}

/* ── Lightbox ─────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ── About Page ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature-text h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.about-feature-text p  { font-size: 0.88rem; margin: 0; }

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-detail-text strong { font-size: 0.95rem; color: var(--navy); }

/* ── Form ─────────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.3rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ── Alert / Flash Messages ───────────────────────────────────── */
.alert {
  padding: 1rem 1.4rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ── Page Banner (inner pages) ────────────────────────────────── */
.page-banner {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/banner-pattern.svg') repeat;
  opacity: 0.04;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-banner p  { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: var(--gold); }

/* ── Floating WhatsApp Button ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

/* ── Cloth Detail Modal ───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 16px;
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  z-index: 10;
}
.modal-close:hover { color: var(--navy); }
.modal-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.modal-gallery { position: relative; }
.modal-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.modal-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  overflow-x: auto;
  background: var(--off-white);
}
.modal-thumb {
  width: 60px; height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-thumb.active { border-color: var(--gold); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-body .cat-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}
.modal-body h2 { font-size: 1.7rem; line-height: 1.2; }
.modal-body .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.modal-body .desc { font-size: 0.92rem; color: #555; line-height: 1.7; }
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.modal-meta .meta-chip {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text);
}
.modal-actions { display: flex; flex-direction: column; gap: 0.8rem; margin-top: auto; }
.modal-actions .btn { justify-content: center; }

/* ── Scroll To Top ────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ── Loading Spinner ──────────────────────────────────────────── */
.spinner {
  border: 3px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 50%;
  width: 36px; height: 36px;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── No Results ───────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}
.empty-state i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 1rem; }
.empty-state p  { font-size: 1.05rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-decor  { display: none; }
}

@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .about-img    { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-inner  { grid-template-columns: 1fr; }
  .modal-gallery { border-bottom: 1px solid var(--border); }
  .modal-main-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .clothes-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .clothes-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .cloth-card-body { padding: 0.9rem; }
  .cloth-card-body h3 { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  .form-card { padding: 1.5rem; }
  .modal-body { padding: 1.5rem; }
  .wa-float   { bottom: 16px; right: 16px; }
  .scroll-top { bottom: 84px; right: 16px; }
}
