/* ============================================================
   CANBİS GIDA — Frontend CSS
   Referans: canbis.gilan360.com birebir renk paleti
   ============================================================ */

/* Font: Helvetica ailesi (sistem fontu, import gerekmez) */

:root {
    /* === Canbis Gıda Birebir Renk Paleti === */
    --primary: #e10712;
    /* Ana kırmızı — butonlar, CTA, accent */
    --primary-dark: #c0392b;
    /* Koyu kırmızı — hover durumları */
    --primary-light: rgba(225, 7, 18, 0.08);
    /* Açık kırmızı arka plan */
    --primary-gradient: linear-gradient(135deg, #e74c3c, #c0392b);

    --bg: #ffffff;
    /* Ana sayfa arka planı — saf beyaz */
    --bg-hero: #faf7f2;
    /* Hero / banner / footer arka planı */
    --bg-light: #faf7f2;
    /* Açık bej arka plan */
    --bg-card: #fcfaf7;
    /* Ürün kartı arka planı */
    --bg-card-img: #f9f4ef;
    /* Ürün resim konteynır arka planı */
    --surface: #ffffff;
    /* Yüzey beyaz */

    --text: #2a2726;
    /* Başlık ve ana metin */
    --text-body: #44403c;
    /* Gövde metni */
    --text-muted: #7a726f;
    /* İkincil / yardımcı metin */
    --gold: #c49b64;
    /* Altın / toprak tonu — vurgu */

    --border: #edebe9;
    /* Kenarlık rengi */
    --border-light: #f0ebe5;
    /* Açık kenarlık */

    --dark: #3d2b1f;
    /* Koyu kahve — gradyan kullanımı */
    --dark-soft: #5a3e2b;
    /* Yumuşak koyu kahve */

    --radius: 12px;
    --radius-lg: 20px;
    --radius-pill: 2rem;
    /* Pill şekilli butonlar */
    --shadow: 0 4px 20px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .10);
    --transition: all .3s ease;
    --header-h: 80px;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    height: 64px;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 44px;
    transition: var(--transition);
}

.site-header.scrolled .header-logo img {
    height: 36px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a,
.header-nav .nav-dropdown>span {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
    cursor: pointer;
}

.header-nav a:hover,
.header-nav .nav-dropdown:hover>span {
    background: var(--primary-light);
    color: var(--primary);
}

.header-nav a.active {
    background: var(--primary);
    color: #fff;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

/* Hover Bridge for Dropdown */
.nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Mega Menu */
.nav-mega {
    position: static;
}

.nav-mega .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 32px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    transform: translateY(10px);
}

/* Hover Bridge for Mega Menu */
.nav-mega .mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.mega-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.mega-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.mega-cat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 8px 12px;
    transition: var(--transition);
    text-align: left;
    text-decoration: none;
}

.mega-cat-card:hover {
    background: var(--bg-light);
    transform: translateX(4px);
}

.mega-cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    margin-right: 12px;
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
    padding: 2px;
}

.mega-cat-card:hover .mega-cat-icon {
    border-color: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(225, 7, 18, 0.1);
}

.mega-cat-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.mega-cat-name::before {
    content: "→";
    margin-right: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
    font-size: 14px;
    color: var(--primary);
    display: inline-block;
}

.mega-cat-card:hover .mega-cat-name {
    color: var(--primary);
}

.mega-cat-card:hover .mega-cat-name::before {
    opacity: 1;
    transform: translateX(0);
}



/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding: 4px;
    background: var(--bg-light);
    border-radius: 8px;
}

.lang-switch a {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-switch a.active {
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--surface);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mobile-menu-overlay.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    cursor: pointer;
}

