* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3c5e;
    --primary-light: #2563a8;
    --accent: #c8a96e;
    --text: #1a1a2e;
    --text-light: #64748b;
    --bg: #f8f9fc;
    --white: #ffffff;
    --border: #e1e8f0;
    --success: #25d366;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.top-header {
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.98)), repeating-linear-gradient(90deg, rgba(18, 58, 103, 0.04) 0, rgba(18, 58, 103, 0.04) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(0deg, rgba(18, 58, 103, 0.03) 0, rgba(18, 58, 103, 0.03) 1px, transparent 1px, transparent 40px);
    border-bottom: 1px solid rgba(18, 58, 103, 0.08);
}

.top-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    width: 52%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    width: 280px !important;
    height: auto !important;
    max-height: unset !important;
    object-fit: contain;
    display: block;
}

.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.header-slogan {
    font-size: 12px;
    font-weight: 700;
    color: #8a96a8;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-center-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-social-link {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.h-wa {
    background: #25d366;
    color: #fff;
}

.h-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.h-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.h-ig:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.h-ig svg {
    stroke: #fff;
}

.h-li {
    background: #0077b5;
    color: #fff;
}

.h-li:hover {
    background: #005885;
    transform: translateY(-2px);
}

/* Dil Seçici */
.header-lang-wrap {
    position: relative;
}

.h-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f4f6fa;
    border: 1.5px solid #e0e6f0;
    border-radius: 7px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #2a3a4a;
    transition: all 0.2s;
    white-space: nowrap;
}

.h-lang-toggle:hover {
    border-color: #123a67;
    background: #fff;
}

.h-lang-toggle svg {
    stroke: #6b7280;
}

.h-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 500;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.header-lang-wrap:hover .h-lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.h-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #2a3a4a;
    transition: all 0.15s;
    white-space: nowrap;
}

.h-lang-item:hover {
    background: #f4f6fa;
    color: #123a67;
}

.h-lang-item.active {
    background: #123a67;
    color: #fff;
}

.header-right {
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.shipping-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #253140;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.shipping-icon {
    font-size: 16px;
    color: #c9a24d;
}

.header-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.contact-btn {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    width: 250px;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(180deg, #22c55e, #16a34a);
    color: #fff;
}

.phone-btn {
    background: linear-gradient(180deg, #35547a, #0d2f52);
    color: #fff;
}

.btn-icon {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    height: 58px;
    background: #0a1f35;
    border-top: 3px solid var(--primary);
    box-shadow: 0 8px 32px rgba(10, 31, 53, 0.35);
    position: relative;
}

.main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 120px);
    pointer-events: none;
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
}

.nav-menu>a,
.nav-dropdown-wrap>a {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 0;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}

.nav-menu>a:hover,
.nav-dropdown-wrap>a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu>a.active,
.nav-dropdown-wrap>a.active {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu>a::after,
.nav-dropdown-wrap>a::after {
    display: none;
}

.nav-dropdown-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-sub-menu {
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
    background: #0f2744;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    min-width: 230px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 300;
}

.nav-dropdown-wrap:hover .nav-sub-menu {
    opacity: 1;
    visibility: visible;
}

.nav-sub-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: 'Rajdhani', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.15s;
}

.nav-sub-menu a .sub-icon {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.nav-sub-menu a .sub-icon svg {
    stroke: rgba(255, 255, 255, 0.5);
    transition: stroke 0.2s;
}

.nav-sub-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-sub-menu a:hover .sub-icon {
    background: var(--primary);
}

.nav-sub-menu a:hover .sub-icon svg {
    stroke: #fff;
}

.nav-sub-menu a::after {
    display: none !important;
}

.nav-sub-menu a::before {
    display: none !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
}

.mobile-nav-link {
    padding: 13px 0;
    color: #1f2a37;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-sub {
    font-size: 13px !important;
    color: #6b7280 !important;
    padding-left: 20px !important;
}

@media (max-width:1200px) {
    .header-logo img {
        max-width: 320px;
        max-height: 72px;
    }

    .nav-menu {
        gap: 24px;
    }
}

@media (max-width:992px) {
    .top-header {
        height: auto;
        padding: 16px 0;
    }

    .top-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .header-logo,
    .header-right {
        width: 100%;
        min-width: unset;
    }

    .header-right {
        align-items: flex-start;
    }

    .header-contact-buttons {
        max-width: 320px;
    }

    .main-nav {
        height: auto;
        padding: 12px 0;
    }

    .nav-inner {
        justify-content: flex-start;
    }

    .nav-menu {
        justify-content: flex-start;
        gap: 18px 24px;
    }
}

/* Mobil sağ alan */
.header-mobile-right {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.hm-brand {
    font-size: 10px;
    font-weight: 700;
    color: #1a3c5e;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-align: right;
    min-width: 160px;
    display: block;
}

.hm-socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hm-s {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.hm-s:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.hm-s-wa {
    background: #25d366;
    color: #fff;
}

.hm-s-fb {
    background: #1877f2;
    color: #fff;
}

.hm-s-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.hm-s-ig svg {
    stroke: #fff;
}

.hm-s-li {
    background: #0077b5;
    color: #fff;
}

/* Mobil dil seçici */
.hm-lang-wrap {
    position: relative;
}

.hm-lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0f4f8;
    border: 1px solid #d0dae8;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    color: #1a3c5e;
}

.hm-lang-toggle svg {
    stroke: #6b7280;
}

.hm-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    padding: 6px;
    display: none;
    z-index: 500;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.hm-lang-wrap.open .hm-lang-dropdown {
    display: grid;
}

.hm-lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #2a3a4a;
    transition: background 0.15s;
}

.hm-lang-item:hover {
    background: #f4f6fa;
}

.hm-lang-item.active {
    background: #123a67;
    color: #fff;
}

@media (max-width:768px) {
    .nav-menu {
        display: none;
    }

    .nav-hamburger {
        display: none;
    }

    .mobile-menu.is-open {
        display: block;
    }

    .top-header {
        padding: 10px 0;
    }

    .top-header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header-logo {
        width: auto;
    }

    .header-logo img {
        max-width: 170px !important;
    }

    .header-center {
        display: none;
    }

    .header-mobile-right {
        display: flex;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width:576px) {
    .header-logo img {
        max-width: 240px;
        max-height: 58px;
    }

    .shipping-text {
        font-size: 13px;
    }

    .contact-btn {
        height: 42px;
        font-size: 15px;
    }

    .nav-menu a {
        font-size: 15px;
    }
}

/* ── 3D CAROUSEL SLIDER ── */
.hero-slider {
    position: relative;
    width: 100%;
    padding: 52px 0 68px;
    background: linear-gradient(160deg, #dde3ec 0%, #eef1f6 50%, #dde3ec 100%);
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26, 60, 94, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* fade edges so side cards bleed off */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #dde3ec 0%, transparent 14%, transparent 86%, #dde3ec 100%);
    pointer-events: none;
    z-index: 20;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.slide {
    position: absolute;
    width: 600px;
    height: 390px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
    will-change: transform, filter, opacity;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a3c5e;
    transition: transform 0.65s ease;
}

.slide.is-active:hover .slide-bg {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 20, 40, 0.9) 0%, rgba(8, 20, 40, 0.35) 50%, transparent 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    z-index: 3;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}

.slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.slide-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    max-width: 480px;
}

.slide-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
    line-height: 1.55;
}

.slide-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Slide states ── */
.slide.is-active {
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* prev/next: shifted so they peek from behind, partially clipped by ::after fade */
.slide.is-prev {
    transform: translateX(-62%) scale(0.8) rotateY(20deg);
    z-index: 6;
    filter: brightness(0.55) saturate(0.7);
}

.slide.is-prev2 {
    transform: translateX(-96%) scale(0.62) rotateY(30deg);
    z-index: 4;
    filter: brightness(0.3) saturate(0.4);
}

.slide.is-next {
    transform: translateX(62%) scale(0.8) rotateY(-20deg);
    z-index: 6;
    filter: brightness(0.55) saturate(0.7);
}

.slide.is-next2 {
    transform: translateX(96%) scale(0.62) rotateY(-30deg);
    z-index: 4;
    filter: brightness(0.3) saturate(0.4);
}

.slide.is-hidden {
    transform: scale(0.3);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* ── Progress bar ── */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    z-index: 5;
    border-radius: 0 2px 0 0;
    transition: width linear;
}

/* ── Arrows ── */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    background: var(--white);
    border: none;
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
    transition: all 0.22s;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

/* ── Dots ── */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 7px;
    align-items: center;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(26, 60, 94, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover:not(.active) {
    background: rgba(26, 60, 94, 0.45);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.22s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 60, 94, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #b8954f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg);
    border-color: var(--primary);
}

.btn-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
}

/* BRAND TICKER */
.brand-ticker {
    background: var(--primary);
    padding: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-ticker-inner {
    overflow: hidden;
    white-space: nowrap;
}

.brand-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: ticker 22s linear infinite;
    padding: 18px 0;
}

.brand-ticker-track span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    padding: 0 40px;
    position: relative;
    transition: color 0.3s;
}

.brand-ticker-track span::after {
    content: '·';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-size: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.brand-ticker-track span:hover {
    color: rgba(255, 255, 255, 0.9);
}

.brand-ticker:hover .brand-ticker-track {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTION COMMONS */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 520px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* SERVICES HOME */
.services-home {
    padding: 80px 0;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.sh-top {
    text-align: center;
    margin-bottom: 56px;
}

.sh-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.sh-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.sh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.sh-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.sh-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.12);
    border-color: var(--primary);
}

.sh-box-icon {
    width: 56px;
    height: 56px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.sh-box-icon svg {
    stroke: var(--primary);
    transition: stroke 0.3s;
}

.sh-box:hover .sh-box-icon {
    background: var(--primary);
    transform: scale(1.08);
}

.sh-box:hover .sh-box-icon svg {
    stroke: var(--white);
}

.sh-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.sh-box:hover h3 {
    color: var(--primary);
}

.sh-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.sh-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.sh-link::after {
    content: '→';
    transition: transform 0.3s;
}

.sh-link:hover {
    gap: 10px;
}

.sh-link:hover::after {
    transform: translateX(4px);
}

.sh-box-accent {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-color: var(--primary);
}

.sh-box-accent .sh-box-icon {
    background: rgba(255, 255, 255, 0.15);
}

.sh-box-accent .sh-box-icon svg {
    stroke: var(--accent);
}

.sh-box-accent:hover .sh-box-icon {
    background: var(--accent);
}

.sh-box-accent:hover .sh-box-icon svg {
    stroke: var(--white);
}

.sh-box-accent h3 {
    color: var(--white);
}

.sh-box-accent:hover h3 {
    color: var(--accent);
}

.sh-box-accent p {
    color: rgba(255, 255, 255, 0.8);
}

.sh-box-accent .sh-link {
    color: var(--accent);
}

.sh-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.sh-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.sh-feature svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .sh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-home {
        padding: 64px 0;
    }

    .sh-main-title {
        font-size: 26px;
    }

    .sh-top {
        margin-bottom: 40px;
    }

    .sh-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .sh-features {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .sh-main-title {
        font-size: 22px;
    }

    .sh-box {
        padding: 24px 20px;
    }
}

/* ABOUT HOME */
.about-home {
    padding: 80px 0;
    background: var(--bg);
}

.about-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.about-item-num {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

.about-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-item-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-home {
        padding: 64px 0;
    }

    .about-main-title {
        font-size: 26px;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-image {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 22px;
    }

    .about-item {
        gap: 16px;
    }

    .about-item-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* PRODUCTS HOME */
.products-home {
    padding: 80px 0;
    background: var(--white);
}

.products-home-header {
    text-align: center;
    margin-bottom: 56px;
}

.products-home-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.15);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3c5e 0%, #2563a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.product-badge-hot {
    background: #e74c3c;
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.product-text {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--accent);
}

.product-whatsapp {
    width: 34px;
    height: 34px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.product-whatsapp svg {
    fill: var(--white);
    width: 16px;
    height: 16px;
}

.product-whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-home {
        padding: 64px 0;
    }

    .products-home-title {
        font-size: 26px;
    }

    .products-home-header {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .products-home-title {
        font-size: 22px;
    }

    .product-card-image {
        height: 220px;
    }
}

/* FOOTER */
.products-grid-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: var(--bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 22px;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.product-name a:hover {
    color: var(--primary);
}

.product-code {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: monospace;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.55;
}

/* CTA */
.cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.08);
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.cta-text {
    font-size: 17px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CERTIFICATES */
.certs-section {
    padding: 80px 0;
    background: var(--bg);
}

.certs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.certs-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certs-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.certs-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.certs-image {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    margin-top: 8px;
}

.certs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certs-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
}

.certs-badge-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
}

.certs-badge-txt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-top: 4px;
}

.certs-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.cert-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(26, 60, 94, 0.1);
    border-color: var(--accent);
}

.cert-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-card-icon svg {
    stroke: var(--accent);
}

.cert-card-body {
    flex: 1;
}

.cert-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.cert-card-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.cert-card-check {
    width: 32px;
    height: 32px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .certs-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certs-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .certs-section {
        padding: 64px 0;
    }

    .certs-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .certs-title {
        font-size: 22px;
    }

    .cert-card {
        padding: 20px;
    }
}

/* FOOTER */
.footer {
    background: #0d1b2a;
    color: #94a3b8;
    padding: 72px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 17px;
}

.footer-brand .logo-sub {
    color: var(--accent);
}

.footer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
    margin-top: 14px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-contact a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--white);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
    margin-top: 8px;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1e2d3d;
    font-size: 13px;
    color: #475569;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, var(--primary) 100%);
    padding: 72px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

