*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================
   Header / Nav
   ======================== */

/* Yalnız site üst çubuğu (içerikteki <header class="business-header"> hariç) */
body > header {
    position: relative;
    z-index: 200;
    background: #fff;
}

body > header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}

/* Mobil menü açıkken arka plan karartma (yalnızca ≤768px’te görünür) */
.nav-overlay {
    display: none;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066cc;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu ul a {
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu ul a:hover {
    color: #0066cc;
}

.lang-switcher a {
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #555;
    transition: all 0.2s;
}

.lang-switcher a:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nav-user-name {
    font-size: 0.9rem;
    color: #475569;
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-auth-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.nav-auth-link:hover {
    color: #0066cc;
}

.nav-auth-link--primary {
    color: #0066cc;
}

.nav-logout-form {
    display: inline;
    margin: 0;
}

.nav-auth-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
}

.nav-auth-btn:hover {
    color: #0066cc;
}

.container--narrow {
    max-width: 480px;
}

.auth-section {
    padding: 2rem 0 4rem;
}

.auth-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.35rem;
    margin-top: 0.5rem;
}

.auth-switch {
    margin: 1.25rem 0 0;
    font-size: 0.95rem;
    color: #64748b;
}

.auth-switch a {
    color: #0066cc;
    font-weight: 500;
}

/* ========================
   Hero
   ======================== */

.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: #f7f9fc;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-search {
    display: flex;
    gap: 0;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.hero-search select {
    padding: 0.9rem 1rem;
    border: none;
    border-right: 1px solid #eee;
    background: #fff;
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
    min-width: 150px;
}

.hero-search input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: none;
    font-size: 0.95rem;
    outline: none;
}

.hero-search button {
    padding: 0.9rem 1.8rem;
    background: #0066cc;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-search button:hover {
    background: #0052a3;
}

/* ========================
   Section Titles
   ======================== */

.categories,
.featured,
.popular-cities {
    padding: 4rem 0;
}

.categories h2,
.featured h2,
.popular-cities h2,
.stats h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* ========================
   Kategoriler
   ======================== */

.categories {
    border-bottom: 1px solid #eee;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
}

.category-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* ========================
   Öne Çıkan İşletmeler
   ======================== */

.featured {
    border-bottom: 1px solid #eee;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.business-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.business-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.business-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e9ecef;
    overflow: hidden;
}

.business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.business-info {
    padding: 1.25rem;
}

.business-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.business-location {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.btn-view {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-view:hover {
    background: #0066cc;
    color: #fff;
}

/* ========================
   Popüler Şehirler
   ======================== */

.popular-cities {
    border-bottom: 1px solid #eee;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.city-card {
    display: block;
    padding: 1.75rem 1.5rem;
    text-align: center;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.city-card:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
}

.city-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.city-card p {
    font-size: 0.9rem;
    color: #888;
}

/* ========================
   İstatistikler
   ======================== */

.stats {
    padding: 3.5rem 0;
    background: #f7f9fc;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.25rem;
}

/* ========================
   Ana sayfa SSS
   ======================== */

.home-faq {
    padding: 3.5rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.home-faq-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

.home-faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.home-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: #fafbfd;
    overflow: hidden;
}

.home-faq-item[open] {
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.06);
    border-color: #cce0f5;
}

.home-faq-summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2.5rem;
}

.home-faq-summary::-webkit-details-marker {
    display: none;
}

.home-faq-summary::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0066cc;
    border-bottom: 2px solid #0066cc;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s;
}

.home-faq-item[open] .home-faq-summary::after {
    transform: translateY(-30%) rotate(225deg);
}

.home-faq-answer {
    padding: 0 1.25rem 1.15rem;
    border-top: 1px solid #eee;
}

.home-faq-answer p {
    padding-top: 0.85rem;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.65;
}

/* ========================
   CTA
   ======================== */

.cta {
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.cta p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: #0066cc;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: #0052a3;
}

/* ========================
   Page Header (shared)
   ======================== */

.page-header {
    padding: 3rem 0 2.5rem;
    text-align: center;
    background: #f7f9fc;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.05rem;
    color: #666;
}

/* ========================
   Category Page
   ======================== */

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.category-header-icon {
    font-size: 1.75rem;
    color: #0066cc;
}

.category-header h1 {
    margin-bottom: 0;
}

.btn-cta-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1.25rem;
}

/* ========================
   Business Listing
   ======================== */