.mobile-dropdown-btn svg {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-btn svg {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    padding-left: 40px;
    font-size: 14px;
    border-bottom: none;
}

/* Override sub-items that are cards (e.g. products mega menu in mobile) */
.mobile-dropdown-content a.mobile-cat-card {
    padding: 8px 12px 8px 32px; /* sol padding biraz daha az olmalı ama yine de alt menü olduğunu hissettirmeli */
}
.mobile-dropdown-content .mobile-cat-card .mega-cat-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}
.mobile-dropdown-content .mobile-cat-card .mega-cat-name {
    font-size: 14px;
}
.mobile-dropdown-content .mobile-cat-card:hover .mega-cat-icon {
    transform: scale(1.05); /* mobilde abartılı büyümeyi önle */
}

.mobile-menu-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

/* ===== ALERT SUCCESS ===== */
.alert-success {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, .3);
    font-size: 14px;
}

/* ===== HERO / BANNER SLIDER ===== */
.hero-slider {
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 43, 31, .7) 0%, rgba(61, 43, 31, .2) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .4);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

/* ===== SECTION ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .accent {
    color: var(--primary);
}

/* ===== PRODUCT CARD ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.product-card .card-img {
    height: 220px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
}

.product-card:hover .card-img img {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 16px 20px 20px;
}

.product-card .card-brand {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.product-card .card-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text);
}

.product-card .card-weight {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== BRAND LOGOS ===== */
.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-logo {
    height: 60px;
    width: auto;
    opacity: .6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
    color: var(--text);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
    color: var(--primary);
}

.category-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.category-card .category-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.category-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== REFERENCES GRID ===== */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.reference-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.reference-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.reference-card img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}

.reference-card p {
    font-size: 14px;
    font-weight: 600;
}

/* ===== VIDEO RESPONSIVE ===== */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== MAP ===== */
.map-container {
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== TEXT CONTENT ===== */
.text-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

.text-content h2,
.text-content h3 {
    margin: 24px 0 12px;
    font-weight: 700;
}

.text-content p {
    margin-bottom: 16px;
}

.text-content img {
    border-radius: var(--radius);
    margin: 16px 0;
}

.text-content ul,
.text-content ol {
    margin: 12px 0 12px 28px;
}

/* ===== FOOTER (Referans site: açık bej arka plan) ===== */
.site-footer {
    background: var(--bg-hero);
    color: var(--text-muted);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 16px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    margin-top: var(--header-h);
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}

.page-banner .breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.page-banner .breadcrumb a:hover {
    color: #fff;
}

/* ===== CONTACT FORM ===== */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--surface);
    color: var(--text);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== MODULE SECTION ===== */
.module-section {
    position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slide {
        height: 50vh;
        min-height: 360px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card .card-img {
        height: 160px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-banner {
        padding: 40px 0;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .slider-prev {
        left: 12px;
    }

    .slider-next {
        right: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================================
   ANASAYFA MODÜL STİLLERİ
   Referans: canbis.gilan360.com birebir tasarım
   ============================================================= */

/* ===== HERO SPLIT (50/50 Layout) ===== */
.hero-split {
    margin-top: var(--header-h);
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    min-height: 540px;
    overflow: hidden;
    position: relative;
}

.hero-split__content {
    flex: 1;
    padding: 60px 60px 60px 80px;
    max-width: 50%;
}

.hero-split__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-split__title {
    font-size: 44px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-split__title span {
    color: var(--primary);
}

.hero-split__desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.hero-split__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-split__btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 7, 18, .25);
}

.hero-split__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 50%;
    position: relative;
}

.hero-split__visual img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .12));
}

/* ===== KATEGORİ CAROUSEL ===== */
.category-carousel {
    padding: 70px 0;
    background: var(--bg);
}

.category-carousel__header {
    text-align: center;
    margin-bottom: 40px;
}

.category-carousel__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.category-carousel__header p {
    font-size: 15px;
    color: var(--text-muted);
}

.category-carousel__wrapper {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 60px;
}

.category-carousel__track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.category-carousel__track::-webkit-scrollbar {
    display: none;
}

.category-carousel__item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    scroll-snap-align: center;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    min-width: 175px;
}

.category-carousel__item:hover {
    transform: translateY(-8px);
}

