@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ef3825;
    --secondary-color: #1d2d5b;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 170px;
    /* Header ve Nav boyutu kadar boşluk */
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

.font-weight-bold {
    font-weight: 600 !important;
}

/* Header & Navigation */
.top-bar {
    background-color: #f8fafc !important;
    /* Çok açık şık bir gri */
    color: var(--text-dark);
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.top-bar span,
.top-bar a,
.top-bar div {
    color: var(--text-dark) !important;
}

.fixed-top-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.fixed-top-wrapper.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-header {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

/* Logo dikey hizalama düzeltmesi */
.fixed-top-wrapper.scrolled .main-header {
    padding: 8px 0;
}

.fixed-top-wrapper.scrolled h1.sn-style-c9e251 {
    font-size: 1.15rem !important;
    line-height: normal !important;
    margin: 0 !important;
}

.fixed-top-wrapper.scrolled .main-header .row {
    align-items: center !important;
    display: flex !important;
}

/* Kategori dropdown border-radius eşitleme */
.dropdown-menu {
    border-radius: 12px !important;
}

/* Fixed modda dropdown menülerin trigger'a çok uzak kalmamasını sağla */
.fixed-top-wrapper.scrolled .dropdown-menu {
    margin-top: -2px !important;
}

/* Navigasyon bridge - Kategoriler için */
.fixed-top-wrapper.scrolled .dropdown-hover:hover>.dropdown-menu::before {
    top: -30px;
    height: 35px;
}


/* Arama çubuğu paketi */
.fixed-top-wrapper.scrolled .sn-style-abbb4b {
    border-radius: 50px !important;
    /* Fixed modda kapsül yapısını koru */
    height: 38px !important;
    display: flex;
    align-items: center;
}

/* Arama inputu ve butonlar */
.fixed-top-wrapper.scrolled #searchInputDesktop {
    padding: 0 15px !important;
    font-size: 0.85rem;
    height: 100% !important;
}

.fixed-top-wrapper.scrolled .sn-style-aaf071 {
    padding: 0 15px !important;
    font-size: 0.78rem;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.fixed-top-wrapper.scrolled .sn-style-5485f5 {
    height: 30px !important;
    width: 30px !important;
    margin: 4px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    /* Butonu tam yuvarlak yapıp içine hapset */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sağdaki yuvarlak ikonlar (Bildirim, Hesap, Sepet) */
.fixed-top-wrapper.scrolled .sn-style-0ded1e,
.fixed-top-wrapper.scrolled .sn-style-40bf7f,
.fixed-top-wrapper.scrolled .sn-style-03558b {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem;
}

.fixed-top-wrapper.scrolled .sn-style-7a50a2 {
    top: 6px;
    right: 7px;
    width: 6px;
    height: 6px;
}

.fixed-top-wrapper.scrolled .sn-style-b4a4c0,
.fixed-top-wrapper.scrolled .sn-style-674d5a {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0 !important;
}

nav.sn-style-154932 {
    transition: all 0.3s ease;
    background: var(--white);
    margin-bottom: 0;
}

/* Nav (Kategoriler) bölümü ufalmıyor, sabit kalıyor */
.fixed-top-wrapper.scrolled nav.sn-style-154932 {
    padding: 2px 0 !important;
}

.fixed-top-wrapper.scrolled .nav-link {
    font-size: 0.88rem;
    /* Nav yazıları neredeyse aynı kalıyor */
}

/* Ensure dropdowns stay above fixed header elements */
.dropdown-menu {
    z-index: 1060 !important;
}

/* Invisible Hover Bridge - Menüye geçerken kapanmasını engeller */
.dropdown:hover>.dropdown-menu::before,
.dropdown-hover:hover>.dropdown-menu::before,
.cart-dropdown-wrapper:hover #miniCart::before,
.dropdown:hover>.sn-style-ca3f5f::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    background: transparent;
    z-index: -1;
}

/* Scrolled modda bridge'i daha agresif yapalım */
.fixed-top-wrapper.scrolled .dropdown:hover>.dropdown-menu::before,
.fixed-top-wrapper.scrolled .cart-dropdown-wrapper:hover #miniCart::before {
    top: -25px;
    height: 30px;
}


.search-container .form-control {
    border-radius: 8px;
    border: 2px solid #edf2f7;
    padding: 12px 20px;
    height: auto;
    transition: var(--transition);
}

.search-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border-radius: 0 8px 8px 0;
    margin-left: -50px;
    padding: 0 25px;
    border: none;
}