/* ABOUT PAGE */
.abt-intro {
    padding: 80px 0;
    background: var(--white);
}

.abt-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.abt-intro-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin: 12px 0 20px;
}

.abt-intro-title span {
    color: var(--primary);
}

.abt-intro-lead {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 16px;
}

.abt-intro-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
}

.abt-intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.abt-intro-tags span {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.abt-intro-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.abt-intro-img {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.abt-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 60, 94, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.abt-intro-stat {
    text-align: center;
}

.abt-intro-stat-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
}

.abt-intro-stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-top: 4px;
}

.abt-intro-img-small {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.abt-intro-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-stats {
    background: var(--primary);
    padding: 0;
}

.abt-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-stat-item {
    padding: 20px 40px;
    text-align: center;
    flex: 1;
}

.abt-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.abt-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.abt-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.abt-what {
    padding: 96px 0;
    background: var(--bg);
}

.abt-what-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.abt-what-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

.abt-what-sub {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.abt-what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.abt-what-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    transition: all 0.3s;
}

.abt-what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.1);
    border-color: var(--primary);
}

.abt-what-icon {
    width: 64px;
    height: 64px;
    background: var(--bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.abt-what-icon svg {
    stroke: var(--primary);
    transition: stroke 0.3s;
}

.abt-what-card:hover .abt-what-icon {
    background: var(--primary);
}

.abt-what-card:hover .abt-what-icon svg {
    stroke: var(--white);
}

.abt-what-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.abt-what-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.abt-mv {
    padding: 96px 0;
    background: var(--white);
}

.abt-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.abt-mv-image {
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 100px;
}

.abt-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-mv-block {
    display: flex;
    gap: 20px;
    align-items: start;
}

.abt-mv-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-mv-icon svg {
    stroke: var(--accent);
}

.abt-mv-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.abt-mv-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
}

.abt-mv-divider {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

.abt-why {
    padding: 96px 0;
    background: var(--bg);
}

.abt-why-header {
    text-align: center;
    margin-bottom: 56px;
}

.abt-why-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
}

.abt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.abt-why-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: start;
    transition: all 0.3s;
}

.abt-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 60, 94, 0.1);
    border-color: var(--accent);
}

.abt-why-icon {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.abt-why-icon svg {
    stroke: var(--primary);
    transition: stroke 0.3s;
}

.abt-why-item:hover .abt-why-icon {
    background: var(--primary);
}

.abt-why-item:hover .abt-why-icon svg {
    stroke: var(--white);
}

.abt-why-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.abt-why-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.abt-cta {
    padding: 40px 0;
    background: var(--primary);
}

.abt-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
    align-items: center;
}

.abt-cta-center {
    text-align: center;
    padding: 0 12px;
}

.abt-cta-center h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.abt-cta-center p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.abt-cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.abt-cta-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.abt-cta-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.abt-cta-card-top svg {
    fill: var(--accent);
    width: 14px;
    height: 14px;
}

.abt-cta-card-alt .abt-cta-card-top svg {
    fill: none;
    stroke: var(--accent);
}

.abt-cta-card-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.2px;
}

.abt-cta-card-btn {
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.abt-cta-card-btn:hover {
    background: #b8954f;
}

@media (max-width: 1024px) {
    .abt-cta-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt-cta-center {
        padding: 24px 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .abt-cta {
        padding: 64px 0;
    }

    .abt-cta-center h2 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .abt-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-what-grid {
        grid-template-columns: 1fr;
    }

    .abt-mv-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-mv-image {
        height: 360px;
        position: static;
    }

    .abt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-stats-row {
        flex-wrap: wrap;
    }

    .abt-stat-divider {
        display: none;
    }

    .abt-stat-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .abt-intro {
        padding: 40px 0;
    }

    .abt-intro-title {
        font-size: 24px;
    }

    .abt-intro-lead {
        font-size: 14px;
    }

    .abt-intro-text {
        font-size: 13px;
    }

    .abt-intro-img {
        height: 220px;
    }

    .abt-intro-img-small {
        height: 130px;
    }

    .abt-what {
        padding: 48px 0;
    }

    .abt-what-title,
    .abt-why-title {
        font-size: 22px;
    }

    .abt-what-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .abt-what-card {
        padding: 20px 16px;
    }

    .abt-what-card h3 {
        font-size: 15px;
    }

    .abt-what-card p {
        font-size: 12px;
    }

    .abt-what-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .abt-mv {
        padding: 48px 0;
    }

    .abt-mv-title {
        font-size: 18px;
    }

    .abt-mv-text {
        font-size: 13px;
    }

    .abt-why {
        padding: 48px 0;
    }

    .abt-why-grid {
        grid-template-columns: 1fr;
    }

    .abt-why-item {
        padding: 20px 16px;
    }

    .abt-stats {
        padding: 0;
    }

    .abt-stats-row {
        flex-wrap: wrap;
        gap: 1px;
    }

    .abt-stat-divider {
        display: none;
    }

    .abt-stat-item {
        padding: 12px 8px;
        flex: 1 1 calc(33.33% - 2px) !important;
        min-width: 0;
        text-align: center;
    }

    .abt-stat-num {
        font-size: 18px;
    }

    .abt-stat-lbl {
        font-size: 10px;
    }

    .abt-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .abt-cta-btns {
        justify-content: center;
    }

    .abt-cta-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .abt-intro-title {
        font-size: 22px;
    }

    .abt-stat-item {
        flex: 0 0 100%;
    }

    .abt-what-grid {
        grid-template-columns: 1fr;
    }

    .abt-what-card,
    .abt-why-item {
        padding: 20px 16px;
    }
}

.content-section {
    padding: 96px 0;
}

position: relative;
height: 520px;
display: flex;
align-items: center;
overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.88) 0%, rgba(26, 60, 94, 0.75) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.about-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.6px;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.about-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-stats-bar {
    background: var(--primary);
    padding: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats-item:last-child {
    border-right: none;
}

.about-stats-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.about-stats-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.about-story {
    padding: 96px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-image {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-story-badge svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.about-story-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-story-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-values {
    padding: 96px 0;
    background: var(--bg);
}

.about-values-header {
    text-align: center;
    margin-bottom: 56px;
}

.about-values-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.1);
    border-color: var(--primary);
}

.about-value-card-dark {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-color: var(--primary);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.about-value-icon svg {
    stroke: var(--primary);
    transition: stroke 0.3s;
}

.about-value-card:hover .about-value-icon {
    background: var(--primary);
}

.about-value-card:hover .about-value-icon svg {
    stroke: var(--white);
}

.about-value-card-dark .about-value-icon {
    background: rgba(255, 255, 255, 0.15);
}

.about-value-card-dark .about-value-icon svg {
    stroke: var(--accent);
}

.about-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.about-value-card-dark h3 {
    color: var(--white);
}

.about-value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.about-value-card-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.about-mission {
    padding: 96px 0;
    background: var(--white);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-mission-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-mission-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-mission-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 32px;
}

.about-mission-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.about-mission-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-mission-image {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
}

.about-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
}

.about-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {

    .about-story-grid,
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 420px;
    }

    .about-hero-title {
        font-size: 30px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image,
    .about-mission-image {
        height: 320px;
    }

    .about-mission-title,
    .about-story-title {
        font-size: 26px;
    }

    .about-cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 24px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-section {
    padding: 96px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.3px;
}

.content-paragraph {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.75;
}

.content-image {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background: var(--bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.value-card:hover {
    box-shadow: var(--shadow);
}

.value-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.value-text {
    font-size: 14px;
    color: var(--text-light);
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* SERVICES */
/* Services Page */
.srv-hero {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
}

.srv-hero-content {
    max-width: 700px;
}

.srv-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.srv-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.srv-main {
    padding: 96px 0;
    background: var(--white);
}

.srv-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 96px;
}

.srv-block:last-child {
    margin-bottom: 0;
}

.srv-block-reverse {
    direction: rtl;
}

.srv-block-reverse>* {
    direction: ltr;
}

.srv-block-image {
    position: relative;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.srv-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srv-block-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.srv-block-badge svg {
    stroke: var(--accent);
}

.srv-block-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.4px;
    margin-bottom: 20px;
}

.srv-block-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.srv-block-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
}

.srv-block-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.srv-block-item svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.srv-brands {
    padding: 80px 0;
    background: var(--bg);
}

.srv-brands-header {
    text-align: center;
    margin-bottom: 48px;
}

.srv-brands-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.srv-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.srv-brand-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    transition: all 0.25s;
}

.srv-brand-item:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 60, 94, 0.15);
}

.srv-cta {
    padding: 36px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
}

.srv-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 16px;
    align-items: center;
}