.category-carousel__img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 7px solid #FAF0E6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-carousel__item:hover .category-carousel__img {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 5px rgba(225, 7, 18, 0.15), 0 12px 25px rgba(225, 7, 18, 0.1);
    transform: scale(1.05);
}

.category-carousel__img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-carousel__item:hover .category-carousel__img img {
    transform: scale(1.12);
}

.category-carousel__name {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    max-width: 180px;
    line-height: 1.45;
    min-height: 46px;
    /* 2 satır metin için sabit yükseklik */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text);
    transition: color 0.3s ease;
}

.category-carousel__item:hover .category-carousel__name {
    color: var(--primary);
}

.category-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    font-size: 18px;
}

.category-carousel__arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.category-carousel__arrow--prev {
    left: 8px;
}

.category-carousel__arrow--next {
    right: 8px;
}

/* ===== ORTA BANNER (Panoramik) ===== */
.mid-banner {
    padding: 0;
    overflow: hidden;
    background: var(--bg-hero);
}

.mid-banner__img {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: block;
    padding: 20px 24px;
}

.mid-banner__img img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

/* ===== ÖNE ÇIKAN ÜRÜNLER (Homepage) ===== */
.hp-products {
    padding: 70px 0;
    background: var(--bg);
}

.hp-products__header {
    text-align: center;
    margin-bottom: 44px;
}

.hp-products__header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.hp-products__header p {
    font-size: 15px;
    color: var(--text-muted);
}

.hp-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.hp-product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    border: 1px solid transparent;
}

.hp-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.hp-product-card__img {
    height: 220px;
    background: var(--bg-card-img);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.hp-product-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.hp-product-card:hover .hp-product-card__img img {
    transform: scale(1.06);
}

.hp-product-card__body {
    padding: 16px 20px 20px;
}

.hp-product-card__brand {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hp-product-card__name {
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--text);
}

.hp-product-card__weight {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hp-product-card__img .no-img-icon {
    color: var(--border);
}

.hp-products__cta {
    text-align: center;
    margin-top: 40px;
}

.hp-products__cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hp-products__cta a:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 7, 18, .25);
}

/* ===== TANITIM / CTA (50/50 Layout) ===== */
.promo-cta {
    padding: 70px 0;
    background: var(--bg-hero);
}

.promo-cta__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.promo-cta__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-cta__circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--bg-card-img);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.promo-cta__circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.promo-cta__content {
    flex: 1;
}

.promo-cta__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-cta__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 16px;
}

.promo-cta__desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.promo-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.promo-cta__btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 7, 18, .25);
}

/* ===== MODÜL RESPONSİVE ===== */
@media (max-width: 1024px) {
    .hp-products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-split__content {
        max-width: 100%;
        padding: 40px 24px;
        text-align: center;
    }

    .hero-split__title {
        font-size: 28px;
    }

    .hero-split__desc {
        margin: 0 auto 24px;
    }

    .hero-split__visual {
        max-width: 100%;
        padding: 0 24px 40px;
    }

    .category-carousel__wrapper {
        padding: 0 40px;
    }

    .category-carousel__item {
        min-width: 120px;
    }

    .category-carousel__img {
        width: 110px;
        height: 110px;
        border-width: 5px;
    }

    .category-carousel__name {
        font-size: 13px;
        max-width: 110px;
        min-height: 36px;
    }

    .hp-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hp-product-card__img {
        height: 160px;
    }

    .promo-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .promo-cta__circle {
        width: 260px;
        height: 260px;
    }

    .promo-cta__desc {
        margin: 0 auto 24px;
    }

    .promo-cta__title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hp-products__grid {
        grid-template-columns: 1fr;
    }

    .category-carousel__track {
        gap: 16px;
    }

    .category-carousel__img {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }

    .category-carousel__name {
        max-width: 90px;
    }
}

/* =============================================================
   DİL BAYRAK İKONLARI
   ============================================================= */
