/**
 * Layout: commerce header, sidebar, arama dropdown, GTM
 */

/* Proje genelinde Inter fontu */
html,
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* ========== Commerce Header – Responsive (tüm cihazlar) ========== */
.site-header {
    --header-bg: #fbfbfb;
    --header-border: #e2e8f0;
    --header-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --header-shadow-scrolled: 0 4px 12px rgba(0, 0, 0, 0.08);
    --header-height-main: 64px;
    --header-promo-bg: #111827;
    --header-promo-text: #ffffff;
    --header-promo-accent: #00A8E8;
    --header-nav-hover: #f1f5f9;
    --header-action-size: 44px;
    --header-z: 50;
    --header-inner-px: 0.75rem;
    flex-shrink: 0;
    z-index: var(--header-z);
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
    transition: box-shadow 0.2s ease;
    overflow-x: clip;
    width: 100%;
}

.site-header.is-scrolled {
    box-shadow: var(--header-shadow-scrolled);
}

.site-header__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: max(var(--header-inner-px), env(safe-area-inset-left));
    padding-right: max(var(--header-inner-px), env(safe-area-inset-right));
}

@media (min-width: 480px) {
    .site-header__inner {
        --header-inner-px: 1rem;
    }
}

@media (min-width: 640px) {
    .site-header__inner {
        --header-inner-px: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .site-header__inner {
        --header-inner-px: 1.5rem;
    }
}

/* Promo / trust bar */
.site-header__promo {
    display: none;
    background: var(--header-promo-bg);
    color: var(--header-promo-text);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .site-header__promo {
        display: block;
    }
}

.site-header__promo .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.site-header__promo-text {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--header-promo-accent);
    font-weight: 600;
}

.site-header__promo-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.site-header__promo-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-header__promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    color: var(--header-promo-text);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-header__promo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--header-promo-text);
}

.site-header__promo-link:focus-visible {
    outline: 2px solid var(--header-promo-accent);
    outline-offset: 2px;
}

.site-header__promo-link-icon {
    width: 1rem;
    height: 1rem;
    color: var(--header-promo-accent);
    flex-shrink: 0;
}

.site-header__promo-link-label {
    display: none;
}

@media (min-width: 640px) {
    .site-header__promo-link-label {
        display: inline;
    }
}

/* Main header row */
.site-header__main {
    min-height: var(--header-height-main);
    background: var(--header-bg);
}

/* Mobil: güvenli alan (notch), kompakt yükseklik */
@media (max-width: 639px) {
    .site-header__main {
        min-height: 56px;
    }
}

@media (max-width: 479px) {
    .site-header__main {
        min-height: 52px;
    }
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: var(--header-height-main);
    flex-wrap: nowrap;
    min-width: 0;
}

/* Mobil header: tüm buton ve ikon alanları aynı yükseklik/genişlik (44px) */
@media (max-width: 639px) {
    .site-header__row {
        gap: 0.375rem;
        min-height: 56px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .site-header__actions {
        gap: 0.5rem;
    }
    /* Sabit kare kutular; yükseklikler tamamen eşit */
    .site-header__menu-btn,
    .site-header__phone-mob,
    .site-header__action,
    .site-header__actions .currency-btn {
        width: var(--header-action-size);
        height: var(--header-action-size);
        min-width: var(--header-action-size);
        min-height: var(--header-action-size);
        padding: 0;
        box-sizing: border-box;
    }
    .site-header__action-icon,
    .site-header__menu-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    .site-header__action-badge {
        display: none;
    }
}

/* Çok küçük ekranlar (320–479px): aynı 44px korunur, sadece row kompakt */
@media (max-width: 479px) {
    .site-header__row {
        gap: 0.25rem;
        min-height: 52px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        flex-wrap: wrap;
    }
    .site-header__start {
        flex: 1;
        min-width: 0;
    }
}

@media (min-width: 768px) {
    .site-header__row {
        gap: 0.75rem;
    }
}

.site-header__start {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex-shrink: 0;
}

/* Menu button (mobile) */
.site-header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--header-action-size);
    height: var(--header-action-size);
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-header__menu-btn:hover {
    background: #e5e7eb;
}

.site-header__menu-btn:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}

@media (min-width: 1024px) {
    .site-header__menu-btn {
        display: none;
    }
}

.site-header__menu-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Logo */
.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-header__logo-img {
    height: 2rem;
    width: auto;
    max-height: 3rem;
    object-fit: contain;
    display: block;
}

