/* ECommerce Storefront - Toast & overrides */

/* ===== Kaydırma çubukları: gizli ama kaydırma çalışır ===== */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar { width: 0; height: 0; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: transparent; }
/* perfect-scrollbar rayları da gizli */
.ps__rail-x,
.ps__rail-y,
.ps__thumb-x,
.ps__thumb-y {
    opacity: 0 !important;
    display: none !important;
}
/* Tam genişlik bölümler yatay kaydırma oluşturmasın (sticky'yi bozmayan clip) */
body {
    overflow-x: clip;
}

/* ===== Site logo (Firma Ayarlari: 200-400 x 50-80 px) ===== */
.site-logo {
    width: auto;
    object-fit: contain;
    display: block;
}
.site-logo--header {
    height: 80px;
    max-width: 400px;
}
.site-logo--footer {
    height: 60px;
    max-width: 320px;
}
.site-logo--mobile {
    height: 48px;
    max-width: 220px;
}
.site-logo--mobile-menu {
    height: 44px;
    max-width: 200px;
}
.site-logo--sticky {
    height: 44px;
    max-width: 180px;
}
.site-logo--auth {
    height: 72px;
    max-width: 360px;
}
.logo.logo-width-1 a img.site-logo,
.logo.logo-width-1 a img.site-logo--header {
    width: auto !important;
    min-width: 0 !important;
    max-width: 400px !important;
    height: 80px !important;
}
/* Yüklenen logo 693x351 gibi büyük geliyor; fazla küçültmek netliği bozuyordu */
.ec-footer__logo img.site-logo,
.ec-footer__logo img.site-logo--footer {
    width: auto !important;
    min-width: 0 !important;
    max-width: 260px !important;
    height: 54px !important;
}

/* ===== MOBILE UI ===== */

