/* ============================================
   ELAMAR TURİZM — Site Stili
   Tasarım sistemi: beyaz zemin, kırmızı ana renk,
   Nunito Sans, ince gri çerçeveli kartlar
   ============================================ */

:root {
  --primary: hsl(3, 90%, 50%);
  --primary-dark: #c8102e;
  --primary-soft: hsla(3, 90%, 50%, .1);
  --fg: hsl(0, 0%, 13%);
  --muted-fg: hsl(0, 0%, 40%);
  --bg: #fff;
  --secondary: hsl(0, 0%, 96%);
  --secondary-40: hsla(0, 0%, 96%, .55);
  --border: hsl(0, 0%, 90%);
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --radius: .5rem;
  --radius-lg: .75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-xl: 0 20px 45px rgba(0, 0, 0, .18);
}

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

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 860px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; color: var(--primary); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-weight: 900; font-size: 1.35rem; letter-spacing: -.02em; white-space: nowrap; }
.brand-red { color: var(--primary); }
.logo-sub { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; color: var(--muted-fg); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .dropdown > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 11px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; color: var(--fg);
  transition: .15s;
}
.main-nav > a:hover, .dropdown > a:hover { background: var(--secondary); color: var(--primary); }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 6px; display: none; z-index: 50;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: var(--radius); font-size: .88rem; font-weight: 600; }
.dropdown-menu a:hover { background: var(--secondary); color: var(--primary); }

.nav-wa { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--fg); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius); border: none; cursor: pointer;
  font-family: inherit; font-size: .92rem; font-weight: 800; transition: .15s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-ghost { background: #fff; color: var(--fg); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: .82rem; border-radius: 999px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35) 50%, rgba(0,0,0,.65)),
    url('../img/hero.jpg') center/cover no-repeat,
    linear-gradient(135deg, #3a3a3a, #1c1c1c);
}
.hero-inner {
  min-height: 46vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
  padding-top: 56px; padding-bottom: 56px; text-align: center;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.2; letter-spacing: -.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  max-width: 900px;
}
.hero p { font-size: clamp(.95rem, 2vw, 1.12rem); color: rgba(255,255,255,.9); text-shadow: 0 1px 4px rgba(0,0,0,.35); max-width: 700px; }

.search-box {
  width: 100%; max-width: 960px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr .9fr auto; gap: 10px; align-items: end;
  background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); padding: 12px; color: var(--fg);
}
.search-field {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 8px 12px;
}
.search-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-fg); }
.search-field select,
.search-field input {
  border: none; outline: none; background: none; font-family: inherit;
  font-size: .95rem; font-weight: 700; color: var(--fg); cursor: pointer; width: 100%;
  min-width: 0;
}
.search-field input::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .6; }
.search-box .btn { padding: 14px 26px; }

/* ---------- Bölümler ---------- */
.section { padding: 40px 0; }
.section.pad-lg { padding: 72px 0; }
.alt-stripe { background: var(--secondary-40); }
.section-title { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 800; letter-spacing: -.02em; }
.section-sub { color: var(--muted-fg); margin-top: 4px; font-size: .95rem; }
.section > .container > .section-title { text-align: center; }
.section > .container > .section-sub { text-align: center; margin-bottom: 32px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 22px; gap: 16px; flex-wrap: wrap; }
.section-head .section-title, .section-head .section-sub { text-align: left; }
.see-all { font-size: .9rem; font-weight: 800; color: var(--primary); white-space: nowrap; }
.see-all:hover { color: var(--primary-dark); text-decoration: underline; }

/* ---------- Kategori kutuları (kare görselli) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cat-img {
  position: relative; aspect-ratio: 1/1; width: 100%; overflow: hidden;
  border-radius: var(--radius-xl); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.cat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-img::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.1); transition: background .2s; }
.cat-card:hover .cat-img img { transform: scale(1.1); }
.cat-card:hover .cat-img::after { background: rgba(0,0,0,.25); }
.cat-card span.cat-label { text-align: center; font-size: .88rem; font-weight: 700; line-height: 1.25; transition: color .15s; }
.cat-card:hover span.cat-label { color: var(--primary); }

/* ---------- Villa kartları ---------- */
.villa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 20px; }
.villa-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s;
  display: flex; flex-direction: column;
}
.villa-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: hsl(0,0%,84%); }
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.villa-card:hover .card-img img { transform: scale(1.07); }