.lang-flag {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 4px;
    border: 2px solid transparent;
    opacity: .6;
    transition: var(--transition);
    line-height: 0;
}

.lang-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-flag.active {
    opacity: 1;
    border-color: var(--primary);
}

.lang-flag svg {
    border-radius: 2px;
    display: block;
}

/* =============================================================
   HEADER KATALOG BUTONU
   ============================================================= */
.nav-catalog-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 18px !important;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-catalog-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 7, 18, .3);
}

.nav-catalog-btn svg {
    stroke: #fff;
}

/* =============================================================
   MOBİL BOTTOM NAVİGASYON (PWA)
   ============================================================= */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 1000;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    align-items: flex-end;
    justify-content: space-around;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, .08);
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 0;
}

.bottom-nav__item:hover,
.bottom-nav__item.active {
    color: var(--primary);
}

.bottom-nav__item.active svg {
    stroke: var(--primary);
}

.bottom-nav__item svg {
    stroke: var(--text-muted);
    transition: var(--transition);
}

.bottom-nav__item--center {
    position: relative;
    margin-top: -18px;
}

.bottom-nav__fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(225, 7, 18, .35);
    transition: var(--transition);
}

.bottom-nav__item--center:hover .bottom-nav__fab,
.bottom-nav__item--center.active .bottom-nav__fab {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.bottom-nav__fab svg {
    stroke: #fff !important;
}

.bottom-nav__item--center span {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .site-footer {
        margin-bottom: 0;
    }

    .nav-catalog-btn {
        display: none !important;
    }
}

/* =============================================================
   KATALOG SAYFASI (Premium Book Viewer)
   ============================================================= */
.catalog-hero {
    margin-top: var(--header-h);
    padding: 60px 0;
    background: var(--bg-hero);
}

.catalog-hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.catalog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.catalog-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.catalog-hero__title span {
    color: var(--primary);
}

.catalog-hero__desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.catalog-hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Katalog Viewer */
.catalog-viewer {
    padding: 40px 0 80px;
    background: #f0ece8;
}

.catalog-viewer:fullscreen {
    background: #2a2726;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: var(--surface);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.catalog-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.catalog-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.catalog-btn:hover svg {
    stroke: #fff;
}

.catalog-pagination {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 0 12px;
    min-width: 80px;
    text-align: center;
}

.catalog-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
    margin: 0 4px;
}

/* Kitap Görünümü */
.catalog-book {
    display: none;
    justify-content: center;
    position: relative;
    perspective: 2000px;
}

.catalog-book__wrapper {
    display: flex;
    gap: 2px;
    max-width: 100%;
    justify-content: center;
    transform-style: preserve-3d;
}

.catalog-page {
    background: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, .12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}

.catalog-page--left {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: -2px 4px 20px rgba(0, 0, 0, .1);
}