/* -- Top bar: logo left + search same height -- */
.mob-top {
    position: sticky; top: 0; z-index: 990; background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); padding: 6px 10px;
    display: flex; align-items: center; gap: 8px;
}
.mob-top-logo {
    flex-shrink: 0; display: flex; align-items: center; height: 48px;
}
.mob-top-logo img {
    height: 48px; width: auto; max-width: 220px; object-fit: contain; display: block;
}
.mob-top-search { flex: 1; min-width: 0; display: flex; align-items: center; height: 36px; }
.mob-top-search form {
    display: flex; align-items: center; background: #f4f6fa; border-radius: 8px;
    padding: 0 10px; border: 1.5px solid #ececec; transition: border-color .15s;
    height: 36px; width: 100%;
}
.mob-top-search form:focus-within { border-color: var(--store-primary, #C99710); background: #fff; }
.mob-top-search i { color: #aaa; font-size: 13px; flex-shrink: 0; }
.mob-top-search input {
    flex: 1; border: none; background: transparent; padding: 0 6px;
    font-size: 13px; outline: none; color: #253d4e; height: 100%;
}
.mob-top-search input::placeholder { color: #b0b0b0; font-size: 12px; }

/* -- Bottom Tab Bar -- */
.mob-tab-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 991;
    background: #fff; border-top: 1px solid #ececec;
    display: flex; align-items: stretch; justify-content: space-around;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    height: calc(56px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
.mob-tab {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; text-decoration: none; color: #7e7e7e; font-size: 10px; font-weight: 500;
    background: none; border: none; cursor: pointer; position: relative; padding: 4px 0;
    -webkit-tap-highlight-color: transparent;
}
.mob-tab i { font-size: 18px; line-height: 1; }
.mob-tab span { line-height: 1; }
.mob-tab.active, .mob-tab:active { color: var(--store-primary, #C99710); }
.mob-tab-badge {
    position: absolute; top: 4px; right: calc(50% - 16px); min-width: 14px; height: 14px;
    background: #ff4d4f; color: #fff; font-size: 8px; font-weight: 700;
    border-radius: 7px; display: none; align-items: center; justify-content: center; padding: 0 3px;
}
.mob-tab-search { flex: 0 0 auto; width: 56px; }
.mob-tab-search-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--store-primary, #C99710), var(--store-accent, #8B2E3F));
    display: flex; align-items: center; justify-content: center;
    margin-top: -14px; box-shadow: 0 2px 8px rgba(184,145,46,0.35);
}
.mob-tab-search-circle i { color: #fff; font-size: 18px; }

/* -- Overlay -- */
.mob-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9998;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.mob-overlay.open { opacity: 1; visibility: visible; }

/* -- Side Menu -- */
.mob-side-menu {
    position: fixed; top: 0; left: -310px; width: 300px; height: 100%;
    background: #fff; z-index: 9999; display: flex; flex-direction: column;
    transition: left .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
.mob-side-menu.open { left: 0; }
.mob-side-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
}
.mob-side-header img { height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.mob-side-header button { background: none; border: none; font-size: 16px; color: #999; cursor: pointer; padding: 4px; }
.mob-side-body { flex: 1; overflow-y: auto; padding: 6px 0; }
.mob-side-section { padding: 0 14px; margin-bottom: 6px; }
.mob-side-title {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.6px; color: #b0b0b0; margin: 8px 0 6px; padding-left: 2px;
}

/* Category grid inside side menu */
.mob-cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.mob-cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    text-decoration: none; color: #4f5d77; padding: 10px 4px;
    border-radius: 10px; border: 1px solid #f0f0f0; background: #fafbfc;
    transition: all .15s; text-align: center; position: relative;
}
.mob-cat-card:active, .mob-cat-card:hover { border-color: var(--store-primary, #C99710); background: #fbf7f1; color: var(--store-primary, #C99710); }
.mob-cat-card-icon {
    width: 40px; height: 40px; border-radius: 10px; background: #f4f6fa;
    display: flex; align-items: center; justify-content: center;
}
.mob-cat-card-icon img { width: 26px; height: 26px; object-fit: contain; }
.mob-cat-card span { font-size: 11px; font-weight: 500; line-height: 1.2; }
.mob-cat-card-count {
    position: absolute; top: 4px; right: 4px; font-size: 9px; font-weight: 600;
    background: rgba(184,145,46,0.12); color: var(--store-primary, #C99710); padding: 1px 4px; border-radius: 6px;
}

/* Nav list inside side menu */
.mob-nav-list { list-style: none; padding: 0; margin: 0; }
.mob-nav-list li a {
    display: flex; align-items: center; gap: 8px; padding: 8px 6px;
    color: #4f5d77; font-size: 13px; font-weight: 500; text-decoration: none;
    border-radius: 6px; transition: background .15s;
}
.mob-nav-list li a:hover, .mob-nav-list li a:active { background: #fbf7f1; color: var(--store-primary, #C99710); }
.mob-nav-list li a i { font-size: 13px; width: 18px; text-align: center; opacity: 0.5; flex-shrink: 0; }
.mob-side-footer {
    padding: 10px 16px; border-top: 1px solid #f0f0f0;
    display: flex; align-items: center; gap: 6px; font-size: 12px; color: #999;
}

/* -- Responsive visibility -- */
@media (min-width: 992px) {
    .mob-top, .mob-tab-bar, .mob-side-menu, .mob-overlay { display: none !important; }
}
@media (max-width: 991px) {
    .header-area,
    .header-area .header-bottom,
    .header-area .header-main { display: none !important; min-height: 0 !important; height: 0 !important; border: none !important; overflow: hidden !important; padding: 0 !important; margin: 0 !important; }
    main.main {
        min-height: calc(100vh - 120px);
        /* alt tab barin ustune icerik binmesin */
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    body {
        padding-bottom: 0;
    }
    body.cookie-consent-banner-visible {
        padding-bottom: 0;
    }
    .ec-footer {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    /* Mobil tab bar footer'ın üstüne binsin; altta beyaz boşluk olmasın */
    .ec-footer__bar {
        padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }
    .ec-footer__bar-inner {
        padding-left: 0;
        padding-right: 0;
    }
    .home-slider { margin-bottom: 8px !important; margin-top: 0 !important; padding-top: 0 !important; }
    .home-slider .home-slide-cover,
    .home-slider .home-slide-cover.mt-30,
    .home-slider .container { margin-top: 0 !important; padding-top: 0 !important; }
    .home-slider .hero-slider-1 { border-radius: 0 !important; }
    .section-padding { padding-top: 6px !important; padding-bottom: 14px !important; }
    .section-padding.pt-25, .section-padding.pt-15, .section-padding.pt-20 { padding-top: 4px !important; }
    .page-header.breadcrumb-wrap { margin-bottom: 4px !important; padding: 4px 0 !important; }
    .mb-30 { margin-bottom: 8px !important; }
    .home-slider + .section-padding { padding-top: 0 !important; }
    .section-title h3 { font-size: 16px !important; }
    /* Ürün kartları - mobil 2'li grid optimizasyonu (col-6) */
    .col-6 .product-cart-wrap { margin-bottom: 10px !important; }
    .col-6 .product-cart-wrap .product-content-wrap { padding: 8px 10px 10px !important; }
    .col-6 .product-cart-wrap .product-content-wrap h2 { font-size: 12px !important; line-height: 1.3 !important; margin-bottom: 4px !important; }
    .col-6 .product-cart-wrap .product-content-wrap h2 a { font-size: 12px !important; }
    .col-6 .product-cart-wrap .product-category a { font-size: 10px !important; }
    .col-6 .product-cart-wrap .product-card-bottom { flex-wrap: nowrap !important; align-items: center !important; }
    .col-6 .product-cart-wrap .product-price { display: flex !important; align-items: baseline !important; gap: 4px !important; flex-wrap: nowrap !important; }
    .col-6 .product-cart-wrap .product-price span { font-size: 13px !important; white-space: nowrap !important; }
    .col-6 .product-cart-wrap .product-price .old-price { font-size: 10px !important; }
    .col-6 .product-cart-wrap .add-cart .add { width: 30px !important; height: 30px !important; line-height: 30px !important; }
    .col-6 .product-cart-wrap .add-cart .add i { font-size: 12px !important; }
    .col-6 .product-badges span { font-size: 10px !important; padding: 2px 8px !important; }
}

/* ===== Search Results Page ===== */
.search-results-form {
    display: flex; gap: 8px; max-width: 600px;
}
.search-input-wrap {
    flex: 1; display: flex; align-items: center; background: #f4f6fa;
    border: 2px solid #e8e8e8; border-radius: 10px; padding: 0 12px;
    transition: border-color .2s, background .2s;
}
.search-input-wrap:focus-within {
    border-color: var(--store-primary, #C99710); background: #fff;
}
.search-input-wrap i { color: var(--store-primary, #C99710); font-size: 15px; flex-shrink: 0; }
.search-input-wrap input {
    flex: 1; border: none; background: transparent; padding: 10px 8px;
    font-size: 14px; outline: none; color: #253d4e;
}
.search-input-wrap input::placeholder { color: #b0b0b0; }
.search-clear {
    color: #999; font-size: 14px; padding: 4px; display: flex;
    align-items: center; text-decoration: none;
}
.search-clear:hover { color: #666; }
.search-results-form button {
    padding: 10px 20px; background: var(--store-primary, #C99710); color: #fff; border: none;
    border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer;
    white-space: nowrap; transition: background .15s;
}
.search-results-form button:hover { background: #2fa06b; }
@media (max-width: 767px) {
    .search-results-header { margin-top: 4px; }
    .search-results-form { max-width: 100%; }
    .search-results-form button { padding: 10px 14px; font-size: 13px; }
    .search-input-wrap input { font-size: 13px; padding: 9px 6px; }
}

/* ===== MOBILE FILTER BAR & SHEETS ===== */
.mob-filter-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; margin-bottom: 12px; border-bottom: 1px solid #f0f0f0;
}
.mob-filter-info { font-size: 12px; color: #7e7e7e; }
.mob-filter-actions { display: flex; gap: 8px; }
.mob-filter-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 12px; border: 1px solid #e0e0e0; border-radius: 20px;
    background: #fff; font-size: 12px; font-weight: 500; color: #4f5d77;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.mob-filter-btn:active { background: #f4f6fa; }
.mob-filter-btn i { font-size: 12px; color: var(--store-primary, #C99710); }
.mob-filter-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; border-radius: 50%; background: var(--store-primary, #C99710);
    color: #fff; font-size: 9px; font-weight: 700;
}

/* Sheet overlay */
.mob-sheet-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 10000;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.mob-sheet-overlay.open { opacity: 1; visibility: visible; }

/* Full-screen sheet */
.mob-sheet {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background: #fff; z-index: 10001; display: flex; flex-direction: column;
    transition: right .3s cubic-bezier(.4,0,.2,1);
}
.mob-sheet.open { right: 0; }
.mob-sheet.mob-sheet-sm { width: 100%; max-width: 340px; right: -340px; }
.mob-sheet.mob-sheet-sm.open { right: 0; }
.mob-sheet-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
}
.mob-sheet-header h6 { margin: 0; font-size: 16px; font-weight: 700; color: #253d4e; }
.mob-sheet-close {
    background: none; border: none; font-size: 14px; color: #999; cursor: pointer; padding: 4px;
}
.mob-sheet-body { flex: 1; overflow-y: auto; padding: 12px 16px; }
.mob-sheet-section { margin-bottom: 16px; }
.mob-sheet-label { font-size: 12px; font-weight: 700; color: #253d4e; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.mob-sheet-select { border-radius: 8px; font-size: 13px; }

/* Category chips inside filter sheet */
.mob-sheet-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mob-sheet-chip {
    padding: 5px 12px; border-radius: 16px; font-size: 12px; font-weight: 500;
    color: #4f5d77; background: #f4f6fa; border: 1px solid transparent;
    text-decoration: none; white-space: nowrap; transition: all .15s;
}
.mob-sheet-chip:active, .mob-sheet-chip.active {
    background: #f5efe3; border-color: var(--store-primary, #C99710); color: var(--store-primary, #C99710);
}
.mob-sheet-chip small { font-size: 10px; opacity: 0.7; }

/* Toggle switch */
.mob-sheet-toggle {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: #4f5d77; cursor: pointer;
}
.mob-sheet-toggle input { display: none; }
.mob-toggle-slider {
    width: 40px; height: 22px; border-radius: 11px; background: #ddd;
    position: relative; transition: background .2s; flex-shrink: 0;
}
.mob-toggle-slider::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px; border-radius: 50%; background: #fff;
    transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.mob-sheet-toggle input:checked + .mob-toggle-slider { background: var(--store-primary, #C99710); }
.mob-sheet-toggle input:checked + .mob-toggle-slider::after { transform: translateX(18px); }

/* Sheet footer */
.mob-sheet-footer {
    display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid #f0f0f0;
    background: #fff;
}
.mob-sheet-footer-btn {
    flex: 1; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 600;
    text-align: center; cursor: pointer; text-decoration: none; border: none;
}
.mob-sheet-footer-apply { background: var(--store-primary, #C99710); color: #fff; }
.mob-sheet-footer-apply:active { background: #2fa06b; }
.mob-sheet-footer-clear {
    background: #fff; color: #666; border: 1px solid #e0e0e0;
    display: flex; align-items: center; justify-content: center;
}

/* Sort list */
.mob-sort-list { display: flex; flex-direction: column; }
.mob-sort-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 4px; border-bottom: 1px solid #f8f8f8; font-size: 14px;
    color: #4f5d77; text-decoration: none; font-weight: 500;
}
.mob-sort-item:last-child { border-bottom: none; }
.mob-sort-item.active { color: var(--store-primary, #C99710); font-weight: 600; }
.mob-sort-item:active { background: #f9fafb; }

/* Desktop'ta mobil filter bar gizle */
@media (min-width: 768px) {
    .mob-filter-bar, .mob-sheet, .mob-sheet-overlay { display: none !important; }
}

/* ===== MOBILE CART CARDS ===== */
.mob-cart-card {
    display: flex; gap: 12px; padding: 12px;
    background: #fff; border: 1px solid #f0f0f0; border-radius: 12px;
    margin-bottom: 10px;
}
.mob-cart-img {
    flex-shrink: 0; width: 80px; height: 80px; border-radius: 8px;
    overflow: hidden; background: #f9f9f9;
}
.mob-cart-img img { width: 80px; height: 80px; object-fit: cover; }
.mob-cart-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.mob-cart-name {
    font-size: 13px; font-weight: 600; color: #253d4e; text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.3;
}
.mob-cart-variant { font-size: 11px; color: #999; }
.mob-cart-price { display: flex; align-items: center; gap: 6px; font-size: 14px; margin-top: 2px; }
.mob-cart-price del { font-size: 11px; }
.mob-cart-actions { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.mob-cart-qty-form { display: inline-flex; }
.mob-cart-qty {
    display: inline-flex; align-items: center; border: 1px solid #e8e8e8; border-radius: 8px;
    overflow: hidden; height: 30px;
}
.mob-qty-btn {
    width: 30px; height: 30px; background: #f9f9f9; border: none; font-size: 16px;
    color: #555; cursor: pointer; display: flex; align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
}
.mob-qty-btn:active { background: #e8e8e8; }
.mob-cart-qty input {
    width: 32px; height: 30px; text-align: center; border: none; border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8; font-size: 13px; font-weight: 600; background: #fff;
    -moz-appearance: textfield; outline: none;
}
.mob-cart-qty input::-webkit-outer-spin-button,
.mob-cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mob-cart-remove {
    width: 30px; height: 30px; border-radius: 8px; border: 1px solid #fee; background: #fff;
    color: #e74c3c; display: flex; align-items: center; justify-content: center; cursor: pointer;
    font-size: 13px; transition: background .15s;
}
.mob-cart-remove:active { background: #fee; }

/* Toast notification - sağ üst, şeffaf baloncuk */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-bubble {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: toastSlideIn 0.3s ease;
    max-width: 320px;
}

.toast-bubble.success {
    background: rgba(34, 197, 94, 0.85);
    color: #fff;
    backdrop-filter: blur(8px);
}

.toast-bubble.error {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
    backdrop-filter: blur(8px);
}

.toast-bubble.info {
    background: rgba(59, 130, 246, 0.85);
    color: #fff;
    backdrop-filter: blur(8px);
}

.toast-bubble.warning {
    background: rgba(245, 158, 11, 0.85);
    color: #fff;
    backdrop-filter: blur(8px);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Ürün detayındaki "İndirim" etiketi tema aksan rengini kullanır (tema dışı kırmızı yerine) */
.detail-info .stock-status.out-stock {
    background: #f6e8ea;
    background: color-mix(in srgb, var(--store-accent, #8B2E3F) 12%, #fff);
    color: var(--store-accent, #8B2E3F);
    border: none;
}

/* ===== Anasayfa 3'lu banner — yan yana (tema full-width ezmesin) ===== */
.esc-home-banners .row {
    display: flex;
    flex-wrap: wrap;
}
.esc-home-banners .col-lg-4,
.theme-banner-full-width .esc-home-banners .col-lg-4,
.theme-banner-grid .esc-home-banners .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
}
.esc-home-banners .banner-img {
    height: 100%;
    margin-bottom: 0 !important;
}
.esc-home-banners .banner-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}
.esc-home-banners .banner-text h4 {
    font-size: 18px;
    line-height: 1.3;
}
@media (max-width: 991.98px) {
    .esc-home-banners .col-lg-4,
    .theme-banner-full-width .esc-home-banners .col-lg-4,
    .theme-banner-grid .esc-home-banners .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
    }
    .esc-home-banners .banner-img img { height: 160px; }
    .esc-home-banners .banner-text h4 { font-size: 14px; }
}
@media (max-width: 575.98px) {
    .esc-home-banners .col-lg-4,
    .theme-banner-full-width .esc-home-banners .col-lg-4,
    .theme-banner-grid .esc-home-banners .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .esc-home-banners .banner-img img { height: 180px; }
}

/* ===== Koku Dunyamiz — yuvarlak kategori sirasi (slider alti) ===== */
.esc-cat-circles {
    padding: 16px 0 12px;
    margin-top: 0;
    background: linear-gradient(180deg, #fbf7f1 0%, #ffffff 55%);
    border-bottom: 1px solid rgba(42, 26, 18, 0.05);
    overflow: visible;
}
.esc-cat-circles > .container {
    max-width: 100%;
    overflow: visible;
}
.esc-cat-circles__row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 10px;
    /* flex:1 sıkıştırmasın; 6. öğe kaydırılarak gelsin */
    width: 100%;
    max-width: 100%;
}
.esc-cat-circles__row::-webkit-scrollbar { display: none; }
.esc-cat-circle {
    flex: 0 0 auto;
    width: 112px;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    color: var(--store-secondary, #2A1A12);
    gap: 10px;
    transition: transform .25s ease, color .2s ease;
}
.esc-cat-circle:hover {
    color: var(--store-primary, #C99710);
    transform: translateY(-3px);
}
/* İnce altın halka animasyonu — Esculape tema renkleri */
.esc-cat-circle__halo {
    position: relative;
    width: 114px;
    height: 114px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.esc-cat-circle__spin {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--store-primary, #C99710) 0%,
        #E8C86A 18%,
        #F5E6B8 32%,
        var(--store-primary, #C99710) 48%,
        #8A6A12 62%,
        var(--store-secondary, #2A1A12) 78%,
        var(--store-primary, #C99710) 100%
    );
    animation: escGoldSpin 5s linear infinite;
    will-change: transform;
    opacity: 0.95;
}
.esc-cat-circle__spin::after {
    content: "";
    position: absolute;
    inset: 2px; /* ince ~2px halka */
    border-radius: 50%;
    background: #fff;
}
.esc-cat-circle__ring {
    position: relative;
    z-index: 1;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf7f1;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(42, 26, 18, 0.06);
    transition: box-shadow .25s ease;
}
.esc-cat-circle:hover .esc-cat-circle__spin {
    animation-duration: 2.8s;
    opacity: 1;
}
.esc-cat-circle:hover .esc-cat-circle__ring {
    box-shadow: 0 8px 20px rgba(201, 151, 16, 0.2);
}
.esc-cat-circle__ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.esc-cat-circle:hover .esc-cat-circle__ring img {
    transform: scale(1.05);
}
.esc-cat-circle__label {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 120px;
}
@keyframes escGoldSpin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .esc-cat-circle__spin { animation: none; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .esc-cat-circles { padding: 16px 0 14px; }
    .esc-cat-circle { width: 100px; }
    .esc-cat-circle__halo { width: 92px; height: 92px; }
    .esc-cat-circle__ring { width: 82px; height: 82px; }
    .esc-cat-circle__label { font-size: 12px; max-width: 96px; }
}
/* Desktop: 6 kategori tek satırda eşit aralıklı */
@media (min-width: 992px) {
    .esc-cat-circles__row {
        justify-content: space-between;
        overflow-x: visible;
        gap: 8px;
        padding-left: 0;
        padding-right: 0;
    }
    .esc-cat-circle {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        max-width: 160px;
    }
}

/* ===== HTML blok: marka anlatım kartları (Neden ...?) ===== */
.cms-html-content .esc-usp__card {
    background: #fbf9f6;
    background: color-mix(in srgb, var(--store-primary, #C99710) 6%, #fff);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    padding: 22px 20px;
    transition: box-shadow .25s ease, transform .25s ease;
}
.cms-html-content .esc-usp__card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
    transform: translateY(-2px);
}
.cms-html-content .esc-usp__card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--store-secondary, #253d4e);
}
.cms-html-content .esc-usp__card p {
    font-size: 14px;
    line-height: 1.65;
    color: #6b6b6b;
    margin: 0;
}

/* Kargo Kampanyaları - Footer üstü, hover efektli ikon kutuları */
.kargo-kampanyalari .kargo-card {
  text-decoration: none !important;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.kargo-kampanyalari .kargo-card:hover {
  border-color: var(--store-primary, #C99710);
  box-shadow: 0 4px 15px rgba(184, 145, 46, 0.15);
  transform: translateY(-2px);
}
.kargo-kampanyalari .kargo-card:hover .icon-box-title {
  color: var(--store-primary, #C99710) !important;
}
.kargo-kampanyalari .kargo-card .banner-icon img,
.kargo-kampanyalari .kargo-card .banner-icon svg {
  transition: transform 0.3s ease;
}
.kargo-kampanyalari .kargo-card:hover .banner-icon img,
.kargo-kampanyalari .kargo-card:hover .banner-icon svg {
  transform: scale(1.08);
}
/* Satır içi SVG'ler <img> gibi kapsayıcıya sığmaz; genişliği açıkça sınırla */
.banner-left-icon .banner-icon svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 60px;
}

/* Breadcrumb ayırıcı - font yerine metin (font glyph hatalarını önler) */
.breadcrumb span::before {
  content: "›" !important;
  font-family: inherit !important;
  font-size: 14px;
  font-weight: 400;
}

/* Breadcrumb alanı kompakt - dikey yükseklik azaltıldı, daha sade görünüm */
.page-header.breadcrumb-wrap {
  padding: 6px 0 !important;
  min-height: auto !important;
}
.page-header.breadcrumb-wrap.mb-4 {
  margin-bottom: 0.75rem !important;
}
.page-header.breadcrumb-wrap .breadcrumb {
  margin: 0 !important;
  padding: 0 !important;
}
.breadcrumb {
  font-size: 13px;
  line-height: 1.4 !important;
}

/* Sepet - Sepeti Temizle / Kaldır: NEST button[type=submit] ve .btn beyaz yazı verir; SVG currentColor ile kaybolur */
.shopping-summery button.cart-clear-btn,
.shopping-summery button.cart-remove-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 8px !important;
    min-width: auto !important;
    width: auto !important;
    font-size: inherit !important;
    font-weight: 600 !important;
    color: #253D4E !important;
    line-height: 1 !important;
    cursor: pointer !important;
    font-family: inherit !important;
    border-radius: 6px !important;
}
.shopping-summery button.cart-clear-btn:hover,
.shopping-summery button.cart-remove-btn:hover {
    background: transparent !important;
    color: var(--store-primary, #C99710) !important;
    opacity: 1;
}
.shopping-summery button.cart-remove-btn svg,
.shopping-summery button.cart-clear-btn svg {
    display: block;
    stroke: #253D4E;
    flex-shrink: 0;
}
.shopping-summery button.cart-remove-btn:hover svg,
.shopping-summery button.cart-clear-btn:hover svg {
    stroke: var(--store-primary, #C99710);
}

/* Sepet sayfası - kompakt tablo, buton ve özet */
.shopping-summery .table-wishlist > :not(caption) > * > * {
    padding: 8px 10px;
    vertical-align: middle;
}
.shopping-summery .table-wishlist thead th {
    background-color: #f4f6fa;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    color: #253d4e;
    border-bottom: 1px solid #ececec;
}
.shopping-summery .table-wishlist tbody tr {
    border-bottom: 1px solid #f0f0f0;
}
.shopping-summery .product-thumbnail.pt-40 {
    padding-top: 8px !important;
    width: 88px;
}
.shopping-summery .product-thumbnail img {
    max-width: 72px;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ececec;
}
.shopping-summery .product-des {
    min-width: 180px;
    max-width: 320px;
}
.shopping-summery .product-name {
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px !important;
}
.shopping-summery .product-des .font-small {
    font-size: 12px;
}
.shopping-summery .price h4 {
    font-size: 15px !important;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.shopping-summery .price .font-small {
    font-size: 11px;
}
.shopping-summery .detail-extralink {
    gap: 6px !important;
    justify-content: center;
}
.shopping-summery .detail-extralink .detail-qty {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 56px !important;
    min-width: 56px;
    height: 34px;
    border: 1.5px solid var(--store-primary, #C99710) !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.shopping-summery .detail-extralink .detail-qty .qty-val,
.shopping-summery .detail-extralink .detail-qty input {
    width: 100%;
    min-width: 0 !important;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #253d4e;
    padding: 0 4px;
    background: transparent;
}
.shopping-summery .cart-qty-update,
.shopping-summery .cart-item-remove {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 1 !important;
}
.shopping-summery button.btn.cart-qty-update,
.shopping-summery button.btn.cart-item-remove {
    width: 34px !important;
    margin-left: 0 !important;
}
.shopping-summery .cart-qty-update {
    background: var(--store-primary, #C99710) !important;
    border-color: var(--store-primary, #C99710) !important;
    color: #fff !important;
}
.shopping-summery .cart-qty-update:hover {
    background: #2fa06b !important;
    border-color: #2fa06b !important;
}
.shopping-summery .cart-item-remove {
    background: #fff !important;
    border: 1.5px solid #e5e7eb !important;
    color: #6b7280 !important;
}
.shopping-summery .cart-item-remove:hover {
    background: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
}
.shopping-summery .action {
    width: 70px;
}
.shopping-summery .cart-head-count {
    font-size: 12px;
    font-weight: 600;
    color: #7e7e7e;
}
.shopping-summery .cart-clear-head {
    text-align: center;
    vertical-align: middle;
}
.shopping-summery .cart-clear-head-form {
    display: inline-flex;
    margin: 0;
}
.shopping-summery .cart-clear-head-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 8px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #253d4e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .15s, background .15s;
    line-height: 1.2;
}
.shopping-summery .cart-clear-head-btn i {
    font-size: 13px;
    color: #6b7280;
}
.shopping-summery .cart-clear-head-btn:hover {
    background: #fef2f2;
    color: #dc2626;
}
.shopping-summery .cart-clear-head-btn:hover i {
    color: #dc2626;
}
.mob-cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: #f4f6fa;
    border-radius: 10px;
    border: 1px solid #ececec;
}
.mob-cart-toolbar-count {
    font-size: 13px;
    font-weight: 600;
    color: #253d4e;
}
.mob-cart-toolbar-clear {
    margin: 0;
    flex-shrink: 0;
}
/* NEST main.css button[type=submit] yeşil/büyük yapar — !important ile ez */
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 6px 12px !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: color .15s, border-color .15s, background .15s !important;
}
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"] i {
    font-size: 12px !important;
    color: #9ca3af !important;
}
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"]:hover,
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"]:active {
    background: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #dc2626 !important;
}
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"]:hover i,
.mob-cart-toolbar button.mob-cart-toolbar-clear-btn[type="submit"]:active i {
    color: #dc2626 !important;
}
.cart-page-summary.cart-totals {
    padding: 20px 22px !important;
    border-radius: 12px !important;
}
.cart-page-summary .cart-summary-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cart-page-summary .cart-summary-row {
    font-size: 13px;
}
.cart-page-summary .cart-summary-total-label {
    font-size: 15px;
}
.cart-page-summary .cart-summary-total-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--store-primary, #C99710);
}
.cart-page-summary .cart-checkout-btn {
    background: var(--store-primary, #C99710);
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    border: none;
}
.cart-page-summary .cart-checkout-btn:hover {
    background: #2fa06b;
    color: #fff;
}
.cart-page-summary .cart-checkout-btn--outline {
    background: #fff !important;
    color: var(--store-primary, #C99710) !important;
    border: 2px solid var(--store-primary, #C99710) !important;
}
.cart-page-summary .cart-checkout-btn--outline:hover {
    background: #f0faf5 !important;
    color: var(--store-accent, #8B2E3F) !important;
    border-color: var(--store-accent, #8B2E3F) !important;
}
.guest-checkout-summary .guest-back-cart-btn {
    background: #fff !important;
    color: #666 !important;
    border: 1px solid #ddd !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
}
.guest-checkout-summary .guest-back-cart-btn:hover {
    background: #f8f9fa !important;
    color: #253d4e !important;
    border-color: #ccc !important;
}
.cart-page-summary .form-control-sm {
    font-size: 13px;
    padding: 6px 10px;
    height: 34px;
    border-radius: 8px;
}
.cart-page-summary .btn-sm {
    font-size: 12px;
    padding: 6px 12px;
    height: 34px;
    border-radius: 8px;
}

/* Sepet sayfası - eski kompakt kurallar (geriye uyumluluk) */
.shopping-summery .table-wishlist th,
.shopping-summery .table-wishlist td {
    font-size: 0.9rem;
}
.cart-totals h5 {
    font-size: 1rem;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text { height: 1em; margin-bottom: 0.5rem; }
.skeleton-title { height: 1.5em; width: 60%; margin-bottom: 1rem; }
.skeleton-image { aspect-ratio: 1; width: 100%; }
.skeleton-card { padding: 1rem; }

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Button loading state */
.btn-loading .spinner-border-sm { vertical-align: middle; }
.btn-loading { pointer-events: none; }

/* Lazy load image placeholder */
img[data-src] { min-height: 100px; background: #f5f5f5; }

/* Mini cart loading */
.mini-cart-loading { opacity: 0.7; pointer-events: none; }
.mini-cart-loading .pro-count { animation: pulse 0.8s ease infinite; }
@keyframes pulse { 50% { opacity: 0.5; } }

/* Sepet hover dropdown - NEST yapisi korunur, duzen/kesilme duzeltmesi */
.header-main,
.header-main .container,
.header-main .header-action-right,
.header-main .header-action-2,
.header-bottom .header-wrap,
.header-bottom .header-sticky-actions,
.sticky-bar.stick {
    overflow: visible !important;
}
.header-action-2 .header-action-icon-2 .cart-dropdown-wrap {
    z-index: 1002;
}
.cart-dropdown-wrap.cart-dropdown-hm2 {
    width: 340px;
    padding: 18px 18px 20px;
}
/* Satir: gorsel + bilgi + sil tek hizada */
.cart-dropdown-wrap ul li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f5;
}
.cart-dropdown-wrap ul li:last-child {
    border-bottom: none;
}
.cart-dropdown-wrap ul li .shopping-cart-img {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    margin: 0;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
}
.cart-dropdown-wrap ul li .shopping-cart-img a,
.cart-dropdown-wrap ul li .shopping-cart-img a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-dropdown-wrap ul li .shopping-cart-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}
.cart-dropdown-wrap ul li .shopping-cart-title h4 {
    margin: 0;
    line-height: 1.3;
}
.cart-dropdown-wrap ul li .shopping-cart-title h4:first-child {
    margin-bottom: 4px;
}
.cart-dropdown-wrap ul li .shopping-cart-title h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    color: #253d4e;
    word-break: break-word;
}
.cart-dropdown-wrap ul li .shopping-cart-title h4 a:hover {
    color: var(--store-primary, #C99710);
}
.cart-dropdown-wrap ul li .shopping-cart-title h4:last-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--store-primary, #C99710);
}
.cart-dropdown-wrap ul li .shopping-cart-title h4:last-child span {
    color: #7e7e7e;
    font-weight: 500;
}
/* Sil butonu: kucuk, sabit; satiri ezmesin */
.cart-dropdown-wrap ul li .shopping-cart-delete {
    flex: 0 0 auto;
    flex-grow: 0;
    margin: 0;
    align-self: flex-start;
}
.cart-dropdown-wrap ul li .shopping-cart-delete a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 16px;
}
.cart-dropdown-wrap ul li .shopping-cart-delete a:hover {
    background: #fde8e8;
    color: #e53e3e;
}
/* Footer */
.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-total {
    margin: 14px 0 0;
    padding: 12px 0 0;
}
.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button {
    margin-top: 14px;
    gap: 10px;
    flex-wrap: nowrap;
}
.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
}

/* Scroll to top button */
#scrollToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--store-primary, #C99710);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(184,145,46,0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    z-index: 9998;
}
#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}
#scrollToTop:hover {
    background: #2d9a64;
    transform: translateY(-2px);
}
#scrollToTop svg {
    width: 20px;
    height: 20px;
}

/* Varyant select stokta yok highlight */
select.border-danger { border: 2px solid #dc3545 !important; }

/* Sepet miktar input - elle yazılabilsin */
.shopping-summery .detail-qty .qty-val {
    min-width: 48px;
    width: 100%;
    pointer-events: auto;
    -moz-appearance: textfield;
}
.shopping-summery .detail-qty .qty-val::-webkit-outer-spin-button,
.shopping-summery .detail-qty .qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Auth pages */
.auth-side-panel {
    min-height: 520px;
}

.auth-side-icon {
    font-size: 54px;
    color: var(--store-primary, #C99710);
}

/* Ürün listesi — parfüm şişeleri net ve tam görünsün */
.product-cart-wrap .product-img-action-wrap .product-img a img.default-img {
    aspect-ratio: 1;
    object-fit: contain !important;
    width: 100%;
    height: auto;
    background: #fbf7f1;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
    transition: transform 0.35s ease !important;
}
.product-cart-wrap:hover .product-img-zoom a img {
    transform: scale(1.02) !important; /* Nest 1.05 soft blur yerine hafif zoom */
}

.product-cart-wrap .product-content-wrap h2 {
    min-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}
.product-cart-wrap .product-content-wrap h2 a {
    font-size: inherit;
    font-weight: inherit;
}
.product-cart-wrap .product-content-wrap .product-price span {
    font-size: 16px;
}
.product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 13px;
    font-weight: 500;
}

/* Hover action butonları taşma/kayma düzeltmesi */
.product-cart-wrap .product-img-action-wrap {
    position: relative;
    overflow: hidden;
}
.product-cart-wrap .product-action-1,
.product-cart-wrap .product-action-1.show,
.product-cart-wrap:hover .product-action-1,
.product-cart-wrap:hover .product-action-1.show {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 12px);
    pointer-events: none;
}
.product-cart-wrap .product-action-1 a.action-btn {
    pointer-events: auto;
    flex-shrink: 0;
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    padding: 0 !important;
}
.product-cart-wrap .product-action-1 a.action-btn:after,
.product-cart-wrap .product-action-1 a.action-btn:before {
    display: none !important;
}

/* Karşılaştır — hover etiketi */
.ec-compare-tip {
    position: relative;
}
.ec-compare-tip::after {
    display: block !important;
    content: attr(aria-label);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    background: var(--store-primary, #C99710);
    box-shadow: 0 4px 12px rgba(37, 61, 78, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 20;
    transition: opacity .2s, visibility .2s, transform .2s;
}
.ec-compare-tip::before {
    display: block !important;
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 2px);
    margin-left: -5px;
    border: 5px solid transparent;
    border-bottom-color: var(--store-primary, #C99710);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 20;
    transition: opacity .2s, visibility .2s;
}
.ec-compare-tip:hover::after,
.ec-compare-tip:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
}
.ec-compare-tip:hover::before,
.ec-compare-tip:focus-visible::before {
    opacity: 1;
    visibility: visible;
}
.ec-compare-tip.in-compare::after {
    background: #253d4e;
}
.ec-compare-tip.in-compare::before {
    border-bottom-color: #253d4e;
}
.product-detail .product-extra-link2 .ec-compare-tip::after {
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
}
.product-detail .product-extra-link2 .ec-compare-tip::before {
    top: auto;
    bottom: calc(100% + 2px);
    border-bottom-color: transparent;
    border-top-color: var(--store-primary, #C99710);
}
.product-detail .product-extra-link2 .ec-compare-tip.in-compare::before {
    border-top-color: #253d4e;
}
.product-detail .product-extra-link2 .ec-compare-tip:hover::after,
.product-detail .product-extra-link2 .ec-compare-tip:focus-visible::after {
    transform: translateX(-50%) translateY(-2px);
}
.ec-compare-header-tip {
    position: relative;
}
.ec-compare-header-tip::after {
    content: attr(title);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    background: #253d4e;
    box-shadow: 0 4px 12px rgba(37, 61, 78, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1002;
    transition: opacity .2s, visibility .2s, transform .2s;
}
.ec-compare-header-tip:hover::after,
.ec-compare-header-tip:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
}
.product-cart-wrap:hover .product-img-zoom a img.default-img {
    transform: none !important;
}
.product-cart-wrap .product-card-bottom {
    align-items: center;
    min-height: 42px;
}
.product-cart-wrap .product-card-bottom .product-price {
    flex: 1;
    min-width: 0;
}
.product-cart-wrap .product-card-bottom .add-cart {
    flex-shrink: 0;
}
.product-cart-wrap .product-card-bottom .add-cart .add {
    width: 36px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 16%, #fff));
    color: var(--store-primary-ink, var(--store-primary, #C99710));
}
.product-cart-wrap .product-card-bottom .add-cart .add,
.product-cart-wrap .product-card-bottom .add-cart .add:hover {
    transform: none !important;
    box-shadow: none !important;
}
.product-cart-wrap .product-card-bottom .add-cart .add:hover {
    background-color: var(--store-primary, #C99710);
    color: #fff;
}

/* 6 sütunlu grid (col-xl-2) — dar kartlarda ikon boyutu */
.product-grid .col-xl-2 .product-cart-wrap .product-action-1 a.action-btn {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
}
.product-grid .col-xl-2 .product-cart-wrap .product-action-1 a.action-btn i {
    font-size: 14px;
}
.product-grid .col-xl-2 .product-cart-wrap .product-card-bottom .add-cart .add {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

/* Favoriler sayfası - İncele ve Sepete Ekle butonları belirgin olsun */
.wishlist-item .product-card-bottom .add-cart .btn-outline-primary,
.wishlist-item .product-card-bottom .add-cart .btn-primary {
    background-color: var(--store-primary, #C99710) !important;
    border-color: var(--store-primary, #C99710) !important;
    color: #fff !important;
}
.wishlist-item .product-card-bottom .add-cart .btn-outline-primary:hover,
.wishlist-item .product-card-bottom .add-cart .btn-primary:hover {
    background-color: var(--store-accent, var(--store-primary, #C99710)) !important;
    border-color: var(--store-accent, var(--store-primary, #C99710)) !important;
    color: #fff !important;
}

/* Main content minimum height - footer always at bottom */
main.main {
    min-height: calc(100vh - 200px);
}

/* Header - professional 2-layer */
.header-main .search-style-2 {
    max-width: 100%;
}
.header-main .search-style-2 form {
    border: 2px solid var(--store-primary, #C99710);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
}
.header-main .search-style-2 form:focus-within {
    border-color: var(--store-primary, #253d4e);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--store-primary, #C99710) 18%, transparent);
}
.header-main .search-style-2 input {
    border: none !important;
    padding: 10px 20px !important;
    font-size: 14px;
}
.header-main .header-action-2 {
    gap: 4px;
}

/* Header Hesabım etiketi + dropdown — Nest Quicksand ile uyumlu */
.header-action-2 .header-action-icon-2 span.lable {
    font-family: var(--store-font-heading, "Quicksand", sans-serif) !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0 6px !important;
    color: #253d4e;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: none;
}
.header-action-2 .header-action-icon-2 > a {
    font-size: 22px;
}
.cart-dropdown-wrap.account-dropdown {
    width: 220px;
    padding: 12px 10px;
    font-family: var(--store-font-heading, "Quicksand", sans-serif) !important;
}
.cart-dropdown-wrap.account-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cart-dropdown-wrap.account-dropdown ul li {
    display: block;
    margin: 0 !important;
}
.cart-dropdown-wrap.account-dropdown ul li a,
.cart-dropdown-wrap.account-dropdown ul li .btn-link,
.cart-dropdown-wrap.account-dropdown ul li button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--store-font-heading, "Quicksand", sans-serif) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35;
    color: #253d4e !important;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    background: transparent;
    box-shadow: none;
    width: 100%;
    text-align: left;
}
.cart-dropdown-wrap.account-dropdown ul li a i,
.cart-dropdown-wrap.account-dropdown ul li .btn-link i,
.cart-dropdown-wrap.account-dropdown ul li button i {
    font-family: "uicons-regular-straight" !important;
    font-size: 15px;
    opacity: 0.75;
    width: 18px;
    text-align: center;
    font-weight: normal !important;
}
.cart-dropdown-wrap.account-dropdown ul li a:hover,
.cart-dropdown-wrap.account-dropdown ul li .btn-link:hover,
.cart-dropdown-wrap.account-dropdown ul li button:hover {
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff));
    color: var(--store-primary, #C99710) !important;
}

/* Slider - kenardan kenara full-bleed */
.home-slider.home-slider--fullbleed {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
}
.home-slider.home-slider--fullbleed .home-slide-cover {
    margin: 0 !important;
    padding: 0;
    border-radius: 0 !important;
}
.home-slider.home-slider--fullbleed .hero-slider-1,
.home-slider.home-slider--fullbleed .hero-slider-1 .single-hero-slider,
.home-slider.home-slider--fullbleed .hero-slider-1 .slick-list,
.home-slider.home-slider--fullbleed .hero-slider-1 .slick-track {
    border-radius: 0 !important;
}
.home-slider.home-slider--fullbleed .slider-arrow {
    left: 16px;
    right: 16px;
}
.home-slider.home-slider--fullbleed .hero-slider-1 .slider-content {
    left: max(5%, calc((100vw - 1200px) / 2 + 24px));
    max-width: min(560px, 88vw);
}
.home-slider.home-slider--fullbleed .hero-slider-1 .single-hero-slider .slider-content.slider-content-right {
    left: auto !important;
    right: max(5%, calc((100vw - 1200px) / 2 + 24px)) !important;
}
.home-slider.home-slider--fullbleed .hero-slider-1 .single-hero-slider .slider-content.slider-content-center {
    left: 50% !important;
    right: auto !important;
}

/* ===== Esculape hero: web fold (slider+yuvarlak) / mobil ayri 3:4 ===== */
.home-slider.esc-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.esc-hero .home-slide-cover {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
}
.esc-hero .hero-slider-1 {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: auto !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    background: #1a120e;
}

/*
  WEB (>=992): slider daha yuksek + yuvarlak menuler ayni ilk ekranda.
*/
@media (min-width: 992px) {
    .home-slider.esc-hero {
        --esc-chrome: 172px;
        --esc-circles: 176px;
        --esc-hero-h: min(520px, calc(100vh - var(--esc-chrome) - var(--esc-circles)));
    }
    @supports (height: 1svh) {
        .home-slider.esc-hero {
            --esc-hero-h: min(520px, calc(100svh - var(--esc-chrome) - var(--esc-circles)));
        }
    }
    .home-slider.esc-hero .hero-slider-1 {
        height: var(--esc-hero-h) !important;
        max-height: var(--esc-hero-h) !important;
        min-height: 340px !important;
    }
    .esc-cat-circles {
        padding: 22px 0 20px;
    }
}
.home-slider.esc-hero .hero-slider-1 .single-hero-slider,
.home-slider.esc-hero .hero-slider-1 .single-hero-slider.esc-hero__slide,
.esc-hero .esc-hero__slide {
    position: relative !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: #1a120e;
}
.esc-hero .hero-slider-1 .slick-list,
.esc-hero .hero-slider-1 .slick-track,
.esc-hero .hero-slider-1 .slick-slide,
.esc-hero .hero-slider-1 .slick-slide > div {
    height: 100% !important;
}
.esc-hero__bleed { display: none !important; }
.esc-hero__media,
.esc-hero__fallback {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}
.esc-hero__fallback {
    background: linear-gradient(135deg, var(--store-primary, #C99710) 0%, var(--store-secondary, #2A1A12) 100%);
}
/* WEB: full-bleed cover (eski sinema gorunum) */
.esc-hero__img,
.home-slider.esc-hero .hero-slider-1 img,
.home-slider.esc-hero .hero-slider-1 img.esc-hero__img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: var(--esc-desk-pos, 54% 50%) !important;
    transform: none !important;
    border-radius: 0 !important;
    display: block !important;
}
.esc-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(18, 12, 10, 0.52) 0%, rgba(18, 12, 10, 0.2) 36%, rgba(18, 12, 10, 0) 64%),
        linear-gradient(180deg, rgba(18, 12, 10, 0.08) 0%, rgba(18, 12, 10, 0) 40%, rgba(18, 12, 10, 0.22) 100%);
}
.esc-hero__copy {
    position: absolute;
    z-index: 3;
    left: max(4%, calc((100vw - 1200px) / 2 + 16px));
    top: 50%;
    transform: translateY(-50%);
    width: min(420px, 38vw);
    max-width: 88%;
    text-align: left;
    color: #fff;
    pointer-events: none;
}
.esc-hero__copy > * { pointer-events: auto; }
.esc-hero__eyebrow {
    margin: 0 0 8px;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f3e6c2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.esc-hero__rule {
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 0 10px;
    background: var(--store-primary, #C99710);
}
.esc-hero__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.6vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.esc-hero__cta {
    display: inline-block;
    background: #fff;
    color: #2A1A12 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    border-radius: 2px;
    box-shadow: 0 8px 22px rgba(20, 12, 8, 0.22);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.esc-hero__cta:hover {
    background: var(--store-primary, #C99710);
    color: #fff !important;
    transform: translateY(-1px);
}
.esc-hero .slider-content { display: none !important; }

.esc-hero .hero-slider-1.dot-style-1,
.esc-hero .hero-slider-1 { position: relative !important; }
.esc-hero .dot-style-1 ul,
.esc-hero .dot-style-1.dot-style-1-position-1 ul,
.esc-hero .slick-dots {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 12px !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    z-index: 6 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 2px;
}
.esc-hero .dot-style-1 ul li button,
.esc-hero .slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.esc-hero .dot-style-1 ul li.slick-active button,
.esc-hero .slick-dots li.slick-active button {
    background: var(--store-primary, #C99710) !important;
    border-color: var(--store-primary, #C99710) !important;
}
.esc-hero .slider-arrow .slider-btn,
.esc-hero .hero-slider-1-arrow .slider-btn {
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(255,255,255,0.55) !important;
    background: rgba(26, 18, 14, 0.28) !important;
    color: #fff !important;
    backdrop-filter: blur(4px);
}

/* TABLET: slider + yuvarlak menuler ilk ekranda */
@media (min-width: 768px) and (max-width: 991.98px) {
    .home-slider.esc-hero {
        --esc-chrome: 100px;
        --esc-circles: 150px;
        --esc-hero-h: min(320px, calc(100vh - var(--esc-chrome) - var(--esc-circles)));
    }
    @supports (height: 1svh) {
        .home-slider.esc-hero {
            --esc-hero-h: min(320px, calc(100svh - var(--esc-chrome) - var(--esc-circles)));
        }
    }
    .home-slider.esc-hero .hero-slider-1 {
        height: var(--esc-hero-h) !important;
        max-height: var(--esc-hero-h) !important;
        min-height: 240px !important;
    }
    .esc-hero__copy {
        width: min(340px, 60vw);
        left: 5%;
    }
    .esc-hero__title { font-size: 24px; margin-bottom: 12px; }
    .esc-cat-circles { padding: 14px 0 10px; }
}

/*
  MOBIL (<768): ilk ekran = header + slider + yuvarlak menuler + etiket +
  alt tab ustunde gorunur bosluk. Tab hesabı yoksa menuler tab'a yapisir.
*/
@media (max-width: 767.98px) {
    .home-slider.esc-hero {
        --esc-mob-chrome: 6.5rem;   /* duyuru + mob-top */
        --esc-mob-circles: 7.75rem; /* halka + etiket + ust/alt padding */
        --esc-mob-tab: calc(56px + env(safe-area-inset-bottom, 0px));
        --esc-mob-gap: 20px;        /* yuvarlak etiket ile tab arasi */
        --esc-hero-h: min(
            calc(100vw * 4 / 3),
            calc(100vh - var(--esc-mob-chrome) - var(--esc-mob-circles) - var(--esc-mob-tab) - var(--esc-mob-gap))
        );
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: var(--esc-hero-h) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    @supports (height: 1svh) {
        .home-slider.esc-hero {
            --esc-hero-h: min(
                calc(100vw * 4 / 3),
                calc(100svh - var(--esc-mob-chrome) - var(--esc-mob-circles) - var(--esc-mob-tab) - var(--esc-mob-gap))
            );
            min-height: var(--esc-hero-h) !important;
        }
    }
    .home-slider.esc-hero .home-slide-cover {
        display: block !important;
        width: 100% !important;
        height: var(--esc-hero-h) !important;
        max-height: none !important;
        min-height: var(--esc-hero-h) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    .home-slider.esc-hero .hero-slider-1,
    .home-slider.esc-hero .hero-slider-1.style-5 {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        min-height: 100% !important;
        aspect-ratio: auto !important;
        overflow: hidden !important;
        margin: 0 !important;
        border-radius: 0 !important;
        background: #1a120e !important;
    }
    .home-slider.esc-hero .hero-slider-1 .slick-list,
    .home-slider.esc-hero .hero-slider-1 .slick-track,
    .home-slider.esc-hero .hero-slider-1 .slick-slide,
    .home-slider.esc-hero .hero-slider-1 .slick-slide > div,
    .home-slider.esc-hero .single-hero-slider,
    .home-slider.esc-hero .esc-hero__slide {
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;
    }
    .esc-hero__bleed { display: none !important; }
    .home-slider.esc-hero .esc-hero__media,
    .home-slider.esc-hero .esc-hero__fallback {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    .home-slider.esc-hero .esc-hero__img,
    .home-slider.esc-hero .hero-slider-1 img,
    .home-slider.esc-hero .hero-slider-1 img.esc-hero__img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        /* urunler altta: alttan daha fazla goster */
        object-position: 50% 72% !important;
        transform: none !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .home-slider.esc-hero .esc-hero__scrim {
        z-index: 2 !important;
        background: linear-gradient(180deg, rgba(18, 12, 10, 0.55) 0%, rgba(18, 12, 10, 0.2) 32%, rgba(18, 12, 10, 0) 50%) !important;
    }
    .home-slider.esc-hero .esc-hero__copy {
        left: 50% !important;
        top: 9% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 88% !important;
        max-width: 400px !important;
        text-align: center !important;
        z-index: 3 !important;
    }
    .home-slider.esc-hero .esc-hero__rule { display: none !important; }
    .home-slider.esc-hero .esc-hero__eyebrow {
        font-size: 13px !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.02em !important;
        text-transform: none !important;
        font-weight: 500 !important;
        color: #fff !important;
    }
    .home-slider.esc-hero .esc-hero__title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        color: #fff !important;
    }
    .home-slider.esc-hero .esc-hero__cta {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }
    .home-slider.esc-hero .slider-arrow,
    .home-slider.esc-hero .hero-slider-1-arrow { display: none !important; }
    .home-slider.esc-hero .dot-style-1 ul,
    .home-slider.esc-hero .slick-dots {
        display: flex !important;
        bottom: 12px !important;
        z-index: 6 !important;
    }

    /*
      Yuvarlak menuler (mobil):
      ~5 gorunur + 6. yarim peeks; saga kaydirinca Camasir gelir.
      flex:1 YASAK — sikistirma 6.yu yok eder.
    */
    .esc-cat-circles {
        padding: 12px 0 0 !important;
        /* gorunur bosluk (20px) + sabit tab yuksekligi — etiketler tab altinda kalmasin */
        padding-bottom: calc(20px + 56px + env(safe-area-inset-bottom, 0px)) !important;
        margin: 0 0 0 !important;
        background: linear-gradient(180deg, #fbf7f1 0%, #ffffff 55%) !important;
        border-bottom: none !important;
        overflow: visible !important;
    }
    .esc-cat-circles > .container {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: visible !important;
    }
    .esc-cat-circles__row {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 2px 14px 4px !important;
        padding-right: 28px !important;
        margin: 0 0 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }
    .esc-cat-circles__row::-webkit-scrollbar { display: none !important; }
    .esc-cat-circle {
        flex: 0 0 auto !important;
        /* ~5 tam + 6. yarim (kaydirma belli) */
        width: 17.5vw !important;
        min-width: 68px !important;
        max-width: 80px !important;
        gap: 6px !important;
    }
    .esc-cat-circle__halo {
        width: min(78px, 100%) !important;
        height: min(78px, 100%) !important;
        aspect-ratio: 1 / 1;
    }
    .esc-cat-circle__ring {
        width: 86% !important;
        height: 86% !important;
    }
    .esc-cat-circle__label {
        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
    }
}

/* Yazı hizalaması - admin panelden Sağ/Orta/Sol seçimi */
.home-slider .hero-slider-1 .single-hero-slider .slider-content.slider-content-right {
    left: auto !important;
    right: 8% !important;
    transform: translateY(-50%) !important;
    text-align: right;
}
.home-slider .hero-slider-1 .single-hero-slider .slider-content.slider-content-center {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
}

/* Kategori sidebar - kompakt ve şık (tema soft renkleri) */
.widget-category-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-category-2 .cat-item {
    display: flex;
    align-items: center;
    line-height: 1.3;
    border-radius: 8px;
    border: 1px solid #ececec;
    padding: 0;
    margin: 0 0 5px 0;
    height: auto;
    min-height: 38px;
    transition: border-color .15s, box-shadow .15s;
}
.widget-category-2 .cat-item:last-child {
    margin-bottom: 0 !important;
}
.widget-category-2 .cat-item:hover {
    border-color: var(--store-primary-soft-border, color-mix(in srgb, var(--store-primary, #C99710) 35%, #fff));
    box-shadow: 0 2px 8px color-mix(in srgb, var(--store-primary, #C99710) 10%, transparent);
}
.widget-category-2 .cat-item a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all .15s;
    color: #253d4e;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
}
.widget-category-2 .cat-item + .cat-item {
    margin-top: 0;
}
.widget-category-2 .cat-item a:hover {
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff));
    color: var(--store-primary, #C99710);
}
.widget-category-2 .cat-item.cat-active > a {
    background: var(--store-primary-soft-2, color-mix(in srgb, var(--store-primary, #C99710) 22%, #fff));
    color: var(--store-primary-ink, var(--store-primary, #C99710));
    font-weight: 700;
}
.widget-category-2 .cat-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    flex-shrink: 0;
    background: #f4f6fa;
}
.widget-category-2 .cat-icon--all {
    background: linear-gradient(135deg, var(--store-primary, #C99710), var(--store-accent, var(--store-primary, #8B2E3F)));
}
.widget-category-2 .cat-icon--all i {
    color: #fff;
    font-size: 14px;
}
.widget-category-2 .cat-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.widget-category-2 .cat-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 13px;
    flex: 1;
    min-width: 0;
}
.widget-category-2 .cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    background: #f4f6fa;
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    padding: 0 6px;
    flex-shrink: 0;
    margin-left: 8px;
}
.widget-category-2 .cat-item.cat-active .cat-count {
    background: color-mix(in srgb, var(--store-primary, #C99710) 18%, #fff);
    color: var(--store-primary, #C99710);
}

/* Category menu - ürün sayısı badge */
.categories-dropdown-wrap .category-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--store-primary, #C99710);
    background: color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff);
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 8px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}
.categories-dropdown-wrap ul li a:hover .category-count {
    background: color-mix(in srgb, var(--store-primary, #C99710) 20%, #fff);
    color: var(--store-primary-ink, var(--store-primary, #C99710));
}

/* Tüm Kategoriler dropdown — dengeli aralık */
.categories-dropdown-active-large {
    padding: 16px 18px 12px;
    margin-top: 10px;
}
.main-categori-wrap .categori-dropdown-inner {
    min-width: min(400px, 100%);
    max-width: 100%;
    gap: 12px;
}
.main-categori-wrap .categori-dropdown-inner > ul {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.categories-dropdown-wrap ul li {
    line-height: 1.35;
    height: auto;
    min-height: 40px;
    padding: 6px 12px;
    margin: 0 0 7px 0;
}
.categories-dropdown-wrap ul li:last-child {
    margin-bottom: 0;
}
.categories-dropdown-wrap ul li a {
    font-size: 14px;
    width: 100%;
}
.categories-dropdown-wrap ul li a img {
    max-width: 28px;
    max-height: 28px;
    width: 28px;
    height: 28px;
    margin-right: 8px !important;
    flex-shrink: 0;
}
.categories-dropdown-wrap .category-count {
    padding: 2px 7px;
    font-size: 11px;
    margin-left: 6px;
    min-width: 22px;
}
.categories-dropdown-wrap .categori-dropdown-inner + .border-top,
.categories-dropdown-wrap > .border-top,
.categories-dropdown-wrap .cat-menu-footer {
    margin-top: 8px !important;
    padding: 8px 10px 6px !important;
}

.categories-button-active {
    background-color: var(--store-primary, #C99710) !important;
    border-color: var(--store-primary, #C99710) !important;
    color: #fff !important;
}

/* Sticky menü bar - turuncu border yerine template yeşil */
.header-sticky-logo {
    display: none !important;
}
.sticky-bar.stick {
    border-bottom-color: var(--store-primary, #C99710) !important;
    animation: none !important;
}
.sticky-bar-spacer {
    display: none;
    width: 100%;
}
@media (min-width: 992px) {
    .sticky-bar.stick > .container > .header-wrap {
        display: grid;
        grid-template-columns: minmax(100px, 140px) minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
        min-height: 56px;
        flex-wrap: nowrap;
    }
    .sticky-bar.stick .logo.logo-width-1 {
        display: none !important;
    }
    .header-sticky-logo {
        flex: 0 0 auto;
        max-width: 140px;
        grid-column: 1;
        align-self: center;
    }
    .sticky-bar.stick .header-sticky-logo {
        display: flex !important;
        align-items: center;
        height: 100%;
    }
    .sticky-bar.stick .header-sticky-logo a {
        display: flex;
        align-items: center;
        line-height: 0;
    }
    .sticky-bar.stick .header-sticky-logo .site-logo--sticky {
        height: 36px;
        max-width: 140px;
        width: auto;
    }
    .sticky-bar.stick .header-social-links {
        display: none !important;
    }
    .sticky-bar.stick .header-nav {
        grid-column: 2;
        display: flex !important;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        overflow: visible !important;
        justify-content: center;
        position: relative;
        z-index: 2;
        height: 100%;
    }
    .sticky-bar.stick .main-menu {
        margin: 0;
        min-width: 0;
        width: 100%;
        display: flex;
        align-items: center;
    }
    .sticky-bar.stick .main-menu > nav {
        width: 100%;
    }
    .sticky-bar.stick .main-menu nav > ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        overflow: visible !important;
        margin: 0;
        padding: 0;
        gap: 0;
        width: 100%;
    }
    /* Tum kalemler tek satirda — gizleme yok */
    .sticky-bar.stick .main-menu nav > ul > li {
        display: list-item;
        flex: 0 1 auto;
        min-width: 0;
        padding: 0 !important;
        margin: 0;
        line-height: 56px !important;
        height: 56px;
    }
    .sticky-bar.stick .main-menu.main-menu-lh-2 > nav > ul > li {
        line-height: 56px !important;
    }
    .sticky-bar.stick .main-menu nav > ul > li > a {
        display: flex;
        align-items: center;
        height: 56px;
        line-height: 1.2 !important;
        padding: 0 7px !important;
        font-size: 12.5px !important;
        font-weight: 600;
        white-space: nowrap;
        color: #253d4e !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .sticky-bar.stick .header-sticky-actions {
        grid-column: 3;
        display: flex !important;
        align-items: center;
        flex: 0 0 auto;
        position: relative;
        z-index: 3;
        gap: 6px;
        height: 100%;
    }
    .sticky-bar.stick .sticky-search-wrap {
        flex: 0 0 110px;
        min-width: 96px;
        max-width: 110px;
    }
    .sticky-bar.stick .sticky-search-form input {
        padding: 7px 30px 7px 10px;
        font-size: 12px;
    }
}
/* Sticky modda kategori butonu gizle, menüyü kompakt yap */
.sticky-bar.stick .main-categori-wrap {
    display: none !important;
}
.sticky-bar.stick .header-nav {
    flex: 1;
    min-width: 0;
    justify-content: center;
    align-items: center;
}
.sticky-bar.stick .main-menu ul li a {
    font-size: 12.5px;
    padding: 0 7px;
    white-space: nowrap;
}
/* Normal modda menü - overflow:visible olmalı (dropdown görünsün) */
.header-bottom .header-nav {
    flex: 1;
    min-width: 0;
}
.header-bottom .main-menu nav ul {
    flex-wrap: nowrap;
}
.header-bottom .main-menu nav ul li {
    flex-shrink: 0;
}
.header-bottom .main-menu nav ul li a {
    white-space: nowrap;
    font-size: 14px;
}

/* Header bottom — kategori butonu ve menü hizası (1360px vb. orta masaüstü) */
@media (min-width: 992px) {
    .header-bottom .header-wrap {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .header-bottom .header-nav {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: space-between;
        gap: 0;
    }
    .header-bottom .main-categori-wrap {
        flex: 0 0 auto;
        margin-right: 0;
    }
    .header-bottom .main-categori-wrap > a.categories-button-active {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 44px;
        line-height: 1;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        border-radius: 5px;
    }
    .header-bottom .main-categori-wrap > a.categories-button-active span.fi-rs-apps {
        font-size: 15px;
        margin-right: 0;
    }
    .header-bottom .main-categori-wrap > a.categories-button-active i.fi-rs-angle-down {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 10px;
    }
    .header-bottom .main-menu {
        flex: 0 1 auto;
        min-width: 0;
        margin-left: auto;
    }
    .header-bottom .main-menu.main-menu-lh-2 > nav > ul > li {
        line-height: 44px;
    }
    .header-bottom .main-menu nav > ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        margin: 0;
    }
    .header-bottom .main-menu nav > ul > li {
        flex-shrink: 0;
        padding: 0 10px;
    }
    .header-bottom .main-menu nav > ul > li:first-child {
        padding-left: 0;
    }
    .header-bottom .main-menu nav > ul > li > a {
        display: block;
        font-size: 14px;
        line-height: 44px;
    }
    .header-bottom .header-social-links {
        flex: 0 0 auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .header-bottom .main-categori-wrap > a.categories-button-active {
        padding: 0 12px;
        font-size: 13px;
        height: 40px;
    }
    .header-bottom .main-categori-wrap > a.categories-button-active span.fi-rs-apps {
        font-size: 14px;
    }
    .header-bottom .main-menu {
        margin-left: auto;
    }
    .header-bottom .main-menu nav > ul > li {
        padding: 0 6px;
    }
    .header-bottom .main-menu nav > ul > li > a {
        font-size: 13px;
        line-height: 40px;
    }
    .header-bottom .main-menu.main-menu-lh-2 > nav > ul > li {
        line-height: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .header-bottom .header-social-links {
        display: none !important;
    }
    /* Orta ekranda da tum kalemler tek satirda kalsin */
    .header-bottom .main-menu nav > ul > li {
        padding: 0 5px;
    }
    .header-bottom .main-menu nav > ul > li > a {
        font-size: 12.5px;
    }
    .header-bottom .main-categori-wrap > a.categories-button-active {
        padding: 0 10px;
        font-size: 12.5px;
        height: 38px;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    .header-bottom .main-menu nav > ul > li {
        padding: 0 7px;
    }
    .header-bottom .main-menu nav > ul > li > a {
        font-size: 13px;
    }
}

/* Dar masaustunde sticky menuyu daha da sikistir */
@media (min-width: 992px) and (max-width: 1280px) {
    .sticky-bar.stick .main-menu nav > ul > li > a {
        padding: 0 5px !important;
        font-size: 11.5px !important;
    }
    .sticky-bar.stick .sticky-search-wrap {
        flex-basis: 90px;
        max-width: 90px;
        min-width: 80px;
    }
}

/* ===== Section titles (anasayfa vb.) ===== */
.section-title {
    margin-bottom: 22px;
    align-items: center;
}
.section-title h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-right: 16px;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 16px;
    }
    .section-title h3 {
        font-size: 18px;
        margin-right: 0;
    }
}

/* ===== Kurumsal Footer ===== */
.ec-footer {
    --ec-f-ink: var(--footer-text, #253D4E);
    --ec-f-surface: color-mix(in srgb, var(--store-primary, #C99710) 6%, var(--footer-bg, #ffffff));
    --ec-f-line: color-mix(in srgb, var(--footer-text, #253D4E) 14%, transparent);
    --ec-f-muted: color-mix(in srgb, var(--footer-text, #253D4E) 68%, transparent);
    /* Açık zeminde marka rengi soluk kalabiliyor; vurgu için koyulaştırılmış tonu kullan */
    --ec-f-brand-ink: color-mix(in srgb, var(--store-primary, #C99710) 72%, #14202a);
    /* Alt bar: marka renginin açık tonu; yazı beyaz yerine koyu kahve okunsun */
    --ec-f-bar: color-mix(in srgb, var(--store-primary, #C99710) 72%, #ffffff);
    --ec-f-bar-ink: color-mix(in srgb, var(--store-primary, #C99710) 28%, #2a1d15);
    margin-top: 56px;
    margin-bottom: 0;
    padding-bottom: 0;
    background: var(--ec-f-surface);
    color: var(--ec-f-ink);
    border-top: 1px solid color-mix(in srgb, var(--store-primary, #C99710) 45%, transparent);
    /* Üstte içeriğe düşen yumuşak gölge + üst kenarda ince ışık: yükseltilmiş panel etkisi */
    box-shadow: 0 -16px 32px -26px rgba(20, 32, 42, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.ec-footer a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .18s ease, box-shadow .18s ease;
}

/* Marka sütunu (logo + iletişim + sosyal) */
.ec-footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Logo beyaz kart üzerinde: bej zeminde daha net ve okunur duruyor */
.ec-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 11px 16px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--footer-text, #253D4E) 8%, transparent);
    border-radius: 14px;
    box-shadow: 0 12px 26px -14px rgba(20, 32, 42, 0.32), 0 2px 5px rgba(20, 32, 42, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.ec-footer__logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -16px rgba(20, 32, 42, 0.38), 0 3px 8px rgba(20, 32, 42, 0.07);
}
.ec-footer__logo img {
    width: auto;
}

.ec-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.ec-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--footer-text, #253D4E) 8%, transparent);
    box-shadow: 0 6px 14px -8px rgba(20, 32, 42, 0.35);
    color: var(--ec-f-ink);
}
.ec-footer__social a img {
    width: 16px;
    height: 16px;
    display: block;
}
.ec-footer__social a:hover {
    background: var(--store-primary, #C99710);
    border-color: var(--store-primary, #C99710);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px -10px rgba(20, 32, 42, 0.45);
}
.ec-footer__social a:hover img {
    filter: brightness(0) invert(1);
}
.ec-footer__social-in svg {
    display: block;
}

/* Columns */
.ec-footer__body {
    padding: 46px 0 40px;
}
.ec-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
    align-items: start;
}
.ec-footer__col:not(:first-child) {
    padding-left: 28px;
    border-left: 1px solid var(--ec-f-line);
}
.ec-footer__title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 12px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--ec-f-ink);
}
.ec-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: var(--ec-f-brand-ink);
}
.ec-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ec-footer__menu a {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ec-f-ink);
}
.ec-footer__menu a:hover {
    color: var(--ec-f-brand-ink);
    transform: translateX(3px);
}

.ec-footer__phone {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ec-f-brand-ink) !important;
}
.ec-footer__phone:hover {
    color: var(--ec-f-ink) !important;
}
.ec-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ec-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--ec-f-ink);
}
/* İkonlar küçük beyaz plaketler içinde: adres bloğuna hafif kabartma verir */
.ec-footer__contact img {
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    padding: 5px;
    margin-top: 0;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--footer-text, #253D4E) 8%, transparent);
    border-radius: 8px;
    box-shadow: 0 5px 12px -8px rgba(20, 32, 42, 0.4);
}
.ec-footer__contact a:hover {
    color: var(--ec-f-brand-ink);
}

/* Alt bar */
.ec-footer__bar {
    background: var(--ec-f-bar);
    color: var(--ec-f-bar-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.ec-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    flex-wrap: wrap;
}
.ec-footer__copy {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--ec-f-bar-ink);
}
.ec-footer__payment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ec-footer__payment-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--ec-f-bar-ink) 78%, transparent);
}
.ec-footer__payment-cards {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 6px 14px -9px rgba(20, 32, 42, 0.5);
}
.ec-footer__payment-cards img {
    max-height: 20px;
    width: auto;
    display: block;
}

@media (max-width: 1199.98px) {
    .ec-footer__grid {
        grid-template-columns: minmax(190px, 1.2fr) repeat(3, minmax(0, 1fr));
        gap: 28px 22px;
    }
    .ec-footer__col:not(:first-child) {
        padding-left: 22px;
    }
}

@media (max-width: 991.98px) {
    .ec-footer {
        margin-top: 40px;
    }
    .ec-footer__body {
        padding: 34px 0 28px;
    }
    .ec-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
    }
    .ec-footer__col:not(:first-child) {
        padding-left: 0;
        border-left: 0;
    }
    .ec-footer__col--brand {
        grid-column: 1 / -1;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--ec-f-line);
    }
}

@media (max-width: 575.98px) {
    .ec-footer {
        margin-top: 28px;
    }
    .ec-footer__logo {
        margin-bottom: 16px;
        padding: 10px 13px;
        border-radius: 12px;
    }
    .ec-footer__logo img.site-logo,
    .ec-footer__logo img.site-logo--footer {
        height: 46px !important;
        max-width: 200px !important;
    }
    .ec-footer__body {
        padding: 28px 0 22px;
    }
    .ec-footer__grid {
        gap: 22px 14px;
    }
    .ec-footer__title {
        font-size: 11.5px;
        margin-bottom: 14px;
    }
    .ec-footer__menu {
        gap: 10px;
    }
    .ec-footer__menu a {
        font-size: 13px;
    }
    .ec-footer__phone {
        font-size: 19px;
    }
    .ec-footer__bar-inner {
        flex-direction: column;
        text-align: center;
        padding: 14px 0;
    }
}

@media (max-width: 991px) {
    #scrollToTop {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px));
        right: 14px;
        width: 40px;
        height: 40px;
    }
    #scrollToTop svg {
        width: 18px;
        height: 18px;
    }
}

/* Nest scrollUp (cift buton olusuyordu) */
#scrollUp {
    display: none !important;
}
/* Checkout wizard */
.checkout-steps {
    gap: 10px;
}

.checkout-steps .nav-link {
    border: 1px solid #e5e7eb;
    color: #4b5563;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    background: #fff;
}

.checkout-steps .nav-link span {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: #f3f4f6;
    margin-right: 8px;
}

.checkout-steps .nav-link.active {
    background: #fbf7f1;
    border-color: var(--store-primary, #C99710);
    color: #6b4f12;
}

.checkout-step-pane {
    display: none;
}

.checkout-step-pane.active {
    display: block;
}

.checkout-add-address-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.checkout-add-address-btn i {
    font-size: 11px;
    margin-right: 2px;
}
.checkout-summary.sticky-top {
    top: 88px;
    z-index: 20;
}
@media (min-width: 992px) {
    body:has(.sticky-bar.stick) .checkout-summary.sticky-top {
        top: 72px;
    }
}

/* Ürün DETAY sayfası - sadece bu sayfada (product-detail içinde) */
/* Başlık - daha kompakt ve hafif sağa kaydırılmış */
.product-detail .detail-info .title-detail {
    font-size: 22px !important;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 14px;
    padding-left: 6px;
}
@media (max-width: 767px) {
    .product-detail .detail-info .title-detail {
        font-size: 19px !important;
        padding-left: 0;
    }
}

/* Fiyat boyutu - orantılı (NEST default 58px çok büyük); detayda siyah */
.product-detail .detail-info .product-price .current-price {
    font-size: 32px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #111111 !important;
}

/* Paylaş bölümü - marka logolu, sağa doğru yayılan butonlar */
.product-detail .product-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.product-detail .product-share-label {
    font-size: 14px;
    font-weight: 600;
    color: #253d4e;
    flex-shrink: 0;
}
.product-detail .product-share-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    flex: 1;
}
.product-detail .share-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.product-detail .share-btn svg { flex-shrink: 0; }
.product-detail .share-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}
.product-detail .share-whatsapp { background: #25D366; }
.product-detail .share-facebook { background: #1877F2; }
.product-detail .share-twitter  { background: #111827; }
.product-detail .share-telegram { background: #229ED9; }

/* Mobil: paylaş butonları yan yana (ikon + kısa etiket) */
@media (max-width: 767px) {
    .product-detail .product-share {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .product-detail .product-share-label {
        font-size: 13px;
    }
    .product-detail .product-share-buttons {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 5px;
        flex: none;
    }
    .product-detail .share-btn {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: column;
        gap: 3px;
        padding: 8px 4px;
        font-size: 9px;
        font-weight: 700;
        line-height: 1.1;
        border-radius: 10px;
    }
    .product-detail .share-btn svg {
        width: 20px;
        height: 20px;
    }
    .product-detail .share-btn span {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .product-detail .share-btn span {
        display: none;
    }
    .product-detail .share-btn {
        flex-direction: row;
        padding: 10px 6px;
        min-height: 44px;
    }
    .product-detail .share-btn svg {
        width: 22px;
        height: 22px;
    }
}

.product-detail .detail-info .product-price .old-price {
    font-size: 16px !important;
}

/* Ürün detay - Favoriler & Karşılaştır (gri border, hover yeşil) */
.product-detail .product-extra-link2 .product-detail-action-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #333;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-detail .product-extra-link2 .product-detail-action-btn:hover {
    background-color: var(--store-primary, #C99710);
    border-color: var(--store-primary, #C99710);
    color: #fff;
}

.product-detail .product-extra-link2 .product-detail-action-btn i {
    font-size: 18px;
    opacity: 0.8;
}

.product-detail .product-extra-link2 .product-detail-action-btn:hover i {
    opacity: 1;
    color: inherit;
}

.product-detail .product-extra-link2 .product-detail-action-btn.in-wishlist .wishlist-icon-filled {
    color: var(--store-primary, #C99710) !important;
}

/* ===== Ürün Detay - Açıklama / Teknik / Yorumlar (tam genişlik sekmeler) ===== */
.product-detail-extra {
    margin-top: 10px;
}
.pd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 2px solid #eef1f4;
    padding: 0;
    margin: 0 0 -2px 0;
    list-style: none;
}
.pd-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}
.pd-tab-btn i { font-size: 16px; }
.pd-tab-btn:hover { color: var(--store-primary, #C99710); }
.pd-tab-btn.active {
    color: #253d4e;
    border-bottom-color: var(--store-primary, #C99710);
}
.pd-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--store-primary, #C99710);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.pd-tab-content {
    border: 1px solid #eef1f4;
    border-top: none;
    border-radius: 0 0 14px 14px;
    background: #fff;
}
.pd-section-card {
    padding: 28px 30px;
}
.pd-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #253d4e;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f3f5;
}
.pd-section-title i { color: var(--store-primary, #C99710); }
.pd-description {
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
}
.pd-description p { margin-bottom: 12px; }

/* Teknik özellikler - 2 kolonlu şık grid */
.pd-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}
.pd-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 4px;
    border-bottom: 1px solid #f1f3f5;
}
.pd-spec-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
.pd-spec-value {
    font-size: 14px;
    color: #253d4e;
    font-weight: 600;
    text-align: right;
}
@media (max-width: 767px) {
    .pd-specs-grid { grid-template-columns: 1fr; }
    .pd-section-card { padding: 20px 18px; }
}

/* Yorumlar */
.pd-reviews-head { margin-bottom: 22px; }
.pd-reviews-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #fbf7f1 0%, #f7fbf9 100%);
    border-radius: 12px;
}
.pd-rating-big {
    font-size: 42px;
    font-weight: 800;
    color: var(--store-primary, #C99710);
    line-height: 1;
}
.pd-rating-stars i { color: #FDC040; font-size: 16px; margin-right: 1px; }
.pd-rating-count { font-size: 13px; color: #6b7280; margin-top: 4px; }
.pd-review-list { display: flex; flex-direction: column; gap: 4px; }
.pd-review-item {
    display: flex;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}
.pd-review-item:last-child { border-bottom: none; }
.pd-review-avatar {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--store-primary, #C99710);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.pd-review-body { flex: 1; min-width: 0; }
.pd-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
}
.pd-review-name { font-size: 14px; color: #253d4e; }
.pd-review-date { font-size: 12px; color: #9ca3af; }
.pd-review-stars i { color: #FDC040; font-size: 13px; margin-right: 1px; }
.pd-review-title { font-weight: 600; color: #253d4e; margin: 6px 0 2px; }
.pd-review-text { font-size: 14px; color: #4b5563; line-height: 1.7; margin: 6px 0 0; }
.pd-admin-reply {
    margin-top: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 3px solid var(--store-primary, #C99710);
    border-radius: 8px;
}
.pd-admin-reply strong { color: var(--store-primary, #C99710); font-size: 13px; display: block; }
.pd-admin-reply p { margin: 4px 0 0; font-size: 13px; color: #4b5563; }
.pd-no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}
.pd-no-reviews i { font-size: 40px; display: block; margin-bottom: 12px; opacity: 0.5; }
.pd-review-form {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #f1f3f5;
}
/* Yıldız ile puanlama girişi */
.pd-rating-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.pd-rating-star { cursor: pointer; margin: 0; }
.pd-rating-star input { display: none; }
.pd-rating-star i { font-size: 24px; color: #d1d5db; transition: color .15s; }
.pd-rating-star:hover i,
.pd-rating-star:hover ~ .pd-rating-star i,
.pd-rating-star input:checked ~ i { color: #FDC040; }

/* Ürün detay galeri - ana görsel sabit ölçüde, taşma yok */
.detail-gallery .product-image-slider {
    margin-bottom: 15px;
    aspect-ratio: 1;
    overflow: hidden;
}

.detail-gallery .product-image-slider .slick-list,
.detail-gallery .product-image-slider .slick-track {
    height: 100%;
}

.detail-gallery .product-image-slider .slick-slide {
    height: 100%;
}

.detail-gallery .product-image-slider .slick-slide figure {
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.detail-gallery .product-image-slider .slick-slide figure a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.detail-gallery .product-image-slider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== Sticky bar (kaydırınca görünen menü) - Arama, Sepet, Favori, Karşılaştır, Profil ===== */
.header-sticky-actions {
    display: none !important;
    gap: 20px;
    flex-shrink: 0;
}
.sticky-bar.stick .header-sticky-actions {
    display: flex !important;
}
/* Kompakt arama */
.sticky-search-wrap {
    flex: 0 1 180px;
    min-width: 140px;
}
.sticky-search-form {
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    transition: border-color 0.2s, background 0.2s;
}
.sticky-search-form:focus-within {
    border-color: var(--store-primary, #C99710);
    background: #fff;
}
.sticky-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 42px 8px 14px;
    font-size: 13px;
    height: 38px;
    outline: none;
}
.sticky-search-form input::placeholder {
    color: #9ca3af;
}
.sticky-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    border: none;
    padding: 0 12px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sticky-search-form button:hover {
    color: var(--store-primary, #C99710);
}
.sticky-search-form button i {
    font-size: 16px;
}
/* Sticky ikonlar - kompakt, sadece ikon */
.header-action-sticky {
    display: flex !important;
}
.header-action-sticky .header-action-sticky-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-action-sticky .header-action-icon-2 {
    padding: 0 6px !important;
}
.header-action-sticky .header-action-icon-2 > a img,
.header-action-sticky .header-action-icon-2 .svgInject {
    width: 20px;
    height: 20px;
}
.header-action-sticky .header-action-icon-2 > a:has(.lable) {
    display: none !important;
}
.header-action-sticky .header-action-icon-2 > a:not([class*="mini-"]) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-action-sticky .header-action-icon-2:hover > a {
    color: var(--store-primary, #C99710);
}
.header-action-sticky .header-action-icon-2 .pro-count {
    font-size: 10px !important;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0 4px;
}
/* Sticky bar cart dropdown düzgün konumlansın */
.sticky-bar.stick .header-sticky-actions .cart-dropdown-wrap,
.sticky-bar.stick .header-sticky-actions .account-dropdown {
    top: calc(100% + 10px);
    right: 0;
    margin-top: 0;
}

/* ===== Hesabım (Account) - Dashboard stili ===== */
.dashboard-menu {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 0.75rem 0;
}
.dashboard-menu ul li {
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}
.dashboard-menu .nav-link,
.dashboard-menu ul li a {
    padding: 11px 18px !important;
    color: #253d4e !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: inherit !important;
    border-left: 3px solid transparent;
    border-radius: 0 !important;
    transition: all 0.2s;
    background: transparent !important;
}
.dashboard-menu .nav-link:hover,
.dashboard-menu ul li a:hover {
    color: var(--store-primary, #C99710) !important;
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 10%, #fff)) !important;
}
.dashboard-menu .nav-link.active,
.dashboard-menu ul li a.active {
    color: var(--store-primary, #C99710) !important;
    background: var(--store-primary-soft-2, color-mix(in srgb, var(--store-primary, #C99710) 16%, #fff)) !important;
    border-left-color: var(--store-primary, #C99710);
}
.dashboard-menu .nav-link i,
.dashboard-menu ul li a i {
    width: 20px;
    margin-right: 10px;
    font-size: 15px !important;
    color: inherit !important;
    opacity: 0.85;
}
.account-page .card {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid #f0f0f0;
}
.account-page .card-header {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    font-size: 15px;
    padding: 1rem 1.25rem;
}
.account-page .card-header h5 {
    font-size: 15px !important;
    font-weight: 600;
}
.account-page .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #4f5d77;
}
.account-page .form-control {
    font-size: 14px;
}
.account-page .profile-avatar-wrap {
    border: 3px solid var(--store-primary-soft-2, #e8f5e9);
    border-radius: 50%;
    padding: 4px;
}

/* Kategori sayfası - kategori banner (hero görsel) */
.category-banner {
    position: relative;
    border-radius: 16px !important;
}
.category-banner-overlay h1 {
    font-family: "Quicksand", sans-serif;
}
@media (min-width: 768px) {
    .category-banner {
        min-height: 260px !important;
    }
}

/* Tüm Kategoriler sayfası - kategori kartları */
.category-card-link:hover .card {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}
.category-card-link:hover .text-heading {
    color: var(--store-primary, #C99710) !important;
}

/* ===== CMS sayfa içeriği (Kurumsal, Yardım vb.) ===== */
.cms-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.cms-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #253d4e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--store-primary, #C99710);
}
.cms-content h2:first-child { margin-top: 0; }
.cms-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
.cms-content p {
    margin-bottom: 1rem;
}
.cms-content ul, .cms-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.cms-content li {
    margin-bottom: 0.4rem;
}
.cms-content a {
    color: var(--store-primary, #C99710);
    text-decoration: none;
}
.cms-content a:hover {
    text-decoration: underline;
}
.cms-content .table {
    margin: 1rem 0;
    border-collapse: collapse;
    width: 100%;
}
.cms-content .table th, .cms-content .table td {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.cms-content .table th {
    background: #f9fafb;
    font-weight: 600;
    color: #253d4e;
}
.cms-content .accordion-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
}
.cms-content .accordion-button {
    font-weight: 600;
    color: #253d4e;
    background: #f9fafb;
    padding: 1rem 1.25rem;
}
.cms-content .accordion-button:not(.collapsed) {
    background: #f4f1eb;
    background: color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff);
    color: var(--store-secondary, #253d4e);
    border-color: var(--store-primary, #C99710);
    box-shadow: none;
}
.cms-content .accordion-header {
    margin: 0;
    font-size: 1rem;
}
.cms-content .accordion + h2 {
    margin-top: 2rem;
}
.cms-content .accordion-button:focus {
    box-shadow: none;
    border-color: var(--store-primary, #C99710);
}
.cms-content .accordion-body {
    padding: 1rem 1.25rem;
    line-height: 1.6;
}

/* ---- Sipariş detay ---- */
.order-detail-page .order-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.order-detail-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--store-primary, #C99710);
}
.order-detail-title {
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: #253d4e;
    line-height: 1.25;
    margin-bottom: 4px;
}
.order-detail-subtitle {
    font-size: 13px;
    color: #7e7e7e;
}
.order-detail-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--store-primary, #C99710);
    background: #fff;
    color: var(--store-primary, #C99710);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.order-detail-print-btn:hover {
    background: var(--store-primary, #C99710);
    color: #fff;
}
.order-detail-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(37, 61, 78, .04);
}
.order-detail-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #253d4e;
}
.order-detail-table thead th {
    background: #f4f6fa;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    border-bottom: 1px solid #ececec;
    padding: 10px 12px;
}
.order-detail-table tbody td {
    padding: 14px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f1f1;
}
.order-detail-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.order-detail-product-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #ececec;
    flex-shrink: 0;
    background: #f4f6fa;
}
.order-detail-product-img-link {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}
.order-detail-product-img-link:hover .order-detail-product-img {
    border-color: var(--store-primary, #C99710);
}
.order-detail-product-name {
    display: block;
    font-weight: 600;
    color: #253d4e;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
}
.order-detail-product-name[href] {
    color: #253d4e;
    cursor: pointer;
}
.order-detail-product-name[href]:hover {
    color: var(--store-primary, #C99710);
    text-decoration: underline;
}
.order-detail-product-name--static {
    color: #253d4e;
    cursor: default;
}
.order-detail-variant {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}
.order-detail-mobile-items { display: flex; flex-direction: column; gap: 12px; }
.order-detail-mobile-item {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
}
.order-detail-mobile-item:last-child { border-bottom: 0; padding-bottom: 0; }
.order-detail-mobile-meta { font-size: 12px; color: #6b7280; margin-top: 4px; }
.order-detail-address { font-size: 14px; line-height: 1.6; color: #4b5563; }
.order-detail-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}
.order-detail-summary-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #ececec;
    font-size: 16px;
}
.order-detail-card-mask {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.order-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}
.order-status-badge--pending { background: #fef3c7; color: #92400e; }
.order-status-badge--paid { background: #f5efe3; color: #6b4f12; }
.order-status-badge--shipped { background: #dbeafe; color: #1e40af; }
.order-status-badge--delivered { background: #e0e7ff; color: #3730a3; }
.order-status-badge--cancelled { background: #fee2e2; color: #991b1b; }
.order-status-badge--default { background: #f3f4f6; color: #374151; }

.order-invoice-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--store-primary, #C99710);
    text-decoration: none;
}
.order-invoice-link:hover { color: var(--store-accent, #8B2E3F); text-decoration: underline; }

/* ---- Siparişlerim listesi ---- */
.account-orders-page .account-orders-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #253d4e;
    margin-bottom: 4px;
}
.account-orders-list { display: flex; flex-direction: column; gap: 12px; }
.account-order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(37, 61, 78, .04);
}
.account-order-row-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}
.account-order-row-id {
    flex: 0 0 190px;
    min-width: 0;
}
.account-order-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #253d4e;
    text-decoration: none;
    line-height: 1.3;
    word-break: break-all;
}
.account-order-number:hover { color: var(--store-primary, #C99710); }
.account-order-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
}
.account-order-row-desc {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-order-row-price {
    flex: 0 0 110px;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--store-primary, #C99710);
}
.account-order-row-status {
    flex: 0 0 auto;
}
.account-order-row-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}
.account-order-reorder-form { margin: 0; display: inline; }
.account-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
    background: transparent;
    white-space: nowrap;
}
.account-order-btn--primary {
    background: var(--store-primary, #C99710);
    color: #fff !important;
    border-color: var(--store-primary, #C99710);
}
.account-order-btn--primary:hover { background: var(--store-accent, #8B2E3F); border-color: var(--store-accent, #8B2E3F); }
.account-order-btn--outline {
    background: #fff;
    color: #253d4e !important;
    border-color: #d1d5db;
}
.account-order-btn--outline:hover { border-color: var(--store-primary, #C99710); color: var(--store-primary, #C99710) !important; }
.account-order-btn--invoice-active {
    background: var(--store-primary, #C99710);
    color: #fff !important;
    border-color: var(--store-primary, #C99710);
}
.account-order-btn--invoice-active:hover { background: var(--store-accent, #8B2E3F); border-color: var(--store-accent, #8B2E3F); }
.account-order-btn--invoice-disabled {
    background: #f3f4f6;
    color: #9ca3af !important;
    border-color: #e5e7eb;
    cursor: not-allowed;
    pointer-events: none;
}
.account-order-row-actions button.account-order-btn[type="submit"] {
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
}
.account-order-row-actions button.account-order-btn--outline[type="submit"] {
    background: #fff !important;
    color: #253d4e !important;
    border: 1px solid #d1d5db !important;
    border-radius: 999px !important;
}
.account-order-row-actions button.account-order-btn--outline[type="submit"]:hover {
    border-color: var(--store-primary, #C99710) !important;
    color: var(--store-primary, #C99710) !important;
}
.account-orders-empty-icon {
    width: 72px; height: 72px; margin: 0 auto;
    border-radius: 50%; background: #f4f6fa;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #ccc;
}
.account-orders-shop-btn {
    background: var(--store-primary, #C99710); color: #fff !important;
    border-radius: 10px; padding: 10px 22px; font-weight: 600;
}
@media (max-width: 991px) {
    .account-order-row {
        flex-direction: column;
        align-items: stretch;
    }
    .account-order-row-main {
        flex-wrap: wrap;
        gap: 12px;
    }
    .account-order-row-id { flex: 1 1 100%; }
    .account-order-row-desc { flex: 1 1 100%; white-space: normal; }
    .account-order-row-price { flex: 0 0 auto; text-align: left; }
    .account-order-row-actions { justify-content: flex-start; }
}
@media (max-width: 575px) {
    .account-order-row { padding: 12px 14px; }
    .account-order-row-actions { gap: 6px; }
    .account-order-btn { padding: 6px 12px; font-size: 11px; }
}

/* ---- Proforma / PDF sayfası (A4 kurumsal) ---- */
.order-proforma-page {
    margin: 0;
    background: #e8ebef;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.45;
}
.order-proforma-toolbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.order-proforma-toolbar-inner {
    max-width: 210mm;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.order-proforma-toolbar-back {
    color: #6b7280;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}
.order-proforma-toolbar-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.order-proforma-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 6px;
    border: none;
    background: var(--store-primary, #C99710);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.order-proforma-btn--outline {
    background: #fff;
    color: var(--store-primary, #C99710);
    border: 1px solid var(--store-primary, #C99710);
}
.order-proforma-toolbar-hint {
    max-width: 210mm;
    margin: 0 auto;
    padding: 0 16px 8px;
    font-size: 11px;
    color: #9ca3af;
}
.order-proforma-doc {
    width: 210mm;
    max-width: calc(100% - 24px);
    min-height: 297mm;
    margin: 16px auto 32px;
    background: #fff;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .08);
    overflow: hidden;
}
.order-proforma-doc-accent {
    height: 3px;
    background: var(--store-primary, #C99710);
}
.order-proforma-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 22px 14px;
    border-bottom: 1px solid #e5e7eb;
}
.order-proforma-brand {
    flex: 1;
    min-width: 0;
}
.order-proforma-logo {
    display: block;
    max-height: 52px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.order-proforma-company-lines { margin-top: 8px; }
.order-proforma-brand-name { font-size: 18px; font-weight: 700; display: block; color: #111827; }
.order-proforma-meta-line { font-size: 10px; color: #6b7280; line-height: 1.45; }
.order-proforma-title-block {
    flex-shrink: 0;
    text-align: right;
    min-width: 210px;
}
.order-proforma-doc-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--store-primary, #C99710);
    margin-bottom: 6px;
}
.order-proforma-doc-no {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    word-break: break-all;
}
.order-proforma-doc-date {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
}
.order-proforma-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid #e5e7eb;
}
.order-proforma-info-box {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 11px;
    line-height: 1.45;
    background: #fafafa;
}
.order-proforma-info-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}
.order-proforma-info-content strong { display: block; font-size: 11px; color: #111827; margin-bottom: 2px; }
.order-proforma-info-content div { color: #374151; }
.order-proforma-dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    margin: 0;
}
.order-proforma-dl dt {
    margin: 0;
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}
.order-proforma-dl dd {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    color: #111827;
}
.order-proforma-table-wrap {
    padding: 0 18px;
    flex: 1;
}
.order-proforma-table {
    width: 100%;
    margin: 10px 0 8px;
    border-collapse: collapse;
    font-size: 10px;
}
.order-proforma-table th,
.order-proforma-table td {
    padding: 6px 6px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}
.order-proforma-table thead th {
    background: #f3f4f6;
    font-size: 9px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid #d1d5db;
}
.order-proforma-table tbody tr:last-child td { border-bottom: 1px solid #d1d5db; }
.order-proforma-product {
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-proforma-product-img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.order-proforma-product strong {
    font-size: 10px;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    display: block;
}
.order-proforma-variant { font-size: 9px; color: #9ca3af; }
.order-proforma-sku { font-size: 9px; color: #9ca3af; margin-top: 1px; }
.order-proforma-bottom {
    padding: 0 18px 12px;
    display: flex;
    justify-content: flex-end;
}
.order-proforma-totals {
    width: 220px;
    font-size: 10px;
}
.order-proforma-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    color: #374151;
}
.order-proforma-totals-row--discount { color: #16a34a; }
.order-proforma-totals-row--grand {
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1.5px solid #111827;
    font-size: 11px;
    font-weight: 700;
    color: #111827;
}
.order-proforma-footer {
    padding: 10px 18px 14px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 9px;
    color: #9ca3af;
    line-height: 1.45;
}
.order-proforma-footer p { margin: 0 0 2px; }
@media (max-width: 767px) {
    .order-proforma-doc { width: auto; min-height: auto; }
    .order-proforma-info-grid { grid-template-columns: 1fr; padding: 12px; }
    .order-proforma-header {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }
    .order-proforma-title-block {
        text-align: left;
        min-width: 0;
        padding-top: 10px;
        border-top: 1px solid #f1f1f1;
    }
    .order-proforma-table-wrap { padding: 0 12px; }
    .order-proforma-bottom { padding: 0 12px 12px; }
    .order-proforma-totals { width: 100%; }
    .order-proforma-footer { padding: 10px 12px; }
}
@media print {
    @page {
        size: A4 portrait;
        margin: 10mm 12mm;
    }
    html, body.order-proforma-page {
        background: #fff !important;
        font-size: 10pt;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .no-print, .order-proforma-toolbar { display: none !important; }
    .order-proforma-doc {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .order-proforma-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 0 10px !important;
        margin-bottom: 8px;
        border-bottom: 1px solid #e5e7eb !important;
    }
    .order-proforma-brand { flex: 1 !important; min-width: 0 !important; }
    .order-proforma-title-block {
        display: block !important;
        flex-shrink: 0 !important;
        text-align: right !important;
        min-width: 180px !important;
    }
    .order-proforma-logo {
        display: block !important;
        max-height: 44px !important;
        max-width: 180px !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .order-proforma-doc-no { font-size: 12pt !important; }
    .order-proforma-doc-date { font-size: 9pt !important; color: #6b7280 !important; }
    .order-proforma-info-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 0 0 8px !important;
        page-break-inside: avoid;
    }
    .order-proforma-info-box {
        padding: 7px 9px !important;
        background: #f9fafb !important;
        border-radius: 0 !important;
    }
    .order-proforma-table-wrap { padding: 0 !important; }
    .order-proforma-table {
        font-size: 9pt !important;
        margin: 6px 0 !important;
    }
    .order-proforma-table th,
    .order-proforma-table td {
        padding: 4px 5px !important;
    }
    .order-proforma-product-img { display: none !important; }
    .order-proforma-product { gap: 0 !important; }
    .order-proforma-bottom { padding: 0 !important; }
    .order-proforma-totals { width: 42% !important; }
    .order-proforma-footer {
        display: block !important;
        padding: 8px 0 0 !important;
        margin-top: 10px;
    }
    .order-proforma-doc-accent { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .order-proforma-table thead { display: table-header-group; }
    .order-proforma-table tr { page-break-inside: avoid; }
}

/* ---- Print / PDF Proforma (legacy) ---- */
@media print {
    body { background: #fff !important; }
    .no-print, .page-header, .sticky-bar, #scrollToTop,
    #toast-container, .mobile-header-active, .header-area, .footer-area,
    .breadcrumb-wrap.no-print { display: none !important; }
    .section-padding { padding: 0 !important; }
    .container { max-width: 100% !important; }
    .col-lg-8 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
    .col-lg-4 { width: 100% !important; max-width: 100% !important; flex: 0 0 100% !important; }
    .cart-totals { box-shadow: none !important; border: 1px solid #ddd !important; page-break-inside: avoid; }
    .print-header, .print-footer { display: block !important; }
    .badge { border: 1px solid #999 !important; }
    a { text-decoration: none !important; color: #000 !important; }
    .btn { display: none !important; }
    .text-brand { color: var(--store-primary, #C99710) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---- KVKK Çerez Onay Sistemi ---- */
.cookie-consent-root--hidden .cookie-consent-banner,
.cookie-consent-root--hidden .cookie-consent-backdrop { display: none !important; }

.cookie-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(37, 61, 78, 0.28);
    backdrop-filter: blur(1px);
    pointer-events: none;
    animation: cookieBackdropIn .35s ease;
}
@keyframes cookieBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 10050;
    padding: 0;
    background: #fff;
    border: 1px solid #bce3c9;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(37, 61, 78, 0.18), 0 0 0 1px rgba(59, 183, 126, 0.08);
    animation: cookieBannerIn .4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    pointer-events: auto;
}
.cookie-consent-banner__actions,
.cookie-consent-banner__actions .cookie-consent-btn {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
}
.cookie-consent-banner__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--store-primary, #C99710) 0%, var(--store-accent, #8B2E3F) 50%, var(--store-primary, #C99710) 100%);
}
@keyframes cookieBannerIn {
    from { transform: translateY(calc(100% + 24px)); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 22px 20px;
}
.cookie-consent-banner__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}
.cookie-consent-banner__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf7f1 0%, #f0e6cf 100%);
    color: var(--store-primary, #C99710);
    border: 1px solid #bce3c9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(184, 145, 46, 0.15);
}
.cookie-consent-banner__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.cookie-consent-banner__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #253d4e;
    letter-spacing: -0.02em;
}
.cookie-consent-banner__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fbf7f1;
    color: #6b4f12;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid #bce3c9;
    letter-spacing: 0.04em;
}
.cookie-consent-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    max-width: 720px;
}
.cookie-consent-banner__text strong {
    color: #253d4e;
    font-weight: 700;
}
.cookie-consent-link {
    color: var(--store-primary, #C99710);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-link:hover { color: #8B2E3F; }
.cookie-consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.cookie-consent-btn {
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
    white-space: nowrap;
}
.cookie-consent-btn--primary {
    background: linear-gradient(135deg, var(--store-primary, #C99710) 0%, var(--store-accent, #8B2E3F) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(59, 183, 126, 0.35);
    padding: 12px 24px;
}
.cookie-consent-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(59, 183, 126, 0.45);
}
.cookie-consent-btn--outline {
    background: #fff;
    color: #253d4e;
    border: 2px solid #d1d5db;
}
.cookie-consent-btn--outline:hover {
    border-color: var(--store-primary, #C99710);
    color: var(--store-primary, #C99710);
    background: #fbf7f1;
}
.cookie-consent-btn--ghost {
    background: #f4f6fa;
    color: #253d4e;
    border: 1px solid #e5e7eb;
}
.cookie-consent-btn--ghost:hover {
    background: #fbf7f1;
    color: #8B2E3F;
    border-color: #bce3c9;
}
/* Modal */
.cookie-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}
.cookie-consent-modal--open {
    opacity: 1;
    visibility: visible;
}
.cookie-consent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(37, 61, 78, 0.55);
    backdrop-filter: blur(3px);
}
.cookie-consent-modal__panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: cookieModalIn .3s ease;
}
@keyframes cookieModalIn {
    from { transform: translateY(20px) scale(.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-consent-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 24px 0;
}
.cookie-consent-modal__title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #253d4e;
}
.cookie-consent-modal__subtitle {
    margin: 0;
    font-size: 13px;
    color: #7e7e7e;
}
.cookie-consent-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #f4f6fa;
    color: #253d4e;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}
.cookie-consent-modal__close:hover { background: #ececec; }
.cookie-consent-modal__body { padding: 20px 24px; }
.cookie-consent-category {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    background: #fafbfc;
}
.cookie-consent-category__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.cookie-consent-category__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #253d4e;
}
.cookie-consent-category__desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #7e7e7e;
}
.cookie-consent-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.cookie-consent-badge--always {
    background: #fbf7f1;
    color: #6b4f12;
}
.cookie-consent-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-consent-switch input { opacity: 0; width: 0; height: 0; }
.cookie-consent-switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: background .2s;
}
.cookie-consent-switch__slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.cookie-consent-switch input:checked + .cookie-consent-switch__slider { background: var(--store-primary, #C99710); }
.cookie-consent-switch input:checked + .cookie-consent-switch__slider::before { transform: translateX(20px); }
.cookie-consent-modal__note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #999;
}
.cookie-consent-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 24px 24px;
}
.cookie-consent-modal__footer .cookie-consent-btn--outline {
    color: #253d4e;
    border-color: #e0e0e0;
}
.cookie-consent-modal__footer .cookie-consent-btn--outline:hover {
    border-color: var(--store-primary, #C99710);
    color: var(--store-primary, #C99710);
}
body.cookie-consent-modal-open { overflow: hidden; }

/* Çerez Politikası sayfası */
.cookie-policy-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.cookie-policy-title {
    font-size: 28px;
    font-weight: 700;
    color: #253d4e;
    margin-bottom: 12px;
}
.cookie-policy-lead {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}
.cookie-policy-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #253d4e;
    margin: 28px 0 12px;
}
.cookie-policy-table-wrap { margin: 16px 0 24px; }
.cookie-policy-table {
    margin: 0;
    font-size: 13px;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
}
.cookie-policy-table thead th {
    background: #fbf7f1;
    color: #253d4e;
    font-weight: 700;
    border-bottom: 1px solid #ececec;
    padding: 12px 14px;
    white-space: nowrap;
}
.cookie-policy-table tbody td {
    padding: 12px 14px;
    vertical-align: top;
    border-color: #f0f0f0;
    color: #555;
}
.cookie-policy-table code {
    font-size: 11px;
    background: #f4f6fa;
    padding: 2px 6px;
    border-radius: 4px;
    color: #253d4e;
}
.cookie-policy-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.cookie-policy-tag--required { background: #fbf7f1; color: #6b4f12; }
.cookie-policy-tag--optional { background: #fff7ed; color: #9a3412; }

@media (max-width: 767px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        border-radius: 14px;
    }
    .cookie-consent-banner__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px 16px;
        gap: 16px;
    }
    .cookie-consent-banner__actions { width: 100%; }
    .cookie-consent-banner__actions .cookie-consent-btn {
        flex: 1;
        text-align: center;
        min-width: 0;
        padding: 12px 14px;
    }
    .cookie-consent-banner__actions .cookie-consent-btn--primary {
        order: -1;
        flex: 1 1 100%;
        width: 100%;
    }
    /* alt tab barin ustunde kalsin, butonlar tiklanabilsin */
    .cookie-consent-banner {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        z-index: 10050;
    }
    body.cookie-consent-banner-visible {
        padding-bottom: 0;
    }
    .cookie-consent-modal__panel { border-radius: 14px; }
    .cookie-consent-modal__header,
    .cookie-consent-modal__body,
    .cookie-consent-modal__footer { padding-left: 18px; padding-right: 18px; }
    .cookie-consent-category__head { flex-direction: column; }
    .cookie-policy-card { padding: 20px 16px; }
    .cookie-policy-title { font-size: 22px; }
    .cookie-policy-table { font-size: 12px; }
    .cookie-policy-table thead { display: none; }
    .cookie-policy-table tbody tr {
        display: block;
        border-bottom: 1px solid #ececec;
        padding: 12px 0;
    }
    .cookie-policy-table tbody td {
        display: block;
        border: none;
        padding: 4px 14px;
    }
    .cookie-policy-table tbody td:first-child { font-size: 14px; padding-top: 12px; }
}

/* ===== Live Search Suggestions (mobile overlay + desktop dropdown) ===== */
body.mob-search-open { overflow: hidden; }

.mob-search-overlay {
    position: fixed; inset: 0; z-index: 10000;
    visibility: hidden; opacity: 0; pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}
.mob-search-overlay.open {
    visibility: visible; opacity: 1; pointer-events: auto;
}
.mob-search-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.45);
}
.mob-search-panel {
    position: absolute; top: 0; left: 0; right: 0;
    height: 100%; height: 100dvh;
    background: #fff; display: flex; flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.mob-search-header {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; border-bottom: 1px solid #ececec;
    background: #fff; flex-shrink: 0;
}
.mob-search-form {
    flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px;
    background: #f4f6fa; border: 1px solid #ececec; border-radius: 10px;
    padding: 0 12px; height: 44px; transition: border-color .15s;
}
.mob-search-form:focus-within { border-color: var(--store-primary, #C99710); background: #fff; }
.mob-search-form > i { color: #aaa; font-size: 15px; flex-shrink: 0; }
.mob-search-form input {
    flex: 1; min-width: 0; border: none; background: transparent;
    font-size: 15px; color: #253d4e; outline: none; height: 100%;
}
.mob-search-form input::placeholder { color: #b0b0b0; }
.mob-search-clear {
    background: none; border: none; color: #999; font-size: 16px;
    padding: 4px; cursor: pointer; flex-shrink: 0;
}
.mob-search-close {
    background: #f4f6fa; border: none; width: 40px; height: 40px;
    border-radius: 10px; color: #666; font-size: 16px; cursor: pointer; flex-shrink: 0;
}

.mob-search-hint {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 32px 24px; color: #7e7e7e;
}
.mob-search-hint i { font-size: 42px; color: #d8dee6; margin-bottom: 12px; }
.mob-search-hint p { font-size: 14px; margin: 0; line-height: 1.5; }
.mob-search-hint strong { color: var(--store-primary, #C99710); }

.mob-search-body {
    flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 8px 0 12px;
}
.mob-search-footer {
    flex-shrink: 0; padding: 12px 16px;
    border-top: 1px solid #ececec; background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.mob-search-all-btn {
    display: block; width: 100%; text-align: center;
    padding: 12px 16px; font-size: 14px; font-weight: 600; border-radius: 10px;
}

/* Shared suggestion blocks */
.ec-search-section { padding: 0 14px 10px; }
.ec-search-section-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: #b0b0b0; margin: 10px 0 8px;
}
.ec-search-product-list { display: flex; flex-direction: column; gap: 8px; }
.ec-search-product-card {
    display: flex; gap: 12px; padding: 12px;
    border: 1px solid #ececec; border-radius: 12px; background: #fff;
    text-decoration: none; color: inherit; min-height: 88px;
    transition: border-color .15s, box-shadow .15s;
}
.ec-search-product-card:active,
.ec-search-product-card:hover {
    border-color: var(--store-primary, #C99710); box-shadow: 0 2px 10px rgba(59,183,126,0.12);
}
.ec-search-product-img {
    width: 72px; height: 72px; flex-shrink: 0;
    border-radius: 10px; overflow: hidden; background: #f8f9fb;
    border: 1px solid #f0f0f0;
}
.ec-search-product-img img { width: 100%; height: 100%; object-fit: contain; }
.ec-search-product-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ec-search-product-name {
    font-size: 14px; font-weight: 600; color: #253d4e; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ec-search-product-brand { font-size: 12px; color: var(--store-primary, #C99710); font-weight: 500; }
.ec-search-product-sku { font-size: 11px; color: #999; }
.ec-search-product-prices { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.ec-search-price { font-size: 14px; font-weight: 700; color: var(--store-primary, #C99710); }
.ec-search-price--sale { color: var(--store-primary, #C99710); }
.ec-search-price--old { font-size: 12px; font-weight: 500; color: #999; text-decoration: line-through; }

.ec-search-chips {
    display: flex; flex-wrap: nowrap; gap: 6px; overflow-x: auto;
    -webkit-overflow-scrolling: touch; margin-top: 4px; padding-bottom: 2px;
    scrollbar-width: none;
}
.ec-search-chips::-webkit-scrollbar { display: none; }
.ec-search-chip {
    flex: 0 0 auto; display: inline-block; max-width: 160px;
    padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 500;
    background: rgba(59,183,126,0.08); color: var(--store-primary, #C99710); text-decoration: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ec-search-chip--muted { color: #7e7e7e; background: #f4f6fa; cursor: default; }

.ec-search-link-list { display: flex; flex-direction: column; gap: 4px; }
.ec-search-link-item {
    display: flex; align-items: center; gap: 10px; padding: 12px;
    border-radius: 10px; text-decoration: none; color: #253d4e;
    border: 1px solid transparent; min-height: 48px;
}
.ec-search-link-item:active,
.ec-search-link-item:hover { background: #fbf7f1; border-color: #e8f5ee; }
.ec-search-link-item > i { font-size: 16px; color: var(--store-primary, #C99710); width: 22px; text-align: center; flex-shrink: 0; }
.ec-search-brand-logo { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.ec-search-link-text { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ec-search-link-text strong { font-size: 13px; font-weight: 600; }
.ec-search-link-text small {
    font-size: 11px; color: #999; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.ec-search-empty {
    text-align: center; padding: 48px 24px; color: #7e7e7e;
}
.ec-search-empty-icon {
    width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
    background: #f4f6fa; display: flex; align-items: center; justify-content: center;
}
.ec-search-empty-icon i { font-size: 28px; color: #c8d0d8; }
.ec-search-empty h4 { font-size: 16px; color: #253d4e; margin-bottom: 6px; }
.ec-search-empty p { font-size: 13px; margin: 0; line-height: 1.5; }

.ec-search-skeleton-list { display: flex; flex-direction: column; gap: 10px; padding: 0 14px; }
.ec-search-skeleton-item { display: flex; gap: 12px; padding: 8px 0; }
.ec-search-skeleton-img {
    width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%; animation: ecSearchShimmer 1.2s infinite;
}
.ec-search-skeleton-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 6px; }
.ec-search-skeleton-lines span {
    height: 10px; border-radius: 6px; display: block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%; animation: ecSearchShimmer 1.2s infinite;
}
.ec-search-skeleton-lines span:nth-child(1) { width: 85%; }
.ec-search-skeleton-lines span:nth-child(2) { width: 55%; }
.ec-search-skeleton-lines span:nth-child(3) { width: 40%; }
@keyframes ecSearchShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Desktop dropdown — iki sütun: kategori | ürün */
.ec-search-wrap { position: relative; }
.search-style-2.ec-search-wrap { width: 100%; }
.ec-search-dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: #fff; border: 1px solid #ececec; border-radius: 10px;
    box-shadow: 0 16px 48px rgba(37, 61, 78, 0.14); z-index: 1005;
    max-height: min(72vh, 480px); display: flex; flex-direction: column; overflow: hidden;
}
.sticky-search-wrap.ec-search-wrap .ec-search-dropdown {
    left: auto; right: 0; width: min(680px, 92vw);
}
.ec-search-dropdown-body {
    flex: 1; min-height: 0; overflow: hidden; padding: 0;
    display: flex; flex-direction: column;
}
.ec-search-dropdown-footer {
    flex-shrink: 0; padding: 10px 16px; border-top: 1px solid #ececec; background: #fff;
}
.ec-search-dropdown-footer .btn {
    width: 100%; padding: 10px 16px; font-size: 13px; font-weight: 600; border-radius: 8px;
}

.ec-search-desktop {
    display: grid; grid-template-columns: 220px minmax(0, 1fr);
    flex: 1; min-height: 0; height: 100%;
    max-height: min(calc(72vh - 56px), 420px);
}
.ec-search-desktop-cats {
    background: #fafbfc; border-right: 1px solid #ececec;
    padding: 14px 0; min-height: 0; overflow: hidden;
    display: flex; flex-direction: column;
}
.ec-search-desktop-products {
    display: flex; flex-direction: column; min-width: 0; min-height: 0; overflow: hidden;
}
.ec-search-desktop-col-title {
    flex-shrink: 0;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.55px; color: #adb5bd; padding: 0 16px 10px;
}
.ec-search-desktop-cats .ec-search-desktop-col-title { padding-left: 14px; }
.ec-search-desktop-cat-list {
    flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
    display: flex; flex-direction: column; gap: 2px; padding: 0 8px 8px;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--store-primary, #C99710) 45%, transparent) transparent;
}
.ec-search-desktop-cat-list::-webkit-scrollbar { width: 6px; }
.ec-search-desktop-cat-list::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--store-primary, #C99710) 40%, transparent);
    border-radius: 999px;
}
.ec-search-desktop-cat-item {
    display: flex; align-items: center; justify-content: flex-start; gap: 8px;
    padding: 9px 10px; border-radius: 8px;
    text-decoration: none; color: #253d4e; transition: background .15s, color .15s;
}
.ec-search-desktop-cat-item .ec-search-desktop-cat-count {
    margin-left: auto;
}
.ec-search-desktop-cat-icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 7px; background: #f4f6fa;
    display: inline-flex; align-items: center; justify-content: center;
}
.ec-search-desktop-cat-icon img {
    width: 18px; height: 18px; object-fit: contain;
}
.ec-search-desktop-cat-main {
    flex: 1; min-width: 0;
}
.ec-search-desktop-cat-count {
    flex-shrink: 0; min-width: 24px; height: 22px; padding: 0 7px;
    border-radius: 999px;
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff));
    color: var(--store-primary, #C99710);
    font-size: 11px; font-weight: 700; line-height: 22px; text-align: center;
}
.ec-search-desktop-cat-item:hover,
.ec-search-desktop-cat-item:focus {
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 12%, #fff));
    color: var(--store-primary, #C99710);
}
.ec-search-desktop-cat-name {
    display: block; font-size: 13px; font-weight: 600; line-height: 1.3;
}
.ec-search-desktop-cat-path {
    display: block; font-size: 11px; color: #999; margin-top: 2px; line-height: 1.35;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ec-search-desktop-cats-empty {
    font-size: 12px; color: #999; padding: 0 14px; margin: 0;
}

.ec-search-desktop-product-list {
    flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--store-primary, #C99710) 45%, transparent) transparent;
}
.ec-search-desktop-product-list::-webkit-scrollbar { width: 6px; }
.ec-search-desktop-product-list::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--store-primary, #C99710) 40%, transparent);
    border-radius: 999px;
}
.ec-search-desktop-product-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; text-decoration: none; color: inherit;
    border-bottom: 1px solid #f3f3f3; transition: background .12s;
}
.ec-search-desktop-product-row:last-child { border-bottom: none; }
.ec-search-desktop-product-row:hover {
    background: var(--store-primary-soft, color-mix(in srgb, var(--store-primary, #C99710) 10%, #fff));
}
.ec-search-desktop-product-thumb {
    width: 60px; height: 60px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden; background: #fff;
    border: 1px solid #ececec; display: flex; align-items: center; justify-content: center;
}
.ec-search-desktop-product-thumb img {
    width: 100%; height: 100%; object-fit: contain;
}
.ec-search-desktop-product-info { flex: 1; min-width: 0; }
.ec-search-desktop-product-name {
    font-size: 13px; font-weight: 600; color: #253d4e; line-height: 1.35; margin-bottom: 3px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ec-search-desktop-product-code {
    font-size: 11px; color: #888; margin-bottom: 4px;
}
.ec-search-desktop-product-price {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.ec-search-desktop-product-price .ec-search-price { font-size: 14px; }

.ec-search-desktop--loading .ec-search-desktop-cats,
.ec-search-desktop--loading .ec-search-desktop-products {
    display: flex; flex-direction: column; min-height: 0; overflow: hidden;
}
.ec-search-desktop--loading .ec-search-skeleton-block {
    flex: 1; min-height: 120px; margin: 8px 12px; border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%; animation: ecSearchShimmer 1.2s infinite;
}
.ec-search-desktop--loading .ec-search-skeleton-list {
    flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 0 12px 8px;
}

@media (min-width: 992px) {
    .mob-search-overlay { display: none !important; }
}
@media (max-width: 991px) {
    .ec-search-wrap .ec-search-dropdown { display: none !important; }
}

/* Guest checkout / order track */
.guest-checkout-page .guest-checkout-card,
.guest-track-page .guest-track-card {
    border-radius: 12px !important;
    background: #fff;
}
.guest-checkout-page .guest-field,
.guest-track-page .form-control-lg {
    border-radius: 8px;
    min-height: 46px;
}
.guest-checkout-page .form-select-lg {
    border-radius: 8px;
    min-height: 46px;
}
.guest-checkout-submit,
.guest-track-submit {
    background: var(--store-primary, #C99710) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
}
.guest-checkout-submit:hover,
.guest-track-submit:hover {
    background: var(--store-accent, #8B2E3F) !important;
    color: #fff !important;
}
.guest-checkout-summary {
    border-radius: 12px !important;
    top: 90px;
}
.guest-checkout-intro h3 {
    color: #253d4e;
    font-weight: 700;
}
.cart-checkout-options .guest-checkout-link {
    border-color: var(--store-primary, #C99710);
    color: var(--store-primary, #C99710);
}
.cart-checkout-options .guest-checkout-link:hover {
    background: #f0faf5;
    color: var(--store-accent, #8B2E3F);
}
.guest-legal-panel .form-check-label a {
    color: var(--store-primary, #C99710);
    text-decoration: underline;
}
.guest-track-result .badge {
    font-size: 13px;
}
@media (max-width: 767px) {
    .guest-checkout-summary {
        position: static !important;
    }
    .guest-checkout-page .guest-checkout-card {
        padding: 1rem !important;
    }
}

/* ===== Announcement ticker / Deal alert / WhatsApp FAB ===== */
.ec-announce-bar {
    background: var(--store-primary, #C99710);
    color: #fff;
    overflow: hidden;
    line-height: 1;
    z-index: 1030;
}
.ec-announce-bar__viewport {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ec-announce-bar__track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 9px 0;
    width: max-content;
    animation: ecAnnounceScroll 40s linear infinite;
}
.ec-announce-bar__track:hover { animation-play-state: paused; }
.ec-announce-bar__item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 6px 0 10px;
    white-space: nowrap;
}
.ec-announce-bar__dot {
    opacity: 0.55;
    font-size: 10px;
    padding: 0 4px;
}
@keyframes ecAnnounceScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ec-announce-bar__track { animation: none; }
}

.ec-deal-alert {
    position: fixed;
    right: 16px;
    bottom: 88px;
    z-index: 1040;
    width: min(320px, calc(100vw - 24px));
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}
.ec-deal-alert__card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.ec-deal-alert__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--store-secondary, #253d4e);
    color: #fff;
}
.ec-deal-alert__bell { font-size: 16px; line-height: 1; }
.ec-deal-alert__title { flex: 1; font-size: 14px; font-weight: 700; }
.ec-deal-alert__close {
    border: 0; background: transparent; color: #fff;
    font-size: 22px; line-height: 1; cursor: pointer; padding: 0 4px;
    opacity: 0.85;
}
.ec-deal-alert__close:hover { opacity: 1; }
.ec-deal-alert__body { padding: 14px 14px 8px; }
.ec-deal-alert__subtitle {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1f2a37;
    text-align: center;
}
.ec-deal-alert__media {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}
.ec-deal-alert__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
}
.ec-deal-alert__timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: #2b3340;
    border-radius: 10px;
    padding: 10px 8px;
}
.ec-deal-alert__unit {
    text-align: center;
    color: #fff;
}
.ec-deal-alert__unit span {
    display: block;
    background: #fff;
    color: #111;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
}
.ec-deal-alert__unit small {
    font-size: 10px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.ec-deal-alert__cta {
    display: block;
    text-align: center;
    padding: 12px 14px;
    background: var(--store-primary, #C99710);
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
}
.ec-deal-alert__cta:hover { filter: brightness(0.95); color: #fff !important; }

.ec-wa-fab {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 1045;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 52px;
    height: 52px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
    transition: transform .15s ease, box-shadow .15s ease;
}
.ec-wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
    color: #fff !important;
}
.ec-wa-fab__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
@media (max-width: 991.98px) {
    .ec-announce-bar__item { font-size: 11px; }
    .ec-announce-bar__track { padding: 8px 0; animation-duration: 32s; }
    .ec-wa-fab {
        bottom: 72px; /* mob-tab-bar üstü */
        right: 12px;
        padding: 0;
        width: 52px;
        justify-content: center;
    }
    .ec-wa-fab__label { display: none; }
    .ec-deal-alert {
        right: 12px;
        bottom: 136px;
        width: min(300px, calc(100vw - 20px));
    }
}
@media (max-width: 575.98px) {
    .ec-deal-alert {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 132px;
    }
}