.srv-cta-mid {
    text-align: center;
    padding: 0 12px;
}

.srv-cta-mid h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.srv-cta-mid p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.srv-cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s;
}

.srv-cta-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.srv-cta-icon {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-cta-card-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.srv-cta-card-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.srv-cta-card-btn {
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.srv-cta-card-btn:hover {
    background: #b8954f;
}

@media (max-width: 1024px) {
    .srv-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .srv-block-reverse {
        direction: ltr;
    }

    .srv-block-image {
        height: 360px;
    }

    .srv-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .srv-cta-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv-cta-mid {
        order: -1;
    }
}

@media (max-width: 768px) {
    .srv-hero {
        padding: 36px 0;
    }

    .srv-hero-title {
        font-size: 24px;
    }

    .srv-hero-sub {
        font-size: 14px;
    }

    .srv-main {
        padding: 40px 0;
    }

    .srv-block {
        gap: 24px;
        margin-bottom: 48px;
    }

    .srv-block-image {
        height: 220px;
    }

    .srv-block-badge {
        bottom: 14px;
        left: 14px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .srv-block-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .srv-block-text {
        font-size: 13px;
    }

    .srv-block-list {
        gap: 8px;
        margin: 16px 0 20px;
    }

    .srv-block-item {
        font-size: 13px;
    }

    .srv-brands {
        padding: 40px 0;
    }

    .srv-brands-title {
        font-size: 20px;
    }

    .srv-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .srv-brand-item {
        padding: 14px 10px;
        font-size: 11px;
    }

    .srv-cta {
        padding: 24px 0;
    }

    .srv-cta-mid h2 {
        font-size: 16px;
    }

    .srv-cta-card {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .srv-hero-title {
        font-size: 22px;
    }

    .srv-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.global-bar {
    background: var(--primary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.global-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.global-bar-inner span,
.global-bar-inner a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.global-bar-inner svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.global-bar-inner a svg {
    fill: #25d366;
    stroke: none;
}

.global-bar-inner a:hover {
    color: var(--white);
}

.global-bar-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

/* Hero Band */
.cat-hero-band {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cat-hero-band-left h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.cat-hero-band-left p {
    font-size: 13px;
    color: #8a96a8;
}

.cat-hero-band-right {
    display: flex;
    gap: 28px;
    flex-shrink: 0;
}

.cat-hero-stat {
    text-align: center;
}

.cat-hero-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.cat-hero-stat-lbl {
    font-size: 11px;
    color: #8a96a8;
    font-weight: 600;
}

/* Sidebar icon */
.cat-sidebar-link-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-sidebar-link-inner svg {
    stroke: currentColor;
    flex-shrink: 0;
    opacity: 0.7;
}

/* Features Band */
.cat-features-band {
    background: var(--primary);
    padding: 14px 0;
    margin-top: 0;
}

.cat-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.cat-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-feature-item:last-child {
    border-right: none;
}

.cat-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-feature-icon svg {
    stroke: var(--accent);
    width: 16px;
    height: 16px;
}

.cat-feature-item h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.cat-feature-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .global-bar-inner {
        gap: 16px;
    }

    .cat-hero-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .cat-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-feature-item {
        border-right: none;
        padding: 0 16px;
    }
}

/* MOBİL KATEGORİ BUTONLARI — masaüstünde gizli */
.cat-mobile-cats {
    display: none;
}

.cat-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    background: #eef1f6;
    align-items: start;
    overflow: visible;
}

/* SIDEBAR */
.cat-sidebar {
    background: var(--white);
    border-right: 1px solid #dde3ec;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 200px;
    height: calc(100vh - 200px);
    overflow-y: auto;
    align-self: start;
    scrollbar-width: none;
}

.cat-sidebar::-webkit-scrollbar {
    display: none;
}

.cat-sidebar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f6fa;
    border: 1.5px solid #dde3ec;
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.2s;
}

.cat-sidebar-search:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.07);
}

.cat-sidebar-search svg {
    stroke: #b0bcc8;
    flex-shrink: 0;
}

.cat-sidebar-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    outline: none;
}

.cat-sidebar-search input::placeholder {
    color: #b8c4d0;
}

.cat-sidebar-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9aa5b4;
    margin-bottom: 10px;
}

.cat-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #5a6a7a;
    transition: all 0.18s;
    border: 1px solid transparent;
}

.cat-sidebar-link:hover {
    background: #f4f6fa;
    color: var(--primary);
    border-color: #e2e8f0;
}

.cat-sidebar-link.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26, 60, 94, 0.2);
}

.cat-sidebar-count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 50px;
}

.cat-sidebar-link:not(.active) .cat-sidebar-count {
    background: #eef1f6;
    color: #8a96a8;
}

.cat-sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 4px;
    margin-top: auto;
    border-top: 1px solid #f0f3f7;
}

.cat-sidebar-logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
}

/* MAIN */
.cat-main {
    padding: 28px 28px 80px;
}

.cat-main-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #9aa5b4;
    margin-bottom: 8px;
}

.cat-breadcrumb a {
    color: #9aa5b4;
    text-decoration: none;
}

.cat-breadcrumb a:hover {
    color: var(--primary);
}

.cat-breadcrumb span {
    color: #d0d8e4;
}

.cat-main-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.4px;
    margin: 0 0 4px;
    line-height: 1.2;
}

.cat-main-title span {
    color: var(--primary);
}

.cat-main-sub {
    font-size: 13px;
    color: #8a96a8;
}

.cat-main-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cat-result-count {
    font-size: 12px;
    font-weight: 600;
    color: #8a96a8;
}

.cat-view-btns {
    display: flex;
    gap: 4px;
}

.cat-view-btn {
    width: 30px;
    height: 30px;
    border: 1.5px solid #dde3ec;
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0bcc8;
    transition: all 0.2s;
}

.cat-view-btn.active,
.cat-view-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cat-view-btn svg {
    fill: currentColor;
}

/* GRID */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

/* CARD */
.cat-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(26, 60, 94, 0.05);
}

.cat-card:hover {
    box-shadow: 0 16px 40px rgba(26, 60, 94, 0.16);
    transform: translateY(-6px);
    border-color: #b8c8d8;
}

.cat-card-img {
    display: block;
    height: 150px;
    overflow: hidden;
    background: #e8ecf0;
    position: relative;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.cat-card:hover .cat-card-img img {
    transform: scale(1.08);
}

.cat-card-machinebg {
    position: absolute;
    inset: 0;
    background-image: var(--machine-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transition: opacity 0.3s;
    pointer-events: none;
    filter: grayscale(15%);
}

.cat-card:hover .cat-card-machinebg {
    opacity: 0.28;
}

.cat-card-watermark {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.08;
    letter-spacing: -1px;
    pointer-events: none;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

.cat-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 94, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.cat-card-hover img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.cat-card:hover .cat-card-hover {
    opacity: 1;
}

.cat-card-body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cat-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.cat-card-brand {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.cat-card-instock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 800;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 2px 8px;
    border-radius: 50px;
}

.cat-card-code {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin: 2px 0 0;
    line-height: 1.3;
    font-family: 'Inter', monospace;
    letter-spacing: -0.3px;
}

.cat-card-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    margin-left: 0;
    pointer-events: none;
    z-index: 1;
}

.cat-card-wm img {
    height: 160px;
    width: auto;
    object-fit: contain;
    opacity: 0.40;
}

.cat-card-logo {
    margin: 4px 0;
}

.cat-card-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.3s;
}

.cat-card:hover .cat-card-logo img {
    opacity: 0.8;
}

.cat-card-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f3f7;
}

.cat-card-btn {
    flex: 1;
    text-align: center;
    padding: 7px 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
    color: var(--white);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(26, 60, 94, 0.2);
}

.cat-card-btn:hover {
    background: linear-gradient(135deg, #0f2744 0%, var(--primary) 100%);
    box-shadow: 0 4px 14px rgba(26, 60, 94, 0.3);
}

.cat-card-wa {
    width: 32px;
    height: 32px;
    background: #f0faf4;
    border: 1px solid #c3e6d0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.cat-card-wa svg {
    fill: #25d366;
}

.cat-card-wa:hover {
    background: #25d366;
    border-color: #25d366;
}

.cat-card-wa:hover svg {
    fill: var(--white);
}

/* LIST VIEW */
.cat-list {
    grid-template-columns: 1fr;
    gap: 8px;
}

.cat-list .cat-card {
    flex-direction: row;
}

.cat-list .cat-card-img {
    width: 130px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 0;
}

.cat-list .cat-card-hover {
    display: none;
}

.cat-list .cat-card-body {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
}

.cat-list .cat-card-code {
    font-size: 15px;
}

.cat-list .cat-card-actions {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: auto;
    flex-shrink: 0;
}

/* EMPTY */
.cat-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    gap: 12px;
}

.cat-empty svg {
    stroke: #c8d4de;
}

