/* ═══════════════════════════════════════════
   BLUE BRANDA - Premium Site Styles
   ═══════════════════════════════════════════ */

:root {
    /* Modern, clean monochrome palette with a single blue accent */
    --primary: #0f172a;       /* Slate 900 - Dark elegant */
    --primary-dark: #020617;  /* Slate 950 - Almost black */
    --secondary: #64748b;     /* Slate 500 - Muted text */
    --accent: #2563eb;        /* Blue 600 - The only "color" used to draw attention */
    --accent-hover: #1d4ed8;  /* Blue 700 */
    --light: #f8fafc;         /* Slate 50 - Very light grey for backgrounds */
    --dark: #0f172a;          /* Same as primary */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --success: #10b981;
    
    /* Removed colorful gradients, replaced with solid modern colors or subtle dark gradients */
    --gradient-primary: #0f172a;
    --gradient-accent: #2563eb;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 15px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

a { text-decoration: none; color: var(--secondary); transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

/* ═══ Buttons ═══ */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 28px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn:hover::after { width: 300px; height: 300px; }

.btn-primary { background: var(--gradient-primary); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gradient-primary); color: white; }

.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); color: white; background: var(--accent-hover); }

.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: white; }

/* ═══ Site Header ═══ */
.site-header {
    position: relative;
    z-index: 1050;
}

/* ── Overlay mode (on hero / slider pages) ── */
.site-header--overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

/* Top bar — overlay, not scrolled */
.site-header--overlay:not(.is-scrolled) .top-bar {
    background: rgba(8, 12, 30, 0.65);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
}
.site-header--overlay:not(.is-scrolled) .top-bar-info li i { color: #fff; }
.site-header--overlay:not(.is-scrolled) .top-bar-social a { color: rgba(255, 255, 255, 0.9); }
.site-header--overlay:not(.is-scrolled) .top-bar-phone-link { color: rgba(255, 255, 255, 0.95); }
.site-header--overlay:not(.is-scrolled) .top-bar-phone-link:hover { color: #fff; }

/* Main header — overlay, not scrolled */
.site-header--overlay:not(.is-scrolled) .main-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    border-bottom: none;
    box-shadow: none;
    padding-top: 4px;
}
.site-header--overlay:not(.is-scrolled) .brand-text {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.site-header--overlay:not(.is-scrolled) .brand-accent {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
}
.site-header--overlay:not(.is-scrolled) .nav-menu-main .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    text-shadow: none;
}
.site-header--overlay:not(.is-scrolled) .nav-menu-main .nav-link::after { display: none; }
.site-header--overlay:not(.is-scrolled) .nav-menu-main .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
}
.site-header--overlay:not(.is-scrolled) .header-search .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}
.site-header--overlay:not(.is-scrolled) .header-search .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }
.site-header--overlay:not(.is-scrolled) .header-search .btn-accent {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}
.site-header--overlay:not(.is-scrolled) .header-search .btn-accent:hover {
    background: white;
    color: var(--primary-dark);
}
.site-header--overlay:not(.is-scrolled) .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}
.site-header--overlay:not(.is-scrolled) .btn-outline-primary:hover {
    background: white;
    color: var(--primary-dark);
}
.site-header--overlay:not(.is-scrolled) .navbar-toggler { border-color: rgba(255, 255, 255, 0.4); }
.site-header--overlay:not(.is-scrolled) .navbar-toggler-icon { filter: brightness(0) invert(1); }
.site-header--overlay:not(.is-scrolled) .nav-link.dropdown-toggle { color: white !important; }
.site-header--overlay:not(.is-scrolled) .dropdown-menu {
    background: rgba(10, 15, 30, 0.96) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4) !important;
}
.site-header--overlay:not(.is-scrolled) .dropdown-item {
    color: rgba(255, 255, 255, 0.88) !important;
    border-radius: 8px;
    margin: 2px 6px;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
}
.site-header--overlay:not(.is-scrolled) .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #ffffff !important;
}
.site-header--overlay:not(.is-scrolled) .dropdown-divider { border-color: rgba(255, 255, 255, 0.08) !important; }

/* ── Scrolled state (from hero page) ── */
.site-header--overlay.is-scrolled .top-bar { display: none; }
.site-header--overlay.is-scrolled .main-header {
    background: rgba(255, 255, 255, 0.92) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(0,0,0,0.04),
        0 4px 20px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.site-header--overlay.is-scrolled .brand-text {
    color: var(--primary) !important;
    text-shadow: none;
}
.site-header--overlay.is-scrolled .brand-accent {
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
}
.site-header--overlay.is-scrolled .nav-menu-main .nav-link {
    color: var(--dark) !important;
    font-size: 0.84rem;
    letter-spacing: 0.01em;
    text-shadow: none;
}
.site-header--overlay.is-scrolled .nav-menu-main .nav-link::after { display: none; }
.site-header--overlay.is-scrolled .nav-menu-main .nav-link:hover {
    color: var(--accent) !important;
    background: var(--gray-100);
}
.site-header--overlay.is-scrolled .header-search .form-control {
    background: white;
    border-color: var(--gray-200);
    color: var(--dark);
}
.site-header--overlay.is-scrolled .header-search .btn-accent {
    background: var(--accent);
    border: none;
    color: white;
}
.site-header--overlay.is-scrolled .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.site-header--overlay.is-scrolled .navbar-toggler-icon { filter: brightness(0) !important; }
.site-header--overlay.is-scrolled .navbar-toggler { border-color: var(--gray-200); }
.site-header--overlay.is-scrolled .dropdown-menu {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1) !important;
}
.site-header--overlay.is-scrolled .dropdown-item {
    color: var(--dark) !important;
    border-radius: 8px;
    margin: 2px 6px;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
}
.site-header--overlay.is-scrolled .dropdown-item:hover {
    background: var(--gray-100) !important;
    color: var(--accent) !important;
}