.biz-listing {
    padding: 2.5rem 0 4rem;
}

.biz-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.biz-filters {
    position: sticky;
    top: 1.5rem;
}

.biz-filters form {
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.25rem;
}

.filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #fff;
    color: #333;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-filter {
    width: 100%;
    padding: 0.7rem;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-filter:hover {
    background: #0052a3;
}

.biz-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.biz-count {
    font-size: 0.9rem;
    color: #888;
}

.biz-sort {
    padding: 0.4rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    color: #555;
}

.biz-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.biz-pagination__link {
    padding: 0.45rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    border: 1px solid #cce0f5;
    border-radius: 6px;
    background: #f7fbff;
    transition: background 0.2s, border-color 0.2s;
}

.biz-pagination__link:hover {
    background: #e8f2fc;
    border-color: #0066cc;
}

.biz-pagination__meta {
    font-size: 0.88rem;
    color: #666;
    text-align: center;
    flex: 1;
}

.biz-pagination__spacer {
    width: 5.5rem;
    flex-shrink: 0;
}

.biz-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.biz-item:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
}

.biz-item-img {
    width: 120px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #e9ecef;
    flex-shrink: 0;
    overflow: hidden;
}

.biz-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-item-info {
    flex: 1;
    min-width: 0;
}

.biz-item-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.biz-item-location {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.35rem;
}

.biz-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.35rem;
}

.biz-item-phone {
    font-size: 0.85rem;
    color: #0066cc;
    font-weight: 500;
}

.biz-item-arrow {
    font-size: 1.25rem;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.2s;
}

.biz-item:hover .biz-item-arrow {
    color: #0066cc;
}