@media (min-width: 640px) {
    .site-header__logo-img {
        height: 2.25rem;
    }
}

/* Nav (desktop) */
.site-header__nav {
    display: none;
    align-items: center;
    gap: 0.125rem;
    margin-left: 0.25rem;
    padding-left: 0;
}

@media (min-width: 768px) {
    .site-header__nav {
        display: flex;
    }
}

/* Nav link */
.site-header__nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border: 1px solid transparent;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 1024px) {
    .site-header__nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.site-header__nav-link:hover {
    color: #00A8E8;
    background-color: var(--header-nav-hover);
    border-color: #00A8E8;
}

.site-header__nav-link:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}

/* Search (sadece masaüstü – mobilde gizli) */
.site-header__search {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 0.5rem 0 0.75rem;
    position: relative;
}

@media (max-width: 1023px) {
    .site-header__search {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .site-header__search {
        display: flex;
        margin: 0 0.75rem 0 1rem;
    }
}

.site-header__search-form {
    position: relative;
    width: 100%;
}

.site-header__search-input {
    width: 100%;
    height: 2.5rem;
    padding: 0 2.75rem 0 0.875rem;
    border: 1px solid var(--header-border);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 768px) {
    .site-header__search-input {
        height: 2.75rem;
        padding: 0 3rem 0 1rem;
    }
}

.site-header__search-input::placeholder {
    color: #9ca3af;
}

.site-header__search-input:hover {
    border-color: #d1d5db;
}

.site-header__search-input:focus {
    outline: none;
    border-color: #00A8E8;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

.header-search-input-expanded.site-header__search-input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.site-header__search-btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 0.375rem;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.site-header__search-btn:hover {
    color: #00A8E8;
}

.site-header__search-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* site-header__end: arama + telefon + aksiyonlar */
.site-header__end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

@media (min-width: 640px) {
    .site-header__end {
        gap: 0.75rem;
    }
}


/* Mobilde telefon (sadece küçük ekranda görünür) */
.site-header__phone-mob {
    display: none;
}

@media (max-width: 639px) {
    .site-header__phone-mob {
        display: inline-flex;
    }
}

@media (min-width: 640px) {
    .site-header__phone-mob {
        display: none;
    }
}

/* Actions (favoriler, karşılaştır, para birimi) */
/* Favori ve karşılaştır butonları mobilde gizli (tüm sayfalarda) */
@media (max-width: 767px) {
    #header-favorites-btn,
    #header-compare-btn,
    .product-card .product-card-actions .favorite-btn,
    .product-card .product-card-actions .compare-btn,
    .product-box .product-actions .favorite-btn,
    .product-box .product-actions .compare-btn,
    .product-box .product-image .product-actions .favorite-btn,
    .product-box .product-image .product-actions .compare-btn,
    .favorite-btn-detail,
    .compare-btn-detail {
        display: none !important;
    }
}
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .site-header__actions {
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .site-header__actions {
        gap: 0.75rem;
    }
}

.site-header__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: var(--header-action-size);
    min-height: var(--header-action-size);
    padding: 0 0.5rem;
    border: 1px solid var(--header-border);
    border-radius: 0;
    color: #4b5563;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Mobilde butonlar arası gap ile ayrı, her biri yuvarlatılmış */
@media (max-width: 639px) {
    .site-header__action {
        border-radius: 0.5rem;
    }
}

@media (min-width: 640px) {
    .site-header__end .site-header__action:not(:first-child),
    .site-header__end .site-header__actions > *:not(:first-child) {
        margin-left: 0;
    }
    .site-header__action {
        border-radius: 0.5rem;
    }
}

.site-header__action:hover {
    background: var(--header-nav-hover);
    border-color: #cbd5e1;
    color: #00A8E8;
}

.site-header__action:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}

.site-header__actions .currency-btn {
    font: inherit;
    cursor: pointer;
    background: #fff;
}

.site-header__actions .currency-btn.site-header__action--active,
.site-header__action--active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.site-header__actions .currency-btn.site-header__action--active:hover,
.site-header__action--active:hover {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.site-header__action-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.site-header__action-badge {
    display: none;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
}

@media (min-width: 640px) {
    .site-header__action-badge {
        display: inline;
    }
}

/* Search dropdown (inside .site-header__search so it aligns under input) */
.site-header__search-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    margin-top: -1px;
    max-height: min(70vh, 420px);
    background: #fff;
    border: 1px solid var(--header-border);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    z-index: 70;
    transform-origin: 50% 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-header__search-dropdown.header-search-dropdown-closed {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px) scale(0.98);
}

.site-header__search-dropdown.header-search-dropdown-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border-color: #00A8E8;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(0, 168, 232, 0.15);
}

