/* ===== Tema Değişkenleri (açık tema) ===== */
:root {
    --dark: #181818;
    --dark-2: #222226;
    --accent: #e53e29;
    --accent-hover: #c8311f;
    --light-gray: #f7f9fa;
    --border: #ebecf0;
    --text-muted: #716f6f;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #23242a;
    background: #fff;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Rajdhani', sans-serif;
}

a { text-decoration: none; }

/* ===== Üst Bar ===== */
.topbar {
    background: #fff;
    color: #3a3b42;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}
.topbar i { color: var(--accent); }
.topbar a { color: #3a3b42; }
.topbar a:hover { color: var(--accent); }

/* ===== Navbar ===== */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 14px rgba(20,21,26,.06);
    padding: .9rem 0;
}
.main-nav .brand-icon { color: var(--accent); font-size: 2rem; }
.main-nav .brand-text {
    color: var(--accent);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.site-logo { max-height: 52px; }
.main-nav .nav-link {
    color: #1b1c20;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: .6px;
    padding: .6rem 1rem;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--accent); }
.main-nav .dropdown-menu {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(20,21,26,.1);
}
.main-nav .dropdown-item { color: #2a2b31; padding: .55rem 1.2rem; font-weight: 500; }
.main-nav .dropdown-item:hover { background: var(--light-gray); color: var(--accent); }

/* Menü sağı: ikon butonlar */
.nav-icon-btn {
    width: 52px; height: 52px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: #fff;
    color: #1b1c20;
    box-shadow: 0 6px 18px rgba(20,21,26,.1);
    transition: all .2s;
}
.nav-icon-btn:hover { color: var(--accent); transform: translateY(-2px); }
.nav-icon-btn.red {
    background: var(--accent);
    color: #fff;
}
.nav-icon-btn.red:hover { background: var(--accent-hover); color: #fff; }

.btn-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    padding: .7rem 1.6rem;
}
.btn-accent:hover { background: var(--accent-hover); color: #fff; }

.btn-outline-dark-2 {
    border: 2px solid var(--dark);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 6px;
}
.btn-outline-dark-2:hover { background: var(--dark); color: #fff; }

.btn-outline-light-2 {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 6px;
}
.btn-outline-light-2:hover { background: #fff; color: var(--dark); }

/* ===== Hero (açık zemin, sol metin + sağ görsel) ===== */
.hero-light {
    background: #fff;
    padding: 4.5rem 0 4rem;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero-kicker {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}
.hero-title {
    color: var(--dark);
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    font-weight: 700;
    line-height: 1.08;
    margin: .8rem 0 1rem;
}
.hero-text {
    color: #5a5c66;
    font-size: 1.12rem;
    max-width: 540px;
}
.hero-img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}
.hero-img.is-photo {
    object-fit: cover;
    height: 460px;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(20,21,26,.18);
}
.carousel-indicators [data-bs-target] {
    width: 36px; height: 4px; border-radius: 2px;
    background-color: #c9cbd3;
}
.carousel-indicators .active { background-color: var(--accent); }
.carousel-control-prev, .carousel-control-next { width: 4%; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: invert(1) grayscale(1); }

/* ===== Bölüm Başlıkları ===== */
.section-title .kicker {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .95rem;
}
.section-title .kicker::before { content: '// '; }
.section-title h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--dark);
}
.section-title .title-line {
    width: 64px; height: 3px;
    background: var(--accent);
    display: inline-block;
}

/* ===== Hizmet Kartları ===== */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    transition: all .25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20,21,26,.12);
    border-color: transparent;
}
.service-card .icon-box {
    width: 64px; height: 64px;
    border-radius: 12px;
    background: rgba(229,62,41,.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}
.service-card h5 { font-weight: 600; text-transform: uppercase; }

/* ===== Kategori Kartları ===== */
.category-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-2);
    min-height: 200px;
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: .9;
    transition: transform .35s ease;
}
.category-card:hover img { transform: scale(1.07); }
.category-card .category-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.2rem 1.2rem .9rem;
    background: linear-gradient(180deg, transparent, rgba(10,11,15,.92));
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Ürün Kartları ===== */
.product-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    transition: all .25s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(20,21,26,.12);
}
.product-card .product-img {
    height: 220px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-card .product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card .badge-brand {
    background: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.product-card h6 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.product-card .price {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== Yorumlar (koyu kontrast bölümü) ===== */
.testimonial-section { background: var(--dark); }
.testimonial-section .kicker { color: var(--accent); }
.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    color: #d8dae0;
}
.testimonial-card .stars { color: #ffb400; }
.testimonial-card .name { color: #fff; font-weight: 600; }

/* ===== Blog Kartları ===== */
.blog-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    transition: all .25s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(20,21,26,.12);
}
.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}
.blog-card .blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .date {
    color: var(--text-muted);
    font-size: .85rem;
}
.blog-card h5 { font-weight: 600; }
.blog-card h5 a { color: #23242a; }
.blog-card h5 a:hover { color: var(--accent); }

/* ===== Sayfa Başlığı (iç sayfalar, açık zemin) ===== */
.page-header {
    background: var(--light-gray);
    border-bottom: 1px solid var(--border);
    padding: 3.6rem 0;
}
.page-header h1 {
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-header .breadcrumb { margin: 0; }
.page-header .breadcrumb a { color: var(--accent); }
.page-header .breadcrumb-item.active { color: #7c7e88; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: #aaacb5; }

/* ===== İletişim ===== */
.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.6rem;
}
.contact-info-card .icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(229,62,41,.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ===== CTA Şeridi ===== */
.cta-strip {
    background:
        radial-gradient(800px 280px at 15% 50%, rgba(229,62,41,.3), transparent 60%),
        linear-gradient(135deg, #1a1b22 0%, #25262f 100%);
    color: #fff;
    border-radius: 16px;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark);
    color: #b9bcc6;
}
.site-footer .footer-title {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #b9bcc6; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: .6rem; }
.footer-contact i { color: var(--accent); }
.social-link { color: #b9bcc6; }
.social-link:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .9rem;
}

/* ===== WhatsApp Butonu ===== */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.25);
    z-index: 1050;
    transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ===== İçerik ===== */
.content-area img { max-width: 100%; height: auto; border-radius: 10px; }
.bg-soft { background: var(--light-gray); }

/* ===== Renkli Hizmet Kartları ===== */
.service-color-card {
    background: #101c1d;
    color: #fff;
    border-radius: 6px;
    padding: 3.2rem 2.2rem;
    text-align: center;
    height: 100%;
}
.service-color-card.highlight { background: var(--accent); }
.service-color-card .s-icon { font-size: 3.4rem; color: var(--accent); }
.service-color-card.highlight .s-icon { color: #fff; }
.service-color-card h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.2rem 0 1rem;
}
.service-color-card p { color: #c9cfd0; margin: 0; }
.service-color-card.highlight p { color: #ffe3df; }

/* ===== Kicker (iki yonlu) ===== */
.kicker2 {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.05rem;
}
.big-title {
    font-weight: 700;
    color: var(--dark);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
}

/* ===== En Iyi Markalar bolumu ===== */
.quote-text {
    border-left: 3px solid var(--accent);
    padding-left: 1.6rem;
    color: #6c6f7a;
    font-size: 1.05rem;
}
.icon-circle {
    width: 84px; height: 84px;
    min-width: 84px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2.2rem;
}
.about-imgs { position: relative; padding-bottom: 4rem; }
.about-imgs .img-main {
    width: 72%;
    border-radius: 4px;
}
.about-imgs .img-overlap {
    position: absolute;
    right: 0; bottom: 0;
    width: 62%;
    border: 10px solid #fff;
    border-radius: 4px;
    box-shadow: 0 18px 44px rgba(20,21,26,.18);
}

/* ===== Telefon Seridi ===== */
.call-strip2 {
    background:
        radial-gradient(700px 260px at 50% 40%, rgba(229,62,41,.12), transparent 65%),
        #101c1d;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.call-strip2 .phone-big {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 1.05;
    color: #fff;
    letter-spacing: 2px;
}
.call-strip2 .phone-big:hover { color: var(--accent); }

/* ===== Guvence kolonlari ===== */
.guarantee-col {
    border: 1px solid var(--border);
    padding: 2.6rem 2.2rem;
    height: 100%;
    margin: -1px 0 0 -1px;
    background: #fff;
}
.guarantee-col .g-icon { font-size: 2.9rem; color: var(--accent); }
.guarantee-col h5 { font-weight: 600; margin: 1.2rem 0 .9rem; }
.guarantee-col p { color: #6c6f7a; margin: 0; }

/* ===== Aksesuar kartlari ===== */
.acc-card {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(20,21,26,.06);
    padding: 1.8rem;
    height: 100%;
}
.acc-card h5 { font-weight: 600; }
.acc-card p { color: #6c6f7a; font-size: .95rem; margin: 0; }
.acc-icon {
    color: var(--accent);
    font-size: 2.6rem;
    min-width: 64px;
    text-align: center;
}

/* ===== E-ticaret ===== */
.btn-cart {
    background: #181818;
    color: #fff;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    padding: .65rem 1.2rem;
}
.btn-cart:hover { background: var(--accent); color: #fff; }
.old-price {
    text-decoration: line-through;
    color: #9aa0a6;
}
.price-table th { font-weight: 600; }
.product-thumb:hover { border-color: var(--accent) !important; }
.cart-qty { width: 130px; }

/* ===== Duyuru cubugu ===== */
.announcement-bar {
    background: var(--accent);
    color: #fff;
    font-size: .92rem;
    font-weight: 500;
}

/* ===== Site ici arama ===== */
.site-search {
    background: var(--light-gray);
    border-bottom: 1px solid var(--border);
}

/* ===== Global bildirim (toast) ===== */
.global-flash {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    width: min(480px, calc(100vw - 32px));
    box-shadow: 0 14px 40px rgba(0,0,0,.2);
    border-radius: 10px;
}
.global-flash .alert { margin: 0; }

/* ===== Yukari cik ===== */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--dark);
    color: #fff;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1049;
    opacity: .85;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--accent); }

/* ===== Mobil alt menu ===== */
.mobile-bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    display: flex;
    z-index: 1060;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -6px 20px rgba(20,21,26,.08);
}
.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: .55rem 0 .5rem;
    color: #555a64;
    font-size: .68rem;
    min-height: 44px;
}
.mobile-bottom-nav a i { font-size: 1.25rem; line-height: 1; }
.mobile-bottom-nav a.active { color: var(--accent); }
.mobile-bottom-nav .bn-badge {
    position: absolute;
    top: 4px;
    left: calc(50% + 8px);
    background: var(--accent);
    color: #fff;
    font-size: .62rem;
    border-radius: 999px;
    padding: 1px 5px;
    line-height: 1.2;
}

/* ===== Cerez bildirimi ===== */
.cookie-banner {
    position: fixed;
    left: 16px; right: 16px;
    bottom: 76px;
    background: var(--dark);
    color: #d8dae0;
    border-radius: 12px;
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 1061;
    font-size: .9rem;
    box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
@media (min-width: 992px) {
    .cookie-banner { left: auto; right: 22px; bottom: 22px; max-width: 420px; }
}

/* ===== Stok rozetleri ===== */
.stock-badge { font-size: .8rem; font-weight: 600; }
.stock-in { color: #1e9e4a; }
.stock-out { color: var(--accent); }
.fav-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: #555a64;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fav-btn.active, .fav-btn:hover { color: var(--accent); border-color: var(--accent); }

/* ===== Kategori cipleri ===== */
.cat-chips {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chips a {
    white-space: nowrap;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .4rem 1rem;
    color: #2a2b31;
    font-size: .88rem;
    background: #fff;
}
.cat-chips a.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Mobil iyilestirmeler ===== */
@media (max-width: 991.98px) {
    body.has-bottom-nav { padding-bottom: 64px; }
    .whatsapp-float { right: 14px; bottom: 80px; width: 48px; height: 48px; font-size: 1.4rem; }
    .back-to-top { bottom: 140px; right: 16px; }
    section.py-5 { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
    .hero-light { min-height: auto; padding: 2rem 0 2.4rem; }
    .hero-img { max-height: 280px; }
    .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .big-title { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
    .phone-big { font-size: clamp(2rem, 11vw, 3.4rem); letter-spacing: 1px; word-break: break-word; }
    .call-strip2 { padding: 3rem 0; }
    .main-nav .navbar-collapse {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding-bottom: 1rem;
    }
    .main-nav .nav-link { padding: .8rem .6rem; border-bottom: 1px solid var(--light-gray); }
    .site-footer { text-align: center; }
    .footer-contact li { justify-content: center; }
    .site-footer .d-flex.gap-3 { justify-content: center; }
}
@media (max-width: 575.98px) {
    .product-card .product-img { height: 150px; }
    .blog-card .blog-img { height: 150px; }
    .category-card img, .category-card { min-height: 140px; height: auto; }
    .product-card h6 { font-size: .85rem; }
    .product-card .p-3 { padding: .8rem !important; }
    .btn-cart { font-size: .78rem; padding: .55rem .5rem; }
    .service-color-card { padding: 2.2rem 1.4rem; }
    .guarantee-col { padding: 1.8rem 1.4rem; }
    .about-imgs .img-overlap { border-width: 6px; }
    .breadcrumb { flex-wrap: nowrap; overflow: hidden; }
    .breadcrumb-item { white-space: nowrap; }
    .breadcrumb-item:last-child { overflow: hidden; text-overflow: ellipsis; max-width: 45vw; }
}

/* Dokunma hedefleri ve iOS zoom onleme */
@media (max-width: 991.98px) {
    .btn, .nav-icon-btn, .page-link { min-height: 44px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; }
    input.form-control, select.form-select, textarea.form-control { font-size: 16px; }
}

/* Tablolar mobilde kaydirilabilir */
.price-table-wrap { overflow-x: auto; }

@media print {
    .main-nav, .topbar, .mobile-bottom-nav, .whatsapp-float, .back-to-top, .site-footer, .cookie-banner { display: none !important; }
}

/* ===== Sepete eklendi popup ===== */
.cart-added-modal {
    border: none;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.cart-added-check {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #1e9e4a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.cart-added-modal .modal-title { font-weight: 600; }
@media (max-width: 575.98px) {
    .cart-added-modal .modal-footer { flex-direction: column; }
    .cart-added-modal .modal-footer .btn { width: 100%; }
}

/* ===== Iletisim sayfasi ===== */
.contact-hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.contact-hero-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.contact-hero-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(20,21,26,.12); }
.contact-hero-card:hover::after { transform: scaleX(1); }
.contact-hero-card .chc-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(229,62,41,.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.contact-hero-card h6 { font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.contact-hero-card a.value { color: #23242a; font-weight: 600; }
.contact-hero-card a.value:hover { color: var(--accent); }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.4rem;
    box-shadow: 0 14px 44px rgba(20,21,26,.07);
}
.contact-side {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.contact-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(185deg, rgba(16,28,29,.45) 0%, rgba(16,28,29,.93) 75%);
}
.contact-side .cs-body { position: relative; z-index: 2; padding: 2rem; color: #fff; }
.contact-side .cs-body li { margin-bottom: .6rem; color: #d8dae0; display: flex; gap: .6rem; }
.contact-side .cs-body li i { color: var(--accent); }

/* ===== Giris / Uyelik sayfalari ===== */
.auth-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(20,21,26,.12);
    background: #fff;
    border: 1px solid var(--border);
}
.auth-visual {
    position: relative;
    background-size: cover;
    background-position: center top;
    min-height: 560px;
}
.auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(16,28,29,.35) 0%, rgba(16,28,29,.92) 80%);
}
.auth-visual .av-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.6rem;
    color: #fff;
}
.auth-visual .av-kicker {
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.auth-visual h3 { font-weight: 700; font-size: 2rem; }
.auth-visual li { margin-bottom: .7rem; color: #e3e5ea; display: flex; gap: .7rem; align-items: start; }
.auth-visual li i { color: var(--accent); margin-top: 2px; }
.auth-form-col { padding: 2.8rem 2.6rem; }
.auth-form-col .form-label { font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .4px; }
.auth-form-col .form-control {
    border-radius: 8px;
    padding: .8rem 1rem;
    background: var(--light-gray);
    border-color: var(--border);
}
.auth-form-col .form-control:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 .2rem rgba(229,62,41,.12);
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9aa0a6;
    font-size: .85rem;
    margin: 1.4rem 0;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
@media (max-width: 991.98px) {
    .auth-visual { min-height: 240px; }
    .auth-visual .av-body { padding: 1.6rem; }
    .auth-form-col { padding: 1.8rem 1.4rem; }
}

/* ===== Yeni footer ===== */
.footer-strip {
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(229,62,41,.15);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.f-label {
    color: #8b8e98;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.f-value { color: #fff; font-weight: 600; font-size: 1.05rem; }
a.f-value:hover { color: var(--accent); }
.social-btn {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: #d8dae0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all .2s;
}
.social-btn:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer-links a {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.footer-links a i {
    color: var(--accent);
    font-size: .75rem;
}
.payment-row {
    display: flex;
    gap: .6rem;
}
.payment-row span {
    width: 44px; height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,.07);
    color: #b9bcc6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
@media (max-width: 767.98px) {
    .footer-strip .d-flex { justify-content: center; text-align: left; }
    .payment-row { justify-content: center; }
}

/* ===== Rozetler ===== */
.badge-discount, .badge-new {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .55rem;
    border-radius: 6px;
    letter-spacing: .5px;
}
.badge-discount { background: var(--accent); color: #fff; }
.badge-new { background: #1e9e4a; color: #fff; }
.badge-discount + .badge-new { top: 42px; }

/* Hover'da ikinci gorsel */
.product-img .img-hover {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .3s ease;
}
.product-img { position: relative; }
.product-card:hover .img-hover { opacity: 1; }

/* Liste gorunumu */
.shop-list .product-card { flex-direction: row !important; }
.shop-list .col-6, .shop-list .col-md-4 { width: 100%; max-width: 100%; flex: 0 0 100%; }
.shop-list .product-img { width: 220px; min-width: 220px; height: auto; }
@media (max-width: 575.98px) { .shop-list .product-img { width: 130px; min-width: 130px; } }
.view-toggle .btn.active { background: var(--dark); color: #fff; }

/* Mobil yapiskan sepete ekle */
.sticky-add-bar {
    position: fixed;
    left: 0; right: 0; bottom: 56px;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 1055;
    box-shadow: 0 -8px 24px rgba(20,21,26,.1);
}
.sticky-add-bar .sab-price { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.2rem; }

/* Lightbox */
.lightbox-img { max-width: 100%; max-height: 82vh; object-fit: contain; }
#mainProductImage { cursor: zoom-in; }

/* Slider ilerleme cubugu */
.hero-progress {
    position: absolute;
    left: 0; bottom: 0;
    height: 3px;
    background: var(--accent);
    width: 0;
    z-index: 5;
}
#heroCarousel { position: relative; }
#heroCarousel .hero-progress.animate { animation: heroProg 5.5s linear forwards; }
@keyframes heroProg { from { width: 0 } to { width: 100% } }

/* Navbar scroll golgesi */
.main-nav.scrolled { box-shadow: 0 6px 24px rgba(20,21,26,.14); }

/* Duyuru kapatma */
.announcement-bar { position: relative; }
.announcement-bar .ann-close {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none; color: #fff; opacity: .8;
}
.announcement-bar .ann-close:hover { opacity: 1; }

/* Yumusak kaydirma */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

/* Sifre guc gostergesi */
.pw-meter { height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; margin-top: .4rem; }
.pw-meter span { display: block; height: 100%; width: 0; transition: all .3s; }

/* Hesap paneli */
.account-tabs {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.6rem;
}
.account-tabs::-webkit-scrollbar { display: none; }
.account-tabs .nav-link {
    white-space: nowrap;
    color: #555a64;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: .7rem 1rem;
}
.account-tabs .nav-link.active { color: var(--accent); border-bottom-color: var(--accent); background: none; }
.acc-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    height: 100%;
}
.acc-stat .as-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1.7rem; color: var(--dark); }
.acc-stat .as-label { color: #8b8e98; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; }
.acc-stat i { color: var(--accent); font-size: 1.4rem; }

/* ===== Odeme akisi ===== */
.checkout-steps {
    display: flex;
    align-items: flex-start;
    max-width: 560px;
    margin: 0 auto 2.2rem;
}
.checkout-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
}
.checkout-steps .step::before {
    content: '';
    position: absolute;
    top: 19px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: var(--border);
    z-index: 0;
}
.checkout-steps .step:first-child::before { display: none; }
.checkout-steps .step.done::before, .checkout-steps .step.active::before { background: var(--accent); }
.checkout-steps .num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    color: #9aa0a6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    z-index: 1;
}
.checkout-steps .done .num { background: var(--accent); border-color: var(--accent); color: #fff; }
.checkout-steps .active .num { border-color: var(--accent); color: var(--accent); }
.checkout-steps .lbl { display: block; font-size: .8rem; margin-top: .4rem; color: #8b8e98; font-weight: 600; }
.checkout-steps .done .lbl, .checkout-steps .active .lbl { color: var(--dark); }

.pay-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
}
.pay-card:hover { border-color: #c9cbd3; }
.pay-card.selected {
    border-color: var(--accent);
    background: rgba(229,62,41,.04);
    box-shadow: 0 8px 24px rgba(229,62,41,.1);
}
.pay-card .pc-icon {
    width: 46px; height: 46px;
    min-width: 46px;
    border-radius: 10px;
    background: rgba(229,62,41,.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.pay-card .pc-check { margin-left: auto; font-size: 1.3rem; color: var(--border); }
.pay-card.selected .pc-check { color: var(--accent); }

.bank-panel {
    background: var(--light-gray);
    border: 1px dashed #c9cbd3;
    border-radius: 12px;
}
.iban-row {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
}

@keyframes popIn {
    0% { transform: scale(.4); opacity: 0; }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.success-pop { animation: popIn .55s cubic-bezier(.2,.9,.3,1.4); display: inline-block; }

/* ===== Telefon seridi yan gorselleri ===== */
.call-strip2 { position: relative; overflow: hidden; }
.call-strip2 .container { position: relative; z-index: 2; }
.call-img {
    position: absolute;
    bottom: 0;
    max-height: 92%;
    max-width: 30vw;
    z-index: 1;
    pointer-events: none;
}
.call-img.left { left: 0; }
.call-img.right { right: 0; }
.call-deco {
    position: absolute;
    bottom: -20px;
    font-size: 13rem;
    color: rgba(255,255,255,.05);
    z-index: 1;
    line-height: 1;
    pointer-events: none;
}
.call-deco.left { left: 2%; transform: rotate(-8deg); }
.call-deco.right { right: 2%; transform: rotate(8deg); }
@media (max-width: 1199.98px) {
    .call-img, .call-deco { display: none; }
}