/* ── Solid mode (inner pages — always white) ── */
.site-header--solid {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
}
.site-header--solid .main-header {
    background: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        0 1px 0 rgba(0,0,0,0.04),
        0 4px 20px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.site-header--solid .brand-text {
    color: var(--primary) !important;
}
.site-header--solid .brand-accent {
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-header--solid .nav-link {
    color: var(--dark) !important;
    text-shadow: none !important;
}
.site-header--solid .nav-link:hover { color: var(--accent) !important; }
.site-header--solid .nav-menu-main .nav-link::after { background: var(--accent); }
.site-header--solid .header-search .form-control {
    background: var(--white) !important;
    border-color: var(--gray-200) !important;
    color: var(--dark) !important;
}
.site-header--solid .header-search .form-control::placeholder { color: var(--gray-500) !important; }
.site-header--solid .header-search .btn-accent {
    background: var(--accent) !important;
    border: none !important;
    color: white !important;
}
.site-header--solid .btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
}
.site-header--solid .btn-accent.rounded-pill {
    background: var(--accent) !important;
    color: white !important;
}
.site-header--solid .navbar-toggler { border-color: var(--gray-200); }
.site-header--solid .navbar-toggler-icon { filter: brightness(0) !important; }
.site-header--solid .dropdown-menu {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1) !important;
}
.site-header--solid .dropdown-item {
    color: var(--dark) !important;
    border-radius: 8px;
    margin: 2px 6px;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
}
.site-header--solid .dropdown-item:hover,
.site-header--solid .dropdown-item:focus {
    background: var(--gray-100) !important;
    color: var(--accent) !important;
}
.site-header--solid .dropdown-divider {
    border-color: var(--gray-200) !important;
}

/* ── Dropdown icon styling ── */
.dropdown-item .dropdown-item-icon {
    color: var(--accent) !important;
    width: 1.15em;
    text-align: center;
    transition: color 0.2s ease;
}
.dropdown-item:hover .dropdown-item-icon,
.dropdown-item:focus .dropdown-item-icon {
    color: var(--accent-hover) !important;
}
.site-header--overlay:not(.is-scrolled) .dropdown-item .dropdown-item-icon {
    color: var(--accent) !important;
}
.site-header--overlay:not(.is-scrolled) .dropdown-item:hover .dropdown-item-icon,
.site-header--overlay:not(.is-scrolled) .dropdown-item:focus .dropdown-item-icon {
    color: #93c5fd !important;
}

/* Kategori tanıtım sayfası */
.category-landing-card { margin-bottom: 0; }
.category-landing-content { margin-bottom: 32px; }
.category-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
}
.category-landing-products .section-header { margin-bottom: 40px; }