#header-search-dropdown .site-header__search-dropdown-section {
    padding: 0.5rem;
    border-bottom: 1px solid var(--header-border);
}

#header-search-dropdown .site-header__search-dropdown-section:last-of-type {
    border-bottom: none;
}

.site-header__search-dropdown-title {
    margin: 0 0 0.375rem 0;
    padding: 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.site-header__search-dropdown-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.site-header__search-dropdown-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__search-dropdown-loading,
.site-header__search-dropdown-empty {
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#header-search-suggestions {
    max-height: 320px;
    overflow-y: auto;
}

/* GTM noscript iframe */
.gtm-noscript-iframe {
    display: none;
    visibility: hidden;
}

/* ========== Google Translate Dropdown - Custom CSS ========== */
.translate-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.translate-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.75rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.translate-dropdown__trigger-content {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.translate-dropdown__trigger:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.translate-dropdown__trigger:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}

.translate-dropdown__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.translate-dropdown__label {
    max-width: 6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.translate-dropdown__chevron {
    width: 1rem;
    height: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.translate-dropdown.translate-dropdown--open .translate-dropdown__chevron {
    transform: rotate(180deg);
}

/* Loading state */
.translate-dropdown__loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.translate-dropdown--loading .translate-dropdown__trigger-content {
    display: none;
}

.translate-dropdown--loading .translate-dropdown__loading {
    display: inline-flex;
}

.translate-dropdown--loading .translate-dropdown__trigger {
    cursor: wait;
}

.translate-dropdown__spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid #e2e8f0;
    border-top-color: #00A8E8;
    border-radius: 50%;
    animation: translate-dropdown-spin 0.8s linear infinite;
}

@keyframes translate-dropdown-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Panel - 2026 best practice: opacity + scale animasyonu, hidden attribute kullanılmaz */
.translate-dropdown__panel {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    min-width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.96);
    transform-origin: top right;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.2s;
}

.translate-dropdown.translate-dropdown--open .translate-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

@media (prefers-reduced-motion: reduce) {
    .translate-dropdown__panel {
        transition-duration: 0.01ms;
    }
}

.translate-dropdown__list {
    margin: 0;
    padding: 0.5rem;
    list-style: none;
}

.translate-dropdown__item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background 0.15s;
}

.translate-dropdown__item:hover {
    background: #f1f5f9;
}

.translate-dropdown__item--active {
    background: rgba(0, 168, 232, 0.1);
    color: #00A8E8;
    font-weight: 500;
}

.translate-dropdown__item--active:hover {
    background: rgba(0, 168, 232, 0.15);
}

/* Mobilde translate trigger: header butonlarıyla aynı boyut (44×44px) */
@media (max-width: 639px) {
    .translate-dropdown__label {
        display: none;
    }
    .translate-dropdown__chevron {
        display: none;
    }
    .translate-dropdown__trigger {
        width: var(--header-action-size);
        height: var(--header-action-size);
        min-width: var(--header-action-size);
        min-height: var(--header-action-size);
        padding: 0;
        box-sizing: border-box;
    }
    .translate-dropdown__panel {
        min-width: 200px;
        right: 0;
        left: auto;
    }
}

/* ========== Para birimi dropdown (dil seçici ile aynı stil) ========== */
.currency-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.currency-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0 0.75rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.currency-dropdown__trigger-content {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.currency-dropdown__trigger:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.currency-dropdown__trigger:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: 2px;
}
.currency-dropdown__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.currency-dropdown__label {
    max-width: 6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.currency-dropdown__chevron {
    width: 1rem;
    height: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.currency-dropdown.currency-dropdown--open .currency-dropdown__chevron {
    transform: rotate(180deg);
}

/* Panel - 2026 best practice: opacity + scale animasyonu */
.currency-dropdown__panel {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    min-width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.96);
    transform-origin: top right;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.2s;
}
.currency-dropdown.currency-dropdown--open .currency-dropdown__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

@media (prefers-reduced-motion: reduce) {
    .currency-dropdown__panel {
        transition-duration: 0.01ms;
    }
}
.currency-dropdown__list {
    margin: 0;
    padding: 0.5rem;
    list-style: none;
}
.currency-dropdown__item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background 0.15s;
}
.currency-dropdown__item:hover {
    background: #f1f5f9;
}
.currency-dropdown__item--active {
    background: rgba(0, 168, 232, 0.1);
    color: #00A8E8;
    font-weight: 500;
}
.currency-dropdown__item--active:hover {
    background: rgba(0, 168, 232, 0.15);
}
@media (max-width: 639px) {
    .currency-dropdown__label {
        display: none;
    }
    .currency-dropdown__chevron {
        display: none;
    }
    .currency-dropdown__trigger {
        width: var(--header-action-size);
        height: var(--header-action-size);
        min-width: var(--header-action-size);
        min-height: var(--header-action-size);
        padding: 0;
        box-sizing: border-box;
    }
}