.cat-empty h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.cat-empty p {
    font-size: 13px;
    color: #8a96a8;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .cat-wrap {
        grid-template-columns: 220px 1fr;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cat-wrap {
        grid-template-columns: 1fr;
    }

    /* Mobil kategori butonları */
    .cat-mobile-cats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px 12px 0;
        background: #fff;
        border-bottom: 1px solid #dde3ec;
    }

    .cat-mobile-cat-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 8px;
        border-radius: 8px;
        background: #f4f6fa;
        border: 1.5px solid #e2e8f0;
        font-size: 12px;
        font-weight: 700;
        color: #1a3c5e;
        text-decoration: none;
        text-align: center;
        line-height: 1.3;
        transition: all 0.2s;
    }

    .cat-mobile-cat-btn.active {
        background: #1a3c5e;
        color: #fff;
        border-color: #1a3c5e;
        box-shadow: 0 4px 12px rgba(26, 60, 94, 0.2);
    }

    .cat-mobile-cat-btn:hover:not(.active) {
        background: #e8edf6;
        border-color: #1a3c5e;
    }

    /* Sidebar — sadece arama */
    .cat-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #dde3ec;
        padding: 10px 12px;
    }

    .cat-sidebar-section {
        display: none;
    }

    .cat-sidebar-logo {
        display: none;
    }

    .cat-main {
        padding: 16px 12px 80px;
    }

    .cat-main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cat-main-title {
        font-size: 20px;
    }

    .cat-main-title span {
        font-size: 20px;
    }

    .cat-main-sub {
        font-size: 13px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cat-card-img {
        height: 130px;
    }

    .cat-card-code {
        font-size: 12px;
    }

    .cat-card-btn {
        font-size: 11px;
        padding: 6px 6px;
    }

    .cat-card-wa {
        width: 28px;
        height: 28px;
    }

    .cat-features-band .cat-features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cat-feature-item {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cat-card-img {
        height: 110px;
    }

    .cat-main-title {
        font-size: 18px;
    }
}

/* PAGINATION */
.cat-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cat-page-btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid #dde3ec;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
    padding: 0 10px;
}

.cat-page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cat-page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cat-page-btn svg {
    stroke: currentColor;
}

.cat-page-dots {
    font-size: 13px;
    color: #9aa5b4;
    padding: 0 4px;
}

/* PRODUCTS LISTING */
/* Shop / Products Page */
.shop-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    padding: 56px 0;
}

.shop-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.shop-header-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.shop-header-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.6;
}

.shop-header-stats {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.shop-stat {
    text-align: center;
}

.shop-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.shop-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.shop-wrap {
    padding: 48px 0 80px;
    background: var(--bg);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* SIDEBAR */
.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.sidebar-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}

.sidebar-search-input:focus {
    border-color: var(--primary);
}

.sidebar-search-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.sidebar-search-btn svg {
    stroke: var(--white);
}

.sidebar-search-btn:hover {
    background: var(--primary-light);
}

.sidebar-cats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-cat:hover {
    background: var(--bg);
    color: var(--primary);
}

.sidebar-cat.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.sidebar-cat-count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 7px;
    border-radius: 50px;
}

.sidebar-cat.active .sidebar-cat-count {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-brand-tag {
    padding: 6px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.sidebar-brand-tag:hover,
.sidebar-brand-tag.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2744 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    line-height: 1.5;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar-cta-btn:hover {
    background: #1da851;
}

.sidebar-cta-btn svg {
    fill: var(--white);
}

/* MAIN */
.shop-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-toolbar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shop-result-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sort {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.shop-view-btns {
    display: flex;
    gap: 4px;
}

.shop-view-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-light);
}

.shop-view-btn.active,
.shop-view-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.shop-view-btn svg {
    fill: currentColor;
}

/* GRID */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.12);
    border-color: rgba(26, 60, 94, 0.15);
}

.shop-card-img-wrap {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--bg);
}

.shop-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-card:hover .shop-card-img-wrap img {
    transform: scale(1.05);
}

.shop-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.shop-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.shop-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.shop-card-brand {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.shop-card-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg);
    padding: 3px 8px;
    border-radius: 4px;
}

.shop-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.shop-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.shop-card-title a:hover {
    color: var(--primary);
}

.shop-card-code {
    font-size: 11px;
    color: var(--text-light);
    font-family: monospace;
}

.shop-card-code span {
    font-weight: 600;
}

.shop-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.shop-card-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
    padding: 8px 14px;
    background: var(--bg);
    border-radius: 6px;
    border: 1px solid var(--border);
    flex: 1;
    justify-content: center;
}

.shop-card-detail:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.shop-card-detail svg {
    stroke: currentColor;
    transition: transform 0.2s;
}

.shop-card-detail:hover svg {
    transform: translateX(3px);
}

.shop-card-wa {
    width: 36px;
    height: 36px;
    background: #25d366;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.shop-card-wa svg {
    fill: var(--white);
}

.shop-card-wa:hover {
    background: #1da851;
    transform: scale(1.08);
}

/* LIST VIEW */
.shop-list .shop-card {
    flex-direction: row;
    height: auto;
}

.shop-list .shop-card-img-wrap {
    width: 200px;
    height: auto;
    min-height: 160px;
    flex-shrink: 0;
    border-radius: 0;
}

.shop-list .shop-card-body {
    padding: 20px 24px;
}

.shop-list .shop-card-title {
    font-size: 17px;
}

/* NO RESULTS */
.shop-no-results {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    gap: 16px;
}

.shop-no-results svg {
    stroke: var(--text-light);
    opacity: 0.4;
}

.shop-no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.shop-no-results p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 360px;
}

@media (max-width: 1100px) {
    .shop-layout {
        grid-template-columns: 240px 1fr;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-header-stats {
        display: none;
    }
}

@media (max-width: 600px) {
    .shop-header-title {
        font-size: 28px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-list .shop-card {
        flex-direction: column;
    }

    .shop-list .shop-card-img-wrap {
        width: 100%;
        height: 200px;
    }
}

.products-listing {
    padding: 72px 0;
}

.products-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 9px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* CONTACT */
.contact-section {
    padding: 72px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--text-light);
}

.contact-details p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-details a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 14px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.08);
}

/* PRODUCT DETAIL v2 */
.pd2-page {
    background: #f0f2f6;
    min-height: 100vh;
    padding: 0 0 80px;
}

.pd2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.pd2-top {
    padding: 20px 0 0;
}

.pd2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8a96a8;
    font-weight: 500;
}

.pd2-breadcrumb a {
    color: #8a96a8;
    text-decoration: none;
    transition: color 0.2s;
}

.pd2-breadcrumb a:hover {
    color: var(--primary);
}

.pd2-breadcrumb span {
    color: #c0c8d4;
}

.pd2-breadcrumb span:last-child {
    color: var(--text);
    font-weight: 600;
}

.pd2-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    align-items: start;
    padding: 28px 0 48px;
}

/* GÖRSEL PANELİ */
.pd2-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 200px;
    align-self: start;
}

.pd2-img-card {
    position: relative;
    background: #e8ecf1;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(26, 60, 94, 0.1);
    border: 1px solid #dde3ec;
}

.pd2-img-bg {
    position: absolute;
    inset: 0;
    background-image: var(--mbg);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(30%);
    pointer-events: none;
    z-index: 0;
}

.pd2-img-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.pd2-img-wm img {
    height: 180px;
    width: auto;
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.pd2-img-product {
    max-width: 85%;
    max-height: 340px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.35s ease;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.pd2-img-card:hover .pd2-img-product {
    transform: scale(1.04);
}

.pd2-img-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.pd2-stock-dot {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.pd2-badges {
    display: flex;
    gap: 8px;
}

.pd2-badge-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #5a6a7a;
}

.pd2-badge-item svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

/* BİLGİ PANELİ */
.pd2-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.pd2-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd2-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.pd2-cat-tag {
    font-size: 11px;
    font-weight: 600;
    color: #8a96a8;
    background: #f0f2f6;
    padding: 3px 10px;
    border-radius: 4px;
}

.pd2-code {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    font-family: 'Inter', monospace;
    margin: 0;
    line-height: 1.2;
}

.pd2-table {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.pd2-table-row {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid #f4f6f9;
}

.pd2-table-row:last-child {
    border-bottom: none;
}

.pd2-table-key {
    font-size: 11px;
    font-weight: 700;
    color: #9aa5b4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 130px;
    flex-shrink: 0;
}

.pd2-table-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.pd2-mono {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
}

.pd2-instock {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #16a34a;
    font-weight: 700;
}

.pd2-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}

.pd2-notice svg {
    stroke: #d97706;
    flex-shrink: 0;
    margin-top: 1px;
}

.pd2-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd2-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.pd2-btn-wa:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.pd2-btn-wa svg {
    fill: #fff;
}

.pd2-btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid #d0d8e4;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pd2-btn-contact:hover {
    border-color: var(--primary);
    background: #f4f6fa;
}

.pd2-btn-contact svg {
    stroke: var(--primary);
}

/* İLGİLİ PARÇALAR */
.pd2-related {
    border-top: 1px solid #dde3ec;
    padding-top: 40px;
}

.pd2-related-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pd2-related-title span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.pd2-related-title a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.pd2-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.pd2-rel-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.22s;
    display: flex;
    flex-direction: column;
}

.pd2-rel-card:hover {
    border-color: #c0ccd8;
    box-shadow: 0 6px 20px rgba(26, 60, 94, 0.1);
    transform: translateY(-3px);
}

.pd2-rel-img {
    height: 120px;
    background: #e8ecf1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd2-rel-bg {
    position: absolute;
    inset: 0;
    background-image: var(--mbg);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: grayscale(30%);
    pointer-events: none;
}