/* ═══ Desktop Navbar Grid Layout ═══ */
.header-container {
    --header-pad-x: clamp(1.5rem, 4vw, 3rem);
    padding-left: var(--header-pad-x);
    padding-right: var(--header-pad-x);
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .navbar-main {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: clamp(1.5rem, 3vw, 3rem);
        padding: 0.75rem 0;
        width: 100%;
    }

    .navbar-main .navbar-brand {
        grid-column: 1;
        grid-row: 1;
        font-size: 1.55rem;
        margin: 0;
        padding: 0;
        letter-spacing: -0.04em;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .navbar-main .navbar-brand:hover {
        transform: scale(1.02);
    }

    .navbar-desktop__menu {
        grid-column: 2;
        grid-row: 1;
        display: flex !important;
        justify-content: flex-start;
        padding-left: 2rem;
        align-items: center;
        min-width: 0;
    }

    .navbar-desktop__auth {
        grid-column: 3;
        grid-row: 1;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }

    .navbar-main .navbar-toggler {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .nav-menu-main {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0;
        gap: 2px;
        max-width: 100%;
    }

    .nav-menu-main > .nav-item {
        flex-shrink: 0;
    }

    .nav-menu-main .nav-link {
        padding: 8px 14px !important;
        font-size: 0.84rem !important;
        font-weight: 600;
        white-space: nowrap;
        line-height: 1.4;
        border-radius: 10px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .nav-menu-main .nav-link::after {
        display: none !important;
    }

    /* Active indicator dot */
    .nav-menu-main .nav-item.active > .nav-link::before {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
    }

    .site-header--overlay.is-scrolled .nav-menu-main .nav-link:hover,
    .site-header--solid .nav-menu-main .nav-link:hover {
        background: var(--gray-100);
        color: var(--accent) !important;
    }

    .mega-nav-item .dropdown-toggle::after {
        display: none !important;
    }

    .site-header--overlay.is-scrolled .mega-nav-item .fa-chevron-down,
    .site-header--solid .mega-nav-item .fa-chevron-down {
        color: var(--gray-500) !important;
        font-size: 0.65rem;
    }

    .site-header--overlay:not(.is-scrolled) .mega-nav-item .fa-chevron-down {
        color: rgba(255,255,255,0.5) !important;
        font-size: 0.65rem;
    }

    /* ── Auth Buttons ── */
    .nav-menu-auth {
        margin: 0 !important;
        flex-direction: row;
        align-items: center;
        flex-shrink: 0;
        gap: 8px;
    }

    .nav-menu-auth-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-btn {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 10px 24px;
        border-radius: 12px;
        line-height: 1.25;
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Ghost button (Giriş Yap) */
    .nav-btn--ghost {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 16px;
    }

    .nav-btn--ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff !important;
        border-radius: 12px;
    }

    /* Primary button (Kayıt Ol) */
    .nav-btn--primary {
        background: linear-gradient(135deg, #2563eb, #6366f1);
        border: none;
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }

    .nav-btn--primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #4f46e5);
        color: #fff !important;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
        transform: translateY(-2px);
    }

    /* Solid/scrolled state buttons */
    .site-header--overlay.is-scrolled .nav-btn--ghost,
    .site-header--solid .nav-btn--ghost {
        background: transparent;
        color: var(--dark) !important;
    }

    .site-header--overlay.is-scrolled .nav-btn--ghost:hover,
    .site-header--solid .nav-btn--ghost:hover {
        background: var(--gray-100);
        color: var(--primary) !important;
    }

    .site-header--overlay.is-scrolled .nav-btn--primary,
    .site-header--solid .nav-btn--primary {
        box-shadow: 0 3px 12px rgba(37, 99, 235, 0.25);
    }

    .site-header--overlay.is-scrolled .nav-btn--primary:hover,
    .site-header--solid .nav-btn--primary:hover {
        box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4);
        transform: translateY(-1px);
    }

    .nav-account-name {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.82rem;
    }
}

/* ── Dropdown Menu Polish ── */
.dropdown-menu {
    border-radius: 14px !important;
    padding: 8px 4px !important;
    min-width: 220px;
    animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Offcanvas ── */
.header-nav-row--mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.header-nav-row--mobile .nav-menu-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.header-nav-row--mobile .nav-menu-auth > li:nth-child(2) {
    margin-left: auto !important;
}
#mobileNavOffcanvas .nav-menu-auth {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
}
#mobileNavOffcanvas .nav-menu-auth > li:last-child {
    margin-left: auto !important;
}
.header-nav-row--mobile .nav-menu-auth-buttons {
    flex-direction: column;
    gap: 0.65rem;
}
.header-nav-row--mobile .nav-btn {
    width: 100%;
    justify-content: center;
}

/* Mobile full-screen offcanvas */
.mobile-nav-offcanvas {
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(180deg, #0a0f1e 0%, #0f172a 100%) !important;
    color: #fff;
    z-index: 1065 !important;
}

.mobile-nav-offcanvas__header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
}

.mobile-nav-offcanvas__brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

.mobile-nav-offcanvas__brand .brand-text { color: #fff; }
.mobile-nav-offcanvas__brand .brand-accent {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-offcanvas__body {
    padding: 1.25rem 1.25rem 2rem;
}

.mobile-nav-offcanvas .nav-menu-main,
.mobile-nav-offcanvas .nav-menu-auth {
    width: 100%;
    margin: 0 !important;
    flex-direction: column;
}

.mobile-nav-offcanvas .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 14px 4px !important;
    transition: all 0.2s ease;
}

.mobile-nav-offcanvas .nav-link:hover {
    color: var(--accent) !important;
    padding-left: 12px !important;
}

.mobile-nav-offcanvas .nav-link::after { display: none !important; }

.mobile-nav-offcanvas .header-nav-row {
    flex-direction: column;
    width: 100%;
}

.mobile-nav-offcanvas .nav-menu-search {
    width: 100%;
    margin: 1.25rem 0 1rem !important;
}

.mobile-nav-offcanvas .nav-menu-search .form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-radius: 12px;
}

.mobile-nav-offcanvas .nav-menu-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.mobile-nav-offcanvas .nav-menu-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    padding-top: 0.5rem;
}

.mobile-nav-offcanvas .nav-menu-auth-buttons .btn {
    width: 100%;
    margin: 0 !important;
}

.mobile-nav-offcanvas .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
}

.mobile-nav-offcanvas .nav-btn--ghost {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.mobile-nav-offcanvas .nav-btn--primary {
    color: #fff !important;
}

.mobile-nav-offcanvas .dropdown-menu {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin: 0 0 0.5rem !important;
    padding: 0 0 0.5rem 0.75rem !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    animation: none;
}

.mobile-nav-offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 8px 8px !important;
    border-radius: 8px;
    margin: 1px 0;
}

.mobile-nav-offcanvas .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #fff !important;
}

.mobile-nav-offcanvas .dropdown-item small,
.mobile-nav-offcanvas .dropdown-item .text-muted {
    color: rgba(255, 255, 255, 0.45) !important;
}

.mobile-nav-offcanvas .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.mobile-nav-offcanvas .dropdown-toggle::after {
    display: none !important;
}

/* Offcanvas backdrop */
.offcanvas-backdrop.show {
    opacity: 1 !important;
    background: #070b14 !important;
    z-index: 1060 !important;
}

body.offcanvas-open {
    overflow: hidden !important;
}