.badge { position: absolute; top: 10px; padding: 4px 11px; border-radius: 999px; font-size: .72rem; font-weight: 800; color: #fff; }
.type-badge { left: 10px; background: rgba(17, 17, 17, .75); backdrop-filter: blur(4px); }
.sale-badge { right: 10px; background: var(--primary); }

.card-body { padding: 15px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: var(--secondary); color: var(--muted-fg); font-size: .7rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--border); }
a.tag:hover { color: var(--primary); border-color: var(--primary); }
.tag-solid { background: var(--primary); color: #fff; border-color: var(--primary); }
.card-body h3 { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.card-loc, .card-meta { font-size: .83rem; color: var(--muted-fg); }
.card-price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.card-price s { color: var(--muted-fg); font-size: .84rem; }
.card-price strong { color: var(--primary); font-size: 1.28rem; font-weight: 900; }
.card-price span { color: var(--muted-fg); font-size: .8rem; }

/* ---------- Özellik kartları ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 32px; }
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-lg);
  background: var(--primary-soft); color: var(--primary); font-size: 1.4rem;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.feature p { font-size: .88rem; color: var(--muted-fg); }

/* ---------- Yorumlar ---------- */
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px; }
.rating-score { font-size: 3rem; font-weight: 900; color: var(--fg); }
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; }
.rating-summary p { color: var(--muted-fg); font-size: .9rem; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.testi-card p { font-size: .9rem; margin: 10px 0 12px; }
.testi-name { font-size: .82rem; font-weight: 800; color: var(--muted-fg); }

/* ---------- CTA bandı ---------- */
.cta-band { background: var(--fg); color: #fff; padding: 64px 0; }
.cta-inner { text-align: center; }
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.inner-cta { border-radius: var(--radius-xl); padding: 44px 24px; text-align: center; margin-top: 40px; }
.inner-cta h2 { margin-bottom: 18px; }

/* ---------- Sayfa hero (iç sayfalar) ---------- */
.page-hero { background: var(--secondary-40); border-bottom: 1px solid var(--border); padding: 40px 0; }
.page-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.page-hero p { color: var(--muted-fg); }

/* ---------- Villa detay ---------- */
.breadcrumb { padding: 14px 20px; font-size: .84rem; color: var(--muted-fg); }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }

.villa-detail { padding-bottom: 40px; }

/* Airbnb tarzı foto-ızgara (kaynak site düzeni) */
.photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr);
  gap: 8px; height: 440px; border-radius: var(--radius-xl); overflow: hidden;
}
.pg-cell {
  position: relative; overflow: hidden; padding: 0; border: none; cursor: pointer;
  background: var(--secondary); display: block;
}
.pg-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pg-cell:hover img { transform: scale(1.04); }
/* ilk fotoğraf büyük (2x2) */
.photo-grid .pg-cell:first-child { grid-column: span 2; grid-row: span 2; }
/* fotoğraf sayısına göre uyarlama */
.pg-count-1 .pg-cell:first-child { grid-column: 1 / -1; grid-row: 1 / -1; }
.pg-count-2 { grid-template-rows: 1fr; }
.pg-count-2 .pg-cell:first-child { grid-column: span 2; grid-row: span 1; }
.pg-count-3 .pg-cell:first-child { grid-row: span 2; }
.pg-more {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .5); color: #fff; font-weight: 800; font-size: 1.1rem; letter-spacing: .01em;
}
.pg-cell:hover .pg-more { background: rgba(0, 0, 0, .62); }
/* mobil foto sayacı rozeti (masaüstünde gizli) */
.pg-more-mobile {
  display: none; position: absolute; right: 12px; bottom: 12px;
  background: rgba(0, 0, 0, .65); color: #fff; font-weight: 700; font-size: .82rem;
  padding: 6px 12px; border-radius: 999px; align-items: center; gap: 5px;
}

/* Tam ekran görsel büyütme (lightbox) */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 96vw; max-height: 92vh; object-fit: contain; border-radius: 8px; }
.lightbox .lb-close { position: absolute; top: 18px; right: 24px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; background: none; border: none; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); color: #fff; border: none; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lightbox .lb-prev { left: 18px; } .lightbox .lb-next { right: 18px; }
.lightbox .lb-nav:hover { background: rgba(255,255,255,.3); }
.lightbox .lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: .9rem; font-weight: 600; background: rgba(0,0,0,.5); padding: 5px 14px; border-radius: 999px; }

/* Mobilde: tek büyük fotoğraf + "+N Fotoğraf" rozeti, diğerleri gizli */
@media (max-width: 700px) {
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: 1fr; height: 300px; }
  .photo-grid .pg-cell { display: none; }
  .photo-grid .pg-cell:first-child { display: block; grid-column: 1 / -1; grid-row: 1 / -1; }
  .photo-grid .pg-cell:first-child .pg-more-mobile { display: flex; }
}

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-top: 28px; align-items: start; }
.detail-main h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; margin: 8px 0 4px; }
.detail-main h2 { font-size: 1.2rem; font-weight: 800; margin: 28px 0 10px; }
.detail-desc { color: var(--muted-fg); }