.pd2-rel-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.pd2-rel-wm img {
    height: 70px;
    width: auto;
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.pd2-rel-img img:last-child {
    max-width: 80%;
    max-height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.pd2-rel-card:hover .pd2-rel-img img:last-child {
    transform: scale(1.06);
}

.pd2-rel-info {
    padding: 10px 12px;
}

.pd2-rel-brand {
    font-size: 9px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.pd2-rel-code {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    font-family: monospace;
}

@media (max-width: 1100px) {
    .pd2-layout {
        grid-template-columns: 1fr;
    }

    .pd2-visual {
        position: static;
    }

    .pd2-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pd2-code {
        font-size: 22px;
    }

    .pd2-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd2-badges {
        flex-wrap: wrap;
    }
}

.breadcrumb {
    padding: 16px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--border);
}

.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
}

.product-code-large {
    font-size: 14px;
    color: var(--text-light);
    font-family: monospace;
    background: var(--bg);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-brand {
    font-size: 14px;
    color: var(--text-light);
}

.product-short-desc {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.product-tabs {
    margin-top: 56px;
}

.tabs-header {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table tr:hover {
    background: var(--bg);
}

.spec-label {
    padding: 14px 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    width: 40%;
}

.spec-value {
    padding: 14px 12px;
    font-size: 14px;
    color: var(--text-light);
}

.usage-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.usage-list li {
    padding: 12px 18px;
    background: var(--bg);
    border-radius: 7px;
    font-size: 14px;
    color: var(--text);
    border-left: 3px solid var(--accent);
}

.related-products {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--border);
}

/* 404 */
.error-section {
    padding: 120px 0;
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.15;
}

.error-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.error-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        padding: 28px 0 40px;
    }

    .slider-track {
        height: 320px;
    }

    .slide {
        width: 88vw;
        height: 280px;
    }

    .slide-title {
        font-size: 18px;
    }

    .slide-desc {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .slide-content {
        padding: 20px 18px;
    }

    .slide-tag {
        font-size: 9px;
    }

    .slide-actions {
        gap: 8px;
    }

    .slide-actions .btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .content-grid,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .page-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .features-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slider-arrow {
        display: none;
    }

    /* Spare cats */
    .spare-cats-home {
        padding: 48px 0;
    }

    .spare-cats-title {
        font-size: 22px;
    }

    .spare-cats-sub {
        font-size: 13px;
    }

    /* Services — görsel üstte, grid 2 kolon */
    .sh-wrapper {
        grid-template-columns: 1fr;
    }

    .sh-image {
        height: 200px;
    }

    .sh-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .sh-box {
        padding: 18px 14px;
    }

    .sh-box h3 {
        font-size: 14px;
    }

    .sh-box p {
        font-size: 12px;
    }

    .sh-box-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    /* About */
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 220px;
    }

    /* Certs */
    .certs-wrapper {
        grid-template-columns: 1fr;
    }

    .certs-image {
        height: 220px;
    }

    .certs-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cert-card {
        padding: 14px;
        gap: 10px;
    }

    .cert-card-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .cert-card-body h3 {
        font-size: 13px;
    }

    .cert-card-body p {
        font-size: 11px;
    }

    .cert-card-check {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        padding: 20px 0 32px;
    }

    .slider-track {
        height: 280px;
    }

    .slide {
        width: 92vw;
        height: 250px;
    }

    .slide-title {
        font-size: 16px;
    }

    .slide-desc {
        display: none;
    }

    .features-strip-grid {
        grid-template-columns: 1fr;
    }

    /* Spare cats — 1 kolon */
    .spare-cats-grid {
        grid-template-columns: 1fr;
    }

    .scat-card-bg {
        height: 160px;
    }
}



/* ============================================================
   PRODUCT DETAIL PAGE — PDX DESIGN
   ============================================================ */

.pdx-page {
    background: #f0f2f6;
    min-height: 100vh;
}

.pdx-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
}

/* BREADCRUMB BAR */
.pdx-breadbar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.pdx-breadbar-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pdx-bread {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9aa5b4;
    font-weight: 500;
}

.pdx-bread a {
    color: #9aa5b4;
    text-decoration: none;
    transition: color 0.2s;
}

.pdx-bread a:hover {
    color: var(--primary);
}

.pdx-bread svg {
    stroke: #c8d4de;
    flex-shrink: 0;
}

.pdx-bread span:last-child {
    color: var(--text);
    font-weight: 600;
}

.pdx-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.pdx-pulse {
    width: 7px;
    height: 7px;
    background: #16a34a;
    border-radius: 50%;
    animation: pdxPulse 2s infinite;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes pdxPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

/* MAIN WRAP */
.pdx-wrap {
    padding: 28px 0 48px;
}

.pdx-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 36px;
    align-items: start;
}

/* ── GALLERY (SOL) ── */
.pdx-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 200px;
    align-self: start;
}

.pdx-main-img-wrap {
    position: relative;
    background: #dde3ec;
    border-radius: 18px;
    overflow: hidden;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(26, 60, 94, 0.1), 0 1px 4px rgba(26, 60, 94, 0.06);
    border: 1px solid #c8d0dc;
    isolation: isolate;
}

.pdx-img-machinebg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(20%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s;
}

.pdx-main-img-wrap:hover .pdx-img-machinebg {
    opacity: 0.25;
}

.pdx-img-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(180, 190, 205, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.pdx-img-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    isolation: isolate;
}

.pdx-img-wm img {
    height: 200px;
    width: auto;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    filter: grayscale(100%);
    mix-blend-mode: normal;
}

.pdx-product-img {
    max-width: 82%;
    max-height: 400px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    mix-blend-mode: multiply;
}

.pdx-main-img-wrap:hover .pdx-product-img {
    transform: scale(1.04) translateY(-4px);
}

.pdx-img-corner-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 4;
}

.pdx-img-corner-badge svg {
    stroke: #fff;
    flex-shrink: 0;
}

.pdx-img-logo {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 4;
    pointer-events: none;
}

.pdx-img-logo img {
    height: 170px;
    width: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(30%);
    transition: opacity 0.3s;
    user-select: none;
    -webkit-user-drag: none;
}

.pdx-main-img-wrap:hover .pdx-img-logo img {
    opacity: 0.75;
}

/* Alt Şerit */
.pdx-img-strip {
    background: var(--primary);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
}

.pdx-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.pdx-strip-item svg {
    stroke: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.pdx-strip-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ── INFO PANEL (SAĞ) ── */
.pdx-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Üst Başlık Bandı */
.pdx-info-topband {
    background: var(--primary);
    border-radius: 14px;
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.pdx-info-topband::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.pdx-info-topband::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -20px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.pdx-info-brand-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pdx-brand-badge {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pdx-cat-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.pdx-part-code {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    font-family: 'Inter', monospace;
    margin: 0 0 4px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.pdx-part-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Detay Kartı */
.pdx-detail-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.pdx-detail-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #f8f9fc;
    border-bottom: 1px solid #e8edf4;
    font-size: 11px;
    font-weight: 800;
    color: #6b7a8d;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pdx-detail-card-title svg {
    stroke: #9aa5b4;
}

.pdx-detail-rows {
    display: flex;
    flex-direction: column;
}

.pdx-detail-row {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #f4f6f9;
    transition: background 0.15s;
}

.pdx-detail-row:last-child {
    border-bottom: none;
}

.pdx-detail-row:hover {
    background: #fafbfd;
}

.pdx-detail-key {
    font-size: 11px;
    font-weight: 700;
    color: #9aa5b4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 140px;
    flex-shrink: 0;
}

.pdx-detail-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
}

.pdx-code-val {
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pdx-instock-val {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    font-weight: 700;
}

/* Parça Açıklaması */
.pdx-desc-block {
    background: #f8f9fc;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 4px;
}

.pdx-desc-block p {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Disclaimer */
.pdx-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 12px;
    color: #92400e;
    line-height: 1.55;
}

.pdx-disclaimer svg {
    stroke: #d97706;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Alternatif Kodlar */
.pdx-alt-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pdx-alt-code {
    background: #f0f4f8;
    border: 1px solid #dde3ec;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

/* Aksiyon Butonları */
.pdx-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pdx-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
    letter-spacing: 0.2px;
    text-align: center;
}

.pdx-btn-primary:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.pdx-btn-primary svg {
    fill: #fff;
    flex-shrink: 0;
}

.pdx-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid #d0d8e4;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s;
    text-align: center;
}

.pdx-btn-secondary:hover {
    border-color: var(--primary);
    background: #f4f6fa;
    transform: translateY(-1px);
}

.pdx-btn-secondary svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

/* Güven Rozetleri */
.pdx-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pdx-trust-item {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 10px;
    padding: 11px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: border-color 0.2s;
}

.pdx-trust-item:hover {
    border-color: #c0ccd8;
}

.pdx-trust-icon {
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdx-trust-icon svg {
    stroke: var(--primary);
    width: 16px;
    height: 16px;
}

.pdx-trust-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
}

.pdx-trust-sub {
    font-size: 10px;
    color: #9aa5b4;
    font-weight: 500;
}

/* ── İLGİLİ PARÇALAR ── */
.pdx-related-section {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 64px;
}

.pdx-related-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}

.pdx-related-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.pdx-related-title h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    margin: 0;
}

.pdx-related-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 16px;
    border: 1.5px solid #d0d8e4;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.pdx-related-all:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pdx-related-all svg {
    stroke: currentColor;
}

.pdx-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.pdx-rel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.pdx-rel-card:hover {
    border-color: #b8c8d8;
    box-shadow: 0 8px 28px rgba(26, 60, 94, 0.12);
    transform: translateY(-4px);
}

.pdx-rel-img-wrap {
    height: 140px;
    background: #dde3ec;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.pdx-rel-machinebg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(20%);
    pointer-events: none;
    z-index: 0;
}

.pdx-rel-wm {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.pdx-rel-wm img {
    height: 80px;
    width: auto;
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
    filter: grayscale(100%);
}

.pdx-rel-product-img {
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
}

.pdx-rel-card:hover .pdx-rel-product-img {
    transform: scale(1.07);
}

.pdx-rel-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 94, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 3;
}

.pdx-rel-hover-overlay svg {
    stroke: #fff;
}

.pdx-rel-card:hover .pdx-rel-hover-overlay {
    opacity: 1;
}