@media (max-width: 991.98px) {
    .site-header--overlay:not(.is-scrolled) .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }
}

.page-home main { padding-top: 0; }

/* Kategori / çözümler: banner */
.page-with-banner .page-banner {
    min-height: max(380px, 44vh);
}
.page-with-banner .page-banner__inner {
    padding: 52px 16px 44px;
}
.page-with-banner .page-banner__bg {
    object-fit: cover;
    object-position: center center;
}

/* ═══ Top Bar ═══ */
.top-bar {
    background: var(--primary-dark);
    padding: 7px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}
.top-bar-info { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.top-bar-info li { display: flex; align-items: center; gap: 6px; }
.top-bar-info li i { color: var(--accent); font-size: 11px; }
.top-bar-social a { color: rgba(255,255,255,0.65); margin-left: 12px; font-size: 13px; }
.top-bar-social a:hover { color: var(--accent); }
.top-bar-phone-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.top-bar-phone-link:hover { color: var(--accent); }
.contact-phone-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
.contact-phone-link:hover { color: var(--accent); }

/* ═══ Header ═══ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar { padding: 0.5rem 0; }
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
}
.brand-text { color: var(--primary); transition: color 0.3s ease; }
.brand-accent { color: var(--accent); transition: all 0.3s ease; }

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark) !important;
    padding: 0.5rem 0.75rem !important;
    position: relative;
}
.nav-menu-main .nav-link::after {
    display: none;
}
.nav-link:hover { color: var(--accent) !important; }

.site-header--solid .nav-menu-main .nav-link {
    font-size: 0.84rem;
    color: var(--dark) !important;
}

.header-search .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid var(--gray-200);
    border-right: none;
    padding: 8px 16px;
    font-size: 14px;
}
.header-search .btn {
    border-radius: 0 50px 50px 0;
    padding: 8px 16px;
}


/* ═══ Hero Slider ═══ */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.page-home .hero-slider {
    margin-top: 0;
}
.hero-slider .heroSwiper,
.hero-slider .swiper-slide {
    height: 100vh;
    min-height: 520px;
    max-height: 900px;
}
.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slide--responsive-bg {
    background-image: var(--hero-bg-desktop);
    background-size: cover;
    background-position: center;
}
@media (max-width: 767.98px) {
    .hero-slide--responsive-bg {
        background-image: var(--hero-bg-mobile, var(--hero-bg-desktop));
    }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.45) 45%, rgba(2, 6, 23, 0.25) 100%);
}
.hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 88px 48px;
}
.hero-content {
    max-width: 720px;
    color: white;
}
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}
.hero-subtitle::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    max-width: 560px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}
.btn-hero-brand {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-hero-brand:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(15, 23, 42, 0.55);
    width: 44px;
    height: 44px;
    border-radius: 2px;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
}
.heroSwiper .swiper-button-prev { left: 24px; }
.heroSwiper .swiper-button-next { right: 24px; }
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after { font-size: 18px; font-weight: 700; }
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover { background: rgba(15, 23, 42, 0.75); }

.heroSwiper .swiper-pagination {
    bottom: 32px !important;
}
.heroSwiper .swiper-pagination-bullet {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: var(--transition);
}
.heroSwiper .swiper-pagination-bullet-active {
    background: white;
    border-color: white;
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    /* Swiper 100vh + kısa slide = hero altında beyaz boşluk */
    .hero-slider .heroSwiper,
    .hero-slider .swiper-wrapper,
    .hero-slider .swiper-slide {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
    .hero-slide {
        height: clamp(420px, 70svh, 540px);
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: clamp(380px, 62svh, 460px);
    }
    .section-padding { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-slide__content {
        padding: 0 20px 72px 20px;
    }
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    .heroSwiper .swiper-button-prev { left: 12px; }
    .heroSwiper .swiper-button-next { right: 12px; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .hero-title { font-size: 28px; letter-spacing: -0.5px; }
    .hero-desc { font-size: 15px; }
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev { display: none; }
}

/* ═══ Sections ═══ */
.section-padding { padding: 100px 0; }
.bg-light { background: var(--light) !important; }

.section-header { margin-bottom: 60px; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.section-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}
.section-title { font-size: 38px; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.2; }
.section-desc { color: var(--gray-500); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ═══ Category Cards ═══ */
.category-card {
    display: block;
    background: white;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.1);
    border-color: transparent;
    color: var(--dark);
}
.category-card:hover::after { transform: scaleX(1); }
.category-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--accent);
    transition: var(--transition);
}
.category-card:hover .category-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.08);
}
.category-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--dark); }
.category-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; line-height: 1.6; }
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}
.category-card:hover .category-link { gap: 10px; }