.biz-empty {
    text-align: center;
    padding: 3rem;
    color: #888;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* ========================
   Business Detail (YerYön-style layout)
   ======================== */

.business-detail-page {
    padding: 1.5rem 0 3.5rem;
}

.business-detail-page .breadcrumb {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.business-detail-page .breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.business-detail-page .breadcrumb a:hover {
    text-decoration: underline;
}

.business-detail-page .breadcrumb-sep {
    margin: 0 0.35rem;
    color: #94a3b8;
}

.business-detail-page .breadcrumb-current {
    color: #334155;
    font-weight: 500;
}

.business-header {
    margin-bottom: 1.75rem;
}

.business-header-content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.business-category-badge {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0369a1;
    background: #e0f2fe;
    border-radius: 999px;
}

.business-header-meta {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: #64748b;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem;
    align-items: start;
}

.business-content--with-sidebar {
    grid-template-columns: 1fr minmax(280px, 340px);
}

/* Desktop: sol sütunda üstte içerik, altta yorumlar; sağda sidebar iki satırı kaplar.
   Mobil (768 altı): sıra = içerik → sidebar → yorumlar → benzer işletmeler. */
.business-main-primary {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.business-main-reviews {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
}

.business-content--with-sidebar .business-main-reviews {
    grid-column: 1;
    grid-row: 2;
}

.business-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.business-section .business-detail-info {
    margin-bottom: 0;
}

.business-contact-value {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.business-contact-value a {
    color: #0066cc;
    text-decoration: none;
}

.business-contact-value a:hover {
    text-decoration: underline;
}

/* External links opened via JS (no crawlable href) */
.js-external-open {
    font-family: inherit;
    cursor: pointer;
}

.external-open--text {
    display: inline;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: #0066cc;
    text-align: inherit;
    text-decoration: none;
}

.external-open--text:hover {
    text-decoration: underline;
}

.business-contact-value .external-open--text {
    font-size: 0.95rem;
}

.footer-social-btn,
.contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    font: inherit;
    line-height: 1;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #2a2a2a;
    color: #999;
    transition: background 0.2s, color 0.2s;
}

.footer-social-btn:hover {
    background: #0066cc;
    color: #fff;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e9ecef;
    color: #555;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.contact-social-btn:hover {
    background: #0066cc;
    color: #fff;
}

.business-detail-info .business-info-card {
    margin-bottom: 0;
}

.business-sidebar {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    position: sticky;
    top: 1rem;
}

.business-sidebar-block {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.15rem 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.business-sidebar-block + .business-sidebar-block {
    margin-top: 1rem;
}

.business-sidebar-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.45;
    color: #0f172a;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.business-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.business-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.business-sidebar-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.business-sidebar-item__thumb {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 6px;
    overflow: hidden;
    background: #e9ecef;
}

.business-sidebar-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.business-sidebar-item__name {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0f172a;
}

.business-sidebar-item-heading {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.business-sidebar-item-heading a {
    color: #0f172a;
    text-decoration: none;
}

.business-sidebar-item-heading a:hover {
    color: #0066cc;
}

.business-sidebar-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.business-sidebar-item__meta {
    font-size: 0.78rem;
    line-height: 1.3;
    color: #64748b;
}

.business-related {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
    padding-top: 0.25rem;
    border-top: 1px solid #e2e8f0;
}

.business-related h2 {
    margin-top: 0;
}

.business-related-grid {
    margin-top: 0.5rem;
}

.business-comments-section {
    margin-bottom: 0;
}

.business-comments-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.comment-item {
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.comment-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
}

.comment-meta {
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    color: #64748b;
}

.comment-meta strong {
    color: #334155;
}

.comment-rating {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    color: #475569;
}

.comment-rating strong {
    color: #0f172a;
}

.comment-item > p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

.business-photo-gallery {
    outline: none;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    --biz-gallery-stage-h: min(52vh, 520px);
}

.business-photo-gallery:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0369a1;
}

.business-photo-gallery__stage-row {
    display: flex;
    align-items: stretch;
    gap: 0.4rem;
    height: var(--biz-gallery-stage-h);
    min-height: 220px;
    max-height: var(--biz-gallery-stage-h);
}

.business-photo-gallery__stage {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 10px;
    padding: 0.35rem;
    box-sizing: border-box;
}

.business-photo-gallery__stage img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.12s ease;
}

.business-photo-gallery__stage img.is-swapping {
    opacity: 0.35;
}

.business-photo-gallery__nav {
    flex-shrink: 0;
    align-self: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.business-photo-gallery__nav:hover {
    background: #e0f2fe;
    border-color: #0369a1;
    color: #0369a1;
}

.business-photo-gallery__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #64748b;
}

.business-photo-gallery__counter {
    font-variant-numeric: tabular-nums;
}

.business-photo-gallery__counter-sep {
    margin: 0 0.15em;
    font-weight: 500;
    color: #94a3b8;
}

.business-photo-gallery__full-link,
.business-photo-gallery__full-btn {
    font-weight: 600;
    color: #0369a1;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.business-photo-gallery__full-btn:hover {
    color: #0c4a6e;
}

.business-photo-gallery__caption {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.45;
    min-height: 2.9em;
}

.business-photo-gallery__caption--empty {
    display: none;
}

.business-photo-gallery__strip-wrap {
    margin-top: 0.5rem;
}

.business-photo-gallery__strip {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.35rem 0 0.15rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.business-photo-gallery__thumb {
    flex: 0 0 auto;
    width: 4.25rem;
    height: 4.25rem;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    background: #cbd5e1;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.business-photo-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.business-photo-gallery__thumb.is-active {
    border-color: #0369a1;
    box-shadow: 0 0 0 1px #0369a1;
}

.business-photo-gallery__thumb:focus-visible {
    outline: 2px solid #0369a1;
    outline-offset: 2px;
}

/* Lightbox (işletme galerisi — tam ekran popup) */
.business-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    --biz-lb-stage-h: min(72vh, 720px);
}

.business-photo-lightbox[hidden] {
    display: none !important;
}

.business-photo-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    cursor: pointer;
}

.business-photo-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    background: #0f172a;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.business-photo-lightbox__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.business-photo-lightbox__close {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s;
}

.business-photo-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.business-photo-lightbox__stage-row {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    padding: 2.5rem 0.5rem 0.5rem;
    flex-shrink: 0;
    height: var(--biz-lb-stage-h);
    min-height: 240px;
    max-height: var(--biz-lb-stage-h);
    box-sizing: border-box;
}

.business-photo-lightbox__stage {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.business-photo-lightbox__stage img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.12s ease;
}

.business-photo-lightbox__stage img.is-swapping {
    opacity: 0.35;
}

.business-photo-lightbox__nav {
    flex-shrink: 0;
    align-self: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s, border-color 0.15s;
}

.business-photo-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
}

.business-photo-lightbox__caption {
    margin: 0;
    padding: 0.5rem 1rem 0;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.45;
    text-align: center;
    min-height: 2.9em;
}

.business-photo-lightbox__caption:empty {
    display: none;
}

.business-photo-lightbox__counter {
    margin: 0;
    padding: 0.35rem 1rem 0.85rem;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    font-variant-numeric: tabular-nums;
    min-height: 1.5rem;
}