.pdx-rel-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.pdx-rel-brand {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.pdx-rel-code {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.2px;
}

.pdx-rel-action {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.pdx-rel-card:hover .pdx-rel-action {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .pdx-layout {
        grid-template-columns: 440px 1fr;
        gap: 28px;
    }

    .pdx-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .pdx-layout {
        grid-template-columns: 1fr;
    }

    .pdx-gallery {
        position: static;
    }

    .pdx-main-img-wrap {
        height: 380px;
    }

    .pdx-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pdx-container {
        padding: 0 12px;
    }

    .pdx-breadbar-inner {
        padding: 0 12px;
    }

    .pdx-breadbar {
        padding: 10px 0;
    }

    .pdx-bread {
        font-size: 11px;
        gap: 4px;
    }

    .pdx-wrap {
        padding: 16px 0 32px;
    }

    /* Görsel */
    .pdx-main-img-wrap {
        height: 240px;
        border-radius: 12px;
    }

    .pdx-img-logo img {
        width: 120px;
    }

    .pdx-img-corner-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* Alt şerit */
    .pdx-img-strip {
        padding: 10px 14px;
        gap: 0;
    }

    .pdx-strip-item {
        font-size: 11px;
        gap: 5px;
    }

    .pdx-strip-item svg {
        width: 14px;
        height: 14px;
    }

    .pdx-strip-sep {
        display: none;
    }

    /* Bilgi paneli */
    .pdx-info-topband {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .pdx-part-code {
        font-size: 20px;
    }

    .pdx-part-sub {
        font-size: 12px;
    }

    /* Detay tablosu */
    .pdx-detail-card {
        border-radius: 12px;
    }

    .pdx-detail-row {
        flex-direction: column;
        gap: 2px;
        padding: 10px 0;
    }

    .pdx-detail-key {
        font-size: 10px;
    }

    .pdx-detail-val {
        font-size: 13px;
    }

    /* Butonlar */
    .pdx-actions {
        flex-direction: column;
        gap: 10px;
    }

    .pdx-btn-primary,
    .pdx-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Güven rozetleri */
    .pdx-trust-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pdx-trust-title {
        font-size: 12px;
    }

    .pdx-trust-sub {
        font-size: 11px;
    }

    /* İlgili parçalar */
    .pdx-related-section {
        padding: 24px 0;
    }

    .pdx-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pdx-rel-code {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pdx-main-img-wrap {
        height: 200px;
    }

    .pdx-part-code {
        font-size: 18px;
    }

    .pdx-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pdx-trust-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, #0a1f35 0%, #071628 100%);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 36px;
    border-top: 3px solid var(--accent);
}

.sf-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
}

/* Logo kolonu */
.sf-col-brand {
    display: flex;
    flex-direction: column;
}

.sf-logo {
    display: inline-block;
    margin-bottom: 4px;
    margin-top: 0;
}

.sf-logo img {
    width: 220px;
    height: auto;
    filter: brightness(1.3) contrast(1.05);
}

.sf-desc {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 14px;
    margin-top: 6px;
    max-width: 100%;
}

.sf-social {
    display: flex;
    gap: 7px;
}

.sf-social-btn {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    text-decoration: none;
}

.sf-social-btn svg {
    width: 15px;
    height: 15px;
}

.sf-wa {
    background: #25d366;
    color: #fff;
}

.sf-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.sf-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.sf-ig:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.sf-li {
    background: #0077b5;
    color: #fff;
}

.sf-li:hover {
    background: #005885;
    transform: translateY(-2px);
}

/* Başlık */
.sf-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

/* Linkler */
.sf-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sf-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sf-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
}

.sf-links a:hover {
    color: #fff;
}

/* İletişim */
.sf-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sf-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.60);
}

.sf-contact li svg {
    width: 13px;
    height: 13px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.sf-contact a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s;
}

.sf-contact a:hover {
    color: #fff;
}

/* Ziyaretçi istatistikleri */
.sf-visitor-stats {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sf-visitor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.sf-visitor-lbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 600;
    white-space: nowrap;
}

.sf-visitor-val {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.60);
}

.sf-visitor-ip {
    font-family: 'Courier New', monospace;
    font-size: 9.5px;
    letter-spacing: 0.3px;
}

/* Yasal uyarı */
.sf-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    text-align: center;
}

.sf-legal-brands {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 4px;
    line-height: 1.5;
}

.sf-legal-notice {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto;
}

.sf-legal-notice strong {
    color: rgba(255, 255, 255, 0.30);
    font-weight: 700;
}

/* Alt bar */
.sf-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
}

.sf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    flex-wrap: nowrap;
}

.sf-bottom-inner>span:empty {
    flex: 1;
}

.sf-bottom-sep {
    color: rgba(255, 255, 255, 0.15);
}

.sf-kosan {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.sf-kosan:hover {
    color: rgba(255, 255, 255, 0.55);
}

.sf-kosan strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
}

/* Responsive */
@media (max-width: 1200px) {
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sf-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .sf-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sf-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .sf-contact li {
        justify-content: center;
    }

    .sf-logo img {
        width: 180px;
    }

    .sf-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .sf-bottom-inner>span:empty {
        display: none;
    }
}

/* İstatistikler — kompakt */
.sf-col-stats {}

.sf-stats {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sf-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 7px 12px;
    transition: background 0.25s;
}

.sf-stat-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.sf-stat-icon {
    width: 28px;
    height: 28px;
    background: rgba(200, 169, 110, 0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-stat-icon svg {
    stroke: var(--accent);
}

.sf-stat-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 8px;
}

.sf-stat-num {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sf-stat-ip-val {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}

.sf-stat-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.40);
    font-weight: 600;
}

/* Yasal uyarı */
.sf-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    text-align: center;
}

.sf-legal-brands {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.30);
    margin-bottom: 6px;
    line-height: 1.6;
}

.sf-legal-notice {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto;
}

.sf-legal-notice strong {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
}

/* Alt bar */
.sf-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
}

.sf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.30);
    flex-wrap: wrap;
    text-align: center;
}

.sf-bottom-sep {
    color: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sf-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .sf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .sf-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sf-col:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .sf-contact li {
        justify-content: center;
    }

    .sf-logo img {
        width: 180px;
    }

    .sf-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .sf-bottom-inner>span:empty {
        display: none;
    }
}

/* MOBİL PANEL — masaüstünde tamamen gizli */
.mbn-parts-panel,
.mobile-bottom-nav,
.mbn-drawer,
.mbn-drawer-overlay {
    display: none;
}

@media (max-width: 768px) {

    /* Sayfa altına boşluk bırak */
    body {
        padding-bottom: 64px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #0a1f35;
        border-top: 2px solid rgba(200, 169, 110, 0.4);
        height: 60px;
        align-items: stretch;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    }

    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.55);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        transition: color 0.2s, background 0.2s;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
        position: relative;
    }

    .mbn-item svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

    .mbn-item.mbn-wa svg {
        fill: currentColor;
        stroke: none;
    }

    .mbn-item:hover,
    .mbn-item.active {
        color: #c8a96e;
    }

    .mbn-item.mbn-wa {
        color: #25d366;
    }

    .mbn-item.mbn-wa:hover {
        color: #1da851;
    }

    /* Orta WhatsApp büyük */
    .mbn-item.mbn-wa-center {
        background: #25d366;
        color: #fff;
        border-radius: 0;
        flex: 1.2;
    }

    .mbn-item.mbn-wa-center:hover {
        background: #1da851;
        color: #fff;
    }

    .mbn-item.mbn-wa-center svg {
        width: 22px;
        height: 22px;
    }

    /* Separator */
    .mbn-sep {
        width: 1px;
        background: rgba(255, 255, 255, 0.08);
        align-self: stretch;
        flex-shrink: 0;
    }

    /* Yedek parça açılır panel */
    .mbn-parts-panel {
        display: none;
        position: fixed;
        bottom: 60px;
        left: 0;
        right: 0;
        z-index: 9998;
        background: #0a1f35;
        border-top: 1px solid rgba(200, 169, 110, 0.3);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
        animation: mbnSlideUp 0.25s ease;
    }

    .mbn-parts-panel.open {
        display: block;
    }

    @keyframes mbnSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mbn-parts-inner {
        padding: 12px 16px;
    }

    .mbn-parts-title {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #c8a96e;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mbn-parts-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 8px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.75);
        transition: background 0.2s, color 0.2s;
    }

    .mbn-parts-link svg {
        stroke: #c8a96e;
        flex-shrink: 0;
    }

    .mbn-parts-link:hover {
        background: rgba(255, 255, 255, 0.07);
        color: #fff;
    }

    .mbn-parts-link.mbn-sub {
        padding-left: 22px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.60);
    }

    .mbn-parts-link.mbn-sub:hover {
        color: #fff;
    }

    /* Grup toggle butonu */
    .mbn-group-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 8px;
        border: none;
        background: none;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        color: #c8a96e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 2px;
    }

    .mbn-group-toggle:first-of-type {
        margin-top: 6px;
    }

    .mbn-arrow {
        transition: transform 0.25s;
        stroke: #c8a96e;
    }

    .mbn-group-toggle.open .mbn-arrow {
        transform: rotate(180deg);
    }

    .mbn-group-items {
        display: none;
    }

    .mbn-group-items.open {
        display: block;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL OVERLAY MENÜ
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .mbn-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: linear-gradient(160deg, #071628 0%, #0a1f35 100%);
        overflow-y: auto;
        animation: overlayIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mbn-overlay.open {
        display: flex;
        flex-direction: column;
    }

    @keyframes overlayIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mbn-overlay-inner {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 0 0 80px;
    }

    /* Üst bar */
    .mbn-overlay-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mbn-overlay-logo {
        height: 36px;
        width: auto;
        filter: brightness(1.2);
    }

    .mbn-overlay-close {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: background 0.2s;
    }

    .mbn-overlay-close:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    /* Nav */
    .mbn-overlay-nav {
        flex: 1;
        padding: 12px 0;
    }

    .mbn-overlay-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.2s, background 0.2s;
    }

    .mbn-overlay-link svg {
        stroke: rgba(255, 255, 255, 0.3);
        transition: transform 0.2s, stroke 0.2s;
    }

    .mbn-overlay-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
    }

    .mbn-overlay-link:hover svg {
        stroke: #c8a96e;
        transform: translateX(4px);
    }

    /* Grup toggle */
    .mbn-overlay-group {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 18px;
        font-weight: 700;
        color: #c8a96e;
        cursor: pointer;
        text-align: left;
        transition: background 0.2s;
    }

    .mbn-overlay-group:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .mbn-overlay-group .mbn-arrow {
        stroke: #c8a96e;
        transition: transform 0.25s;
    }

    .mbn-overlay-group.open .mbn-arrow {
        transform: rotate(180deg);
    }

    /* Alt linkler */
    .mbn-overlay-sub {
        display: none;
        background: rgba(0, 0, 0, 0.2);
    }

    .mbn-overlay-sub.open {
        display: block;
    }

    .mbn-overlay-sublink {
        display: flex;
        align-items: center;
        padding: 13px 24px 13px 40px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.60);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: color 0.2s, background 0.2s;
    }

    .mbn-overlay-sublink::before {
        content: '—';
        margin-right: 10px;
        color: #c8a96e;
        font-size: 12px;
    }

    .mbn-overlay-sublink:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
    }

    /* Alt footer */
    .mbn-overlay-footer {
        padding: 20px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mbn-overlay-wa {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 12px;
        background: #25d366;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 800;
        transition: background 0.2s;
    }

    .mbn-overlay-wa:hover {
        background: #1da851;
    }

    .mbn-overlay-phone {
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.45);
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBİL DRAWER MENÜ
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .mbn-drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 31, 53, 0.45);
        z-index: 99998;
        backdrop-filter: blur(3px);
    }

    .mbn-drawer-overlay.open {
        display: block;
    }

    .mbn-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85vw;
        max-width: 300px;
        background: #ffffff;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -6px 0 28px rgba(10, 31, 53, 0.18);
        overflow-y: auto;
    }

    .mbn-drawer.open {
        transform: translateX(0);
    }

    .mbn-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 2px solid #1a3c5e;
        background: #f8f9fc;
        flex-shrink: 0;
    }

    .mbn-drawer-title {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #1a3c5e;
    }

    .mbn-drawer-close {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: #e8edf4;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a3c5e;
        transition: background 0.2s;
    }

    .mbn-drawer-close svg {
        stroke: #1a3c5e;
    }

    .mbn-drawer-close:hover {
        background: #1a3c5e;
        color: #fff;
    }

    .mbn-drawer-close:hover svg {
        stroke: #fff;
    }

    .mbn-drawer-nav {
        flex: 1;
        padding: 6px 0;
    }

    .mbn-drawer-link {
        display: block;
        padding: 13px 18px;
        font-size: 14.5px;
        font-weight: 700;
        color: #1a3c5e;
        text-decoration: none;
        border-bottom: 1px solid #eef1f7;
        transition: color 0.2s, background 0.2s, padding-left 0.2s;
    }

    .mbn-drawer-link:hover {
        color: #c8a96e;
        background: #f8f9fc;
        padding-left: 24px;
    }

    .mbn-drawer-group {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        background: none;
        border: none;
        border-bottom: 1px solid #eef1f7;
        font-size: 14.5px;
        font-weight: 700;
        color: #1a3c5e;
        cursor: pointer;
        transition: background 0.2s;
    }

    .mbn-drawer-group:hover {
        background: #f8f9fc;
    }

    .mbn-drawer-group .mbn-arrow {
        stroke: #1a3c5e;
        transition: transform 0.25s;
    }

    .mbn-drawer-group.open {
        color: #c8a96e;
    }

    .mbn-drawer-group.open .mbn-arrow {
        stroke: #c8a96e;
        transform: rotate(180deg);
    }

    .mbn-drawer-sub {
        display: none;
        background: #f4f6fb;
    }

    .mbn-drawer-sub.open {
        display: block;
    }

    .mbn-drawer-sublink {
        display: block;
        padding: 11px 18px 11px 32px;
        font-size: 13px;
        font-weight: 600;
        color: #4a6080;
        text-decoration: none;
        border-bottom: 1px solid #eef1f7;
        transition: color 0.2s, background 0.2s;
    }

    .mbn-drawer-sublink::before {
        content: '›';
        margin-right: 8px;
        color: #c8a96e;
    }

    .mbn-drawer-sublink:hover {
        color: #1a3c5e;
        background: #eef1f7;
    }

    .mbn-drawer-footer {
        padding: 14px 16px;
        border-top: 1px solid #e1e8f0;
        background: #f8f9fc;
        flex-shrink: 0;
    }

    .mbn-drawer-wa {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border-radius: 10px;
        background: #25d366;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
        transition: background 0.2s;
    }

    .mbn-drawer-wa:hover {
        background: #1da851;
    }
}