/* Google Translate Element gizle (biz kendi dropdown kullanıyoruz) */
#google-translate-element,
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

/* notranslate: fiyat, SKU vb. çevirilmesin */
.notranslate {
    /* Google bu class'ı otomatik atlayar */
}

/* Ürün resimleri: lazy loading spinner */
.product-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrap .img-loading-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.product-image-wrap .img-loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.product-image-wrap .img-loading-spinner::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #00A8E8;
    border-radius: 50%;
    animation: product-img-spin 0.7s linear infinite;
}

.product-image-wrap img {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-image-wrap img.loaded {
    opacity: 1;
}

/* Ürün detay galerisi: kare alan için min-height devre dışı (ProductDetail.cshtml) */
.product-detail-gallery .product-image-wrap {
    min-height: 0;
}

@keyframes product-img-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== Sidebar solda, header sağda sabit, orta scroll ========== */
.layout-app {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

/* Sağ kolon: header + scroll alanı */
.layout-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* Sidebar: 320px (Kategori tree ile uyumlu arka plan), sabit */
.layout-sidebar {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
    background: #fbfbfb;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 40;
}

.layout-sidebar-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

/* Sidebar scroll alanı: kategoriler + sertifika kutusu birlikte scroll olur */
.layout-sidebar-scroll {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Sayfa linkleri (mobil bottom sheet içinde, desktop sidebar'da gizli) */
.layout-sidebar-pages {
    display: none;
    flex-direction: column;
    gap: 0;
    flex-shrink: 0;
    border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 1023px) {
    .layout-sidebar-pages {
        display: flex;
    }
}
.layout-sidebar-page-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
    transition: color 0.2s ease, background 0.2s ease;
}
.layout-sidebar-page-link:first-child {
    border-top: none;
}
.layout-sidebar-page-link:hover {
    color: #00A8E8;
    background: rgba(0, 168, 232, 0.06);
}
.layout-sidebar-page-link:focus-visible {
    outline: 2px solid #00A8E8;
    outline-offset: -2px;
}

.layout-sidebar-scroll .category-tree {
    flex: 0 0 auto;
    overflow-y: visible;
}

.layout-sidebar-scroll .sidebar-certificates-box {
    margin-top: 1rem;
    flex-shrink: 0;
}

/* Logo: mobilde gizli, desktop sidebar'da görünür */
@media (max-width: 1023px) {
    .layout-sidebar-logo {
        display: none !important;
    }
}
.layout-sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #fbfbfb;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.layout-sidebar-logo:hover {
    opacity: 0.9;
}
.layout-sidebar-logo__img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Sidebar başlık: kategori tree ile uyumlu, vurgulu başlık */
.layout-sidebar-header {
    --sidebar-head-accent: #00A8E8;
    --sidebar-head-bg: rgba(0, 168, 232, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: var(--sidebar-head-bg);
    flex-shrink: 0;
    position: relative;
}

.layout-sidebar-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.layout-sidebar-title-accent {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.5rem;
    border-radius: 0 2px 2px 0;
    background: var(--sidebar-head-accent);
}

.layout-sidebar-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(0, 168, 232, 0.12);
    color: var(--sidebar-head-accent);
    flex-shrink: 0;
}

.layout-sidebar-title-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.layout-sidebar-title-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.layout-sidebar-close {
    display: none;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    color: #111827;
    background: transparent;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}
.layout-sidebar-close:hover {
    color: #111827;
    background: #f3f4f6;
}

@media (max-width: 1023px) {
    .layout-sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobil: bottom sheet modal – alttan yukarı açılır (best practice, tüm cihazlara uyumlu) */
@media (max-width: 1023px) {
    .layout-sidebar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        /* Header altından başla: 56px = mobil header yüksekliği */
        top: 56px;
        height: auto;
        min-height: 0;
        width: 100%;
        min-width: 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.3s ease;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
        z-index: 60;
        border-radius: 16px 16px 0 0;
        border-right: none;
        border-top: 1px solid #e2e8f0;
        /* Safe area: notch, home indicator, landscape */
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .layout-sidebar.layout-sidebar-open {
        transform: translateY(0);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
    }

    .layout-sidebar-inner {
        height: 100%;
        min-height: 0;
    }

    .layout-sidebar-scroll {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    /* Bottom sheet handle (Material Design, 44px touch target) */
    .layout-sidebar-handle {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0 12px;
        min-height: 44px;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .layout-sidebar-handle::before {
        content: '';
        width: 40px;
        height: 4px;
        background: #cbd5e1;
        border-radius: 2px;
    }
}

/* Küçük telefonlar (320–479px): header 52px */
@media (max-width: 479px) {
    .layout-sidebar {
        top: 52px;
        border-radius: 12px 12px 0 0;
    }
    .layout-sidebar .layout-sidebar-logo {
        padding: 1rem 1rem;
    }
    .layout-sidebar .layout-sidebar-header {
        padding: 0.75rem 1rem 0.75rem 1.25rem;
    }
}

/* Tablet / geniş mobil (768–1023px): header altından, ortalanmış */
@media (min-width: 768px) and (max-width: 1023px) {
    .layout-sidebar {
        top: 64px;
        left: 50%;
        right: auto;
        width: min(480px, 100%);
        transform: translate(-50%, 100%);
    }
    .layout-sidebar.layout-sidebar-open {
        transform: translate(-50%, 0);
    }
}

@media (min-width: 1024px) {
    .layout-sidebar-handle {
        display: none;
    }
}

@media (min-width: 1024px) {
    .layout-sidebar {
        position: relative;
    }
}

/* Overlay: 2026 best practice – visibility/opacity ile animasyonlu geçiş (display kullanılmaz) */
.layout-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 35;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s;
}

.layout-sidebar-overlay.layout-sidebar-overlay-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

/* Mobilde overlay ve bottom sheet header'ın üstünde açılır (z-index: header 50 < overlay 55 < sidebar 60) */
@media (max-width: 1023px) {
    .layout-sidebar-overlay {
        z-index: 55;
        touch-action: none;
    }
}

@media (min-width: 1024px) {
    .layout-sidebar-overlay {
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .layout-sidebar-overlay {
        transition-duration: 0.01ms;
    }
}

/* Orta alan: sadece burası scroll olur */
.layout-main {
    flex: 1;
    min-height: 0;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* ========== Breadcrumb – Generic Component (UI/UX) ========== */
.breadcrumb-nav {
    --breadcrumb-primary: #00A8E8;
    --breadcrumb-primary-hover: #0087c4;
    --breadcrumb-text: #222222;
    --breadcrumb-text-muted: #64748b;
    --breadcrumb-separator: #cbd5e1;
    --breadcrumb-bg: #f8fafc;
    --breadcrumb-radius: 10px;
    --breadcrumb-padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0;
    list-style: none;
    padding: var(--breadcrumb-padding);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--breadcrumb-text-muted);
    background: var(--breadcrumb-bg);
    border-radius: var(--breadcrumb-radius);
    border: 1px solid rgba(0, 168, 232, 0.08);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--breadcrumb-text-muted);
    text-decoration: none;
    padding: 0.25rem 0.375rem;
    margin: -0.25rem -0.375rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--breadcrumb-primary);
    background: rgba(0, 168, 232, 0.08);
}

.breadcrumb-link:focus-visible {
    outline: 2px solid var(--breadcrumb-primary);
    outline-offset: 2px;
}

.breadcrumb-home-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--breadcrumb-text-muted);
    transition: color 0.2s ease;
}

.breadcrumb-link:hover .breadcrumb-home-icon {
    color: var(--breadcrumb-primary);
}

.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--breadcrumb-text);
    font-weight: 600;
    padding: 0.25rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-current .breadcrumb-home-icon {
    color: var(--breadcrumb-primary);
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--breadcrumb-separator);
    padding: 0 0.3rem;
}

