﻿/* Mağaza — index + iç sayfalar */

        :root {
            --dark-blue: #1a2a40;
            --promo-turq: #55c2c4;
            --pink: #e91e63;
            --light-gray: #f8f8f8;
            --footer-bg: #f9f7f2;
            --max-width: 1300px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
        body { background: #fff; color: #333; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 15px;
        }

        /* --- HEADER VE NAV --- */
        .top-bar { background: var(--dark-blue); color: white; font-size: 11px; position: relative; z-index: 900; }
        .top-bar__message { padding: 8px 0; text-align: center; line-height: 1.35; }
        .top-bar-strip { border-top: 1px solid rgba(255, 255, 255, 0.18); padding: 8px 0 10px; }
        .top-bar-strip .container { display: flex; align-items: center; gap: 14px; }
        .top-bar-strip__scroll {
            display: flex;
            align-items: stretch;
            gap: 10px;
            overflow-x: auto;
            flex: 1;
            min-width: 0;
            padding-bottom: 2px;
            -webkit-overflow-scrolling: touch;
        }
        .top-bar-strip__scroll::-webkit-scrollbar { height: 4px; }
        .top-bar-strip__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 2px; }
        .top-bar-mini {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            max-width: 220px;
            min-width: 0;
            padding: 4px 8px 4px 4px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            text-decoration: none;
            font-size: 11px;
            line-height: 1.25;
            transition: background 0.15s;
        }
        .top-bar-mini:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
        .top-bar-mini__img {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            border-radius: 6px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.15);
        }
        .top-bar-mini__text { min-width: 0; text-align: left; }
        .top-bar-mini__name {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-weight: 600;
        }
        .top-bar-mini__price { opacity: 0.9; margin-top: 2px; font-size: 10px; }
        .store-flash { padding: 10px 0; font-size: 13px; text-align: center; }
        .store-flash--success { background: #e8f5e9; color: #1b5e20; }
        .store-flash--danger { background: #ffebee; color: #b71c1c; }
        .store-flash--info { background: #e3f2fd; color: #0d47a1; }
        .store-flash--warning { background: #fff8e1; color: #e65100; }

        /* Header, nav (z-index 400) ve dar alanlarda taşan arama kutusunun üstüne binmesin; sepet / araçlar tıklanabilir kalsın */
        header {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: relative;
            z-index: 850;
        }
        .header-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px 20px;
            padding: 16px 0 18px;
            position: relative;
        }
        .header-main .logo { flex: 0 0 auto; margin-right: 8px; }
        .header-main .search-box {
            flex: 1 1 200px;
            min-width: 0;
            max-width: 520px;
            margin-left: 20px;
            position: relative;
            z-index: 0;
        }
        .header-tools {
            flex: 0 1 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: 6px 16px;
            font-size: 13px;
            color: #555;
            margin-left: auto;
            position: relative;
            z-index: 2;
        }
        .header-tool-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0;
            margin: 0;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .header-tool-item:hover { color: #111; }
        .header-tool-item--link { text-decoration: none; }
        .header-tool-greet {
            font-size: 13px;
            color: #555;
            max-width: 140px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .header-tool-logout { display: inline; margin: 0; padding: 0; }

        @media (max-width: 992px) {
            .header-main .logo { order: 1; flex: 1 1 auto; min-width: 0; }
            .header-tools {
                order: 2;
                flex: 1 1 100%;
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                justify-content: space-between;
                gap: 6px 8px;
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                align-items: start;
            }
            .header-tool-item {
                white-space: normal;
                font-size: 10px;
                flex-direction: column;
                gap: 3px;
                text-align: center;
                justify-content: flex-start;
                min-width: 0;
                line-height: 1.2;
            }
            .header-tool-item .header-tool-ico-wrap { margin: 0 auto; }
            .header-tool-greet {
                grid-column: 1 / -1;
                max-width: none;
                text-align: center;
                font-size: 12px;
            }
            .header-tool-logout {
                display: contents;
            }
            .header-main .search-box {
                order: 3;
                flex: 1 1 100%;
                max-width: none;
                margin-left: 0;
            }
            .header-main .logo { margin-right: 0; }
        }

        header .header-flex { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
        
        .logo { font-size: 26px; font-weight: bold; letter-spacing: 2px; color: var(--dark-blue); }
        .logo-link { display: inline-flex; align-items: center; color: inherit; }
        .site-logo-img { max-height: 44px; width: auto; max-width: 220px; object-fit: contain; vertical-align: middle; }
        .footer-logo-wrap { display: flex; align-items: center; }
        .footer-logo-img { max-height: 40px; width: auto; max-width: 200px; object-fit: contain; }
        .footer-trust-row {
            display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 24px;
            padding: 20px 0; margin-bottom: 8px; border-bottom: 1px solid #e8e4dc;
        }
        .footer-trust-img { max-height: 36px; width: auto; max-width: 120px; object-fit: contain; opacity: 0.92; }
        .footer-trust-gov { max-height: 48px; max-width: 160px; }
        .footer-col li a { color: #666; text-decoration: none; }
        .footer-col li a:hover { color: #000; text-decoration: underline; }
        .cms-page-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
        .search-box { flex: 1; position: relative; max-width: 500px; margin: 0; }
        .search-box input {
            width: 100%;
            padding: 12px 44px 12px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: var(--light-gray);
            box-sizing: border-box;
        }
        .search-box__submit {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            padding: 0;
            border: none;
            border-radius: 4px;
            background: transparent;
            color: #888;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-box__submit:hover { color: var(--dark-blue, #1a2a40); }
        .search-box__submit:focus-visible { outline: 2px solid var(--pink, #e91e8c); outline-offset: 2px; }
        
        .user-menu { display: flex; gap: 20px; font-size: 13px; color: #555; }
        .user-menu div { cursor: pointer; display: flex; align-items: center; gap: 5px; }
        .header-tool-ico-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
        .header-badge {
            position: absolute; top: -7px; right: -10px; min-width: 18px; height: 18px; padding: 0 5px;
            border-radius: 999px; background: var(--pink); color: #fff; font-size: 10px; font-weight: 800;
            line-height: 18px; text-align: center;
        }
        .header-badge--fav { background: #1a2a40; }

        .visually-hidden {
            position: absolute;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border: 0;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 5000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(0,0,0,0.45);
            overflow-y: auto;
        }
        .modal-overlay.is-open { display: flex; }
        .modal-panel {
            position: relative;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);
            width: 100%;
            max-width: 420px;
            padding: 24px 28px 28px;
            margin: auto;
        }
        .modal-panel--sm { max-width: 400px; }
        .modal-panel--auth { max-width: 420px; }
        .modal-panel--cart { max-width: 440px; }
        .modal-panel--favorites { max-width: 440px; max-height: min(72vh, 620px); display: flex; flex-direction: column; }
        .modal-addcart-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
        .modal-addcart-check { color: #27ae60; font-size: 22px; line-height: 1; }
        .modal-addcart-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
        .modal-addcart-img { flex: 0 0 100px; width: 100px; height: 100px; border-radius: 8px; overflow: hidden; background: #f0f0f0; }
        .modal-addcart-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .modal-addcart-meta { flex: 1; min-width: 0; }
        .modal-addcart-name { font-size: 14px; font-weight: 600; color: #222; margin: 0 0 6px; line-height: 1.35; }
        .modal-addcart-qty { font-size: 13px; color: #666; margin: 0 0 4px; }
        .modal-addcart-price { font-size: 14px; color: #27ae60; font-weight: 600; margin: 0 0 4px; }
        .modal-addcart-each { font-size: 11px; font-weight: 400; color: #888; }
        .modal-addcart-line { font-size: 13px; color: #444; margin: 0; }
        .modal-addcart-actions { display: flex; flex-direction: column; gap: 10px; }
        .modal-addcart-btn {
            display: block; width: 100%; text-align: center; padding: 12px 16px; border-radius: 6px; font-size: 14px; font-weight: 600;
            cursor: pointer; text-decoration: none; border: none; font-family: inherit;
        }
        .modal-addcart-btn--primary { background: var(--dark-blue); color: #fff; }
        .modal-addcart-btn--primary:hover { filter: brightness(1.06); }
        .modal-addcart-btn--ghost { background: #fff; color: #333; border: 1px solid #ddd; }
        .modal-addcart-btn--ghost:hover { background: #f7f7f7; }
        .favorites-hint { font-size: 12px; margin-top: -6px; }
        .favorites-empty { text-align: center; padding: 24px 12px; color: #666; font-size: 14px; }
        .favorites-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; overflow-y: auto; flex: 1; min-height: 0; }
        .favorites-item {
            display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #eee;
        }
        .favorites-item__main { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; text-decoration: none; color: inherit; }
        .favorites-item__img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: #eee; }
        .favorites-item__meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
        .favorites-item__name { font-size: 13px; font-weight: 600; color: #222; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .favorites-item__price { font-size: 13px; color: #27ae60; font-weight: 600; }
        .favorites-item__remove {
            flex-shrink: 0; width: 36px; height: 36px; border: none; background: #f5f5f5; border-radius: 8px;
            cursor: pointer; color: #888; display: flex; align-items: center; justify-content: center;
        }
        .favorites-item__remove:hover { background: #ffe8e8; color: #c0392b; }
        .modal-close {
            position: absolute;
            top: 12px;
            right: 14px;
            border: none;
            background: none;
            font-size: 28px;
            line-height: 1;
            color: #888;
            cursor: pointer;
            padding: 4px 8px;
        }
        .modal-close:hover { color: #111; }
        .modal-title { font-size: 18px; font-weight: 600; margin: 0 0 14px; color: #222; }
        .modal-body-text { font-size: 14px; line-height: 1.55; color: #444; margin: 0; }

        .auth-tabs { display: flex; gap: 0; border-bottom: 1px solid #e0e0e0; margin-bottom: 20px; }
        .auth-tab {
            flex: 1;
            padding: 12px 8px;
            border: none;
            background: none;
            font-size: 14px;
            font-weight: 600;
            color: #888;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
        }
        .auth-tab.is-active { color: #111; border-bottom-color: var(--dark-blue); }
        .auth-panel { display: none; }
        .auth-panel.is-active { display: block; }
        .auth-form { display: flex; flex-direction: column; gap: 0; }
        .auth-label { font-size: 12px; font-weight: 600; color: #555; margin-top: 12px; margin-bottom: 6px; }
        .auth-label:first-of-type { margin-top: 0; }
        .auth-optional { font-weight: 400; color: #888; }
        .auth-input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }
        .auth-input:focus { outline: none; border-color: var(--dark-blue); }
        .auth-submit {
            margin-top: 18px;
            padding: 12px;
            border: none;
            border-radius: 4px;
            background: var(--dark-blue);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        .auth-submit:hover { filter: brightness(1.08); }
        .auth-switch { margin-top: 16px; font-size: 13px; color: #666; }
        .auth-link {
            border: none;
            background: none;
            padding: 0;
            font: inherit;
            color: var(--dark-blue);
            text-decoration: underline;
            cursor: pointer;
        }

        /* z-index: alt içerik (slider vb.) mega menünün üstüne binmesin */
        nav.site-nav { background: white; border-bottom: 1px solid #eee; position: relative; z-index: 400; }
        .nav-bar { position: relative; }
        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            margin: 0;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            color: #333;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 6px 18px;
            padding: 14px 0 18px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .nav-links > li.nav-item {
            position: static;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 12px;
            border-radius: 2px;
            transition: color 0.2s, box-shadow 0.2s;
            color: #222;
        }
        .nav-links > li.nav-item > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: inherit;
        }
        .nav-link__chevron {
            display: inline-flex;
            align-items: center;
            margin-left: 2px;
            opacity: 0.75;
        }
        .nav-link__chevron i {
            font-size: 0.65em;
            line-height: 1;
            transition: transform 0.2s ease;
        }
        .nav-links > li.nav-item.highlight .nav-link__chevron i { color: var(--pink); }
        .nav-links > li.nav-item:not(.highlight) .nav-link__chevron i { color: var(--dark-blue); }
        .nav-links > li.nav-item:hover,
        .nav-links > li.nav-item:focus-within {
            outline: none;
            box-shadow: inset 0 0 0 1px #111;
        }
        .nav-links > li.nav-item.highlight { color: var(--pink); }
        .nav-links > li.nav-item.highlight:hover,
        .nav-links > li.nav-item.highlight:focus-within { box-shadow: inset 0 0 0 1px var(--pink); }

        /* Mega menü: tam genişlik nav-bar’a göre; ::before ile yukarı köprü (boşlukta hover düşmesin) */
        .mega-menu {
            display: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            padding-top: 6px;
            z-index: 410;
        }
        .mega-menu::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: -18px;
            height: 22px;
            background: transparent;
        }
        .nav-links > li.has-mega:hover .mega-menu,
        .nav-links > li.has-mega:focus-within .mega-menu {
            display: block;
        }
        .mega-menu-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 28px 24px 32px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee;
        }
        .mega-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 32px 40px;
            text-align: left;
        }
        .mega-col .mega-heading {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #111;
            margin-bottom: 12px;
            text-transform: uppercase;
        }
        .mega-col .mega-heading:not(:first-child) { margin-top: 22px; }
        .mega-links { display: flex; flex-direction: column; gap: 8px; }
        .mega-links a {
            font-size: 13px;
            font-weight: 400;
            color: #444;
            text-transform: none;
            letter-spacing: 0;
            padding: 2px 0;
            border-bottom: 1px solid transparent;
            transition: color 0.15s, border-color 0.15s;
        }
        .mega-links a:hover { color: #000; border-bottom-color: #ccc; }

        .mega-menu.simple .mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
        .mega-menu.simple .mega-links a { font-size: 13px; }

        .mega-col--wide { grid-column: 1 / -1; }
        .mega-product-strip {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-height: 280px;
            overflow-y: auto;
            margin-bottom: 12px;
            padding-right: 4px;
        }
        .mega-product-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 8px;
            border: 1px solid #eee;
            text-decoration: none;
            color: inherit;
            transition: background 0.15s, border-color 0.15s;
        }
        .mega-product-pill:hover {
            background: #f8fafc;
            border-color: #dde4ec;
        }
        .mega-product-pill__img {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 8px;
            overflow: hidden;
            background: #f0f0f0;
        }
        .mega-product-pill__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .mega-product-pill__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
        .mega-product-pill__name {
            font-size: 12px;
            font-weight: 600;
            color: #222;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .mega-product-pill__price { font-size: 12px; font-weight: 700; color: #27ae60; }

        /* --- ANA SLIDER --- */
        .main-slider { width: 100%; height: 450px; position: relative; z-index: 1; overflow: hidden; margin-top: 10px; border-radius: 10px; }
        .slide { width: 100%; height: 100%; position: absolute; opacity: 0; transition: opacity 0.8s ease; }
        .slide.active { opacity: 1; }
        .slide > a { display: block; width: 100%; height: 100%; }
        .slide img { width: 100%; height: 100%; object-fit: cover; }
        .slider-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 20px; transform: translateY(-50%); }
        .slider-nav button { background: rgba(255,255,255,0.7); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 20px; color: var(--dark-blue); }

        /* --- İKİLİ KAMPANYA ALANI --- */
        .campaign-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        .camp-card { display: flex; border-radius: 10px; overflow: hidden; height: 350px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        .camp-card--img-left { flex-direction: row-reverse; }
        .camp-info { flex: 1; background: var(--promo-turq); color: white; padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
        .camp-info h3 { font-size: 18px; font-weight: 400; margin-bottom: 10px; }
        .camp-info .p-new { font-size: 45px; font-weight: bold; }
        .camp-btn { margin-top: 15px; border-bottom: 2px solid white; padding-bottom: 3px; font-weight: bold; font-size: 13px; text-transform: uppercase;}
        .camp-img { flex: 1.2; }
        .camp-img img { width: 100%; height: 100%; object-fit: cover; }

        /* --- YENİ ÜRÜN SLIDER (image_9.png BİREBİR) --- */
        .product-slider-section {
            margin-bottom: 50px;
            position: relative;
        }

        .product-grid {
            display: flex;
            align-items: stretch;
            gap: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 10px;
            -webkit-overflow-scrolling: touch;
        }
        .product-grid::-webkit-scrollbar { display: none; }

        /* Yatay vitrin (.product-grid) — genişlik sadece burada; kategori grid’inde kart sıkışmasın */
        .product-grid .product-card {
            flex: 0 0 24.5%;
            max-width: 24.5%;
        }
        .product-card {
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Bella Maison vitrin kartı (2. referans görsel) */
        .product-card--bella {
            background: #fff;
            border: 1px solid #eaeaea;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.2s, transform 0.2s;
            min-height: 100%;
        }
        .product-card--bella:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        /* Sabit yükseklik: kırık / yavaş görselde şerit ve buton yeri kaymaz */
        .product-card-visual {
            position: relative;
            width: 100%;
            height: 270px;
            flex-shrink: 0;
            background: #eceff1;
            overflow: hidden;
        }
        .product-card-visual img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }
        .product-card-taksit-ribbon {
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 2;
            max-width: 90%;
            background: var(--pink);
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1.35;
            padding: 8px 12px 10px 10px;
            border-radius: 0 8px 0 0;
            text-transform: uppercase;
            pointer-events: none;
        }
        .product-card--bella .add-to-cart {
            position: absolute;
            bottom: 12px;
            right: 12px;
            z-index: 3;
            background: #fff;
            border: 1px solid #ddd;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            cursor: pointer;
            font-size: 15px;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
            padding: 0;
            margin: 0;
        }
        .product-card--bella .add-to-cart:hover {
            background: var(--light-gray);
            border-color: #ccc;
            color: var(--dark-blue);
        }
        .product-card--bella .product-card-fav {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 5;
            pointer-events: auto;
            background: #fff;
            border: 1px solid #ddd;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c0392b;
            cursor: pointer;
            font-size: 16px;
            padding: 0;
            margin: 0;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .product-card--bella .product-card-fav:hover,
        .product-card--bella .product-card-fav.is-favorite {
            background: #fff5f5;
            border-color: #f5c6cb;
            color: #c0392b;
        }
        .product-card-body {
            padding: 12px 14px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .pesin-taksit {
            background-color: #e3f2fd;
            color: #1565c0;
            font-size: 9px;
            font-weight: 700;
            padding: 4px 9px;
            border-radius: 999px;
            display: inline-block;
            align-self: flex-start;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .p-title--bella {
            font-size: 13px;
            font-weight: 700;
            color: #222;
            margin: 8px 0 10px;
            line-height: 1.4;
            min-height: 2.8em;
            max-height: 2.8em;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .product-price-panel {
            margin-top: auto;
            background: #f5f6f8;
            border-radius: 8px;
            padding: 10px 11px 11px;
        }
        .price-panel-liste {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 10px;
            font-size: 12px;
        }
        .price-panel-muted {
            color: #757575;
            font-size: 11px;
        }
        .price-strike {
            text-decoration: line-through;
            color: #9e9e9e;
            font-weight: 500;
            font-size: 12px;
            white-space: nowrap;
        }
        .price-panel-dash {
            border: none;
            border-top: 1px dashed #cfd8dc;
            margin: 8px 0 6px;
        }
        .price-panel-final-block {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 8px;
        }
        .price-panel-final-block--solo {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }
        .sepet-text {
            color: #e65100;
            font-size: 11px;
            font-weight: 700;
            line-height: 1.2;
            padding-bottom: 2px;
        }
        .final-price--bella {
            font-size: 20px;
            font-weight: 800;
            color: #00897b;
            letter-spacing: -0.02em;
            line-height: 1;
            white-space: nowrap;
        }

        /* Eski vitrin sınıfları (geri uyumluluk) */
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .product-badge-round {
            background-color: var(--dark-blue);
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 50px;
            text-transform: uppercase;
        }
        .product-badge-shipping {
            background-color: #27ae60;
            color: white;
            font-size: 10px;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 50px;
            text-transform: uppercase;
        }
        .badge-taksit {
            background-color: var(--pink);
            color: white;
            padding: 5px 10px;
            font-size: 11px;
            font-weight: bold;
            border-radius: 5px;
            text-transform: uppercase;
        }
        .p-info {
            border-top: 1px solid #eee;
            padding-top: 10px;
        }
        .p-title {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
            height: 32px;
            overflow: hidden;
            line-height: 1.4;
        }
        .price-details {
            font-size: 11px;
            color: #888;
            margin-bottom: 5px;
        }
        .price-details span {
            color: #333;
            font-weight: 600;
        }
        .discount-row {
            font-size: 11px;
            color: #444;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .discount-row span {
            color: var(--pink);
            font-weight: bold;
            font-size: 12px;
        }
        .final-price-row {
            display: flex;
            align-items: baseline;
            gap: 5px;
        }
        .final-price {
            font-size: 20px;
            font-weight: bold;
            color: #27ae60;
        }
        .final-price span {
            font-size: 14px;
            vertical-align: super;
        }

        /* Ürün Slider Geçiş Noktaları */
        .product-slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .product-slider-dots span {
            width: 8px;
            height: 8px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }
        .product-slider-dots span.active {
            background: var(--dark-blue);
        }

        /* --- MÜŞTERİ YORUMLARI --- */
        .reviews-section { padding: 50px 0; background: #fcfcfc; text-align: center; }
        .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
        .review-card { background: white; padding: 25px; border: 1px solid #eee; border-radius: 8px; text-align: left; transition: 0.3s; }
        .review-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05);}
        .stars { color: #f1c40f; margin-bottom: 10px; font-size: 12px; }
        .review-text { font-size: 13px; font-style: italic; color: #777; line-height: 1.5; }

        /* --- FOOTER --- */
        footer { background: var(--footer-bg); padding: 50px 0 20px; border-radius: 30px 30px 0 0; }
        .footer-flex { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 24px 20px; margin-top: 30px; border-top: 1px solid #ddd; padding-top: 30px; }
        .footer-flex--menu-db { align-items: start; }
        .footer-col h4 { font-size: 12px; margin-bottom: 15px; color: var(--dark-blue); text-transform: uppercase;}
        .footer-col li { font-size: 11px; color: #666; margin-bottom: 8px; cursor: pointer; }
        .footer-col li:hover { color: #000; }
        .footer-contact-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }

        /* --- MOBİL UYUM --- */
        @media (max-width: 992px) {
            .nav-toggle { display: flex; }
            .nav-bar.container {
                min-width: 0;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0 0 12px;
            }
            .nav-links.is-open {
                display: flex;
                width: 100%;
                min-width: 0;
            }
            .nav-links > li.nav-item {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                align-items: stretch;
                border-bottom: 1px solid #eee;
                padding: 12px 4px;
                min-width: 0;
                max-width: 100%;
            }
            .nav-links > li.nav-item > a {
                width: 100%;
                box-sizing: border-box;
            }
            .nav-links > li.has-mega .mega-menu {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }
            .mega-menu-inner {
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }
            .mega-col,
            .mega-col--wide {
                min-width: 0;
                max-width: 100%;
                overflow: hidden;
            }
            .mega-product-strip {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }
            .mega-product-pill {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;
                align-items: flex-start;
                gap: 8px;
                padding: 8px;
                overflow: hidden;
            }
            .mega-product-pill__img {
                width: 48px;
                height: 48px;
                flex-shrink: 0;
            }
            .mega-product-pill__meta {
                flex: 1 1 0;
                min-width: 0;
                max-width: 100%;
                overflow: hidden;
            }
            .mega-product-pill__name {
                word-break: break-word;
                overflow-wrap: anywhere;
            }
            .mega-product-pill__price {
                display: block;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .nav-links > li.nav-item:hover,
            .nav-links > li.nav-item:focus-within { box-shadow: none; }
            .mega-menu {
                position: static;
                display: none;
                padding-top: 12px;
                width: 100%;
            }
            .mega-menu::before {
                display: none;
            }
            .nav-links > li.has-mega:hover .mega-menu,
            .nav-links > li.has-mega:focus-within .mega-menu { display: none; }
            .nav-links > li.has-mega.mega-open .mega-menu { display: block; }
            .nav-links > li.has-mega.mega-open .nav-link__chevron i {
                transform: rotate(180deg);
            }
            .mega-menu-inner {
                border-radius: 8px;
                padding: 16px;
                box-shadow: none;
                border: 1px solid #eee;
            }
            .mega-grid {
                grid-template-columns: minmax(0, 1fr);
                gap: 20px;
                min-width: 0;
            }
            .campaign-section, .reviews-grid, .footer-flex { grid-template-columns: 1fr 1fr; }
            .product-grid .product-card { flex: 0 0 49%; max-width: 49%; } /* Mobilde 2 kart yan yana */
            .camp-card { flex-direction: column; height: auto; }
            .main-slider { height: 300px; }
        }
        @media (max-width: 600px) {
            .footer-flex { grid-template-columns: 1fr; }
            .product-grid .product-card { flex: 0 0 100%; max-width: 100%; } /* Çok küçük ekranda tam genişlik */
        }
    

/* Footer alt şerit */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 11px; color: #888; flex-wrap: wrap; gap: 10px; }
header .logo a { color: inherit; text-decoration: none; }

/* İç sayfalar */
.page-inner { padding-bottom: 50px; }
.breadcrumb { padding: 20px 0; font-size: 12px; color: #888; }
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: #333; }
.category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.category-header h1 { font-size: 24px; color: var(--dark-blue); }
.main-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 30px; }
.filter-side { background: white; border: 1px solid #eee; padding: 15px; border-radius: 8px; height: fit-content; }
.filter-side h4 { margin-bottom: 15px; font-size: 14px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.products-grid-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-grid-page--bella {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
    min-width: 0;
}
.products-grid-page .product-card {
    width: 100%;
    max-width: none;
    min-width: 0;
}
.category-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 1.75rem;
    padding: 0 8px;
}
.category-pagination__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #1a2a40;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.category-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 13px;
    text-decoration: none;
}
.category-pagination__link:hover { border-color: #1a2a40; color: #1a2a40; }
.product-card-page { border: 1px solid #eee; padding: 15px; border-radius: 10px; position: relative; cursor: pointer; }
.product-card-page img { width: 100%; height: 300px; object-fit: cover; border-radius: 5px; }
.product-card-page .badge { position: absolute; top: 10px; left: 10px; background: var(--pink); color: white; padding: 4px 8px; font-size: 10px; border-radius: 3px; }
.product-card-page .p-title { font-size: 13px; color: #555; margin: 10px 0; height: 35px; overflow: hidden; }
.product-card-page .p-price { font-size: 18px; font-weight: bold; color: var(--dark-blue); }
.product-card-page .p-old { text-decoration: line-through; color: #999; font-size: 12px; }
.product-card-page-fav {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: rgba(255,255,255,.95);
    color: #c0392b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.product-card-page-fav:hover,
.product-card-page-fav.is-favorite { background: #fff5f5; border-color: #f5c6cb; }

.product-detail-main { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-main img { width: 100%; border-radius: 10px; display: block; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-thumb {
    padding: 0; border: 2px solid #e0e0e0; border-radius: 8px; overflow: hidden;
    background: #fff; cursor: pointer; flex: 0 0 auto; width: 64px; height: 64px;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.is-active { border-color: var(--dark-blue); }
.gallery-thumb:hover { border-color: #999; }
.product-info-detail h1 { font-size: 24px; color: var(--dark-blue); margin-bottom: 15px; }
.price-box { background: #fcfcfc; padding: 20px; border-radius: 8px; margin: 20px 0; display: flex; gap: 20px; align-items: center; }
.current-price { font-size: 28px; font-weight: bold; color: #27ae60; }
.option-group { margin-bottom: 20px; }
.option-group label { display: block; font-weight: bold; font-size: 13px; margin-bottom: 8px; }
.size-box { display: inline-block; padding: 10px 20px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; margin-right: 10px; font-size: 13px; }
.size-box.active { border-color: var(--dark-blue); background: var(--dark-blue); color: white; }
.btn-add { background: var(--dark-blue); color: white; padding: 15px 40px; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; width: 100%; transition: 0.3s; }
.btn-add:hover { opacity: 0.9; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; margin-top: 1rem; }
.product-detail-cart-form { flex: 1 1 220px; display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.product-detail-qty-label { display: block; width: 100%; font-size: 12px; margin-bottom: 4px; }
.product-detail-qty-input { max-width: 120px; padding: 8px; border: 1px solid #ddd; border-radius: 4px; }
.product-detail-cart-form .btn-add { width: auto; flex: 1 1 160px; min-width: 140px; }
.btn-fav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-fav:hover { background: #fafafa; border-color: #ccc; }
.btn-fav.is-favorite { border-color: #f5c6cb; background: #fff8f8; color: #c0392b; }
.btn-fav .btn-fav-text { font-size: 13px; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.specs-table td { padding: 12px; border: 1px solid #eee; font-size: 13px; }
.specs-table td:first-child { background: #fafafa; font-weight: bold; width: 30%; }

.product-detail-tabs-wrap {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}
.product-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}
.product-tabs__tab {
    position: relative;
    padding: 12px 22px;
    margin-bottom: -2px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px 8px 0 0;
    transition: color 0.15s, background 0.15s;
}
.product-tabs__tab:hover { color: #111; background: #f5f6f8; }
.product-tabs__tab.is-active {
    color: var(--dark-blue);
    border-bottom-color: var(--dark-blue);
    background: #fafbfc;
}
.product-tabs__panel { outline: none; min-height: 120px; }
.product-tabs__panel[hidden] { display: none !important; }
.cart-page-title { font-size: 1.35rem; color: #1a2a40; margin-bottom: 0.5rem; }
.cart-page-title__meta { font-size: 1rem; font-weight: 500; color: #555; }
.product-detail-prose {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    max-width: 900px;
}
.product-detail-muted { margin-bottom: 16px; }
.product-detail-form-title {
    font-size: 16px;
    font-weight: 700;
    margin: 28px 0 8px;
    color: #222;
}
.product-review-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.product-review-card {
    background: #fafbfc;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px 18px;
}
.product-review-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 8px;
    font-size: 13px;
}
.product-review-card__name { color: #111; }
.product-review-card__stars { color: #f4b400; letter-spacing: 1px; }
.product-review-card__date { margin-left: auto; color: #888; font-size: 12px; }
.product-review-card__text { margin: 0; font-size: 14px; line-height: 1.6; color: #444; }
.product-review-form { max-width: 520px; margin-top: 8px; }
.product-review-form__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-top: 12px;
    margin-bottom: 6px;
}
.product-review-form__label:first-of-type { margin-top: 0; }
.product-review-form__input,
.product-review-form__textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.product-review-form__textarea { resize: vertical; min-height: 100px; }
.product-review-form__submit {
    margin-top: 16px;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    background: var(--dark-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.product-review-form__submit:hover { filter: brightness(1.06); }

.cart-layout { max-width: 1200px; margin: 40px auto; display: grid; grid-template-columns: 1fr 350px; gap: 30px; padding: 0 15px; }
.cart-recent-banner {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #c8e6c9;
    background: linear-gradient(135deg, #f1f8f4 0%, #fff 100%);
    box-shadow: 0 2px 12px rgba(39, 174, 96, 0.08);
}
.cart-recent-banner__icon { color: #27ae60; font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.cart-recent-banner__title { display: block; font-size: 15px; color: #1e4620; margin-bottom: 10px; }
.cart-recent-list { list-style: none; margin: 0; padding: 0; }
.cart-recent-item + .cart-recent-item { margin-top: 8px; }
.cart-recent-item__link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 6px 0;
    border-radius: 8px;
    transition: background 0.15s;
}
.cart-recent-item__link:hover { background: rgba(255,255,255,.7); }
.cart-recent-item__img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; border: 1px solid #e0e0e0; }
.cart-recent-item__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-recent-item__name { font-size: 13px; font-weight: 600; color: #222; line-height: 1.3; }
.cart-recent-item__qty { font-size: 12px; font-weight: 700; color: #27ae60; }
.cart-items { background: white; padding: 20px; border-radius: 8px; }
.cart-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid #eee; }
.cart-item img { width: 100px; height: 100px; object-fit: cover; }
.summary { background: white; padding: 20px; border: 1px solid #eee; border-radius: 8px; height: fit-content; }
.summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.btn-confirm { width: 100%; background: var(--dark-blue); color: white; padding: 15px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.coupon-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; grid-column: span 2; }
.coupon-card { border: 1px solid #ddd; padding: 20px; border-radius: 8px; text-align: center; }

.payment-wrap { max-width: 800px; margin: 50px auto; background: white; padding: 40px; border-radius: 12px; }
.form-group-pay { margin-bottom: 20px; }
.form-group-pay label { display: block; margin-bottom: 8px; font-weight: bold; font-size: 13px; }
.form-group-pay input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
.btn-pay { background: var(--dark-blue); color: white; width: 100%; padding: 15px; border: none; cursor: pointer; border-radius: 4px; font-weight: bold; margin-top: 20px; }
#iban-section { display: none; text-align: center; }
.iban-box { background: #f0f7ff; padding: 20px; border: 2px dashed var(--dark-blue); margin: 20px 0; border-radius: 8px; }

/* Ödeme — sepet ile aynı cart-layout */
.cart-layout--checkout { align-items: start; }
.checkout-alert {
    background: #fdecea;
    color: #c0392b;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 0;
    font-size: 14px;
}
.checkout-lead { font-size: 14px; color: #666; line-height: 1.5; margin: 0 0 20px; }
.checkout-block-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.checkout-iban-panel {
    margin: 18px 0 8px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.checkout-iban-panel__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.checkout-iban-panel__hint { font-size: 12px; color: #64748b; margin: 0 0 10px; line-height: 1.4; }
.checkout-iban-line { font-size: 13px; margin: 0 0 6px; color: #333; }
.checkout-iban-line--iban { margin-top: 10px; }
.btn-iban-copy {
    margin-top: 12px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--dark-blue);
    background: #fff;
    color: var(--dark-blue);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.btn-iban-copy:hover { background: #f0f4f8; }
.btn-iban-copy--dark {
    background: var(--dark-blue);
    color: #fff;
    border-color: var(--dark-blue);
}
.btn-iban-copy--dark:hover { filter: brightness(1.06); }
.checkout-submit-hint { font-size: 11px; color: #888; margin: 10px 0 0; text-align: center; line-height: 1.35; }
.checkout-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e4620;
    margin-bottom: 10px;
}
.checkout-success-badge i { color: #27ae60; font-size: 18px; }
.checkout-next-title { font-size: 16px; font-weight: 700; color: #1a2a40; margin: 24px 0 8px; }
.checkout-next-text { font-size: 14px; color: #555; margin: 0 0 14px; line-height: 1.5; }
.text-muted-checkout { color: #888; font-size: 14px; }
.text-muted-checkout a { color: var(--dark-blue); text-decoration: underline; }
.form-group-pay .req { color: #c0392b; font-weight: 700; }
.form-group-pay textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.45;
    resize: vertical;
    min-height: 100px;
}
.summary-cart-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    margin-bottom: 18px;
}
.summary-cart-block__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 12px;
}
.summary-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 14px;
}
.summary-line-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
.summary-line-item:last-of-type { border-bottom: none; }
.summary-line-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
}
.summary-line-item__body { flex: 1; min-width: 0; }
.summary-line-item__name { font-size: 13px; font-weight: 600; margin: 0 0 4px; line-height: 1.35; color: #222; }
.summary-line-item__meta { font-size: 12px; color: #666; margin: 0; }
.summary-line-item__price { font-size: 13px; font-weight: 700; color: #27ae60; flex-shrink: 0; white-space: nowrap; }
.summary-cart-edit { margin: 12px 0 0; font-size: 13px; }
.summary-cart-edit a { color: var(--dark-blue); text-decoration: underline; }
.summary-hr { border: none; border-top: 1px solid #eee; margin: 16px 0; }
.summary-row--free { color: #27ae60; font-weight: 600; }
.summary-row--total { font-weight: 700; font-size: 1.1rem; margin-top: 4px; }
.summary-hint { font-size: 11px; color: #27ae60; margin: -6px 0 10px; line-height: 1.35; }
.summary-hint--muted { color: #888; }
.checkout-terms-wrap { margin: 18px 0 12px; }
.checkout-terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.45;
    color: #444;
    cursor: pointer;
}
.checkout-terms input { margin-top: 3px; flex-shrink: 0; }
.checkout-terms a { color: var(--dark-blue); text-decoration: underline; }
.checkout-submit { margin-top: 4px; }
.checkout-success-title { color: #1e4620; }
.checkout-success-lead { font-size: 15px; color: #333; line-height: 1.55; margin-bottom: 14px; }
.checkout-order-num { font-size: 15px; margin-bottom: 12px; }
.iban-box--checkout { text-align: left; }
.iban-monospace { font-family: ui-monospace, monospace; font-size: 13px; word-break: break-all; }
.checkout-dekont-btn { display: block; text-align: center; text-decoration: none; margin-top: 16px; box-sizing: border-box; }
.checkout-after-links { margin-top: 20px; font-size: 14px; }
.checkout-after-links a { color: var(--dark-blue); text-decoration: underline; }
.checkout-success-card p { line-height: 1.6; color: #555; margin-bottom: 12px; }

.static-layout { max-width: 1200px; margin: 40px auto; display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 0 15px; }
.static-sidebar { background: #fdfdfd; border-radius: 8px; height: fit-content; }
.static-sidebar a { display: block; padding: 15px 20px; color: #333; text-decoration: none; border-bottom: 1px solid #eee; font-size: 14px; }
.static-sidebar a.active { background: #f0f0f0; font-weight: bold; border-left: 4px solid #1a2a40; }
.static-content h1 { font-size: 28px; margin-bottom: 20px; }
.static-content p { line-height: 1.8; color: #555; margin-bottom: 20px; }
.static-content img { width: 100%; border-radius: 8px; margin: 20px 0; }

.dekont-center { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 15px; }
.upload-card { background: white; padding: 40px; border-radius: 12px; text-align: center; max-width: 400px; width: 100%; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.file-input { margin: 20px 0; }
.btn-finish { background: #27ae60; color: white; padding: 12px 30px; border: none; border-radius: 4px; cursor: pointer; }

.bg-light-page { background: #f8f8f8; }
.text-muted { color: #6c757d; }
.text-danger { color: #c0392b; }
.mb-3 { margin-bottom: 1rem; }

/* Alışveriş modu modalı */
.modal-panel--shopping-choice { max-width: 480px; }
.shopping-choice-intro { margin-bottom: 20px !important; }
.shopping-choice-actions { display: flex; flex-direction: column; gap: 12px; }
.shopping-choice-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.shopping-choice-btn i { font-size: 18px; margin-bottom: 4px; }
.shopping-choice-btn__t { font-size: 15px; font-weight: 700; color: #1a2a40; }
.shopping-choice-btn__d { font-size: 12px; color: #666; font-weight: 400; line-height: 1.4; }
.shopping-choice-btn--member { border-color: #c5e3e4; background: linear-gradient(180deg, #f8fdfd 0%, #fff 100%); }
.shopping-choice-btn--member i { color: #1a6b6e; }
.shopping-choice-btn--guest { border-color: #e0e0e0; }
.shopping-choice-btn--guest i { color: var(--dark-blue); }
.shopping-choice-btn:hover {
    border-color: var(--dark-blue);
    box-shadow: 0 4px 14px rgba(26, 42, 64, 0.08);
}

/* Dekont yükleme sayfası */
.receipt-page { padding: 32px 0 60px; min-height: 55vh; }
.receipt-page-inner { max-width: 640px; margin: 0 auto; }
.receipt-hero {
    text-align: center;
    margin-bottom: 28px;
}
.receipt-hero__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a6b6e;
}
.receipt-hero__title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a2a40;
    margin: 0 0 10px;
}
.receipt-hero__lead { font-size: 15px; color: #555; line-height: 1.55; margin: 0; max-width: 420px; margin-left: auto; margin-right: auto; }
.receipt-order-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f0f7ff;
    border: 1px solid #d0e3f7;
    margin-bottom: 20px;
}
.receipt-order-chip__label { font-size: 12px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.04em; }
.receipt-order-chip__val { font-size: 1.1rem; font-weight: 800; color: var(--dark-blue); }
.receipt-hint { font-size: 13px; margin-bottom: 16px; }
.receipt-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    padding: 28px 24px 32px;
}
.receipt-form { margin: 0; }
.receipt-label { display: block; font-size: 12px; font-weight: 600; color: #444; margin-bottom: 8px; margin-top: 16px; }
.receipt-label:first-of-type { margin-top: 0; }
.receipt-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}
.receipt-dropzone {
    position: relative;
    border: 2px dashed #c5c5c5;
    border-radius: 12px;
    background: #fafbfc;
    transition: border-color 0.2s, background 0.2s;
}
.receipt-dropzone.is-drag { border-color: var(--dark-blue); background: #f5f9fc; }
.receipt-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.receipt-dropzone__inner {
    padding: 32px 20px;
    text-align: center;
    pointer-events: none;
}
.receipt-dropzone__ico { font-size: 36px; color: #90a4ae; display: block; margin-bottom: 10px; }
.receipt-dropzone__text { display: block; font-size: 14px; color: #333; margin-bottom: 6px; }
.receipt-dropzone__sub { font-size: 12px; color: #888; }
.receipt-file-name {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a6b6e;
    padding: 0 12px 16px;
    margin: 0;
}
.receipt-tips {
    margin: 20px 0 0;
    padding-left: 1.2rem;
    font-size: 12px;
    color: #666;
    line-height: 1.55;
}
.receipt-tips li { margin-bottom: 6px; }
.receipt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.receipt-btn--primary { background: var(--dark-blue); color: #fff; }
.receipt-btn--primary:hover { filter: brightness(1.06); }
.receipt-btn--wa {
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.receipt-btn--wa:hover { filter: brightness(1.05); color: #fff; }
.receipt-btn--inline { width: auto; padding-left: 22px; padding-right: 22px; }
.receipt-btn--ghost { background: #fff; color: #333; border: 1px solid #ddd; }
.receipt-btn--ghost:hover { background: #f8f8f8; }
.receipt-btn--block { width: 100%; margin-top: 20px; }
.receipt-wa-stack {
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid #eceff1;
    text-align: center;
}
.receipt-wa-stack__hint {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 14px;
    line-height: 1.5;
}
.receipt-btn--wa-full {
    width: 100%;
    margin-top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}
.receipt-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.receipt-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.receipt-alert i { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.receipt-alert--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.receipt-alert--danger { background: #ffebee; color: #b71c1c; border: 1px solid #ffcdd2; }
.receipt-footnote { text-align: center; margin-top: 24px; font-size: 13px; }
.receipt-footnote a { color: var(--dark-blue); }

/* Sağ altta ayrı yüzen iletişim butonları (sekme/panel yok) */
.store-float-fabs {
    position: fixed;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    z-index: 4800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    box-sizing: border-box;
    pointer-events: none;
}
.store-float-fabs > * {
    pointer-events: auto;
}
.store-float-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}
.store-float-fab:hover {
    transform: scale(1.07);
    color: #fff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}
.store-float-fab:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.store-float-fab--wa { background: #25d366; font-size: 26px; }
.store-float-fab--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); font-size: 24px; }
.store-float-fab--fb { background: #1877f2; font-size: 22px; }
.store-float-fab--pin { background: #bd081c; font-size: 22px; }
.store-float-fab--track { background: var(--dark-blue); font-size: 19px; }

@media (max-width: 768px) {
    .main-layout { grid-template-columns: 1fr; }
    .products-grid-page { grid-template-columns: 1fr 1fr; }
    .product-detail-main { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .coupon-cards { grid-column: span 1; grid-template-columns: 1fr; }
    .static-layout { grid-template-columns: 1fr; }
}