.business-photo-lightbox__counter-sep {
    margin: 0 0.15em;
    color: #64748b;
}

body.business-photo-lightbox-open {
    overflow: hidden;
}

.business-section {
    margin-bottom: 2rem;
}

.business-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.business-section p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.placeholder-stars {
    font-size: 1.35rem;
    letter-spacing: 0.12rem;
    line-height: 1;
    margin: 0 0 0.75rem;
}

.review-form-section {
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.review-form-section p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
}

.review-form-section a {
    color: #0066cc;
    font-weight: 500;
}

/* Giriş / kayıt düğmeleri: genel link rengi mavi arka plan üzerinde kaybolmasın */
.review-form-section a.btn-review-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 2.85rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff !important;
    background: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 8px;
    text-decoration: none;
}

.review-form-section a.btn-review-submit:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #fff !important;
}

.review-form-section a.btn-review-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 2.85rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066cc !important;
    background: #fff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    text-decoration: none;
}

.review-form-section a.btn-review-secondary:hover {
    background: #eff6ff;
    color: #004c99 !important;
    border-color: #004c99;
}

.no-reviews {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.no-reviews strong {
    color: #0f172a;
    font-weight: 600;
}

.business-header-rating {
    margin: 0.65rem 0 0;
    font-size: 0.95rem;
    color: #334155;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.business-header-stars {
    color: #f59e0b;
    letter-spacing: 0.05em;
}

.business-header-rating-sep {
    color: #94a3b8;
    margin: 0 0.1rem;
}

.business-header-rating-count {
    color: #64748b;
    font-size: 0.9rem;
}

/* Business detail CTA buttons */
.business-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.business-cta--header {
    margin-top: 1rem;
}

.business-cta--sidebar {
    flex-direction: column;
    gap: 0.55rem;
}

.business-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.62rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.business-cta-btn:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    color: #0f172a;
}

.business-cta-btn--primary {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.business-cta-btn--primary:hover {
    background: #0052a3;
    border-color: #0052a3;
    color: #fff;
}

.business-cta--sidebar .business-cta-btn {
    width: 100%;
}

.business-cta-btn--inline {
    margin-top: 0.65rem;
}

.business-map-fallback .business-cta-btn--inline {
    margin-top: 0;
}

.business-sidebar-block--cta + .business-sidebar-block {
    margin-top: 1rem;
}

.business-cta--mobile-bar {
    display: none;
}

.business-detail-page--has-mobile-cta {
    padding-bottom: 3.5rem;
}

.review-flash {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-flash--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.review-flash--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.review-flash--error ul {
    margin: 0;
    padding-left: 1.2rem;
}

.review-form-intro {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #475569;
}

.review-form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.review-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.review-form-row label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.review-form-row .req {
    color: #dc2626;
}

.review-form-row input[type="text"],
.review-form-row input[type="email"],
.review-form-row input[type="password"],
.review-form-row select,
.review-form-row textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.55rem 0.65rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.4;
    background: #fff;
    color: #0f172a;
}

.review-form-row textarea {
    resize: vertical;
    min-height: 6rem;
}

.review-field-hint {
    font-size: 0.8rem;
    color: #94a3b8;
}

.review-pending-note {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.btn-review-submit {
    align-self: flex-start;
    margin-top: 0.25rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #0066cc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-review-submit:hover {
    background: #0052a3;
}

.btn-review-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #94a3b8;
}

.btn-review-submit:disabled:hover {
    background: #94a3b8;
}

.review-login-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
    margin-top: 0.75rem;
}

.review-login-actions .btn-review-submit,
.review-login-actions .btn-review-secondary {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 140px;
}

.btn-review-secondary {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066cc;
    background: #fff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn-review-secondary:hover {
    background: #eff6ff;
}

