@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple-deep: #3B0764;
  --purple-main: #7E22CE;
  --purple-mid: #9333EA;
  --purple-light: #C084FC;
  --purple-pale: #F3E8FF;
  --pink-accent: #EC4899;
  --pink-light: #FBCFE8;
  --gold: #F59E0B;
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --success: #10B981;
  --danger: #EF4444;
  --shadow-sm: 0 1px 3px rgba(124,58,237,0.08);
  --shadow-md: 0 4px 20px rgba(124,58,237,0.13);
  --shadow-lg: 0 8px 40px rgba(124,58,237,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--off-white); color: var(--gray-800); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #4C0885 100%);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(59,7,100,0.35);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(236,72,153,0.4);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
}

/* "Look" = white, "Twist" = vivid pink-to-purple gradient */
.logo-look { color: #FFFFFF; }
.logo-twist {
  background: linear-gradient(90deg, #F472B6, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  font-size: 0.825rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink-accent), #BE185D) !important;
  color: #fff !important;
  padding: 0.45rem 1rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(236,72,153,0.4) !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 18px rgba(236,72,153,0.5) !important;
  background: linear-gradient(135deg, #F472B6, #EC4899) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #4C0885 45%, #7E22CE 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(236,72,153,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(192,132,252,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(192,132,252,0.18);
  border: 1px solid rgba(192,132,252,0.35);
  color: #E9D5FF;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(90deg, #F472B6, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  display: flex;
  gap: 0.5rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.5rem;
  flex-wrap: wrap;
}

.hero-search input {
  flex: 1;
  min-width: 130px;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  font-family: 'Inter', sans-serif;
}

.hero-search input::placeholder { color: rgba(255,255,255,0.4); }

.hero-search select {
  background: rgba(255,255,255,0.1);
  border: none;
  outline: none;
  color: #fff;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.hero-search select option { background: var(--purple-deep); }

.btn-search {
  background: linear-gradient(135deg, var(--pink-accent), #BE185D);
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-search:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(236,72,153,0.45); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat strong { display: block; color: #fff; font-size: 1.4rem; font-weight: 700; }
.hero-stat span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ===== SECTION ===== */
.section { padding: 3.5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.25rem; }

.section-eyebrow {
  display: inline-block;
  color: var(--pink-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.4rem;
}

.section-sub { color: var(--gray-600); font-size: 0.9rem; max-width: 480px; margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.cat-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.cat-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--purple-mid);
  margin: 0 auto 0.7rem;
  transition: all 0.22s;
}

.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--purple-mid), var(--pink-accent));
  color: #fff;
}

.cat-card h3 { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.15rem; }
.cat-card span { font-size: 0.74rem; color: var(--gray-400); }

/* ===== LISTING CARDS ===== */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.15rem;
}

.listing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.listing-img {
  width: 100%;
  height: 195px;
  background: linear-gradient(135deg, var(--purple-pale), #FCE7F3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--purple-mid);
  overflow: hidden;
}

.listing-img img { width: 100%; height: 100%; object-fit: cover; }

.listing-body { padding: 1rem 1.2rem; }
.listing-category { font-size: 0.7rem; font-weight: 700; color: var(--purple-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; display: block; }
.listing-name { font-size: 0.97rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.35rem; }
.listing-meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.6rem; flex-wrap: wrap; }
.listing-rating { display: flex; align-items: center; gap: 3px; font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.listing-rating span { color: var(--gray-400); font-weight: 400; }

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.listing-price { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25D366;
  color: #fff;
  padding: 0.32rem 0.8rem;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-whatsapp:hover { background: #128C7E; }

.badge-featured {
  background: linear-gradient(135deg, var(--gold), #F97316);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-main));
  color: #fff;
  box-shadow: 0 3px 12px rgba(147,51,234,0.32);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(147,51,234,0.42); }

.btn-outline {
  background: transparent;
  color: var(--purple-mid);
  border: 1.5px solid var(--purple-mid);
}

.btn-outline:hover { background: var(--purple-pale); }

.btn-pink {
  background: linear-gradient(135deg, var(--pink-accent), #BE185D);
  color: #fff;
  box-shadow: 0 3px 12px rgba(236,72,153,0.3);
}

.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(236,72,153,0.4); }

/* ===== AI TOOL CARDS ===== */
.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.15rem;
}

.ai-tool-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--gray-200);
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.ai-tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-mid), var(--pink-accent));
}

.ai-tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-light); }

.ai-tool-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--purple-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-mid);
  margin-bottom: 0.9rem;
}

.ai-tool-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.35rem; }
.ai-tool-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 0.85rem; }

.ai-free-badge {
  display: inline-block;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.15rem; }

.gallery-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.22s;
}

.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.gallery-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; height: 175px; }

.gallery-images .g-img {
  background: var(--purple-pale);
  overflow: hidden;
  position: relative;
}

.gallery-images .g-img img { width: 100%; height: 100%; object-fit: cover; }

.g-label {
  position: absolute;
  bottom: 4px; left: 4px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.gallery-body { padding: 0.9rem 1.1rem; }
.gallery-body h4 { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.25rem; }
.gallery-body p { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.65rem; }
.gallery-footer { display: flex; align-items: center; justify-content: space-between; }

.vote-btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--purple-pale);
  color: var(--purple-mid);
  border: none;
  padding: 0.32rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.vote-btn:hover { background: var(--purple-mid); color: #fff; }

/* ===== FORMS ===== */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--purple-deep); margin-bottom: 0.2rem; }
.form-sub { font-size: 0.84rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(147,51,234,0.1);
}