/* ═══════════════════════════════════════════════════════════
   FDS — FULL SCREEN FADE SLIDER
═══════════════════════════════════════════════════════════ */
.fds-slider {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    background: #071628;
}

.fds-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fds-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fds-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.fds-slide.is-active .fds-bg {
    transform: scale(1);
}

.fds-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(5, 15, 35, 0.88) 0%,
            rgba(5, 15, 35, 0.60) 45%,
            rgba(5, 15, 35, 0.20) 100%);
}

/* Sol dikey aksan çizgisi */
.fds-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.fds-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
}

.fds-inner {
    padding: 0 72px;
    max-width: 680px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
        opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.fds-slide.is-active .fds-inner {
    transform: translateY(0);
    opacity: 1;
}

.fds-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding-left: 2px;
}

.fds-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.fds-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 480px;
}

.fds-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fds-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.2px;
}

.fds-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}

.fds-btn-primary:hover {
    background: #b8954f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 169, 110, 0.45);
}

.fds-btn-wa {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.fds-btn-wa:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
}

/* Ok butonları */
.fds-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.25s;
}

.fds-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.fds-prev {
    left: 28px;
}

.fds-next {
    right: 28px;
}

/* Dots */
.fds-dots {
    position: absolute;
    bottom: 28px;
    left: 72px;
    z-index: 20;
    display: flex;
    gap: 8px;
    align-items: center;
}

.fds-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.30);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.fds-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* Progress bar */
.fds-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    z-index: 20;
    transition: width linear;
}

/* Mobil */
@media (max-width: 768px) {
    .fds-slider {
        height: 420px;
    }

    .fds-inner {
        padding: 0 24px;
    }

    .fds-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .fds-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .fds-btn {
        padding: 11px 18px;
        font-size: 13px;
    }

    .fds-arrow {
        width: 38px;
        height: 38px;
    }

    .fds-prev {
        left: 12px;
    }

    .fds-next {
        right: 12px;
    }

    .fds-dots {
        left: 24px;
        bottom: 18px;
    }

    .fds-accent-line {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .fds-slider {
        height: 360px;
    }

    .fds-title {
        font-size: 24px;
    }

    .fds-desc {
        display: none;
    }

    .fds-arrow {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER — PREMIUM
═══════════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Navigation Dots - Üstte */
.hero-nav {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 0 16px var(--accent);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

/* Action Buttons - Altta Orta */
.hero-actions {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 16px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.hero-btn-wa {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
}

.hero-btn-wa:hover {
    background: linear-gradient(135deg, #1da851, #128c3d);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.hero-btn-parts {
    background: linear-gradient(135deg, var(--accent), #b8954f);
    color: #fff;
}

.hero-btn-parts:hover {
    background: linear-gradient(135deg, #b8954f, #9a7a3f);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.5);
}

/* Mobil */
@media (max-width: 1024px) {
    .hero-slider {
        height: 420px;
    }

    .hero-actions {
        bottom: 50px;
    }

    .hero-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 380px;
    }

    .hero-nav {
        top: 30px;
        padding: 10px 20px;
        gap: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 28px;
    }

    .hero-actions {
        bottom: 40px;
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 26px;
        font-size: 14px;
        gap: 8px;
    }

    .hero-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 320px;
    }

    .hero-nav {
        top: 24px;
        padding: 8px 16px;
        gap: 8px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }

    .hero-dot.active {
        width: 24px;
    }

    .hero-actions {
        flex-direction: column;
        bottom: 30px;
        gap: 10px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Gizli SEO H1 */
.sps-seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ===== SPARE CATS HOME — MASAÜSTÜ ===== */
.spare-cats-home {
    padding: 72px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.spare-cats-header {
    text-align: center;
    margin-bottom: 48px;
}

.spare-cats-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.spare-cats-sub {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.spare-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.scat-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.scat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, 0.15);
    border-color: var(--primary);
}

.scat-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scat-img img {
    max-width: 80%;
    max-height: 160px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    opacity: 1;
    transition: transform 0.4s ease;
    pointer-events: none;
    user-select: none;
}

/* Logo watermark — soluk kalsın */
.scat-img .cat-card-wm img {
    opacity: 0.12 !important;
    mix-blend-mode: normal !important;
    height: 160px;
    width: auto;
    max-width: unset;
    max-height: unset;
}

/* Sadece ürün görseli — tam parlak */
.scat-img>img {
    opacity: 1 !important;
}

.scat-card:hover .scat-img img {
    transform: scale(1.06);
}

.scat-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.scat-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scat-brand-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}

.scat-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.scat-models {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.scat-models span {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 4px;
}

.scat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.scat-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.scat-arrow {
    color: var(--primary);
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.scat-card:hover .scat-arrow {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .spare-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .spare-cats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .scat-img {
        height: 140px;
    }

    .spare-cats-title {
        font-size: 22px;
    }
}

/* ===== CTW — İLETİŞİM WİDGET SOL ORTA ===== */
#ctw {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
}

#ctw-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #0f3460;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 14px 8px;
    border-radius: 0 10px 10px 0;
    min-height: 80px;
    width: 36px;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, width 0.2s;
    position: relative;
}

#ctw-pill:hover {
    background: #1a4a7a;
}

#ctw-pill svg {
    flex-shrink: 0;
}

.ctw-lbl {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

#ctw-badge {
    position: absolute;
    top: 8px;
    right: -6px;
    background: #e53e3e;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

#ctw-panel {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px) scale(0.92);
    transform-origin: left center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    width: 320px;
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

#ctw.ctw-open #ctw-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0) scale(1);
}

.ctw-hd {
    background: #0f3460;
    padding: 14px 16px;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ctw-hd-l {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctw-av {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

.ctw-nm {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.ctw-st {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.ctw-st-dot {
    width: 7px;
    height: 7px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.ctw-cls {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ctw-cls:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ctw-wlc {
    padding: 14px 16px 8px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

.ctw-sec {
    padding: 4px 16px 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
}

.ctw-opts {
    padding: 0 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctw-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s;
}

.ctw-opt:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.ctw-opt svg {
    stroke: #6b7280;
    flex-shrink: 0;
}

.ctw-opt:hover svg {
    stroke: #3b82f6;
}

.ctw-btns {
    padding: 8px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f3f4f6;
}

.ctw-cbtn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.ctw-cbtn-wa {
    background: #25d366;
    color: #fff;
}

.ctw-cbtn-wa:hover {
    background: #1da851;
}

.ctw-cbtn-tel {
    background: #0f3460;
    color: #fff;
}

.ctw-cbtn-tel:hover {
    background: #1a4a7a;
}

.ctw-cbtn-mail {
    background: #f3f4f6;
    color: #374151;
}

.ctw-cbtn-mail:hover {
    background: #e5e7eb;
}

.ctw-cbtn-lbl {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.8;
}

.ctw-cbtn-val {
    font-size: 13px;
    font-weight: 700;
}

/* Mobil */
@media (max-width: 768px) {
    #ctw {
        top: auto !important;
        bottom: 80px !important;
        transform: none !important;
    }

    #ctw-pill {
        min-height: 70px;
        width: 32px;
        border-radius: 0 8px 8px 0;
    }

    #ctw-panel {
        left: 32px;
        top: auto;
        bottom: 0;
        transform: translateX(-10px) scale(0.92) !important;
        transform-origin: left bottom;
        width: calc(100vw - 48px);
        max-width: 300px;
        max-height: 75vh;
    }

    #ctw.ctw-open #ctw-panel {
        transform: translateX(0) scale(1) !important;
    }
}

/* ===== BLOG PAGE ===== */
.blog-page {
    background: var(--bg);
    min-height: 60vh;
}

.blg-breadbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.blg-bread {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blg-bread a {
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}

.blg-bread a:hover {
    color: var(--primary);
}

.blg-bread span {
    color: var(--text);
    font-weight: 600;
}

.blg-hero {
    background: linear-gradient(135deg, #0a1f35 0%, #0f2744 60%, #1a3c5e 100%);
    padding: 56px 0 48px;
    text-align: center;
}

.blg-hero .section-label {
    color: var(--accent);
}

.blg-hero-title {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    margin: 12px 0 14px;
    letter-spacing: -.5px;
    line-height: 1.15;
}

.blg-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.blg-search {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    overflow: hidden;
}

.blg-search-input {
    flex: 1;
    background: none;
    border: none;
    padding: 13px 18px;
    font-size: 14px;
    color: #fff;
    outline: none;
}

.blg-search-input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.blg-search-btn {
    background: var(--accent);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    color: #fff;
    transition: background .2s;
}

.blg-search-btn:hover {
    background: #b8954f;
}

.blg-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    padding: 48px 0 72px;
    align-items: start;
}

.blg-main {
    min-width: 0;
}

.blg-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(26, 60, 94, .08);
    margin-bottom: 32px;
    text-decoration: none;
    transition: all .3s;
}

.blg-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 60, 94, .14);
}

.blg-feat-img {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1f35, #1a3c5e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blg-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.blg-featured:hover .blg-feat-img img {
    transform: scale(1.04);
}

.blg-feat-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blg-feat-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-light);
}

.blg-cat {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 169, 110, .10);
    border: 1px solid rgba(200, 169, 110, .25);
    padding: 4px 12px;
    border-radius: 4px;
}

.blg-date {
    font-weight: 600;
}

.blg-feat-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: -.3px;
}

.blg-feat-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0 0 20px;
}

.blg-feat-cta {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: .3px;
}

.blg-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    flex-wrap: wrap;
}

.blg-filter-bar strong {
    color: var(--primary);
}

.blg-clear {
    color: #e53e3e;
    font-weight: 700;
    text-decoration: none;
    margin-left: auto;
}

.blg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.blg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 60, 94, .12);
    border-color: var(--primary);
}