.catalog-page--right {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.catalog-page canvas {
    max-width: 100%;
    max-height: 75vh;
    display: block;
}

/* Sayfa çevirme animasyonu */
.catalog-flip {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    pointer-events: none;
    transform-origin: left center;
    z-index: 10;
}

.catalog-flip.flip-next {
    animation: pageFlipNext .5s cubic-bezier(.4, 0, .2, 1);
}

.catalog-flip.flip-prev {
    animation: pageFlipPrev .5s cubic-bezier(.4, 0, .2, 1);
}

@keyframes pageFlipNext {
    0% {
        transform: rotateY(0deg);
        background: rgba(255, 255, 255, .3);
        box-shadow: -4px 0 10px rgba(0, 0, 0, .1);
    }

    50% {
        transform: rotateY(-90deg);
        background: rgba(255, 255, 255, .6);
        box-shadow: -8px 0 20px rgba(0, 0, 0, .2);
    }

    100% {
        transform: rotateY(-180deg);
        background: transparent;
        box-shadow: none;
    }
}

@keyframes pageFlipPrev {
    0% {
        transform: rotateY(-180deg);
        background: transparent;
    }

    50% {
        transform: rotateY(-90deg);
        background: rgba(255, 255, 255, .6);
        box-shadow: -8px 0 20px rgba(0, 0, 0, .2);
    }

    100% {
        transform: rotateY(0deg);
        background: rgba(255, 255, 255, .3);
        box-shadow: none;
    }
}

/* Yükleniyor */
.catalog-loading {
    text-align: center;
    padding: 80px 0;
}

.catalog-loading p {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 16px;
}

.catalog-loading__spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Katalog responsive */
@media (max-width: 768px) {
    .catalog-hero {
        padding: 40px 0;
    }

    .catalog-hero__title {
        font-size: 24px;
    }

    .catalog-book__wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .catalog-page--left,
    .catalog-page--right {
        border-radius: var(--radius-lg);
    }

    .catalog-page canvas {
        max-height: 50vh;
    }

    .catalog-controls {
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
        padding: 8px 12px;
        gap: 6px;
    }

    .catalog-btn {
        width: 36px;
        height: 36px;
    }

    .catalog-flip {
        display: none;
    }
}

/* Katalog Tab Butonları */
.catalog-tab-btn {
    padding: 8px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.catalog-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* =============================================================
   GOOGLE YORUMLAR MODÜLÜ
   ============================================================= */
.google-reviews {
    padding: 80px 0;
    background: var(--bg-hero);
}

.google-reviews__header {
    text-align: center;
    margin-bottom: 48px;
}

.google-reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(66, 133, 244, .1);
    color: #4285f4;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.google-reviews__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}

.google-reviews__title span {
    color: var(--primary);
}

.google-reviews__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.google-reviews__stars svg {
    fill: #fbbc04;
    stroke: none;
}

.google-reviews__rating {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-left: 8px;
}

.google-reviews__count {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.google-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

.review-card__date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__stars svg {
    fill: #fbbc04;
    width: 16px;
    height: 16px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.review-card__google {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: .3;
}

.google-reviews__cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 48px 0;
    }

    .google-reviews__grid {
        grid-template-columns: 1fr;
    }

    .google-reviews__title {
        font-size: 24px;
    }
}

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.nav-search-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.nav-search-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.search-overlay.active .search-overlay__inner {
    transform: translateY(0);
}

.search-close-btn {
    position: absolute;
    top: -80px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s;
}

.search-close-btn:hover {
    transform: rotate(90deg);
}

.search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--text);
    padding-bottom: 15px;
}

.search-overlay__form input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    font-family: inherit;
    outline: none;
}

.search-overlay__form input::placeholder {
    color: #ccc;
}

.search-overlay__form button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
}

.search-overlay__hint {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 15px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #34a853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

.review-card__date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card__stars svg {
    fill: #fbbc04;
    width: 16px;
    height: 16px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.review-card__google {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: .3;
}

.google-reviews__cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 48px 0;
    }

    .google-reviews__grid {
        grid-template-columns: 1fr;
    }

    .google-reviews__title {
        font-size: 24px;
    }
}

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.nav-search-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.nav-search-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.search-overlay.active .search-overlay__inner {
    transform: translateY(0);
}

.search-close-btn {
    position: absolute;
    top: -80px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s;
}

.search-close-btn:hover {
    transform: rotate(90deg);
}

.search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--text);
    padding-bottom: 15px;
}

.search-overlay__form input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    font-family: inherit;
    outline: none;
}

.search-overlay__form input::placeholder {
    color: #ccc;
}

.search-overlay__form button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 10px;
}

.search-overlay__hint {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 15px;
}

@media (max-width: 768px) {
    .search-overlay__form input {
        font-size: 24px;
    }

    .search-close-btn {
        top: -60px;
        right: 10px;
    }
}

/* YENI EKLEME: Header Menüleri Kalın Yazı */
.site-header .header-nav>a,
.site-header .header-nav .nav-dropdown>span,
.site-header .header-nav .nav-catalog-btn {
    font-weight: 700 !important;
}