.spec-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.spec {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 14px 22px; text-align: center; display: flex; flex-direction: column; min-width: 100px;
  box-shadow: var(--shadow-sm);
}
.spec strong { font-size: 1.3rem; font-weight: 900; color: var(--primary); }
.spec span { font-size: .78rem; color: var(--muted-fg); }

.amenity-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.amenity-list li { font-size: .9rem; color: var(--muted-fg); }

.booking-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: 24px; position: sticky; top: 84px;
  display: flex; flex-direction: column; gap: 12px;
}
.booking-price { display: flex; align-items: baseline; gap: 8px; }
.booking-price s { color: var(--muted-fg); }
.booking-price strong { font-size: 1.7rem; font-weight: 900; color: var(--primary); }
.booking-price span { color: var(--muted-fg); font-size: .85rem; }
.booking-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-box .search-field { box-shadow: none; }
.booking-note { font-size: .84rem; color: var(--muted-fg); }
.booking-perks { list-style: none; font-size: .84rem; color: var(--muted-fg); display: flex; flex-direction: column; gap: 4px; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.contact-card p { color: var(--muted-fg); font-size: .9rem; margin-bottom: 8px; }

.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 16px 20px; font-weight: 800; cursor: pointer; list-style: none; position: relative; font-size: .95rem; }
.faq-item summary::after { content: '+'; position: absolute; right: 20px; font-size: 1.3rem; color: var(--primary); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 20px 16px; color: var(--muted-fg); font-size: .9rem; }

.legal h2 { font-size: 1.15rem; font-weight: 800; margin: 24px 0 8px; }
.legal p { color: var(--muted-fg); margin-bottom: 10px; }
.legal a { color: var(--primary); font-weight: 700; }
.legal a:hover { text-decoration: underline; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted-fg); }
.empty-state .btn { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--secondary-40); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding: 56px 20px 34px; align-items: start; }
.footer-grid h4 { color: var(--fg); margin-bottom: 14px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.footer-grid > div > a { display: block; padding: 5px 0; font-size: .9rem; color: var(--muted-fg); }
.footer-grid > div > a:hover { color: var(--primary); }
.footer-brand p { font-size: .9rem; color: var(--muted-fg); margin-bottom: 12px; line-height: 1.6; }
.footer-contact { font-size: .86rem !important; }
.footer-logo { margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 20px; font-size: .82rem; color: var(--muted-fg);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-policy { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-policy a { color: var(--muted-fg); }
.footer-policy a:hover { color: var(--primary); }

/* ---------- TÜRSAB doğrulama rozeti ---------- */
.tursab-badge {
  display: flex; align-items: stretch; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px 18px; box-shadow: var(--shadow-sm); transition: box-shadow .15s, transform .15s;
}
.tursab-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tursab-info { flex: 1; display: flex; flex-direction: column; }
.tursab-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.tursab-name { font-size: 1.45rem; font-weight: 900; letter-spacing: -.01em; color: var(--primary); line-height: 1; }
.tursab-search { color: var(--muted-fg); flex-shrink: 0; }
.tursab-sub { margin-top: 6px; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--primary); }
.tursab-desc { margin-top: 8px; font-size: .76rem; line-height: 1.45; color: var(--muted-fg); }
.tursab-desc strong { color: var(--fg); }
.tursab-no {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding-left: 16px; border-left: 1px solid var(--border); color: var(--primary); min-width: 84px;
}
.tursab-qr { color: var(--fg); margin-bottom: 2px; }
.tursab-no-label { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-fg); }
.tursab-no strong { font-size: 1.15rem; font-weight: 900; color: var(--primary); }

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  background: var(--wa); color: #fff; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: .18s;
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ---------- Mobil ---------- */
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); gap: 2px;
  }
  body.nav-open .main-nav { display: flex; }
  .dropdown-menu { position: static; display: block; box-shadow: none; border: none; padding-left: 16px; }
  .nav-wa { margin: 10px 0 0; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .tursab-badge { grid-column: 1 / -1; max-width: 420px; }
  .search-box { grid-template-columns: 1fr 1fr; }
  .search-box .btn { grid-column: 1 / -1; }
  .booking-dates { grid-template-columns: 1fr 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .search-box { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .logo-name { font-size: 1.1rem; }
}