/* ═══ Product Cards ═══ */
.product-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.1);
    border-color: transparent;
}
.product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.06); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}
.product-info { padding: 20px 22px; }
.product-category {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.product-name { font-size: 16px; margin: 8px 0 10px; line-height: 1.4; }
.product-name a { color: var(--dark); }
.product-name a:hover { color: var(--accent); }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-current { font-size: 20px; font-weight: 700; color: var(--primary); }
.price-old { font-size: 14px; color: var(--gray-500); text-decoration: line-through; }

@media (max-width: 767.98px) {
    .product-image { height: 210px; }
    .product-info { padding: 10px 12px; }
    .product-name { font-size: 13px; margin: 4px 0 6px; }
    .product-card__excerpt { font-size: 12px; margin-bottom: 6px; }
    .product-card__actions { margin-top: 8px !important; }
}

/* ═══ Why Us ═══ */
.why-card {
    text-align: center;
    padding: 40px 28px 36px;
    border-radius: 14px;
    transition: var(--transition);
    background: white;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(15,23,42,0.09);
    border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }
.why-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -2px;
}
.why-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--accent);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.why-card h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ═══ Stats ═══ */
.section-stats {
    background: var(--primary-dark);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.section-stats::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
    top: -250px; right: -150px;
    pointer-events: none;
}
.section-stats::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 65%);
    bottom: -200px; left: -100px;
    pointer-events: none;
}
.stat-item {
    padding: 20px 30px;
    position: relative;
    z-index: 1;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 15%;
    width: 1px; height: 70%;
    background: rgba(255,255,255,0.1);
}
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 800;
    display: inline;
    color: white;
    letter-spacing: -1px;
}
.stat-suffix {
    font-size: 54px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    letter-spacing: -1px;
}
.stat-item p {
    font-size: 11px;
    opacity: 0.55;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ═══ Testimonials ═══ */
.testimonial-card {
    background: white;
    border-radius: 14px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 72px;
    line-height: 1;
    color: var(--gray-200);
    font-family: Georgia, serif;
    font-weight: 700;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 14px; font-size: 13px; display: flex; gap: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-500); margin-bottom: 20px; font-size: 15px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.testimonial-author strong { display: block; color: var(--dark); font-size: 15px; font-weight: 700; }
.testimonial-author span { font-size: 13px; color: var(--secondary); display: block; margin-top: 1px; }

/* ═══ CTA ═══ */
.section-cta {
    background: var(--primary);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
    top: -300px; right: -150px;
    pointer-events: none;
}
.section-cta::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
    bottom: -250px; left: -100px;
    pointer-events: none;
}
.section-cta .cta-inner { position: relative; z-index: 1; }
.section-cta h2 { color: white; font-size: 42px; margin-bottom: 16px; letter-spacing: -1px; }
.section-cta p { font-size: 18px; opacity: 0.65; margin-bottom: 40px; line-height: 1.7; }
/* CTA (main içi) ile footer arasında hafif ayrım */
main + .site-footer {
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.06);
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.35);
    color: white;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
    color: white;
    transform: translateY(-2px);
}

/* ═══ Page Banner (İç Sayfalar) ═══ */
.page-banner {
    position: relative;
    min-height: max(400px, 38vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1e3a5f 100%);
    overflow: hidden;
}
.page-banner--image {
    background: var(--primary-dark);
}
.page-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
.page-banner--compact {
    min-height: max(320px, 32vh);
}
.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.55) 100%);
    z-index: 1;
}
.page-banner--image .page-banner__overlay {
    background: linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.35) 0%,
        rgba(2, 6, 23, 0.55) 45%,
        rgba(2, 6, 23, 0.72) 100%
    );
}
.page-banner__inner {
    position: relative;
    z-index: 2;
    padding: 48px 16px 40px;
    width: 100%;
}
.page-banner__title {
    color: white;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.page-banner__breadcrumb .breadcrumb {
    margin: 0;
    justify-content: center;
}
.page-banner__breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}
.page-banner__breadcrumb .breadcrumb-item a:hover { color: white; }
.page-banner__breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.95); }
.page-banner__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}
.page-banner__lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 16px auto 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .page-banner { min-height: max(360px, 45vh); }
    .page-banner--compact { min-height: max(300px, 40vh); }
    .page-banner__inner { padding: 40px 16px 32px; }
    .page-with-banner .page-banner {
        min-height: max(320px, 40vh);
    }
    .page-with-banner .page-banner__inner {
        padding: 40px 16px 36px;
    }
}

/* Eski page-header sınıfları (hesabım vb. geriye dönük) */
.page-header {
    background: var(--gradient-primary);
    padding: 50px 0;
    color: white;
}
.page-header.compact { padding: 20px 0; }
.page-header h1 { color: white; font-size: 32px; margin-bottom: 8px; }
.page-header .breadcrumb { margin: 0; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ═══ Product Detail ═══ */
.product-gallery .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--gray-100);
}
.product-gallery .main-image img { width: 100%; height: 400px; object-fit: cover; }
.thumbnail-list { display: flex; gap: 8px; flex-wrap: wrap; }
.thumb-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.thumb-img:hover { border-color: var(--accent); }