.form-group textarea { resize: vertical; min-height: 95px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-required { color: var(--pink-accent); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.4rem; }

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.22s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-img {
  height: 175px;
  background: linear-gradient(135deg, var(--purple-pale), #FCE7F3);
  overflow: hidden;
}

.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.15rem; }

.blog-tag {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-mid);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}

.blog-card h3 { font-size: 0.93rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.35rem; line-height: 1.4; }
.blog-card p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 0.65rem; }
.blog-date { font-size: 0.73rem; color: var(--gray-400); }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2E0657 100%);
  color: rgba(255,255,255,0.72);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { font-size: 0.83rem; margin-top: 0.7rem; line-height: 1.65; max-width: 250px; }

.footer-social { display: flex; gap: 0.65rem; margin-top: 1rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--pink-accent); color: #fff; }

.footer-col h4 { color: #fff; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.9rem; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { font-size: 0.81rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--purple-deep), #5B21B6);
  padding: 2.75rem 1.5rem 2.25rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.4rem;
}

.page-header p { color: rgba(255,255,255,0.68); font-size: 0.92rem; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.filter-bar select, .filter-bar input {
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.filter-bar select:focus, .filter-bar input:focus { border-color: var(--purple-mid); }
.filter-bar label { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; white-space: nowrap; }

/* ===== AI TOOL WRAPPER ===== */
.ai-tool-wrapper {
  max-width: 660px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.ai-result-box {
  background: var(--purple-pale);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-top: 1.4rem;
  border: 1px solid rgba(147,51,234,0.18);
  min-height: 110px;
  font-size: 0.88rem;
  color: var(--gray-800);
  line-height: 1.75;
  white-space: pre-wrap;
}

.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(147,51,234,0.25);
  border-top-color: var(--purple-mid);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 230px;
  background: linear-gradient(180deg, var(--purple-deep), #2E0657);
  padding: 1.4rem 0.9rem;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}

.admin-main { margin-left: 230px; padding: 2rem; flex: 1; min-height: 100vh; background: var(--gray-50); }

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 0.845rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 0.2rem;
  cursor: pointer;
  text-decoration: none;
}

.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.12); color: #fff; }
.admin-nav-item i { font-size: 0.95rem; width: 16px; text-align: center; }

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1rem; margin-bottom: 1.75rem; }

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--purple-mid);
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s;
}

.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card .stat-num { font-size: 1.75rem; font-weight: 700; color: var(--purple-deep); line-height: 1; margin-bottom: 0.2rem; }
.stat-card .stat-label { font-size: 0.78rem; color: var(--gray-400); }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.845rem; }
.data-table th { padding: 0.7rem 1rem; background: var(--gray-50); color: var(--gray-600); font-weight: 600; text-align: left; border-bottom: 2px solid var(--gray-200); }
.data-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-800); vertical-align: middle; }
.data-table tr:hover td { background: var(--gray-50); }

.badge-approved { background: #DCFCE7; color: #15803D; padding: 2px 8px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.badge-pending { background: #FEF9C3; color: #CA8A04; padding: 2px 8px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.badge-rejected { background: #FEE2E2; color: #DC2626; padding: 2px 8px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }

/* ===== ALERTS ===== */
.alert { padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.855rem; margin-bottom: 1rem; border: 1px solid; }
.alert-success { background: #F0FDF4; color: #15803D; border-color: #BBF7D0; }
.alert-error { background: #FEF2F2; color: #DC2626; border-color: #FECACA; }

/* ===== STARS ===== */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 2.25rem; flex-wrap: wrap; }

.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  font-size: 0.845rem; font-weight: 500;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  transition: all 0.2s;
  text-decoration: none;
}

.pagination a:hover { border-color: var(--purple-mid); color: var(--purple-mid); }
.pagination .active { background: var(--purple-mid); border-color: var(--purple-mid); color: #fff; }

/* ===== NO RESULTS ===== */
.no-results { text-align: center; padding: 3.5rem 2rem; color: var(--gray-400); }
.no-results i { font-size: 2.5rem; margin-bottom: 0.85rem; display: block; }
.no-results h3 { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 0.4rem; }
.no-results p { font-size: 0.855rem; }

/* ===== STATIC PAGES (About, Contact, Privacy) ===== */
.static-page { max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem; }
.static-page h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--purple-deep); margin: 2rem 0 0.75rem; }
.static-page h2:first-of-type { margin-top: 0; }
.static-page p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.static-page ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.static-page ul li { font-size: 0.92rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 0.3rem; }
.static-page a { color: var(--purple-mid); }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--purple-deep); margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.1rem; font-size: 0.875rem; color: var(--gray-600); }
.contact-item i { color: var(--purple-mid); margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: linear-gradient(135deg, var(--purple-deep), #4C0885); padding: 1rem; flex-direction: column; gap: 0.2rem; z-index: 999; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 1.25rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-search { padding: 0.4rem; }
  .hero { padding: 3.5rem 1rem 3rem; }
  .section { padding: 2.5rem 1rem; }
  .ai-tool-wrapper, .form-container { padding: 1.5rem; }
}

@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .listings-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .ai-tools-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .hero-stat strong { font-size: 1.15rem; }
  .data-table { font-size: 0.78rem; }
  .data-table th, .data-table td { padding: 0.6rem 0.6rem; }
  .page-header { padding: 2rem 1rem 1.75rem; }
  .listing-detail-grid { grid-template-columns: 1fr !important; }
}