.review-logged-in-hint {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.review-status-pending {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.review-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-item {
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.review-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.review-item-stars {
    color: #f59e0b;
    letter-spacing: 0.05em;
}

.review-item-title {
    font-size: 1rem;
    color: #0f172a;
}

.review-item-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    width: 100%;
}

.review-item-body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}

.business-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.business-info-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.business-price-range-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.business-price-range-header h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.business-price-range-help-wrap {
    position: relative;
    flex-shrink: 0;
}

.business-price-range-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    padding: 0;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    cursor: help;
    font-size: 0.95rem;
    line-height: 1;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.business-price-range-help:hover,
.business-price-range-help:focus {
    outline: none;
    background: #e0f2fe;
    border-color: #0066cc;
    color: #0066cc;
}

.business-price-range-tooltip {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    z-index: 30;
    width: min(18rem, 85vw);
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.45;
    color: #1e293b;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.business-price-range-help-wrap.is-open .business-price-range-tooltip {
    display: block;
}

@media (hover: hover) and (pointer: fine) {
    .business-price-range-help-wrap:hover .business-price-range-tooltip,
    .business-price-range-help-wrap:focus-within .business-price-range-tooltip {
        display: block;
    }
}

.business-price-range {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.business-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-info-list li {
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
}

.business-info-list li:last-child {
    margin-bottom: 0;
}

.business-info-list strong {
    display: inline;
    color: #334155;
    margin-right: 0.25rem;
}

.business-info-list a {
    color: #0066cc;
    word-break: break-word;
}

.business-address-block {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.business-map-small {
    height: 250px;
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    z-index: 0;
}

.business-map-small + .business-map-fallback {
    margin-top: 0;
    padding-top: 1.35rem;
}

.business-map-fallback {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 0;
}

.business-map-fallback:only-child,
.business-address-block + .business-map-fallback {
    margin-top: 1rem;
}

.business-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours .day-name {
    color: #64748b;
}

.business-hours .day-hours {
    color: #0f172a;
    font-weight: 500;
}

.business-hours .day-hours.status-closed {
    color: #e74c3c;
}

.business-hours .hours-text {
    margin-left: 0.35rem;
    font-weight: 400;
    color: #64748b;
}

.map-popup strong {
    display: block;
    margin-bottom: 0.25rem;
}

.map-popup span {
    font-size: 0.875rem;
    color: #64748b;
}

/* ========================
   Business Detail (legacy classes)
   ======================== */

.biz-detail {
    padding: 2.5rem 0 4rem;
}

.biz-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.biz-gallery {
    margin-bottom: 1.5rem;
}

.biz-gallery-main {
    border-radius: 8px;
    overflow: hidden;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 500px;
}

.biz-gallery-main img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.biz-gallery-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e9ecef;
    border-radius: 8px;
}

.biz-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: #e9ecef;
    cursor: pointer;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: #0066cc;
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-detail-header {
    margin-bottom: 2rem;
}

.biz-detail-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.biz-detail-location {
    font-size: 1rem;
    color: #888;
}

.biz-detail-section {
    margin-bottom: 2rem;
}

.biz-detail-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.biz-detail-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.hours-table td {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
}

.hours-table td:first-child {
    font-weight: 500;
    color: #333;
    width: 40%;
}

.hours-table tr.closed td {
    color: #cc0000;
}

.biz-contact-card {
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.biz-contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-row {
    margin-bottom: 0.75rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.15rem;
}

.contact-row a {
    font-size: 0.95rem;
    color: #0066cc;
    font-weight: 500;
}

.contact-row a:hover {
    text-decoration: underline;
}

.address-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-map {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0066cc;
    border: 1px solid #0066cc;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-map:hover {
    background: #0066cc;
    color: #fff;
}

/* ========================
   About Page
   ======================== */

.about-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: #f7f9fc;
    border-bottom: 1px solid #eee;
}

.about-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.about-hero p {
    font-size: 1.1rem;
    color: #666;
}

.about-story {
    padding: 3.5rem 0;
    border-bottom: 1px solid #eee;
}

.about-story h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
}

.about-story p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 720px;
}

.about-values {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.about-values h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ========================
   Contact Page
   ======================== */

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 8px;
}

.contact-card-icon {
    font-size: 2rem;
    color: #0066cc;
    display: block;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: #0066cc;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e9ecef;
    color: #555;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.contact-social-links a:hover {
    background: #0066cc;
    color: #fff;
}

/* ========================
   Register / Coming Soon
   ======================== */

.coming-soon {
    padding: 4rem 0;
}

.coming-soon-box {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #f7f9fc;
    border: 1px solid #eee;
    border-radius: 12px;
}

.coming-soon-icon {
    font-size: 2.5rem;
    color: #0066cc;
    display: block;
    margin-bottom: 1.25rem;
}