.product-detail-info .product-category-tag {
    display: inline-block;
    background: var(--light);
    color: var(--secondary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.product-detail-info h1 { font-size: 30px; margin-bottom: 16px; }
.product-price-detail { margin-bottom: 20px; }
.product-price-detail .price-current { font-size: 32px; }
.product-price-detail .price-old { font-size: 20px; }
.product-short-desc { color: var(--gray-500); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
.product-attributes { margin-bottom: 24px; }
.product-attributes h5 { font-size: 16px; margin-bottom: 12px; }
.product-actions { margin-top: 24px; }
.product-meta { margin-top: 20px; color: var(--gray-500); font-size: 14px; }

/* ═══ Contact ═══ */
.contact-info-card {
    background: var(--gradient-primary);
    border-radius: var(--radius);
    padding: 40px 30px;
    color: white;
    height: 100%;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-item h5 { font-size: 16px; color: white; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; opacity: 0.85; margin: 0; }

.contact-form-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 24px; margin-bottom: 24px; }

.contact-page .contact-channels { max-width: 960px; margin-left: auto; margin-right: auto; }
.contact-channel-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    height: 100%;
}
.contact-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}
.contact-channel-card--whatsapp:hover { border-color: #25d366; }
.contact-channel-card--phone:hover { border-color: var(--accent); }
.contact-channel-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.contact-channel-card--whatsapp .contact-channel-card__icon {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}
.contact-channel-card--phone .contact-channel-card__icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
}
.contact-channel-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-channel-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.contact-channel-card__number {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.contact-channel-card__action {
    font-weight: 600;
    color: var(--accent);
    font-size: 15px;
}
.contact-detail-tile {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-200);
}
.contact-detail-tile i {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 12px;
}
.contact-detail-tile h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-detail-tile p { font-size: 14px; color: var(--gray-600); margin: 0; }
.contact-detail-tile a { color: var(--accent); text-decoration: none; }
.contact-detail-tile a:hover { text-decoration: underline; }

/* İletişim seçim modalı */
.contact-reach-modal .modal-content { border-radius: 16px; overflow: hidden; }
.contact-reach-options { display: flex; flex-direction: column; gap: 12px; }
.contact-reach-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}
.contact-reach-option:hover {
    color: inherit;
    border-color: transparent;
    transform: translateX(4px);
}
.contact-reach-option--whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
}
.contact-reach-option--phone:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: var(--accent);
}
.contact-reach-option__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-reach-option--whatsapp .contact-reach-option__icon {
    background: #25d366;
    color: white;
}
.contact-reach-option--phone .contact-reach-option__icon {
    background: var(--accent);
    color: white;
}
.contact-reach-option__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-reach-option__body strong { font-size: 16px; }
.contact-reach-option__body span { font-size: 13px; color: var(--gray-600); }
.contact-reach-option__arrow { color: var(--gray-400); font-size: 14px; }

/* ═══ Footer ═══ */
.site-footer {
    background: var(--white);
    color: var(--secondary);
    border-top: 1px solid var(--gray-200);
    margin-top: 0;
}
.footer-main { padding: 72px 0 56px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 48px 32px;
}
.footer-brand {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.footer-brand .brand-text { color: var(--primary); }
.footer-brand:hover .brand-text { color: var(--primary); }
.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light);
    border: 1px solid var(--gray-200);
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}
.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
}
.footer-contact-list li:last-child { margin-bottom: 0; }
.footer-contact-list a {
    color: var(--gray-500);
    font-weight: 500;
}
.footer-contact-list a:hover { color: var(--accent); }
.footer-contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--light);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 13px;
}
.footer-bottom {
    background: var(--light);
    border-top: 1px solid var(--gray-200);
    padding: 22px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    margin: 0;
    font-size: 13px;
    color: var(--gray-500);
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}
.footer-bottom-links a:hover { color: var(--accent); }
.footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ═══ Sabit İletişim Butonları ═══ */
.float-contact {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-contact__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.float-contact__btn:hover {
    transform: scale(1.08);
    color: white;
}
.float-contact__btn--main {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
    border: none;
    cursor: pointer;
    animation: pulse-contact-main 2.5s infinite;
}
.float-contact__btn--whatsapp {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}
.float-contact__btn--phone {
    background: #dc2626;
    font-size: 20px;
}

@keyframes pulse-contact-main {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35); }
    50% { box-shadow: 0 4px 28px rgba(37, 99, 235, 0.55); }
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 767.98px) {
    .float-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-contact__btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ═══ Scroll to Top ═══ */
.scroll-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.scroll-to-top:hover { background: var(--accent); transform: translateY(-3px); }
.scroll-to-top.visible { display: flex; }

@media (max-width: 767.98px) {
    .scroll-to-top {
        bottom: 82px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ═══ Error Page ═══ */
.error-page { padding: 100px 0; }
.error-code { font-size: 120px; font-weight: 800; color: var(--primary); line-height: 1; }
.error-content h2 { font-size: 28px; margin: 16px 0; }
.error-content p { color: var(--gray-500); margin-bottom: 30px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══ Static Pages ═══ */
.page-header.compact { padding: 32px 0 28px; }
.page-header.compact h1 { font-size: 32px; margin-bottom: 10px; }
.page-header-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0;
    line-height: 1.6;
}
.section-page {
    padding: 56px 0 80px;
    background: var(--light);
}
.page-article-layout {
    display: block;
}
.page-article-layout--with-nav {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}
.page-article-nav {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 24px 20px;
}
.page-article-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}
.page-toc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.page-toc a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    padding: 8px 10px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: var(--transition);
}
.page-toc a:hover {
    color: var(--accent);
    background: var(--light);
    border-left-color: var(--accent);
}
.page-article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}
.page-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-500);
}
.page-article-meta i { color: var(--accent); margin-right: 6px; }
.page-article-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--light);
    border: 1px solid var(--gray-200);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}
