/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }

.gradient-text {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-gradient { background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%); }
.red-glow { box-shadow: 0 0 30px rgba(220,38,38,.2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeIn .5s ease forwards; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,9,11,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #27272a;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 16px; display: flex;
  align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; } }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.125rem; color: #fff; }
.nav-logo .text-red { color: #ef4444; }
.nav-links { display: none; align-items: center; gap: 24px; font-size: 0.875rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { color: #d4d4d8; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #f87171; }
.nav-mobile { color: #f87171; font-size: 0.875rem; font-weight: 600; }
@media (min-width: 768px) { .nav-mobile { display: none; } }

/* ===== HERO ===== */
.hero { padding: 64px 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 96px 0; } }
.hero-dots {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='white'/></svg>");
}
.hero-content { position: relative; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3);
  border-radius: 9999px; padding: 6px 16px;
  color: #f87171; font-size: 0.875rem; font-weight: 500; margin-bottom: 24px;
}
.hero h1 { font-size: 2.25rem; font-weight: 900; margin-bottom: 24px; line-height: 1.15; color: #fff; }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero p { color: #a1a1aa; font-size: 1.125rem; max-width: 768px; margin: 0 auto 32px; }
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ===== BUTTONS ===== */
.btn-red {
  background: #dc2626; color: #fff; padding: 12px 32px;
  border-radius: 12px; font-weight: 600; transition: background .2s; display: inline-block;
  border: none; cursor: pointer; font-size: 1rem;
}
.btn-red:hover { background: #b91c1c; }
.btn-outline {
  border: 1px solid #3f3f46; color: #d4d4d8;
  padding: 12px 32px; border-radius: 12px; font-weight: 600;
  transition: all .2s; display: inline-block; background: transparent;
  cursor: pointer; font-size: 1rem;
}
.btn-outline:hover { border-color: #ef4444; color: #fff; }

/* ===== METHODOLOGY ===== */
.methodology { padding: 64px 0; border-bottom: 1px solid #27272a; }
.methodology h2 { font-size: 1.875rem; font-weight: 700; text-align: center; color: #fff; margin-bottom: 16px; }
.methodology > .container > p { color: #a1a1aa; text-align: center; max-width: 640px; margin: 0 auto 48px; }
.method-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .method-grid { grid-template-columns: repeat(5, 1fr); } }
.method-card {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 12px; padding: 24px; text-align: center;
}
.method-icon {
  width: 56px; height: 56px; background: rgba(220,38,38,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.method-icon i { color: #f87171; font-size: 1.25rem; }
.method-card h3 { font-weight: 700; color: #fff; margin-bottom: 8px; }
.method-card p { color: #71717a; font-size: 0.875rem; margin-bottom: 12px; }
.method-pct { color: #f87171; font-weight: 700; font-size: 1.125rem; }

/* ===== FILTERS ===== */
.rating-section { padding: 48px 0; }
.rating-section > .container > h2 { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 32px; }
.filters-box {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 12px; padding: 16px; margin-bottom: 32px;
}
.filters-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.search-wrap { flex: 1; min-width: 200px; position: relative; }
.search-wrap i { position: absolute; left: 12px; top: 12px; color: #71717a; }
.search-wrap input {
  width: 100%; background: #27272a; border: 1px solid #3f3f46;
  border-radius: 8px; padding: 10px 16px 10px 40px;
  color: #fff; font-size: 0.875rem; outline: none;
  transition: border-color .2s;
}
.search-wrap input:focus { border-color: #ef4444; }
.sort-select {
  background: #27272a; border: 1px solid #3f3f46;
  border-radius: 8px; padding: 10px 16px; color: #fff;
  font-size: 0.875rem; outline: none;
}
.sort-select:focus { border-color: #ef4444; }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.filter-btn {
  font-size: 0.875rem; padding: 6px 12px;
  border: 1px solid #3f3f46; border-radius: 9999px;
  color: #a1a1aa; background: transparent; cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: #ef4444; }
.filter-btn.active { background: #dc2626; color: #fff; border-color: #dc2626; }
.filter-sep { color: #52525b; margin: 0 4px; display: flex; align-items: center; }

/* ===== SALON CARDS GRID ===== */
.salons-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .salons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .salons-grid { grid-template-columns: repeat(3, 1fr); } }

.salon-card {
  position: relative; background: #18181b; border: 1px solid #27272a;
  border-radius: 16px; overflow: hidden; transition: all .3s ease;
}
.salon-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(220,38,38,.15); }

/* ===== #1 FEATURED CARD ===== */
.salon-card.featured-card {
  grid-column: 1 / -1;
  border: 2px solid rgba(234,179,8,.4);
  background: linear-gradient(135deg, #18181b 0%, #1a1505 50%, #18181b 100%);
  box-shadow: 0 0 50px rgba(234,179,8,.12);
}
.salon-card.featured-card:hover {
  box-shadow: 0 20px 60px rgba(234,179,8,.2);
}
.featured-inner {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .featured-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.featured-inner .card-media {
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid #27272a;
  border-right: none;
}
@media (min-width: 768px) {
  .featured-inner .card-media {
    aspect-ratio: auto;
    min-height: 420px;
    border-bottom: none;
    border-right: 1px solid #27272a;
  }
}
.featured-ribbon {
  position: absolute; top: 16px; left: 16px; z-index: 11;
  background: linear-gradient(135deg, #eab308, #f59e0b);
  color: #000; font-weight: 800; font-size: 0.8rem; text-transform: uppercase;
  padding: 6px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(234,179,8,.4);
  letter-spacing: .5px;
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(234,179,8,.2);
  border-bottom: 1px solid rgba(234,179,8,.2);
}
.featured-stat {
  text-align: center;
}
.featured-stat .stat-val {
  color: #facc15;
  font-weight: 800;
  font-size: 1.25rem;
  display: block;
}
.featured-stat .stat-lbl {
  color: #71717a;
  font-size: 0.75rem;
  margin-top: 2px;
}
.featured-why {
  margin: 12px 0 16px;
  padding: 14px;
  background: rgba(234,179,8,.06);
  border: 1px solid rgba(234,179,8,.15);
  border-radius: 12px;
  font-size: 0.85rem;
  color: #d4d4d8;
}
.featured-why strong {
  color: #facc15;
}

/* Badges */
.badge {
    position: absolute;
    font-weight: 900;
    border-radius: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    z-index: 10;
}
.badge-1 { width: 48px; height: 48px; background: #eab308; color: #000; font-size: 1.125rem; border: 2px solid #facc15; }
.badge-2 { width: 48px; height: 48px; background: #d4d4d8; color: #000; font-size: 1.125rem; border: 2px solid #e5e7eb; }
.badge-3 { width: 48px; height: 48px; background: #92400e; color: #fff; font-size: 1.125rem; border: 2px solid #b45309; }
.badge-n { width: 40px; height: 40px; background: #27272a; color: #fff; font-size: 0.875rem; border: 1px solid #3f3f46; }

.card-body { padding: 24px; padding-top: 32px; }
.card-header { display: flex; align-items: start; justify-content: space-between; margin-bottom: 12px; }
.card-title { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.card-rating { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.card-rating .val { color: #facc15; font-weight: 600; }
.card-rating .cnt { color: #71717a; }
.card-desc { color: #a1a1aa; font-size: 0.875rem; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 16px; }
.tag {
  display: inline-block; padding: 2px 10px;
  border-radius: 9999px; font-size: 0.75rem;
  border: 1px solid #3f3f46; color: #a1a1aa;
}
.tag i { color: #22c55e; margin-right: 4px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; margin-bottom: 16px; }
.card-metro { color: #a1a1aa; }
.card-metro i { color: #f87171; margin-right: 4px; }
.card-price { color: #d4d4d8; font-weight: 600; }
.card-btns { display: flex; gap: 8px; }
.card-btn-main {
  flex: 1; background: #dc2626; color: #fff;
  text-align: center; padding: 10px; border-radius: 12px;
  font-weight: 600; font-size: 0.875rem; transition: background .2s;
}
.card-btn-main:hover { background: #b91c1c; }
.card-btn-ext {
  padding: 10px 16px; border: 1px solid #3f3f46;
  border-radius: 12px; color: #a1a1aa; transition: all .2s;
  display: flex; align-items: center;
}
.card-btn-ext:hover { border-color: #ef4444; color: #f87171; }

.no-results { display: none; text-align: center; padding: 48px 0; color: #71717a; }
.no-results.show { display: block; }
.no-results i { font-size: 2.25rem; margin-bottom: 16px; display: block; }

/* ===== FAQ ===== */
.faq-section { padding: 64px 0; border-top: 1px solid #27272a; }
.faq-section h2 { font-size: 1.875rem; font-weight: 700; text-align: center; color: #fff; margin-bottom: 48px; }
.faq-list { max-width: 896px; margin: 0 auto; }
.faq-item {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; cursor: pointer; width: 100%; background: none;
  border: none; color: #fff; font-weight: 600; font-size: 1rem;
  text-align: left;
}
.faq-question i { color: #f87171; transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 20px; color: #a1a1aa; font-size: 0.875rem; line-height: 1.6; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ===== CTA ===== */
.cta-section { padding: 64px 0; background: #18181b; border-top: 1px solid #27272a; }
.cta-section .cta-inner { max-width: 768px; margin: 0 auto; text-align: center; }
.cta-section h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-section p { color: #a1a1aa; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer { background: #09090b; border-top: 1px solid #27272a; margin-top: 80px; padding: 48px 0; }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.footer h4 { font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer p, .footer li, .footer a { color: #a1a1aa; font-size: 0.875rem; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: #f87171; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { color: #71717a; font-size: 1.25rem; }
.footer-socials a:hover { color: #f87171; }
.footer-bottom {
  border-top: 1px solid #27272a; margin-top: 32px; padding-top: 24px;
  text-align: center; font-size: 0.75rem; color: #52525b;
}

/* ===== STARS ===== */
.stars { display: inline-flex; gap: 1px; }
.stars .fa-star, .stars .fa-star-half-alt { color: #facc15; }
.stars .far.fa-star { color: #facc15; }

/* ===== SALON PAGE ===== */
.breadcrumb { padding: 16px 0; font-size: 0.875rem; color: #71717a; }
.breadcrumb a { color: #71717a; transition: color .2s; }
.breadcrumb a:hover { color: #f87171; }

.salon-header {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 16px; padding: 24px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .salon-header { padding: 40px; } }
.salon-rank-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.3);
  color: #f87171; font-weight: 700; padding: 8px 16px;
  border-radius: 9999px; font-size: 1.125rem;
}
.salon-header h1 { font-size: 1.875rem; font-weight: 900; color: #fff; margin-bottom: 16px; padding-right: 64px; }
@media (min-width: 768px) { .salon-header h1 { font-size: 3rem; } }
.salon-header-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.salon-header-rating .val { color: #facc15; font-weight: 700; font-size: 1.25rem; }
.salon-header-rating .cnt { color: #71717a; }
.salon-header-desc { color: #d4d4d8; font-size: 1.125rem; max-width: 768px; }
.salon-header-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.salon-layout { display: grid; gap: 32px; }
@media (min-width: 1024px) { .salon-layout { grid-template-columns: 2fr 1fr; } }

.salon-main { display: flex; flex-direction: column; gap: 32px; }

.salon-section {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 16px; padding: 24px;
}
@media (min-width: 768px) { .salon-section { padding: 32px; } }
.salon-section h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.salon-section h2 i { color: #f87171; margin-right: 8px; }
.salon-section p { color: #a1a1aa; margin-bottom: 16px; line-height: 1.6; }

/* Styles & Services */
.styles-services { display: grid; gap: 24px; }
@media (min-width: 768px) { .styles-services { grid-template-columns: 1fr 1fr; } }
.styles-services h3 { font-weight: 600; color: #fff; margin-bottom: 12px; }
.style-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.style-tag {
  background: #27272a; border: 1px solid #3f3f46;
  color: #d4d4d8; padding: 6px 12px; border-radius: 8px; font-size: 0.875rem;
}
.services-list li { color: #a1a1aa; font-size: 0.875rem; margin-bottom: 8px; }
.services-list i { color: #22c55e; margin-right: 8px; }
.salon-meta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid #27272a; font-size: 0.875rem;
}
.salon-meta-row .label { color: #71717a; }
.salon-meta-row .value { color: #fff; font-weight: 600; }

/* Reviews */
.review-card {
  background: #27272a; border-radius: 12px; padding: 20px;
  margin-bottom: 16px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  background: rgba(220,38,38,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #f87171; font-weight: 700;
}
.review-name { font-weight: 600; color: #fff; }
.review-text { color: #a1a1aa; font-size: 0.875rem; font-style: italic; }

/* Map */
.map-frame { border-radius: 12px; overflow: hidden; border: 1px solid #3f3f46; }
.map-frame iframe { width: 100%; height: 350px; display: block; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: #18181b; border: 1px solid #27272a;
  border-radius: 16px; padding: 24px;
}
.sidebar-card.sticky { position: sticky; top: 80px; }
.sidebar-card h3 { font-weight: 700; color: #fff; font-size: 1.125rem; margin-bottom: 16px; }
.sidebar-card h3 i { margin-right: 8px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; font-size: 0.875rem; }
.contact-item { display: flex; gap: 12px; }
.contact-item i { color: #f87171; margin-top: 3px; width: 20px; flex-shrink: 0; text-align: center; }
.contact-item span, .contact-item a { color: #d4d4d8; }
.contact-item a:hover { color: #f87171; }
.sidebar-price { margin-top: 16px; padding-top: 16px; border-top: 1px solid #27272a; }
.sidebar-price .label { font-size: 0.875rem; color: #71717a; margin-bottom: 4px; }
.sidebar-price .value { font-size: 1.25rem; font-weight: 700; color: #fff; }

.advantage-list li { display: flex; gap: 8px; font-size: 0.875rem; color: #d4d4d8; margin-bottom: 8px; }
.advantage-list i { color: #22c55e; margin-top: 3px; }

.nav-salon { font-size: 0.875rem; }
.nav-salon a { display: flex; align-items: center; gap: 8px; color: #a1a1aa; transition: color .2s; margin-bottom: 8px; }
.nav-salon a:hover { color: #f87171; }
.nav-salon .current { color: #f87171; font-weight: 600; margin-bottom: 8px; }
.nav-salon .back-link { display: block; margin-top: 16px; text-align: center; color: #71717a; }
.nav-salon .back-link:hover { color: #f87171; }

.recommend-item {
  display: block; background: #27272a; border-radius: 8px; padding: 12px;
  transition: background .2s; margin-bottom: 12px;
}
.recommend-item:hover { background: #3f3f46; }
.recommend-item .name { font-weight: 600; color: #fff; font-size: 0.875rem; }
.recommend-item .meta { font-size: 0.75rem; color: #71717a; margin-top: 4px; }

/* ===== SEO BLOCK ===== */
.seo-section { padding: 0 0 64px; }
.seo-box { background: linear-gradient(180deg, rgba(24,24,27,.98), rgba(17,24,39,.98)); border: 1px solid #27272a; border-radius: 20px; padding: 28px; }
.seo-head { margin-bottom: 20px; }
.seo-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 9999px; padding: 8px 14px; margin-bottom: 16px; font-size: .875rem; font-weight: 600; color: #fca5a5; background: rgba(220,38,38,.12); border: 1px solid rgba(220,38,38,.35); }
.seo-box h2 { color: #fff; font-size: 1.75rem; line-height: 1.2; margin-bottom: 0; }
.seo-grid { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 900px) { .seo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.seo-grid p { color: #cbd5e1; margin-bottom: 14px; }
.seo-grid a { color: #f87171; text-decoration: underline; text-underline-offset: 3px; }
.seo-grid a:hover { color: #fca5a5; }
.seo-points { display: grid; gap: 12px; }
@media (min-width: 900px) { .seo-points { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.seo-points li { display: flex; gap: 10px; align-items: flex-start; color: #d4d4d8; background: rgba(39,39,42,.75); border: 1px solid #3f3f46; border-radius: 14px; padding: 16px; font-size: .95rem; }
.seo-points i { color: #22c55e; margin-top: 3px; }


/* ===== REAL PHOTOS ===== */
.card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #111827;
  border-bottom: 1px solid #27272a;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.salon-card:hover .card-media img { transform: scale(1.04); }
.card-media-badges {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-media-badges span {
  background: rgba(9, 9, 11, .76);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 600;
}
.card-body { padding-top: 24px; }
.card-preview-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.card-preview-strip img {
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #3f3f46;
  background: #111827;
}
.salon-cover {
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #27272a;
  background: #18181b;
}
.salon-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #3f3f46;
  background: #27272a;
}
.media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
/* ===== MASTERS SECTION ===== */
.masters-section {}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.master-card {
  background: var(--card-bg, #1a1a1a);
  border: 1px solid rgba(239,68,68,.18);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.master-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(239,68,68,.15);
}

.master-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.master-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.master-card:hover .master-photo img {
  transform: scale(1.05);
}

.master-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.master-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
}

.master-spec {
  font-size: 0.8rem;
  color: #f87171;
  line-height: 1.4;
}

.master-exp {
  font-size: 0.76rem;
  color: #94a3b8;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .masters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .master-info {
    padding: 10px 12px 14px;
  }
  .master-name {
    font-size: 0.95rem;
  }
  .master-spec {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .masters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