.coming-soon-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.coming-soon-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.coming-soon-notify {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.coming-soon-notify a {
    color: #0066cc;
    font-weight: 600;
}

.coming-soon-notify a:hover {
    text-decoration: underline;
}

/* ========================
   404 Error Page
   ======================== */

.error-page {
    text-align: center;
    padding: 6rem 1.5rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.error-page p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ========================
   Footer
   ======================== */

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 3.5rem 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand .footer-logo {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #999;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links ul a:hover {
    color: #fff;
}

.footer-contact li {
    color: #999;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #2a2a2a;
    color: #999;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: #0066cc;
    color: #fff;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

/* ========================
   Responsive
   ======================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 8px;
    }

    .hero-search select {
        border-right: none;
        border-bottom: 1px solid #eee;
        min-width: auto;
    }

    .biz-layout,
    .biz-detail-layout,
    .business-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .business-content--with-sidebar {
        grid-template-columns: 1fr;
    }

    .business-main-primary {
        grid-column: 1;
        grid-row: 1;
    }

    .business-sidebar {
        grid-column: 1;
        grid-row: 2;
        position: static;
    }

    .business-content--with-sidebar .business-sidebar {
        grid-column: 1;
        grid-row: 2;
    }

    .business-main-reviews {
        grid-column: 1;
        grid-row: 3;
    }

    .business-content--with-sidebar .business-main-reviews {
        grid-column: 1;
        grid-row: 3;
    }

    .business-content:not(.business-content--with-sidebar) .business-main-reviews {
        grid-row: 2;
    }

    .business-cta--header {
        gap: 0.5rem;
    }

    .business-cta--header .business-cta-btn {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 0;
        padding: 0.58rem 0.75rem;
        font-size: 0.85rem;
    }

    .business-cta--sidebar {
        display: none;
    }

    .business-sidebar-block--cta {
        display: none;
    }

    .business-sidebar:not(:has(.business-sidebar-block--similar)):not(:has(.business-sidebar-block--nearby)) {
        display: none;
    }

    .business-cta--mobile-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        gap: 0;
        flex-wrap: nowrap;
        padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
    }

    .business-cta--mobile-bar .business-cta-btn {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.5rem 0.35rem;
        font-size: 0.72rem;
        border: none;
        border-radius: 6px;
        background: transparent;
        color: #334155;
    }

    .business-cta--mobile-bar .business-cta-btn i {
        font-size: 1.05rem;
    }

    .business-cta--mobile-bar .business-cta-btn--primary {
        background: transparent;
        border: none;
        color: #0066cc;
    }

    .business-cta--mobile-bar .business-cta-btn--primary:hover {
        background: #f0f7ff;
        color: #0052a3;
    }

    .business-cta--mobile-bar .business-cta-btn:hover {
        background: #f8fafc;
    }

    .business-detail-page--has-mobile-cta {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    .business-related {
        grid-column: 1;
        grid-row: 4;
    }

    .business-content:not(.business-content--with-sidebar) .business-related {
        grid-row: 3;
    }

    .business-photo-gallery {
        --biz-gallery-stage-h: min(46vh, 440px);
    }

    .business-photo-lightbox {
        --biz-lb-stage-h: min(58vh, 560px);
    }

    .biz-filters {
        position: static;
    }

    .categories-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        top: 0;
        background: rgba(15, 23, 42, 0.48);
        z-index: 150;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.22s ease, visibility 0.22s ease;
        pointer-events: none;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 210;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-top: none;
        padding: 0.75rem 1.25rem 1.25rem;
        gap: 0;
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
        z-index: 205;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-auth {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        padding: 1rem 0.25rem 0.85rem;
        margin-top: 0.35rem;
        border-top: 1px solid #e2e8f0;
        text-align: center;
    }

    .nav-auth-link {
        display: inline-block;
        width: 100%;
        max-width: 280px;
        padding: 0.55rem 0.75rem;
        text-align: center;
        border-radius: 8px;
    }

    .nav-auth-link--primary {
        background: #eff6ff;
        border: 1px solid #bfdbfe;
        color: #0066cc;
    }

    .nav-logout-form {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-auth-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.55rem 0.75rem;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .nav-user-name {
        max-width: 100%;
        display: block;
        width: 100%;
        padding: 0.35rem 0;
        font-weight: 600;
        color: #0f172a;
    }

    .nav-menu ul li a {
        display: block;
        padding: 0.75rem 0.5rem;
        border-bottom: 1px solid #f1f5f9;
        text-align: center;
    }

    .lang-switcher {
        display: flex;
        justify-content: center;
        width: 100%;
        padding-top: 0.85rem;
        margin-top: 0.25rem;
        border-top: 1px solid #f1f5f9;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .categories-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