.nav-link-custom {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 15px;
    transition: var(--transition);
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

/* Banners */
.banner-section {
    max-height: 350px;
    overflow: hidden;
}

.banner-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 350px;
}

.side-banner-card {
    height: 170px;
}

.banner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banner-card:hover img {
    transform: scale(1.03);
}

.banner-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.85);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* Technical Product Card Redesign */
.product-card {
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: 4px;
    /* More industrial sharp corners */
    padding: 15px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: #ddd;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    z-index: 2;
}

.product-img-container {
    background-color: #f8fafc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    z-index: 1;
}

.badge-original {
    background: #10b981;
    color: white;
}

.badge-compatible {
    background: #3b82f6;
    color: white;
}

.product-sku {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    margin-bottom: 4px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-info-row {
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.compatibility-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 4px;
    margin-top: 4px;
}

.product-price-section {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-action-btn {
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.product-card:hover .product-action-btn {
    opacity: 1;
}

.badge-brand {
    background-color: var(--primary-color);
}

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: #be0510;
    border-color: #be0510;
}

/* Footer */
footer {
    background-color: var(--white);
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 30px;
}

.footer-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-link {
    color: #64748b;
    text-decoration: none !important;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Hover Dropdown Menu for Desktop */
@media (min-width: 992px) {

    .dropdown-hover:hover>.dropdown-menu,
    .dropdown:hover>.dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0;
        animation: dropFadeIn 0.2s ease-out;
    }

    /* Invisible bridge to prevent flickering */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
    }
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extracted Inline Styles */
.sn-style-e7992d {
    font-size: 0.85rem;
}

.sn-style-0c6f22 {
    color: var(--primary-color);
    font-weight: bold;
}

.sn-style-937119 {
    height: 400px;
    background-color: #f8fafc;
}

.sn-style-09e815 {
    top: 15px;
    left: 15px;
    font-size: 0.85rem;
    padding: 5px 10px;
}

.sn-style-739a97 {
    max-height: 100%;
    object-fit: contain;
}

.sn-style-2dda08 {
    height: 80px;
    background-color: #f8fafc;
}

.sn-style-48e076 {
    object-fit: contain;
}

.sn-style-b4d1ad {
    object-fit: contain;
    filter: grayscale(100%);
}

.sn-style-5c6091 {
    letter-spacing: -0.5px;
}

.sn-style-e7ec96 {
    font-size: 1.1rem;
}

.sn-style-b64b60 {
    color: var(--primary-color);
    font-size: 2rem;
}

.sn-style-af89d6 {
    font-size: 0.75rem;
}

.sn-style-b15add {
    width: 120px;
}

.sn-style-424cce {
    font-weight: bold;
}

.sn-style-e21687 {
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
}

.sn-style-28e6a7 {
    color: #94a3b8;
}

.sn-style-02be1b {
    border-bottom: 3px solid var(--primary-color);
}

.sn-style-d10dd9 {
    line-height: 1.7;
}

.sn-style-d5266e {
    line-height: 1.8;
}

.sn-style-5afc73 {
    font-size: 3rem;
}

.sn-style-b28cb1 {
    font-size: 1.2rem;
}

.sn-style-b7d1f3 {
    border-radius: 6px;
    color: var(--primary-color);
}

.sn-style-f5283d {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.sn-style-9951a3 {
    color: var(--primary-color);
}

.sn-style-97cd7c {
    color: var(--secondary-color);
}

.sn-style-545d59 {
    color: var(--primary-color);
    font-weight: 500;
}

.sn-style-bb8af4 {
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 1.05rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sn-style-0957f9 {
    border-top: 1px solid #e2e8f0;
}

.sn-style-e5d534 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.sn-style-dcab71 {
    font-size: 0.7rem;
}

.sn-style-95f6cb {
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
}

.sn-style-566745 {
    border-radius: 8px;
    transition: all 0.2s;
}

.sn-style-9ad971 {
    top: 20px;
}

.sn-style-fc7ba7 {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    font-size: 2rem;
}

.sn-style-8ca33a {
    font-weight: 500;
    font-size: 0.95rem;
}

.sn-style-d90b3b {
    background-color: #f8fafc;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.sn-style-6f776e {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.sn-style-33dd45 {
    font-size: 0.9rem;
}

.sn-style-e3c98a {
    font-size: 1.05rem;
}

.sn-style-a55fb8 {
    animation: dropFadeIn 0.3s ease-out;
}

.sn-style-e9c493 {
    background: white;
}

.sn-style-2a1170 {
    gap: 10px;
}

.sn-style-2128f6 {
    opacity: 1;
}

.sn-style-e6df54 {
    gap: 10px;
}

.sn-style-0f8da9 {
    background-color: #f8fafc;
}

.sn-style-db1172 {
    font-weight: 600;
}

.sn-style-c462d0 {
    color: #ff5f00;
}

.sn-style-b96279 {
    border-radius: 4px;
}

.sn-style-f3ffc1 {
    color: #1a1f71;
}

.sn-style-fee2ac {
    font-size: 0.70rem;
}

.sn-style-abf627 {
    overflow: hidden;
}

.sn-style-4c7103 {
    top: -15px;
    right: -15px;
    opacity: 0.05;
    font-size: 6rem;
    color: var(--secondary-color);
}

.sn-style-1c323c {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.sn-style-9d74b4 {
    letter-spacing: -1px;
}

.sn-style-928c36 {
    font-size: 1.2rem;
    font-weight: 500;
}

.sn-style-d3b507 {
    top: -15px;
    right: -15px;
    opacity: 0.05;
    font-size: 6rem;
    color: var(--primary-color);
}

.sn-style-bcd400 {
    overflow: hidden;
    background: linear-gradient(135deg, white 0%, #f0fdf4 100%);
    border-color: #bbf7d0 !important;
}

.sn-style-c53f6d {
    top: -15px;
    right: -15px;
    opacity: 0.1;
    font-size: 6rem;
    color: #16a34a;
}

.sn-style-602659 {
    border-radius: 6px;
}

.sn-style-112421 {
    background-color: #f8fafc;
    border-color: #e2e8f0 !important;
}

.sn-style-9a6a53 {
    width: 40px;
    height: 40px;
}

.sn-style-1b1f0c {
    background-color: var(--primary-color);
}

.sn-style-bf2bcc {
    opacity: 0.7;
}

.sn-style-69f1c1 {
    max-width: 300px;
    margin: 0 auto;
}

.sn-style-41ff9d {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border: 1px solid #334155;
    overflow: hidden;
    height: 190px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sn-style-fb4f39 {
    top: -20px;
    right: -20px;
    font-size: 15rem;
    opacity: 0.05;
}

.sn-style-46a9c9 {
    width: 50px;
    height: 35px;
    background: #e2e8f0;
    border-radius: 5px;
    opacity: 0.8;
}

.sn-style-17dc49 {
    font-family: monospace;
    letter-spacing: 2px;
}

.sn-style-982ac0 {
    font-family: monospace;
    letter-spacing: 2px;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px black;
}

.sn-style-3318c5 {
    font-size: 0.70rem;
    color: #94a3b8;
    font-weight: 500;
    font-family: monospace;
    letter-spacing: 1px;
}

.sn-style-d48141 {
    font-size: 0.5rem;
    color: #64748b;
}

.sn-style-dd3440 {
    background: var(--primary-color);
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.sn-style-ee2fa1 {
    gap: 15px;
    opacity: 0.8;
}

.sn-style-019050 {
    height: 18px;
    object-fit: contain;
}

.sn-style-8172fa {
    line-height: 1.5;
}

.sn-style-a30d50 {
    top: 130px;
    z-index: 1000;
}

.sn-style-8bfa6e {
    border-radius: 6px;
    font-weight: 500;
}

.sn-style-cb968a {
    border-radius: 8px;
}

.sn-style-648ec5 {
    height: 180px;
}

.sn-style-da7ef0 {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.sn-style-5b4f7f {
    background: var(--primary-color);
    border-radius: 6px;
    width: 36px;
    height: 36px;
}

.sn-style-48aaa2 {
    background: #0ea5e9;
}

.sn-style-a76cec {
    border-radius: 6px 0 0 6px;
    font-size: 0.85rem;
}

.sn-style-ed0bf1 {
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
}

.sn-style-b0beed {
    background: linear-gradient(90deg, #111827, #1f2937);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.sn-style-55ea8f {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 80px;
}

.sn-style-d421ce {
    color: #e30613;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1.2;
}

.sn-style-488ab5 {
    letter-spacing: 0.5px;
}

.sn-style-5d0b54 {
    color: rgba(255, 255, 255, 0.8);
}

.sn-style-c610b8 {
    color: inherit;
}

.sn-style-354f6c {
    z-index: 10;
}

.sn-style-674d5a {
    font-size: 0.5rem;
    letter-spacing: 2px;
    margin-top: -2px;
}

.sn-style-de455c {
    width: 38px;
    height: 38px;
    background: #f8fafc;
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
    font-size: 1rem;
}

.sn-style-a4ced8 {
    top: -4px;
    right: -4px;
    background: var(--primary-color);
    width: 18px;
    height: 18px;
    font-size: 0.6rem;
    border: 2px solid white;
}

.sn-style-c9e251 {
    font-size: 2.0rem;
    letter-spacing: -1px;
    line-height: 1;
}

.sn-style-b4a4c0 {
    font-size: 0.60rem;
    letter-spacing: 1.5px;
    margin-top: 0px;
}

.sn-style-abbb4b {
    background: #ffffff;
    border-radius: 50px;
    overflow: visible;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.sn-style-abbb4b .input-group-prepend {
    align-items: stretch;
}

.sn-style-abbb4b .input-group-prepend .dropdown {
    display: flex;
    align-items: stretch;
}

.sn-style-aaf071 {
    border-right: 1px solid #e2e8f0 !important;
    border-radius: 50px 0 0 50px;
    font-size: 0.85rem;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sn-style-aaf071 .kat-btn-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.sn-style-ffad31 {
    border-radius: 12px;
    font-size: 0.9rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    z-index: 1070;
}

.sn-style-c43591 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1061;
    max-height: 360px;
    overflow-y: auto;
}

.sn-style-5485f5 {
    background: var(--primary-color);
    border-radius: 50px;
    margin: 4px;
    height: 40px;
    font-size: 0.9rem;
}

.sn-style-0ded1e {
    width: 42px;
    height: 42px;
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.sn-style-7a50a2 {
    top: 8px;
    right: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 2px white;
}

.sn-style-9873d0 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.sn-style-ca3f5f {
    width: 320px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1050;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.sn-style-20f71b {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.sn-style-a232ba {
    max-height: 350px;
    overflow-y: auto;
}

.sn-style-ed03e7 {
    border-left: 3px solid var(--primary-color);
}

.sn-style-fb2a71 {
    font-size: 0.8rem;
}

.sn-style-cbba43 {
    font-size: 0.80rem;
    color: var(--primary-color);
}

.sn-style-40bf7f {
    width: 42px;
    height: 42px;
    background: #f8fafc;
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
}

.sn-style-0ca503 {
    white-space: nowrap;
}

.sn-style-03558b {
    width: 42px;
    height: 42px;
    background: #f8fafc;
    color: var(--secondary-color);
    border: 1px solid #e2e8f0;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.sn-style-fbf140 {
    top: -6px;
    right: -6px;
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    border: 2px solid white;
}

.sn-style-0fe24e {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    top: 100%;
    right: 0;
    width: 320px;
    z-index: 1000;
    padding: 15px;
    margin-top: 10px;
    cursor: default;
}

.cart-dropdown-wrapper:hover #miniCart,
.dropdown:hover .sn-style-ca3f5f {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sn-style-f77ecc {
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
}

.sn-style-c1e948 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 2px;
}

.sn-style-9cf1cc {
    font-size: 0.8rem;
    line-height: 1.2;
}

.sn-style-fad841 {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.85rem;
}

.sn-style-c02912 {
    background: var(--primary-color);
    font-size: 0.8rem;
}

.sn-style-3cce67 {
    bottom: 0;
    left: 0;
    z-index: 1050;
    padding-bottom: env(safe-area-inset-bottom);
}

.sn-style-f59fae {
    font-size: 0.65rem;
    font-weight: 600;
}

.sn-style-2cbf93 {
    top: -5px;
    right: -10px;
    background: var(--primary-color);
    font-size: 0.55rem;
    padding: 2px 5px;
}

.sn-style-154932 {
    z-index: 5;
}

.sn-style-a33a59 {
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px -4px var(--secondary-color);
}

.sn-style-6c5603 {
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.sn-style-e00d92 {
    border-radius: 12px;
    margin-top: 0.5rem !important;
}

.sn-style-8802c1 {
    border-radius: 8px;
    color: var(--primary-color);
    background: #fff1f2;
}

.sn-style-3cb45b {
    background-color: #f8fafc;
    color: #475569;
    font-size: 0.82rem;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.sn-style-49a327 {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.sn-style-9301d5 {
    color: var(--primary-color) !important;
}

.sn-style-e72926 {
    font-size: 0.88rem;
}

.sn-style-04e702 {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.sn-style-e34b88 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.sn-style-f9cf7a {
    width: 36px;
    height: 36px;
    border-color: #cbd5e1;
}

.sn-style-3fd589 {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sn-style-a94e7d {
    background: white;
    color: #1e293b;
}

.sn-style-9ee7f1 {
    background: var(--primary-color);
    border-radius: 0;
}

.sn-style-cf2c42 {
    display: inline-flex;
    border-color: #e2e8f0 !important;
}

.sn-style-0ec804 {
    height: 20px;
    object-fit: contain;
    margin-right: 15px;
}

.sn-style-ce2a81 {
    height: 20px;
    object-fit: contain;
}

.sn-style-938e32 {
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.sn-style-a0201b {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1051;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

@media (max-width: 991.98px) {
    .sn-style-a0201b {
        bottom: 80px;
    }
}

.sn-style-fa415b {
    font-size: 1.5rem;
}

.sn-style-1f0261 {
    font-size: 1rem;
}

.sn-style-77a39a {
    display: none;
    flex-direction: column;
    width: 340px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    animation: dropFadeIn 0.3s ease-out;
}

.sn-style-25dad6 {
    background-color: #00a884;
    color: white;
}

.sn-style-6a6fd7 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-style-8550ce {
    bottom: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    background-color: #25d366;
    border-radius: 50%;
    border: 2px solid #00a884;
}

.sn-style-57a3a0 {
    font-size: 1rem;
    letter-spacing: -0.3px;
}

.sn-style-b003a0 {
    opacity: 0.9;
    font-size: 0.75rem;
}

.sn-style-bfea41 {
    background-color: #efeae2;
    min-height: 200px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sn-style-8fb3a4 {
    max-width: 85%;
    font-size: 0.9rem;
    border-top-left-radius: 4px;
    color: #1e293b;
}

.sn-style-12e5fe {
    font-size: 0.65rem;
}

.sn-style-21e30f {
    background: #f0f2f5;
}

.sn-style-6a2a92 {
    display: flex;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    z-index: 1040;
    transition: all 0.3s;
    cursor: pointer;
}

/* Product Image Zoom */
.product-zoom-container {
    overflow: hidden;
    cursor: zoom-in;
}

.product-zoom-container img {
    transition: transform 0.5s ease;
}

.product-zoom-container:hover img {
    transform: scale(1.5);
}

.img-zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 40px;
    height: 40px;
    visibility: hidden;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Thumbnail Carousel */
.thumbnail-carousel-wrapper {
    position: relative;
    max-width: 100%;
}

.thumbnail-carousel .item img {
    height: 80px;
    object-fit: contain;
    background: #f8fafc;
    padding: 5px;
    transition: transform 0.3s ease;
}

.thumbnail-carousel .item .border-primary {
    border-width: 2px !important;
}

/* QR Code & Social */
.qr-code-container img {
    transition: transform 0.3s ease;
    cursor: help;
}

.qr-code-container:hover img {
    transform: scale(1.1);
}

.social-share-menu .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-share-menu .btn:hover {
    transform: translateY(-3px);
}

/* Modern Share Buttons */
.social-share-links .btn {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
}

.share-btn-download {
    background-color: #e0f2fe;
    color: #0284c7;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn-download:hover {
    background-color: #0284c7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(2, 132, 199, 0.2);
}

.share-btn-fb {
    background-color: #e0e7ff;
    color: #3b5998;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn-fb:hover {
    background-color: #3b5998;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(59, 89, 152, 0.2);
}

.share-btn-wa {
    background-color: #dcfce7;
    color: #25D366;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.share-btn-wa:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

/* Custom table styling for tables within .page-content (Colorful & Dynamic version) */
.page-content table {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 2.5rem;
    background-color: #ffffff;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-content table:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.page-content table th {
    background: linear-gradient(135deg, var(--secondary-color, #1d2d5b) 0%, #293d75 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    border: none;
    text-align: left;
    position: relative;
}

.page-content table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff7a00; /* Turuncu Vurgu */
}

.page-content table td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.page-content table tr:last-child td {
    border-bottom: none;
}

.page-content table tr {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-content table tbody tr:hover {
    background-color: #fffaf5; /* Açık Turuncu Arka Plan Vurgusu */
    transform: scale(1.001);
}

.page-content table tbody tr:hover td {
    color: #0f172a;
    padding-left: 24px; /* Dynamic sliding animation */
}

/* Accent left indicator bar on hover */
.page-content table tbody tr td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #ff7a00; /* Turuncu Sol Çizgi */
    transition: width 0.25s ease;
}

.page-content table tbody tr:hover td:first-child::before {
    width: 5px;
}

.page-content table tbody tr:nth-child(even) {
    background-color: #fcfdfe;
}

.page-content table tbody tr:nth-child(even):hover {
    background-color: #fffaf5;
}

.page-content table td a {
    color: var(--primary-color, #ef3825);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.page-content table td a:hover {
    color: var(--secondary-color, #1d2d5b);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-content {
        overflow-x: visible;
        padding-bottom: 0;
    }
    .page-content table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .page-content table th,
    .page-content table td {
        white-space: nowrap;
    }
}

/* Info Banner Cards (Homepage) */
.info-banner-card {
    border-radius: 20px !important;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.info-banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.banner-theme-blue {
    background-color: #ebf4ff !important;
    border-color: #d2e4ff !important;
}
.banner-theme-blue .graphics-circle {
    background-color: #d2e4ff !important;
    color: #2b6cb0 !important;
}
.banner-theme-blue .graphics-waves {
    color: #3182ce;
}

.banner-theme-green {
    background-color: #e6fffa !important;
    border-color: #b2f5ea !important;
}
.banner-theme-green .graphics-circle {
    background-color: #b2f5ea !important;
    color: #234e52 !important;
}
.banner-theme-green .graphics-waves {
    color: #319795;
}

.banner-theme-yellow {
    background-color: #fffaf0 !important;
    border-color: #feebc8 !important;
}
.banner-theme-yellow .graphics-circle {
    background-color: #feebc8 !important;
    color: #744210 !important;
}
.banner-theme-yellow .graphics-waves {
    color: #dd6b20;
}

.info-banner-title {
    font-size: 1.1rem;
    color: #1a202c !important;
    line-height: 1.4;
}

.info-banner-subtitle {
    font-size: 0.75rem !important;
}

.info-banner-graphics {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    pointer-events: none;
}

.graphics-circle {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: transform 0.3s ease;
}

.info-banner-card:hover .graphics-circle {
    transform: scale(1.1) rotate(10deg);
}

.graphics-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Success Story Custom Styles */
.success-story-sub {
    color: var(--primary-color, #ef3825) !important;
}

.success-story-desc {
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Stat Cards (Homepage) */
.stat-card {
    border-radius: 20px !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06) !important;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(-10deg);
}

.stat-color-orange .stat-number {
    color: #ff7a00 !important;
}
.stat-color-orange .stat-icon-wrapper {
    background-color: #fff5eb;
    color: #ff7a00;
}
.stat-color-orange:hover {
    border-color: #ffe0b2 !important;
}

.stat-color-green .stat-number {
    color: #48bb78 !important;
}
.stat-color-green .stat-icon-wrapper {
    background-color: #f0fff4;
    color: #48bb78;
}
.stat-color-green:hover {
    border-color: #c6f6d5 !important;
}

.stat-color-blue .stat-number {
    color: #3182ce !important;
}
.stat-color-blue .stat-icon-wrapper {
    background-color: #ebf8ff;
    color: #3182ce;
}
.stat-color-blue:hover {
    border-color: #bee3f8 !important;
}

.stat-number {
    font-size: 2.2rem;
}

.stat-title {
    font-size: 1rem;
}

.stat-desc {
    font-size: 0.82rem !important;
    line-height: 1.6;
}

/* Reference Cards (Homepage) */
.reference-card {
    border-radius: 12px !important;
    border: 1px solid #f1f5f9 !important;
    height: 120px;
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    border-color: #e2e8f0 !important;
}

.reference-logo-wrapper {
    height: 90px;
}

.reference-logo-img {
    max-height: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-card:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.reference-title {
    font-size: 0.8rem;
    color: #94a3b8 !important;
}

.reference-card:hover .reference-title {
    color: var(--primary-color) !important;
}

/* Bank Accounts Page Styles */
.bank-card {
    border-radius: 16px !important;
    border: 1px solid #f1f3f5 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease;
}
.bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    border-color: #e2e8f0 !important;
}
.bank-logo-area {
    height: 45px;
}
.bank-logo-area img {
    max-height: 45px;
    transition: all 0.3s ease;
}
.iban-row {
    position: relative;
}
.iban-label {
    color: #718096 !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px;
}
.iban-number {
    font-size: 1.1rem;
    color: #2d3748 !important;
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.btn-copy {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    background-color: #f8f9fa !important;
    border-color: #e2e8f0 !important;
    color: #4a5568 !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.btn-copy:hover {
    background-color: #edf2f7 !important;
    color: #1a202c !important;
    border-color: #cbd5e0 !important;
}
.btn-copy.copied {
    background-color: #48bb78 !important;
    border-color: #48bb78 !important;
    color: #ffffff !important;
}
.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Mobile Menu Height & Overflow Fix */
@media (max-width: 991.98px) {
    #mobileMenu {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}