.breadcrumb-chevron {
    width: 1rem;
    height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .breadcrumb-link,
    .breadcrumb-nav * {
        transition-duration: 0.01ms;
    }
}

/* ========== Kategori tree – Header ile aynı stil, sağ/sol sıfır (bitişik) ========== */
/* .layout-sidebar-scroll içinde scroll wrapper sorumlu; burada varsayılan (scroll alanı yoksa) */
.category-tree {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0 1rem 0;
    --cat-primary: #00A8E8;
    --cat-primary-soft: rgba(0, 168, 232, 0.08);
    --cat-primary-soft-hover: rgba(0, 168, 232, 0.12);
    --cat-text: #0f172a;
    --cat-text-secondary: #334155;
    --cat-border: #e2e8f0;
    --cat-bg-hover: #f8fafc;
    --cat-icon-bg: #f1f5f9;
    --cat-radius: 0;
    --cat-radius-sm: 0;
    --cat-touch: 52px;
}

.category-tree-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-tree-item {
    margin: 0;
}

/* ----- Üst kategori: header gibi tam genişlik, sağ/sol sıfır ----- */
.category-tree-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-height: var(--cat-touch);
    padding: 0.75rem 0 0.75rem 0;
    padding-left: 1.5rem;
    padding-right: 1.25rem;
    border: none;
    border-top: 1px solid var(--cat-border);
    border-radius: 0;
    text-decoration: none;
    color: var(--cat-text);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
    transition: color 0.2s ease, background 0.2s ease;
}
.category-tree-link:hover {
    color: var(--cat-primary);
    background: var(--cat-primary-soft);
}
.category-tree-link:focus-visible {
    outline: 2px solid var(--cat-primary);
    outline-offset: 2px;
}