.blg-card-img {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1f35, #1a3c5e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blg-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.blg-card:hover .blg-card-img img {
    transform: scale(1.05);
}

.blg-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blg-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blg-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin: 0 0 10px;
}

.blg-card-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}

.blg-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.blg-card-tags span {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    background: #eef1f8;
    padding: 2px 8px;
    border-radius: 3px;
}

.blg-card-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: .3px;
}

.blg-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.blg-page-btn {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all .2s;
}

.blg-page-btn:hover {
    background: var(--bg);
    border-color: var(--primary);
    color: var(--primary);
}

.blg-page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.blg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.blg-sb-cta {
    background: linear-gradient(135deg, #0a1f35 0%, #0f2744 100%);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
}

.blg-sb-cta h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.blg-sb-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, .60);
    margin: 0 0 14px;
    line-height: 1.5;
}

.blg-sb-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 7px;
    transition: background .2s;
}

.blg-sb-wa:hover {
    background: #1da851;
}

.blg-sb-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.blg-sb-form:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.blg-sb-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
}

.blg-sb-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 12px;
}

.blg-sb-cats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blg-sb-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all .18s;
}

.blg-sb-cats a:hover {
    background: #f4f6fa;
    color: var(--primary);
}

.blg-sb-cats a.active {
    background: var(--primary);
    color: #fff;
}

.blg-sb-cats span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    background: var(--bg);
    padding: 2px 7px;
    border-radius: 4px;
}

.blg-sb-cats a.active span {
    background: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .8);
}

.blg-sb-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blg-sb-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all .18s;
}

.blg-sb-list a:hover {
    background: #f4f6fa;
    color: var(--primary);
}

.blg-recent {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blg-recent a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #f0f3f8;
    transition: color .2s;
}

.blg-recent a:hover {
    color: var(--primary);
}

.blg-recent-cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

@media (max-width: 1100px) {
    .blg-layout {
        grid-template-columns: 1fr 260px;
    }

    .blg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .blg-layout {
        grid-template-columns: 1fr;
    }

    .blg-sidebar {
        position: static;
    }

    .blg-featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .blg-hero-title {
        font-size: 28px;
    }

    .blg-grid {
        grid-template-columns: 1fr;
    }

    .blg-feat-body {
        padding: 24px;
    }
}

/* ===== REVIEW / COMMENT SYSTEM ===== */
.pdx-reviews {
    margin-top: 40px;
    border-top: 2px solid #e8edf4;
    padding-top: 32px;
}

.pdx-reviews-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdx-reviews-title span {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.pdx-review-form {
    background: #f8f9fc;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}

.pdx-review-form h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
}

.pdx-review-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
}

.pdx-star {
    font-size: 24px;
    cursor: pointer;
    color: #d1d5db;
    transition: color 0.15s;
    line-height: 1;
}

.pdx-star.active,
.pdx-star:hover {
    color: #f59e0b;
}

.pdx-review-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.pdx-review-input {
    padding: 10px 14px;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.pdx-review-input:focus {
    border-color: var(--primary);
}

.pdx-review-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 90px;
    transition: border-color 0.2s;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.pdx-review-textarea:focus {
    border-color: var(--primary);
}

.pdx-review-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.pdx-review-submit:hover {
    background: #0f2744;
}

.pdx-review-msg {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
    display: none;
}

.pdx-review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pdx-review-item {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 12px;
    padding: 18px 20px;
}

.pdx-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.pdx-review-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.pdx-review-date {
    font-size: 11px;
    color: var(--text-light);
}

.pdx-review-rating {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.pdx-review-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.pdx-no-reviews {
    text-align: center;
    padding: 32px;
    color: var(--text-light);
    font-size: 14px;
    background: #f8f9fc;
    border-radius: 10px;
    border: 1px dashed #e0e6f0;
}

/* ===== PDX TOPBAND ACTIONS ===== */
.pdx-topband-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.pdx-topband-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.pdx-topband-wa:hover {
    background: #16a34a;
}

.pdx-topband-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.pdx-topband-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ===== MOBİL KAYMA + MENU FIX ===== */
html {
    overflow-x: hidden;
}

/* Mobil menü her sayfada görünsün */
@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        width: 100%;
    }

    .top-header {
        width: 100%;
    }

    .main-nav {
        display: block !important;
    }

    /* Sayfa içeriği header altına kaymasın */
    .pdx-page,
    .cat-wrap,
    .blog-page,
    .blp-page,
    .abt-intro,
    .fd-contact-clean,
    .srv-page {
        overflow-x: hidden;
    }
}

/* ===== MOBİL TAŞMA GLOBAL FIX ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

img,
video,
iframe,
table {
    max-width: 100%;
}

/* Tüm container'lar mobilde taşmasın */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* PDX detay sayfası mobil */
    .pdx-layout {
        grid-template-columns: 1fr !important;
    }

    .pdx-gallery {
        position: static !important;
    }

    .pdx-main-img-wrap {
        height: 280px;
    }

    .pdx-info-topband {
        border-radius: 10px;
    }

    .pdx-detail-rows {
        font-size: 13px;
    }

    .pdx-trust-row {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .pdx-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* Cat wrap mobil */
    .cat-wrap {
        grid-template-columns: 1fr !important;
    }

    /* Spare cats grid */
    .spare-cats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }

    /* Blog layout */
    .blg-layout {
        grid-template-columns: 1fr !important;
    }

    .blg-grid {
        grid-template-columns: 1fr !important;
    }

    /* About layout */
    .about-layout {
        grid-template-columns: 1fr !important;
    }

    /* Services */
    .sh-wrapper {
        grid-template-columns: 1fr !important;
    }

    /* Certs */
    .certs-wrapper {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .sf-grid {
        grid-template-columns: 1fr !important;
    }

    /* Review form */
    .pdx-review-inputs {
        grid-template-columns: 1fr !important;
    }

    /* Topband actions */
    .pdx-topband-actions {
        flex-direction: column;
    }

    .pdx-topband-wa,
    .pdx-topband-contact {
        width: 100%;
        justify-content: center;
    }

    /* Nav overflow */
    .nav-menu {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .pdx-related-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .spare-cats-grid {
        grid-template-columns: 1fr !important;
    }

    .scat-img {
        height: 160px;
    }

    .pdx-main-img-wrap {
        height: 220px;
    }

    .blg-feat-img {
        height: 180px;
    }
}

/* ===== GOOGLE TRANSLATE WIDGET ===== */
#google_translate_element {
    display: inline-flex;
    align-items: center;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #2a3a4a !important;
    background: #f4f6fa !important;
    border: 1.5px solid #e0e6f0 !important;
    border-radius: 7px !important;
    padding: 5px 10px !important;
    cursor: pointer !important;
    outline: none !important;
    transition: border-color 0.2s !important;
    max-width: 130px !important;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: #1a3c5e !important;
    background: #fff !important;
}

/* Google Translate banner'ı gizle */
.goog-te-banner-frame,
.skiptranslate>iframe {
    display: none !important;
    height: 0 !important;
}

body {
    top: 0 !important;
}

/* Mobilde de göster */
@media (max-width: 768px) {
    #google_translate_element {
        display: inline-flex !important;
    }

    .goog-te-gadget .goog-te-combo {
        font-size: 11px !important;
        padding: 4px 8px !important;
        max-width: 100px !important;
    }
}

/* ===== CUSTOM LANGUAGE SELECTOR ===== */
.custom-lang-wrap {
    position: relative;
}

.custom-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f4f6fa;
    border: 1.5px solid #e0e6f0;
    border-radius: 7px;
    padding: 6px 11px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: #2a3a4a;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}

.custom-lang-btn:hover {
    border-color: #1a3c5e;
    background: #fff;
}

.custom-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 9999;
    min-width: 200px;
}

.custom-lang-wrap.open .custom-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
}

.custom-lang-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 7px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
    white-space: nowrap;
}

.custom-lang-item:hover {
    background: #f4f6fa;
    color: #1a3c5e;
}

.custom-lang-item.active {
    background: #1a3c5e;
    color: #fff;
}

@media (max-width: 768px) {
    .custom-lang-dropdown {
        right: auto;
        left: 0;
        min-width: 180px;
    }

    .custom-lang-grid {
        grid-template-columns: 1fr 1fr;
    }
}