.page-article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
}
.page-article-cta strong {
    display: block;
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}
.page-article-cta p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-500);
}
.page-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--dark);
}
.legal-content .legal-intro,
.legal-content .page-intro {
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 36px;
}
.legal-content .legal-intro p,
.legal-content .page-intro p { margin-bottom: 10px; }
.legal-content .legal-intro p:last-child,
.legal-content .page-intro p:last-child { margin-bottom: 0; }
.legal-content .page-intro-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 8px 0 28px;
}
.about-value-item {
    background: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px 22px;
    transition: var(--transition);
}
.about-value-item:hover {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.about-value-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.about-value-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}
.legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 14px;
    padding-top: 8px;
    scroll-margin-top: 100px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 18px; margin-top: 28px; margin-bottom: 12px; }
.legal-content p { margin-bottom: 16px; color: var(--gray-500); }
.legal-content p strong { color: var(--primary); }
.legal-content ul {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
}
.legal-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--gray-500);
    line-height: 1.7;
}
.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.legal-content a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--accent-hover); }

/* ═══ Responsive ═══ */
@media (max-width: 991px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 30px; }
    .stat-number, .stat-suffix { font-size: 40px; }
    .stat-item + .stat-item::before { display: none; }
    .section-padding { padding: 80px 0; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-desc { max-width: none; }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .section-title { font-size: 26px; }
    .why-number { font-size: 40px; }
    .stat-number, .stat-suffix { font-size: 36px; }
    .section-cta h2 { font-size: 30px; }
    .product-gallery .main-image img { height: 280px; }
    .contact-form-card { padding: 24px; }
    .top-bar { display: none; }
    .footer-main { padding: 48px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .page-article-layout--with-nav { grid-template-columns: 1fr; }
    .page-article-nav { position: static; }
    .page-toc {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .page-toc a { border-left: none; border: 1px solid var(--gray-200); }
    .page-article-card { padding: 28px 22px; }
    .page-article-cta {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .about-values { grid-template-columns: 1fr; }
}

/* ═══ Referanslar ═══ */
.section-references {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 45%, #f1f5f9 100%);
    overflow: hidden;
}

.section-references::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(15, 23, 42, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.section-references .container {
    position: relative;
    z-index: 1;
}

.references-header {
    margin-bottom: 2.75rem;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.reference-card {
    position: relative;
    min-height: 100%;
}

.reference-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.reference-card:hover .reference-card__glow {
    opacity: 1;
}

.reference-card__body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 1.5rem 1.35rem 1.35rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.reference-card:hover .reference-card__body {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.reference-card__brand {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}

.reference-card__avatar,
.reference-card__logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.references-grid .reference-card:nth-child(4n+1) .reference-card__avatar { background: linear-gradient(145deg, #1d4ed8, #3b82f6); }
.references-grid .reference-card:nth-child(4n+2) .reference-card__avatar { background: linear-gradient(145deg, #0f766e, #14b8a6); }
.references-grid .reference-card:nth-child(4n+3) .reference-card__avatar { background: linear-gradient(145deg, #7c3aed, #a78bfa); }
.references-grid .reference-card:nth-child(4n+4) .reference-card__avatar { background: linear-gradient(145deg, #b45309, #f59e0b); }

.reference-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.reference-card__monogram {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
}

.reference-card__sector-icon {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.reference-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px;
}

.reference-card__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reference-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #059669;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.reference-card__verified i {
    font-size: 0.75rem;
}

.reference-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.reference-card__project {
    margin: 0;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--gray-200);
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.reference-card__project i {
    color: var(--accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.references-footnote {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.references-footnote i {
    margin-right: 0.35rem;
}

@media (max-width: 1199.98px) {
    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reference-card__body {
        padding: 1.25rem 1.15rem;
    }
}

/* ═══ Ürün filtresi sidebar ═══ */
.filter-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.filter-category-link:hover,
.filter-category-link.is-active {
    background: var(--light);
    color: var(--accent);
}

.dropdown-menu-products { min-width: 280px; }
.dropdown-item-sub {
    font-size: 12px;
    padding-top: 0 !important;
    padding-left: 2.5rem !important;
    color: var(--accent) !important;
}

/* ═══ Hesabım ═══ */
.account-section { padding-top: 0; }
.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.account-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.account-sidebar__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--primary);
    color: #fff;
}
.account-sidebar__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-sidebar__head strong { display: block; font-size: 15px; }
.account-sidebar__head small { opacity: 0.75; font-size: 12px; }
.account-sidebar__nav { padding: 8px; }
.account-sidebar__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--gray-500);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.account-sidebar__link:hover { background: var(--light); color: var(--accent); }
.account-sidebar__link.is-active { background: rgba(37, 99, 235, 0.1); color: var(--accent); }
.account-sidebar__link--danger:hover { background: #fef2f2; color: #dc2626; }
.account-sidebar__badge {
    margin-left: auto;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
}
.account-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 32px;
}
.account-panel__title {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.account-dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px 20px;
    margin-bottom: 24px;
}
.account-dl dt { font-weight: 600; color: var(--gray-500); font-size: 14px; }
.account-dl dd { margin: 0; }
.account-empty { text-align: center; padding: 48px 24px; color: var(--gray-500); }
.account-empty i { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.account-notifications { display: flex; flex-direction: column; gap: 10px; }
.account-notification { border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; }
.account-notification.is-unread { border-left: 4px solid var(--accent); }
.account-notification__link {
    display: flex;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
}
.account-notification__link:hover { background: var(--light); }
.account-notification__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.account-notification__msg { display: block; font-weight: 600; font-size: 14px; }
.account-notification__time { font-size: 12px; color: var(--gray-500); }

/* ═══ Çerez bandı ═══ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--primary);
    color: #fff;
    padding: 16px 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent__text a { color: #93c5fd; font-weight: 600; }
.cookie-consent[hidden] { display: none !important; }

/* ═══ 404 ═══ */
.error-page { padding: 80px 0 100px; }
.error-content { max-width: 520px; margin: 0 auto; }
.error-code {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(80px, 15vw, 120px);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 8px;
}
.error-content h2 { margin-bottom: 12px; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

.contact-map-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-top: 48px;
}
.contact-map-wrap iframe { display: block; width: 100%; min-height: 360px; border: 0; }

.store-location-section-anchor { scroll-margin-top: 100px; }

@media (max-width: 991px) {
    .account-layout { grid-template-columns: 1fr; gap: 16px; overflow-x: hidden; }
    .account-sidebar { position: static; max-width: 100%; }
    .account-section { overflow-x: hidden; }
}

/* ═══ B2B Katalog & Mega Menü ═══ */
.home-trust-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #0a2540) 100%);
    color: #fff;
    padding: 28px 0;
    margin-top: -1px;
}
.home-trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
}
.home-trust-strip__item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 4px;
}
.home-trust-strip__item strong { font-size: 0.9rem; font-weight: 700; }
.home-trust-strip__item span { font-size: 0.78rem; opacity: 0.85; }

.catalog-lead { max-width: 640px; color: var(--gray-600); font-size: 1.05rem; }
.catalog-sidebar--subs .filter-category-link { padding-left: 12px; font-size: 0.92rem; }

.product-card--catalog {
    display: flex;
    flex-direction: column;
}
.product-card--catalog .product-info {
    padding: 1rem 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.product-card--catalog .product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}
.product-card--catalog .product-category {
    display: block;
    min-height: 2.6em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
.product-card--catalog .product-name {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    min-height: 2.8em;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.product-card--catalog .product-card__excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0 0 0.75rem;
    line-height: 1.45;
    flex: 1 1 auto;
    min-height: 4.35em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.product-card--catalog .product-card__actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
}
.product-card--catalog .product-image__link { display: block; width: 100%; height: 100%; }
/* Katalog kartlarında hover overlay kapatıldı — buton hizası tutarlı kalır */
.product-card--catalog .product-overlay { display: none; }
.product-inquiry-lead { font-size: 1rem; border-left: 3px solid var(--accent); padding-left: 12px; }

.product-description .desc-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
}
.product-description .desc-content h3,
.product-description .desc-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}
.product-description .desc-content h3 { font-size: 1.25rem; }
.product-description .desc-content h4 { font-size: 1.05rem; }
.product-description .desc-content ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}
.product-description .desc-content li { margin-bottom: 0.35rem; }
.product-description .desc-content p { margin-bottom: 1rem; }

/* ── Premium Mega Menu Styling ── */
.mega-nav-item .dropdown-menu-mega {
    min-width: 280px;
    max-width: 340px;
    padding: 12px;
    border-radius: 16px !important;
    animation: dropdownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-nav__header .dropdown-item {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 14px;
    margin-bottom: 4px;
    border-radius: 10px;
    background: transparent !important;
}

/* Header Text Gradient */
.site-header--overlay.is-scrolled .mega-nav__header .dropdown-item,
.site-header--solid .mega-nav__header .dropdown-item {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.site-header--overlay:not(.is-scrolled) .mega-nav__header .dropdown-item {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.mega-nav__header .dropdown-item i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 1.1em;
    -webkit-text-fill-color: initial;
}

.dropdown-menu-mega .dropdown-item {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: normal;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
}

/* Sub-item hover states */
.dropdown-menu-mega .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 4px 4px 0;
    transition: height 0.2s ease;
}

.site-header--overlay.is-scrolled .dropdown-menu-mega .dropdown-item:hover,
.site-header--solid .dropdown-menu-mega .dropdown-item:hover {
    background: var(--gray-100) !important;
    color: var(--accent) !important;
    padding-left: 20px;
}

.site-header--overlay:not(.is-scrolled) .dropdown-menu-mega .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.15) !important;
    color: #fff !important;
    padding-left: 20px;
}

.dropdown-menu-mega .dropdown-item:hover::before {
    height: 60%;
}

.dropdown-menu-mega hr.dropdown-divider {
    margin: 8px 0;
    opacity: 0.1;
}

/* Bottom Catalog Link */
.dropdown-menu-mega li:last-child .dropdown-item {
    margin-top: 4px;
    background: rgba(37, 99, 235, 0.05) !important;
    color: var(--accent) !important;
    font-weight: 600;
    justify-content: center;
    display: flex;
    align-items: center;
}
.site-header--overlay:not(.is-scrolled) .dropdown-menu-mega li:last-child .dropdown-item {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}
.dropdown-menu-mega li:last-child .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1) !important;
    transform: translateY(-1px);
}
.site-header--overlay:not(.is-scrolled) .dropdown-menu-mega li:last-child .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

@media (min-width: 992px) {
    .mega-nav-item.position-static .dropdown-menu-mega,
    .mega-nav-item .dropdown-menu-mega {
        margin-top: 0;
    }
}

#mobileNavOffcanvas .mega-nav-item .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: 0;
    padding-left: 1rem;
    background: transparent;
}