/* Ok: linkin sonunda, ayrı kutu değil – metinle aynı satırda */
.category-tree-chevron {
    margin-left: auto;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
    color: var(--cat-text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}
.category-tree-chevron .category-tree-chevron-icon,
.category-tree-chevron svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-tree-chevron[aria-expanded="true"] .category-tree-chevron-icon,
.category-tree-chevron[aria-expanded="true"] svg {
    transform: rotate(90deg);
}
.category-tree-link:hover .category-tree-chevron {
    color: var(--cat-primary);
}

/* Kategori ikonu: header ile uyumlu */
.category-tree-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--cat-icon-bg);
    transition: background 0.2s ease;
}

.category-tree-link:hover .category-tree-icon-default {
    background: #e2e8f0;
}

.category-tree-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tree-icon-default {
    color: var(--cat-text-secondary);
}

.category-tree-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ----- Alt kategoriler: 2026 best practice – max-height ile animasyonlu açılma ----- */
.category-tree-children {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.category-tree-children.category-tree-children-open {
    max-height: 600px;
    opacity: 1;
}

.category-tree-child {
    margin: 0;
}

.category-tree-child-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-height: 46px;
    padding: 0.625rem 0 0.625rem 0;
    padding-left: 2.5rem;
    padding-right: 1.25rem;
    border: none;
    border-top: 1px solid var(--cat-border);
    border-radius: 0;
    text-decoration: none;
    color: var(--cat-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.category-tree-child-link:hover {
    color: var(--cat-primary);
    background: var(--cat-primary-soft);
}
.category-tree-child-link:focus-visible {
    outline: 2px solid var(--cat-primary);
    outline-offset: 2px;
}

.category-tree-child-chevron {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--cat-border);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.category-tree-child-link:hover .category-tree-child-chevron {
    color: var(--cat-primary);
}

.category-tree-child-label {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ----- Boş durum: dostane mesaj ----- */
.category-tree-empty {
    padding: 2.5rem 1.5rem;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--cat-text-secondary);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* ----- Aktif kategori: vurgulu ----- */
.category-tree-link-active,
.category-tree-link-active:hover {
    color: var(--cat-primary);
    background: var(--cat-primary-soft);
    font-weight: 600;
}

.category-tree-link-active .category-tree-icon-default {
    background: var(--cat-primary-soft);
    color: var(--cat-primary);
}

/* İsteğe bağlı: alt kategori aktif (JS ile .category-tree-child-link-active eklenebilir) */
.category-tree-child-link-active,
.category-tree-child-link-active:hover {
    color: var(--cat-primary);
    font-weight: 600;
}

/* Reduce motion: animasyonları kısalt */
@media (prefers-reduced-motion: reduce) {
    .category-tree-chevron,
    .category-tree-parent,
    .category-tree-link,
    .category-tree-toggle,
    .category-tree-children,
    .category-tree-child-link {
        transition-duration: 0.01ms !important;
    }
    .category-tree-toggle[aria-expanded="true"] .category-tree-chevron {
        transition: none;
    }
}

/* ========== Sidebar: Sertifikalarımız kutusu (sidebar'ın en altında) ========== */
.sidebar-certificates-box {
    --cert-accent: #00A8E8;
    --cert-bg: rgba(0, 168, 232, 0.06);
    --cert-border: rgba(0, 168, 232, 0.2);
    --cert-text: #0f172a;
    --cert-text-muted: #475569;
    display: block;
    margin-top: auto;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    padding: 0;
    border: 1px solid var(--cert-border);
    border-radius: 12px;
    background: var(--cert-bg);
    box-shadow: 0 1px 3px rgba(0, 168, 232, 0.06);
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sidebar-certificates-box:hover {
    background: rgba(0, 168, 232, 0.1);
    border-color: rgba(0, 168, 232, 0.35);
    box-shadow: 0 2px 8px rgba(0, 168, 232, 0.12);
}
.sidebar-certificates-box:focus-visible {
    outline: 2px solid var(--cert-accent);
    outline-offset: 2px;
}

.sidebar-certificates-box__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.sidebar-certificates-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: rgba(0, 168, 232, 0.12);
    color: var(--cert-accent);
    flex-shrink: 0;
}

.sidebar-certificates-box__icon-svg {
    width: 1.375rem;
    height: 1.375rem;
}

.sidebar-certificates-box__content {
    min-width: 0;
}

.sidebar-certificates-box__title {
    margin: 0 0 0.125rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cert-text);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.sidebar-certificates-box__desc {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--cert-text-muted);
    font-weight: 500;
    line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
    .sidebar-certificates-box {
        transition: none;
    }
}

/* ========== Kategori / Alt Kategori Açıklama Bloğu (Breadcrumb altı) ========== */
.category-intro {
    --intro-primary: #00A8E8;
    --intro-bg: linear-gradient(135deg, rgba(0, 168, 232, 0.04) 0%, rgba(0, 168, 232, 0.02) 100%);
    --intro-border: rgba(0, 168, 232, 0.12);
    --intro-text: #0f172a;
    --intro-text-muted: #475569;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--intro-bg);
    border: 1px solid var(--intro-border);
    border-radius: 12px;
}

.category-intro__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--intro-text);
    letter-spacing: -0.02em;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-intro__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: rgba(0, 168, 232, 0.12);
    color: var(--intro-primary);
    flex-shrink: 0;
}

