/* ============================================================
   BiznesAL - Main Stylesheet
   ============================================================ */

/* --- Google Fonts already loaded in header --- */
:root {
  --primary:    #fece0a;
  --primary-dark: #d4a800;
  --dark:       #333333;
  --dark-2:     #444444;
  --text:       #2b2d42;
  --text-muted: #6c757d;
  --bg:         #f8f9fb;
  --white:      #ffffff;
  --border:     #e9ecef;
  --shadow:     0 2px 20px rgba(0,0,0,.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --radius:     12px;
  --radius-sm:  8px;
  --font-main:  'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}

.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: .75rem 0;
}

.navbar-brand { display: flex; align-items: center; gap: .4rem; }
.brand-icon { color: var(--primary); font-size: 1.4rem; line-height:1; }
.brand-text { font-size: 1.3rem; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.brand-al { color: var(--primary); }

.nav-link {
  font-weight: 600;
  color: var(--text) !important;
  font-size: .9rem;
  padding: .5rem .9rem !important;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-link:hover { background: #f5f5f5; }

.dropdown-menu { border-radius: var(--radius); min-width: 220px; padding: .6rem; }
.dropdown-item { border-radius: 8px; padding: .5rem .75rem; font-size: .88rem; font-weight: 500; }
.dropdown-item:hover { background: #fffbdc; color: var(--primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(254,206,10,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(254,206,10,.1) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #333333 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 0;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle { font-size: 1.05rem; }

/* Hero search */
.hero-search-wrap { max-width: 860px; margin: 0 auto; }

.hero-search-form {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.search-field { position: relative; }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.search-input, .search-select {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 1.1rem 1rem 1.1rem 2.6rem !important;
  font-size: .95rem;
  font-weight: 500;
  height: 64px;
  box-shadow: none !important;
  background: transparent;
}

.search-btn {
  border-radius: 0 !important;
  height: 64px;
  font-size: 1.2rem;
}

.border-start { border-left: 1px solid #eee !important; }

.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.hero-tag {
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.hero-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2.5rem;
}

.hero-stats-row { border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat { padding: 1.5rem 0 0; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-card {
  background: var(--white);
  border: 2px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  color: var(--text) !important;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-lg); }

.cat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
  transition: transform .2s;
}
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-name { font-weight: 700; color: var(--text); }
.cat-count { color: var(--text-muted); }

/* ============================================================
   BUSINESS CARD
   ============================================================ */
.biz-card {
  border-radius: var(--radius) !important;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) !important; }

.biz-card-cover {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cover-link { position: absolute; inset: 0; }

.badge-featured, .badge-verified {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 20px;
}
.badge-featured { background: var(--primary); color: #333333; }
.badge-verified { background: #198754; color: #fff; left: auto; right: 10px; }

.biz-logo-wrap {
  position: absolute;
  bottom: -20px;
  left: 16px;
  z-index: 2;
}
.biz-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  border: 3px solid #fff;
  object-fit: cover;
  background: #fff;
}

.card-body { padding-top: 2rem !important; }

.stars { display: inline-flex; gap: 2px; font-size: .85rem; line-height: 1; }

/* ============================================================
   BUSINESS DETAIL
   ============================================================ */
.biz-detail-cover {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.biz-detail-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.5));
}

.biz-detail-logo img { width: 90px; height: 90px; object-fit: cover; border: 4px solid #fff; }

.biz-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.biz-info-list li i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.hours-list li { border-bottom: 1px solid #f0f0f0; }

.review-avatar { flex-shrink: 0; }
.avatar-initial {
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.avatar-initial-lg {
  width: 70px; height: 70px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.5rem;
}

.owner-reply { border-left: 3px solid var(--primary); }

.star-picker { display: flex; gap: 4px; font-size: 1.6rem; cursor: pointer; }
.star-picker label { cursor: pointer; }
.star-picker input { display: none; }
.star-picker i { color: #ccc; transition: color .15s; }

.social-link-sm {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
  font-size: .9rem;
}
.social-link-sm:hover { background: var(--primary); color: #fff; }

.sticky-sidebar { position: sticky; top: 80px; }

/* ============================================================
   CITY CARDS
   ============================================================ */
.city-card-hover { transition: transform .2s, box-shadow .2s; }
.city-card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) !important; }

/* ============================================================
   CTA SECTION
   ============================================================ */



.footer-top p.small {
    color: #919191 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #222222; }
.footer-top { background: #222222; }
.footer-heading { color: rgba(255,255,255,.9); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: rgba(255,255,255,.5); font-size: .88rem; margin-bottom: .7rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-color: rgba(255,255,255,.08) !important; }

/* ============================================================
   AUTH PAGES — login.php & register
   ============================================================ */

/* Full-screen two-panel wrapper */
.auth-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ── Left decorative panel ── */
.auth-panel {
  width: 42%;
  flex-shrink: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(254,206,10,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(254,206,10,.1) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #333333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.auth-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 80% 60% at 60% 40%, rgba(254,206,10,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(254,206,10,.1) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 50%, #333333 100%);
}
.auth-panel-inner {
  position: relative;
  z-index: 1;
  max-width: 340px;
}
.auth-logo-lg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 2.5rem;
}
.auth-logo-lg i { color: var(--primary); font-size: 1.7rem; }
.auth-logo-lg span { color: var(--primary); }
.auth-panel-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.auth-panel-sub {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.auth-panel-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.75rem;
}
.auth-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.auth-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.auth-stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.4);
}

/* ── Right form panel ── */
.auth-form-panel {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow-y: auto;
  background: #fff;
}
.auth-form-inner {
  width: 100%;
  max-width: 420px;
  padding-top: 1rem;
}

/* ── Tab switcher ── */
.auth-tabs-new {
  display: flex;
  gap: 0;
  background: #f1f3f5;
  border-radius: 12px;
  padding: 4px;
}
.auth-tab-item {
  flex: 1;
  text-align: center;
  padding: .65rem 1rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.auth-tab-item:hover {
  color: var(--text);
}
.auth-tab-item.active {
  background: #fff;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ── Input group styling ── */
.auth-input-group .input-group-text {
  border-color: #dee2e6;
  font-size: .95rem;
}
.auth-input-group .form-control {
  border-color: #dee2e6;
  font-size: .95rem;
  padding: .65rem .9rem;
}
.auth-input-group .form-control:focus,
.auth-input-group .input-group-text:has(+ .form-control:focus),
.auth-input-group .form-control:focus + .auth-eye {
  border-color: var(--primary);
  box-shadow: none;
}
.auth-input-group:focus-within .input-group-text,
.auth-input-group:focus-within .form-control,
.auth-input-group:focus-within .auth-eye {
  border-color: var(--primary);
  box-shadow: none;
}
.auth-eye {
  cursor: pointer;
  transition: color .2s;
}
.auth-eye:hover i { color: var(--primary) !important; }

/* ── Password strength ── */
.pw-bar-track {
  height: 4px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}
.pw-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width .35s ease, background .35s ease;
}
.pw-bar-label {
  font-size: .72rem;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}

/* ── Account type role cards ── */
.role-card {
  cursor: pointer;
}
.role-card-inner {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1rem .75rem;
  text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: #fff;
}
.role-card:hover .role-card-inner {
  border-color: #ffc5c8;
  background: #fffce8;
}
.role-card-inner.selected {
  border-color: var(--primary);
  background: #fffbdc;
  box-shadow: 0 0 0 3px rgba(230,57,70,.12);
}
.role-icon {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
}

/* ── Responsive: stack on mobile ── */
@media (max-width: 991px) {
  .auth-wrapper {
    flex-direction: column;
    min-height: auto;
  }
  .auth-form-panel {
    padding: 2rem 1rem 3rem;
  }
}

/* Remove old broken classes */
.min-vh-80 { min-height: 80vh; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.active-current { background: #fffbdc !important; color: #333333 !important; font-weight: 700; border-right: 3px solid var(--primary) !important; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9999;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform .2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-featured { background: linear-gradient(135deg, #fff8f8 0%, #fff 100%); }

/* ============================================================
   BADGES & BUTTONS HELPERS
   ============================================================ */
.btn-xs { padding: .2rem .5rem; font-size: .75rem; }
.bg-danger-subtle { background-color: #fffbdc !important; }
.bg-success-subtle { background-color: #f0faf0 !important; }
.bg-warning-subtle { background-color: #fffbf0 !important; }

/* ============================================================
   GALLERY THUMB
   ============================================================ */
.gallery-thumb img {
  width: 100%; height: 140px;
  object-fit: cover;
  transition: opacity .2s;
}
.gallery-thumb:hover img { opacity: .85; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: linear-gradient(135deg, #12131a 0%, #333333 100%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats-row > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-search-form .border-start { border-left: 0 !important; border-top: 1px solid #eee !important; }
  .search-btn { border-radius: 0 0 16px 16px !important; }
  .biz-detail-cover { height: 200px; }
  .sticky-sidebar { position: static; }
}

/* ============================================================
   SCROLL ANIMATIONS (subtle)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .biz-card, .cat-card {
    animation: fadeInUp .4s ease both;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PACKAGE OPTION
   ============================================================ */
.package-option { cursor: pointer; transition: border-color .2s; }
.package-option:has(input:checked) { border-color: var(--primary) !important; background: #fffce8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-icon-wrap { flex-shrink: 0; }

/* ============================================================
   AD / BANNER BLOCKS
   ============================================================ */

/* Generic wrapper */
.ad-block {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f8f9fb;
  border: 1px dashed #ddd;
  margin-bottom: 1rem;
}

/* "Reklamë" label */
.ad-label {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #bbb;
  z-index: 2;
  pointer-events: none;
}

/* Images inside ads */
.ad-block .ad-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ad-block a {
  display: block;
  line-height: 0;
}

/* ── Header banner ─────────────────────────── */
.ad-header {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: #fff;
  margin-bottom: 0;
}
.ad-header .ad-img {
  max-height: 90px;
  object-fit: cover;
}

/* ── Footer banner ─────────────────────────── */
.ad-footer {
  border-radius: var(--radius);
  background: #f0f2f5;
}
.ad-footer .ad-img {
  max-height: 100px;
  object-fit: cover;
}

/* ── Sidebar ad ────────────────────────────── */
.ad-sidebar {
  background: #fff;
}
.ad-sidebar .ad-img {
  max-height: 250px;
  object-fit: cover;
}

/* ── Listing-top banner ────────────────────── */
.ad-listing-top {
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 1.5rem;
}
.ad-listing-top .ad-img {
  max-height: 100px;
  object-fit: cover;
}

/* ── Between-listings banner ───────────────── */
.ad-listing-between {
  background: #fff;
  margin: .5rem 0 1.5rem;
}
.ad-listing-between .ad-img {
  max-height: 90px;
  object-fit: cover;
}

/* Hover lift on clickable ads */
.ad-block a:hover .ad-img {
  opacity: .9;
  transition: opacity .2s;
}

/* Hide empty ad containers */
.ad-block:empty {
  display: none;
}

/* Yellow primary buttons use dark text */
.btn-danger,
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
  background-color: var(--primary) !important;
  border-color: var(--primary-dark) !important;
  color: #333333 !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: var(--primary-dark) !important;
}
.btn-outline-danger {
  color: #333333 !important;
  border-color: var(--primary) !important;
}
.btn-outline-danger:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #333333 !important;
}
.text-danger   { color: #333333 !important; }
.bg-danger     { background-color: var(--primary) !important; }
.border-danger { border-color: var(--primary) !important; }
.badge.bg-danger { color: #333333 !important; }


/* ============================================================
   CATEGORIES SHOW-MORE
   ============================================================ */
.cat-hidden {
  display: none !important;
}
.cat-item {
  animation: catFadeIn .35s ease both;
}
@keyframes catFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
#catToggleBtn {
  transition: all .2s;
  border-color: #dee2e6;
  color: #555;
}
#catToggleBtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #333;
}
#catToggleBtn .badge {
  font-size: .72rem;
  font-weight: 700;
}


.search-bar-wrap {max-width:100%!important;}

.biz-subnav {
    top: 75px!important;}
    
    .btn-danger, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
    background-color: var(--primary) !important;
    border-color: #fece0a !important;
    color: #333333 !important;
    font-weight: 600;
}



.hero-search-box {
  
    max-width: 950px!important;
}


 .auth-form-box { max-width:500px!important; } 
 
 
 .step-tabs {
 
    top: 74px!important; }
    
    .step-tabs .container{display:flex;}
.city-pill.active {
  
    color: #ffffff!important;
}

a {color:#000;}

.biz-card-cover {
    overflow: visible !important;
}

/* ── Gallery — mobile optimisation ────────────────── */

/* 1-photo: full width, shorter on mobile */
@media (max-width: 575px) {
    .gal-grid.g1 { grid-auto-rows: 220px; }
}

/* 2-photo: stack vertically on small screens */
@media (max-width: 480px) {
    .gal-grid.g2 {
        grid-template-columns: 1fr;
    }
    .gal-grid.g2 .gal-item {
        aspect-ratio: 16/9;
    }
}

/* 3-photo: on mobile make it 1 big + 2 side by side below */
@media (max-width: 575px) {
    .gal-grid.g3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
        grid-template-rows: 160px 120px;
    }
    .gal-grid.g3 .gal-main {
        grid-column: 1 / 3;   /* spans full width */
        grid-row: 1;
    }
}

/* 4+ photos: 2 columns on mobile instead of 3 */
@media (max-width: 575px) {
    .gal-grid.g4plus {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
}

/* Tap highlight instead of hover scale on touch */
@media (hover: none) {
    .gal-item:active img { transform: scale(1.02); }
    .gal-item:hover img  { transform: none; }
}

/* "+N foto" overlay — bigger text on small screens */
@media (max-width: 575px) {
    .gal-more-overlay { font-size: 1rem; }
}

.active>.page-link, .page-link.active {background:#000!important; border-color:#000!important ; color:#fff!important;} .page-link {color:#000!important;}


.footer-bottom small, .footer-bottom a{color:rgb(163 166 168 / 75%) !important}


@media all and (max-width:768px) {
    
    
    
    .biz-cover {
    height: 250px!important;
    }
    
    .biz-cover-ph {
    align-items: unset!important;
    padding-top: 48px!important;
}


    .biz-header-card span{ font-size: 10px!important;line-height: 10px;}
    
   .biz-header-card  .text-muted.small {
    font-size: 12px;
}

.biz-header-card .biz-logo-float, .biz-logo-float-ph {
        position: absolute;
        top: -45px;
    }

.biz-header-card {
  
    padding-top: 70px!important;
}

    .action-strip a {
        font-size: 12px !important;
        line-height: 20px;
    }
    
    .role-opt-sub {
    font-size: 9px!important;
}

.auth-right {
    align-items:  unset!important;}
.btn:focus,
.btn:active,
.btn.active,
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

#navMenu .d-flex.gap-2.align-items-center {
    padding: 10px;
    display: table !important;
    width: 100%;
}

    #navMenu .d-flex.gap-2.align-items-center a {
        display: block;
        width: 100%;
        clear: both;
        line-height: 30px;
        margin-bottom: 5px;
    }
    
    .stat-card-v2.d-flex.align-items-center.gap-3 .text-muted.small {
    font-size: 9px;
}

.d-flex.align-items-center.gap-2.flex-shrink-0.flex-wrap {
    display: block !important;
    clear: both;
}

.biz-header-card h1.fw-900.mb-2.lh-1 {
    font-weight: 600;
}

    .detail-card-body p {
        font-size: 13px;
        line-height: 22px !important;
    }
  .biz-subnav {top:74px!important;}  
    .cat-search-sep, .city-search-sep {
    display: none;
}
i.bi.bi-geo-alt.text-muted, i.bi.bi-grid.text-muted {
    display: none;
}
select.cat-city-select, select.city-cat-select{
    display: none;
}
}