.category-intro__title-icon svg,
.category-intro__title-icon i {
    width: 1.125rem;
    height: 1.125rem;
}

.category-intro__meta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
}

.category-intro__desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--intro-text-muted);
}

.category-intro__desc p:last-child {
    margin-bottom: 0;
}

/* Alt kategori bölüm başlığı (Category sayfasında her alt kategorinin üstündeki başlık) */
.category-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.03) 0%, rgba(0, 168, 232, 0.01) 100%);
    border: 1px solid rgba(0, 168, 232, 0.08);
    border-radius: 10px;
}

.category-section-header__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-section-header__meta {
    font-size: 0.8125rem;
    color: #64748b;
}

.category-section-header__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #475569;
}

@media (prefers-reduced-motion: reduce) {
    .category-intro,
    .category-section-header {
        transition: none;
    }
}

/* Teknik özellikler: CKEditor HTML olduğu gibi gösterilir, prose/typography uygulanmaz */
.technical-description-html {
    font-size: 0.875rem;
    line-height: 1.5;
}
.technical-description-html p,
.technical-description-html ul,
.technical-description-html ol,
.technical-description-html li,
.technical-description-html table,
.technical-description-html td,
.technical-description-html th,
.technical-description-html strong,
.technical-description-html h1,
.technical-description-html h2,
.technical-description-html h3 {
    all: revert;
}

/* Admin ürün listesi filtreleri: tüm input/select/butonlar aynı yükseklik ve hizada */
.admin-filter-control {
    min-height: 2.75rem;
    box-sizing: border-box;
}

/* Ürünler sayfası: dropdown açılma animasyonu (Tailwind uyumlu) */
.product-list-select-dropdown.product-list-select-dropdown-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    visibility: visible;
}
