/* ═══════════════════════════════════════════════════════════════
   SITE STYLE — Maritime E-Ticaret
   Avesta Travel estetiği: Lacivert + Teal + Turuncu aksan
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.55;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background: var(--surface-muted);
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.global-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #ffffff;
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

/* Topbar - FREE SHIPPING Banner */
.global-topbar {
    max-width: 82rem;
    margin: 0 auto;
    padding: 0.5rem 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: var(--type-xs);
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-on-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
}

.global-topbar__left,
.global-topbar__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-on-dark);
}

.global-topbar__link {
    color: rgba(232,244,253,.8);
    text-decoration: none;
    transition: color var(--duration);
}
.global-topbar__link:hover { color: #fff; }

/* Ana header satırı */
.global-header__main {
    max-width: 82rem;
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
}

/* Marka */
.global-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.global-brand__logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md);
}

.global-brand__logo--text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.global-brand__name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.01em;
}

/* Nav */
.global-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.global-nav__link {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--duration);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}
.global-nav__link:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-1px);
}
.global-nav__link.is-active {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.global-nav__item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    vertical-align: top;
}
.global-nav__item--has-sub {
    z-index: 5;
}
.global-nav__item--has-sub:hover,
.global-nav__item--has-sub:focus-within {
    z-index: 20;
}
.global-nav__trigger {
    appearance: none;
    border: none;
    cursor: pointer;
    background: transparent;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    transition: all var(--duration);
}
.global-nav__trigger:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-1px);
}
.global-nav__link--parent {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.global-nav__item--has-sub:hover .global-nav__dropdown,
.global-nav__item--has-sub:focus-within .global-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.global-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 13rem;
    max-width: 20rem;
    max-height: min(70vh, 24rem);
    overflow-y: auto;
    padding: 0.4rem 0;
    margin: 0.15rem 0 0;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.4rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}
.global-nav__dd-link {
    display: block;
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.35;
}
.global-nav__dd-link:hover {
    background: var(--surface-muted);
    color: var(--primary);
}
.global-nav__dd-link.is-active {
    background: rgba(59, 130, 246, 0.12);
    color: var(--primary);
}
.global-nav__dd-heading {
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.35rem 1rem 0.15rem;
}
.global-nav__dd-nest {
    padding-bottom: 0.35rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-subtle);
}
.global-nav__dd-group:last-child .global-nav__dd-nest {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.global-nav__item.is-branch-active > .global-nav__link--parent,
.global-nav__item.is-branch-active > .global-nav__trigger {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.mobile-nav__details {
    border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.35rem;
    font-weight: 600;
    color: var(--text-color);
}
.mobile-nav__summary::-webkit-details-marker {
    display: none;
}
.mobile-nav__sub {
    padding: 0 0 0.5rem 0.25rem;
    border-left: 2px solid var(--border-subtle);
    margin: 0 0 0.35rem 0.65rem;
}
.mobile-nav__link--sub {
    font-size: 0.86rem;
    font-weight: 500;
    opacity: 0.95;
}
.mobile-nav__link.is-active {
    color: var(--primary);
    font-weight: 700;
}

/* Header sağ aksiyonlar */
.global-header__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.site-main { min-height: calc(100vh - 280px); }

.hero {
    margin: 0 0 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    box-shadow: var(--shadow-lg);
    position: relative;
    min-height: 280px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14,165,233,0.1) 100%);
    pointer-events: none;
}

/* Dekoratif dalgalar */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(14,165,233,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 70%, rgba(249,115,22,.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero__slides {
    position: relative;
    min-height: 400px;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero__slide {
    position: absolute;
    inset: 0;
    padding: 2.2rem 2rem;
    color: #fff;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity 0.38s var(--ease-out), transform 0.38s var(--ease-out);
}
.hero__slide.is-active {
    opacity: 1;
    transform: translateX(0);
}

.hero__slide-content {
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: var(--type-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14,165,233,.18);
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(14,165,233,.3);
}

.hero__title {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    max-width: 600px;
}

.hero__desc {
    margin: 0 0 1.2rem;
    max-width: 44ch;
    font-size: var(--type-body);
    color: rgba(232,244,253,.82);
    line-height: 1.6;
}

.hero__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.5rem 0.6rem 0.7rem;
    position: relative;
    z-index: 1;
}

.hero__dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: background var(--duration), transform var(--duration);
}
.hero__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

/* ═══════════════════════════════════════════════════════════════
   STOREFRONT
   ═══════════════════════════════════════════════════════════════ */
.storefront {
    max-width: 82rem;
    margin: 0 auto;
    padding: 0 1.25rem 3.5rem;
}

.storefront__head h1 {
    font-family: var(--font-display);
    font-size: var(--type-title);
    font-weight: 700;
    margin: 0 0 1.4rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.storefront__notice {
    margin: 0;
    padding: 1rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.storefront__notice--error {
    border-color: #fecaca;
    background: #fff5f5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER (başlık + "tümünü gör" bağlantısı)
   ═══════════════════════════════════════════════════════════════ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1.2rem;
    flex-wrap: wrap;
}

.section-header__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--type-title);
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-header__link {
    flex-shrink: 0;
    font-size: var(--type-small);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS SECTION — her bir ürün bölümü sarmalayıcısı
   ═══════════════════════════════════════════════════════════════ */
.products-section {
    max-width: 82rem;
    margin: 0 auto 2.8rem;
    padding: 0 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES BAR — 4 özellik kutusu
   ═══════════════════════════════════════════════════════════════ */
.features-bar {
    max-width: 82rem;
    margin: 0 auto 2rem;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.features-bar__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration);
}

.features-bar__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.features-bar__icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.features-bar__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.features-bar__title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.features-bar__desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY STRIP — yatay scroll kategoriler
   ═══════════════════════════════════════════════════════════════ */
.category-strip {
    max-width: 82rem;
    margin: 0 auto 2rem;
    padding: 0 1.25rem;
}

.category-strip__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 0.9rem;
}

.category-strip__scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
    -webkit-overflow-scrolling: touch;
}

.category-strip__scroll::-webkit-scrollbar {
    height: 4px;
}
.category-strip__scroll::-webkit-scrollbar-track { background: transparent; }
.category-strip__scroll::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 2px; }

.category-card {
    flex: 0 0 auto;
    min-width: 8.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1.1rem 1.2rem;
    background: var(--surface-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-xs);
    transition: all var(--duration) var(--ease-out);
    text-align: center;
    cursor: pointer;
}

.category-card:hover,
.category-card.is-active {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm), 0 0 0 1px var(--primary-glow);
    background: color-mix(in srgb, var(--primary) 6%, #fff);
}

.category-card__icon {
    font-size: 2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.category-card__thumb {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border-subtle);
}

.category-card__name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

.category-card__count {
    font-size: 0.68rem;
    color: var(--text-muted);
    background: var(--surface-muted);
    border: 1px solid var(--border-subtle);
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   PROMO BANNER — göz alıcı kampanya alanı
   ═══════════════════════════════════════════════════════════════ */
.promo-banner {
    max-width: 82rem;
    margin: 0 auto 2.8rem;
    padding: 0 1.25rem;
}

.promo-banner__inner {
    background: linear-gradient(135deg,
        var(--secondary) 0%,
        var(--secondary-light) 50%,
        color-mix(in srgb, var(--primary-dark) 70%, var(--secondary)) 100%);
    border-radius: var(--radius-xl);
    padding: 2.8rem 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.promo-banner__inner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: 5%;
    width: 45%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(14,165,233,.18) 0%, transparent 65%);
    pointer-events: none;
}
.promo-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 20%;
    width: 30%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(249,115,22,.10) 0%, transparent 65%);
    pointer-events: none;
}

.promo-banner__content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.promo-banner__eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14,165,233,.18);
    border: 1px solid rgba(14,165,233,.3);
    padding: 0.22rem 0.72rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}

.promo-banner__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.promo-banner__desc {
    margin: 0 0 1.6rem;
    font-size: var(--type-body);
    color: rgba(232,244,253,.8);
    max-width: 42ch;
    line-height: 1.6;
}

.promo-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.promo-banner__btn-outline {
    color: rgba(232,244,253,.9) !important;
    border-color: rgba(232,244,253,.4) !important;
    background: transparent !important;
}
.promo-banner__btn-outline:hover {
    border-color: rgba(232,244,253,.8) !important;
    background: rgba(255,255,255,.08) !important;
}

.promo-banner__visual {
    position: relative;
    z-index: 1;
    font-size: 7rem;
    line-height: 1;
    opacity: 0.80;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 24px rgba(14,165,233,.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* Site bazli bannerlar */
.site-banners {
    max-width: 82rem;
    margin: 0 auto 2rem;
    padding: 0 1.25rem;
}
.site-banners__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}
.site-banner-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--text-on-dark);
    min-height: 10rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}
.site-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 82%);
    transform: translateX(-145%);
    opacity: 0;
    transition: transform 0.75s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 2;
}
.site-banner-card:hover::before {
    transform: translateX(145%);
    opacity: 1;
}
.site-banner-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72%;
    background: linear-gradient(180deg, rgba(9, 15, 26, 0) 8%, rgba(9, 15, 26, 0.42) 62%, rgba(9, 15, 26, 0.62) 100%);
    pointer-events: none;
    z-index: 1;
}
.site-banner-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}
.site-banner-card__title {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0 0 0.4rem;
    padding: 0.18rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.46);
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.site-banner-card__desc {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin: 0 0 0.8rem;
    padding: 0.16rem 0.5rem;
    font-size: 0.9rem;
    opacity: 0.92;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.site-banner-card .btn {
    position: relative;
    z-index: 3;
    margin-top: auto;
    align-self: flex-start;
    min-height: 2rem;
    padding: 0.28rem 0.82rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.86) 0%, rgba(59, 130, 246, 0.88) 55%, rgba(96, 165, 250, 0.88) 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(1.5px);
}
.site-banner-card .btn:hover {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.9) 0%, rgba(59, 130, 246, 0.92) 56%, rgba(147, 197, 253, 0.9) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 18px rgba(30, 64, 175, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.26);
    transform: translateY(-1px);
}
.storefront-intro {
    max-width: 82rem;
    margin: 0 auto 1.5rem;
    padding: 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}
.storefront-intro p {
    margin: 0;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    color: var(--text-color);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST SECTION — neden biz
   ═══════════════════════════════════════════════════════════════ */
.trust-section {
    max-width: 82rem;
    margin: 0 auto 3rem;
    padding: 2.2rem 2rem;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.trust-section__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 2rem;
}

.trust-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.trust-item__icon {
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
    display: block;
}

.trust-item__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.trust-item__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    max-width: 18ch;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Arama Formu & Aksiyon Güncelleri
   ═══════════════════════════════════════════════════════════════ */
.global-header__main {
    grid-template-columns: auto 1fr auto !important;
    gap: 1rem !important;
}

.global-search {
    display: none;
}

.global-search__input {
    width: 100%;
    height: 2.6rem;
    padding: 0 3rem 0 1.1rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font: inherit;
    font-size: var(--type-small);
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    outline: none;
    transition: all var(--duration);
}

.global-search__input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(196,154,60,0.3);
}

.global-search__input::placeholder { color: rgba(255,255,255,0.6); }

.global-search__btn {
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    padding: 0.2rem;
    font-size: 1rem;
    line-height: 1;
    transition: all var(--duration);
}
.global-search__btn:hover { color: var(--primary); }

/* Header aksiyonlar kutusu */
.global-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobil hamburger */
.global-header__mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    line-height: 1;
    transition: background var(--duration), border-color var(--duration);
    flex-shrink: 0;
}
.global-header__mobile-toggle:hover {
    background: var(--surface-muted);
    border-color: var(--primary);
}

/* Sepet rozeti */
.global-cart {
    position: relative;
    gap: 0.4rem;
}

.global-cart__badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    min-width: 1.3rem;
    height: 1.3rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.3rem;
    border: 2px solid #fff;
    box-shadow: var(--shadow-xs);
}

/* Topbar ek stiller */
.global-topbar__sep {
    color: rgba(232,244,253,.4);
    font-size: 0.7rem;
}
.global-topbar__text {
    color: rgba(232,244,253,.7);
    font-size: var(--type-xs);
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL NAV DRAWER
   ═══════════════════════════════════════════════════════════════ */
.mobile-nav-drawer {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s var(--ease-out), padding 0.32s;
}

.mobile-nav-drawer.is-open {
    max-height: min(75vh, calc(100vh - 5.5rem));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px)) 1.4rem max(1.25rem, env(safe-area-inset-left, 0px));
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: background var(--duration), color var(--duration);
}
.mobile-nav__link:hover {
    background: var(--primary-glow);
    color: var(--primary-dark);
}

.mobile-search {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-subtle);
}

.mobile-search__input {
    flex: 1;
    height: 2.5rem;
    padding: 0 0.85rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.92rem;
    outline: none;
    background: var(--surface-muted);
    color: var(--text-color);
}
.mobile-search__input:focus { border-color: var(--primary); }

.mobile-search__btn { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER EK STİLLER
   ═══════════════════════════════════════════════════════════════ */
.global-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.global-footer__brand-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.global-footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.global-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.global-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(232,244,253,.72);
    text-decoration: none;
    font-size: var(--type-small);
    transition: color var(--duration);
}
.global-footer__contact-link:hover { color: #ffffff !important; }

.global-footer__social {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
}

.global-footer__social-icon { font-size: 1rem; }

.global-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.1rem;
}

.global-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.22rem 0.62rem;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(232,244,253,.75);
    background: rgba(255,255,255,.06);
}

.global-footer__bottom {
    max-width: 82rem;
    margin: 1.5rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.global-footer__copy-links {
    display: flex;
    gap: 1rem;
}

.global-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
}

.global-footer__server-timing {
    font-size: 0.72rem;
    color: rgba(232, 244, 253, 0.45);
    font-family: ui-monospace, monospace;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   FILTER CHIPS — aktif filtre etiketleri
   ═══════════════════════════════════════════════════════════════ */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: color-mix(in srgb, var(--primary) 10%, #fff);
    border: 1.5px solid color-mix(in srgb, var(--primary) 30%, transparent);
    border-radius: var(--radius-full);
    font-size: var(--type-small);
    font-weight: 600;
    color: var(--primary-dark);
}

.filter-chip--count {
    background: var(--surface-muted);
    border-color: var(--border-subtle);
    color: var(--text-muted);
    font-weight: 500;
}

.filter-chip__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 18%, transparent);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    transition: background var(--duration), color var(--duration);
    flex-shrink: 0;
}
.filter-chip__remove:hover {
    background: var(--primary);
    color: #fff;
}

/* ── Boş durum & uyarı genişletme ────────────────────────── */
.storefront__notice--empty {
    padding: 2rem;
    text-align: center;
    line-height: 1.6;
}
.storefront__notice--empty p { margin: 0 0 0.5rem; }
.storefront__notice--empty a { color: var(--primary); }

/* ── Ürün sayısı rozeti ──────────────────────────────────── */
.section-header__count {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.35rem;
}

/* ── Küçük buton varyantı ────────────────────────────────── */
.btn--sm {
    min-height: 2rem;
    padding: 0 0.85rem;
    font-size: var(--type-small);
}

/* ═══════════════════════════════════════════════════════════════
   CATALOG / ÜRÜN GRID
   ═══════════════════════════════════════════════════════════════ */
.catalog {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
}

.catalog__item { margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   ÜRÜN KARTI
   ═══════════════════════════════════════════════════════════════ */
.product-card {
    position: relative;
    height: 100%;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--duration) var(--ease-out),
        box-shadow var(--duration) var(--ease-out),
        border-color var(--duration);
}

/* Üst çizgi aksanı — döngüsel renk */
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--primary));
    z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: background var(--duration);
}

.catalog__item:nth-child(5n+1) .product-card { --card-accent: #0ea5e9; }
.catalog__item:nth-child(5n+2) .product-card { --card-accent: #10b981; }
.catalog__item:nth-child(5n+3) .product-card { --card-accent: #f97316; }
.catalog__item:nth-child(5n+4) .product-card { --card-accent: #8b5cf6; }
.catalog__item:nth-child(5n+5) .product-card { --card-accent: #f59e0b; }

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--border-color);
    border-color: var(--border-color);
}
.product-card:hover::before {
    background: var(--accent);
}

.product-card__link-wrap {
    display: grid;
    grid-template-rows: auto auto 1fr;
    height: 100%;
    flex: 1 1 auto;
    min-height: 0;
}

.product-card__media-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card__brand-title-row {
    padding: 0.55rem 0.95rem 0;
}

.product-card__brand-title-link {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary);
    text-decoration: none;
}

.product-card__brand-title-link:hover {
    text-decoration: underline;
}

.product-card__brand-title-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-color);
}

.product-card__link {
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Görsel */
.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #e8f4fd 0%, #dbeafe 100%);
    overflow: hidden;
}

.product-card__badges {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 1;
    align-items: flex-end;
}

.product-card__video-badge {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: var(--product-card-image-fit, contain);
    object-position: center;
    display: block;
    transform: none;
    transition: none;
}
.product-card:hover .product-card__img {
    transform: none;
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Kart içeriği */
.product-card__body {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 0.48rem;
    padding: 0.9rem 0.95rem 1rem;
}

.product-card__category {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    max-width: max-content;
    padding: 0.14rem 0.48rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary-dark);
    background: color-mix(in srgb, var(--primary) 12%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--primary) 22%, #ffffff);
    text-transform: uppercase;
}
.product-card__category i { font-size: 0.7rem; }
.product-card__category-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--primary);
}

/* Başlık */
.product-card__title {
    font-family: var(--font-display) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    line-height: 1.2;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;
}

.product-card__desc {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.42rem;
}

.product-card__price {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--type-price);
    font-weight: 700;
    line-height: 1.14;
    color: var(--price-color);
    letter-spacing: -0.02em;
}

.product-card__old-price {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Kart footer */
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 0.6rem 0.8rem;
}

.product-card__code {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(232,244,253,.65);
    text-transform: uppercase;
}

.product-card__cta {
    min-height: 1.9rem;
    padding: 0 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 2px 8px rgba(14,165,233,.30);
    transition: transform var(--duration), box-shadow var(--duration), filter var(--duration);
}
.product-card__cta-icon {
    font-size: 1rem;
    line-height: 1;
}
.product-card:hover .product-card__cta {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(14,165,233,.4);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
/* Footer */
.global-footer {
    margin-top: 3rem;
    background: #2d3436 !important;
    color: #ffffff !important;
    padding: 2.5rem 1.25rem 1.4rem;
    border-top: 1px solid #4a5568 !important;
    position: relative;
    overflow: hidden;
}
.global-footer::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(14,165,233,.08) 0%, transparent 65%);
    pointer-events: none;
}

.global-footer__grid {
    max-width: 82rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.global-footer__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.global-footer__text {
    margin: 0;
    font-size: var(--type-small);
    color: rgba(232,244,253,.72);
    line-height: 1.6;
}

.global-footer__link {
    display: block;
    width: fit-content;
    color: rgba(232,244,253,.72);
    text-decoration: none;
    font-size: var(--type-small);
    margin-bottom: 0.42rem;
    transition: color var(--duration);
}
.global-footer__link:hover { color: #ffffff !important; }

.global-footer__copy {
    margin: 1.5rem auto 0;
    max-width: 82rem;
    font-size: var(--type-xs);
    color: rgba(232,244,253,.4);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .catalog { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .features-bar { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
    .catalog { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .features-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-section__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .promo-banner__visual { font-size: 5rem; }
    .promo-banner__title { font-size: 1.7rem; }
    .site-banners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .catalog { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.8rem; }
    .global-topbar { display: none; }

    /* Header mobil: logo | search | cart | hamburger */
    .global-header__main {
        grid-template-columns: auto 1fr auto !important;
        gap: 0.55rem !important;
        padding: 0.6rem 1rem !important;
    }
    .global-search { max-width: none; }
    .global-nav { display: none; }
    .global-header__mobile-toggle { display: flex; }
    .mobile-nav-drawer { display: flex; }

    .hero__slide { padding: 1.4rem; }
    .hero__title { font-size: 1.5rem; }

    .global-footer__grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .global-footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .global-footer__bottom-right { margin-left: 0; width: 100%; justify-content: flex-start; }

    .features-bar { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    .promo-banner__inner {
        padding: 1.8rem 1.6rem;
        flex-direction: column;
        text-align: center;
    }
    .promo-banner__visual { display: none; }
    .promo-banner__title { font-size: 1.5rem; }
    .promo-banner__desc { max-width: none; }
    .promo-banner__actions { justify-content: center; }

    .trust-section { padding: 1.5rem 1.2rem; }
    .trust-section__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .trust-item__desc { max-width: none; }

    .section-header__title { font-size: 1.3rem; }

    .products-section { padding: 0 0.85rem; }
    .features-bar { padding: 0 0.85rem; }
    .category-strip { padding: 0 0.85rem; }
    .promo-banner { padding: 0 0.85rem; }
    .site-banners { padding: 0 0.85rem; }
    .storefront-intro { padding: 0 0.85rem; }
    .trust-section { margin: 0 0.85rem 2rem; }
}
@media (max-width: 480px) {
    .catalog { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.6rem; }
    .product-card__title { font-size: 0.88rem; }
    .product-card__price { font-size: 1.2rem; }
    .features-bar { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
    .features-bar__item { padding: 0.75rem 0.65rem; }
    .features-bar__icon { font-size: 1.5rem; }
    .trust-section__grid { grid-template-columns: 1fr 1fr; }
    .promo-banner__inner { padding: 1.4rem 1.1rem; }
    .promo-banner__title { font-size: 1.3rem; }
    .category-card { min-width: 7rem; }
    .site-banners__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ÜRÜN DETAY
   ═══════════════════════════════════════════════════════════════ */
main:not(.storefront) {
    max-width: 50rem;
    margin: 2.2rem auto;
    padding: 0 1.2rem;
    background: transparent;
}

main.product-detail { max-width: 76rem; }

/* Blog listesi (blog.php): ana sayfaya dokunmadan tahta + sütunlar için yeterli genişlik (4×272px + gap). */
main.blog-list {
    max-width: 80rem;
}
.blog-preview-section.blog-page-as-home {
    max-width: 1240px;
}

.pd-breadcrumb {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0 0 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.35rem;
}
.pd-breadcrumb a { color: var(--primary); text-decoration: none; }
.pd-breadcrumb a:hover { text-decoration: underline; }
.pd-breadcrumb__sep { color: var(--text-light); }

.pd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; } }

.pd-page {
    display: grid;
    grid-template-columns: 17.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}
@media (max-width: 1080px) {
    .pd-page {
        grid-template-columns: 1fr;
    }
}

/* Ürün detayı — mobilde önce galeri/satın alma; kategori menüsü alta */
@media (max-width: 1080px) {
    .site-main.product-detail .pd-page {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .site-main.product-detail .pd-page__content {
        order: 1;
        width: 100%;
        min-width: 0;
    }
    .site-main.product-detail .pd-sidebar.pd-sidebar--all-products {
        order: 2;
        width: 100%;
    }

    /* Tüm ürünler — mobilde önce liste, kategori filtresi alta */
    .all-products-layout.pd-page .pd-page__content {
        order: 1;
        width: 100%;
        min-width: 0;
    }
    .all-products-layout.pd-page .pd-sidebar--all-products {
        order: 2;
        width: 100%;
    }
    .all-products-layout.pd-page {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

.pd-sidebar {
    position: sticky;
    top: 6rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-xs);
    padding: 0.85rem;
}
.pd-sidebar__title {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.pd-side-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pd-side-menu__item > .pd-side-menu__list {
    margin-left: 0.65rem;
    margin-top: 0.25rem;
    border-left: 1px dashed var(--border-color);
    padding-left: 0.5rem;
}
.pd-side-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    font-size: 0.82rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.36rem 0.45rem;
    border-radius: 6px;
    border: 1px solid transparent;
}
.pd-side-menu__link:hover {
    background: color-mix(in srgb, var(--primary) 9%, #ffffff);
    color: var(--primary-dark);
    border-color: color-mix(in srgb, var(--primary) 24%, #ffffff);
}
.pd-side-menu__link.is-active {
    background: color-mix(in srgb, var(--primary) 14%, #ffffff);
    color: var(--primary-dark);
    font-weight: 700;
    border-color: color-mix(in srgb, var(--primary) 32%, #ffffff);
}
.pd-side-menu__branch-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
}
.pd-side-menu__branch-row .pd-side-menu__link {
    width: auto;
    max-width: 100%;
    min-width: 0;
}
.pd-side-menu__toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    min-height: 2.05rem;
    margin: 0;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--border-color) 80%, transparent);
    border-radius: 6px;
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--secondary) 5%, #fff) 100%);
    color: var(--secondary);
    cursor: pointer;
    font-size: 0.72rem;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}
.pd-side-menu__toggle:hover {
    background: color-mix(in srgb, var(--primary) 12%, #ffffff);
    border-color: color-mix(in srgb, var(--primary) 22%, #ffffff);
    color: var(--primary-dark);
}
.pd-side-menu__toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}
.pd-side-menu__toggle .fa-chevron-down {
    transition: transform 0.22s ease;
}
.pd-side-menu__toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}
.pd-side-menu__icon-badge {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.pd-side-menu__cat-thumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, #e2e8f0);
}
.pd-side-menu__cat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pd-side-menu__cat-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 6px;
}
/* .pd-side-menu__icon-badge sets display:inline-flex and overrides [hidden]; keep fallback invisible until JS removes hidden (e.g. image onerror). */
.pd-side-menu__cat-fallback[hidden] {
    display: none !important;
}
.pd-side-menu__icon-badge--1 { background: #0ea5e9; }
.pd-side-menu__icon-badge--2 { background: #10b981; }
.pd-side-menu__icon-badge--3 { background: #f97316; }
.pd-side-menu__icon-badge--4 { background: #8b5cf6; }
.pd-side-menu__icon-badge--5 { background: #e11d48; }
.pd-side-menu__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pd-side-menu__count {
    margin-left: auto;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--secondary);
    background: color-mix(in srgb, var(--primary) 16%, #ffffff);
}
@media (max-width: 1080px) {
    .pd-sidebar {
        position: static;
        top: auto;
        margin-bottom: 0.4rem;
    }
    .pd-side-menu__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
    }
    .pd-side-menu__item--branch {
        grid-column: 1 / -1;
    }
    .pd-side-menu__link {
        min-height: 2.2rem;
    }
}
@media (max-width: 640px) {
    .pd-side-menu__list {
        grid-template-columns: 1fr;
    }
}

.pd-gallery__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}
.pd-gallery__row--solo { grid-template-columns: minmax(0, 1fr); }

.pd-gallery__thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.pd-gallery__thumb {
    width: 4.2rem;
    min-width: 4.2rem;
    padding: 0;
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color var(--duration);
}
.pd-gallery__thumb.is-active { border-color: var(--primary); }
.pd-gallery__thumb img {
    width: 100%;
    height: 3.95rem;
    object-fit: cover;
    display: block;
}

.pd-gallery__main-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-muted);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
.pd-gallery__zoom-surface {
    overflow: hidden;
    cursor: zoom-in;
}
.pd-gallery__main {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .25s ease;
}
@media (hover: hover) and (pointer: fine) {
    .pd-gallery__zoom-surface:hover .pd-gallery__main {
        transform: scale(1.55);
    }
}
@media (pointer: coarse) {
    .pd-gallery__zoom-surface {
        cursor: default;
    }
}

/* Ürün detayı — dar ekran: ana görsel yüksekliği sınırlı, taşma yok */
@media (max-width: 640px) {
    .site-main.product-detail .pd-gallery__main-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 12rem;
        max-height: min(70vh, 28rem);
        max-height: min(70dvh, 28rem);
    }
    .site-main.product-detail .pd-gallery__zoom-surface {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-height: inherit;
    }
    .site-main.product-detail .pd-gallery__main {
        width: 100%;
        max-width: 100%;
        max-height: min(70vh, 28rem);
        max-height: min(70dvh, 28rem);
        height: auto;
        object-fit: contain;
    }
    .site-main.product-detail .pd-title {
        font-size: clamp(1.12rem, 4.5vw, 1.42rem);
    }
    .site-main.product-detail .pd-price {
        font-size: clamp(1.45rem, 6vw, 1.8rem);
    }
    .site-main.product-detail {
        margin-top: 1rem;
        margin-bottom: 1.25rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
    .site-main.product-detail .pd-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }
    .site-main.product-detail .pd-contact {
        flex-direction: column;
        justify-content: stretch;
    }
    .site-main.product-detail .pd-contact__btn {
        width: 100%;
        text-align: center;
    }
}

.pd-gallery__zoom-btn {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(15,23,42,.72);
    color: #fff;
    font-size: 1.08rem;
    line-height: 1;
    cursor: pointer;
}
.pd-media-tabs {
    display: flex;
    gap: 0.4rem;
    margin: 0 0 0.7rem;
}
.pd-media-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-subtle);
    background: #fff;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}
.pd-media-tab.is-active {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 18%, transparent);
}
.pd-media-panel[hidden] { display: none !important; }

.pd-title {
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 1.35vw, 1.45rem);
    font-weight: 650;
    margin: 0 0 0.55rem;
    line-height: 1.16;
    color: var(--secondary);
    letter-spacing: -0.01em;
}
.pd-brand-logo {
    width: min(11rem, 100%);
    min-height: 2.6rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0.4rem 0.55rem;
    margin: 0 0 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pd-brand-logo img {
    max-width: 100%;
    max-height: 2rem;
    object-fit: contain;
}
.pd-brand-logo__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.pd-brand-logo__link:hover img {
    opacity: 0.92;
}
.pd-brand-text__link {
    color: var(--primary);
    text-decoration: none;
}
.pd-brand-text__link:hover {
    text-decoration: underline;
}
.pd-brand-text {
    margin: 0 0 0.55rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.pd-code { margin: 0 0 0.35rem; font-size: 0.88rem; color: var(--text-muted); }
.pd-rating {
    margin: 0 0 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}
.pd-rating__stars {
    color: #f59e0b;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.pd-rating__text {
    font-weight: 600;
}

.pd-price-wrap {
    display: grid;
    gap: 0.25rem;
    margin: 0 0 0.7rem;
}
.pd-old-price {
    margin: 0;
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
}
.pd-discount-badge {
    margin: 0;
    display: inline-flex;
    width: max-content;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.pd-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #dc2626;
    margin: 0;
    letter-spacing: -0.03em;
}
.pd-category-link {
    margin: 0 0 0.7rem;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.4rem;
    font-size: 0.83rem;
    color: var(--text-muted);
}
.pd-category-link__label {
    font-weight: 600;
}
.pd-category-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}
.pd-category-link a:hover {
    text-decoration: underline;
}

.pd-trust {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.pd-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2.15rem;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.pd-trust__ic {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 12%, #ffffff);
    flex-shrink: 0;
}
.pd-trust__ic i {
    font-size: 0.72rem;
}
@media (max-width: 640px) {
    .pd-trust {
        grid-template-columns: 1fr;
    }
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: stretch;
    margin: 1.1rem 0;
}
.pd-cart-form { flex: 1; min-width: 12rem; }
.pd-btn--cart {
    width: 100%;
    background: var(--store-product-cta-bg, #f97316) !important;
    border-color: var(--store-product-cta-bg, #f97316) !important;
    color: var(--store-product-cta-text, #ffffff) !important;
}
.pd-btn--cart:hover {
    background: var(--store-product-cta-hover-bg, #ea580c) !important;
    border-color: var(--store-product-cta-hover-bg, #ea580c) !important;
    color: var(--store-product-cta-text, #ffffff) !important;
}
.pd-btn--wish { width: 2.8rem; min-width: 2.8rem; font-size: 1.1rem; }

.pd-ship {
    margin: 0;
    font-size: 0.88rem;
    color: var(--success);
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}
.pd-oos { margin: 0; color: var(--danger); font-weight: 600; }

/* Sekmeler */
.pd-tabs-wrap {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.pd-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.25rem;
    border-bottom: 2px solid var(--border-subtle);
    margin-bottom: 1.1rem;
}

.pd-tab {
    background: none;
    border: none;
    font: inherit;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    margin-bottom: -2px;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: color var(--duration), border-color var(--duration);
}
.pd-tab:hover { color: var(--primary); }
.pd-tab.is-active {
    color: var(--primary);
    font-weight: 700;
    border-bottom-color: var(--primary);
}

.pd-panel { font-size: 0.94rem; color: var(--text-color); line-height: 1.6; }
.pd-panel[hidden] { display: none !important; }
.pd-desc { max-height: 18rem; overflow-y: auto; padding-right: 0.35rem; }
.pd-reviews__summary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.65rem;
    background: #f8fafc;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}
.pd-reviews__list {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.pd-review-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.8rem;
    background: #fff;
}
.pd-review-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.pd-review-item__stars {
    color: #f59e0b;
    font-size: 0.8rem;
}
.pd-review-item__date {
    margin: 0.2rem 0 0.3rem;
    font-size: 0.75rem;
    color: var(--text-light);
}
.pd-review-item__text {
    margin: 0;
}
.pd-reviews__empty {
    margin: 0 0 1rem;
    color: var(--text-muted);
}
.pd-review-form {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    background: #fff;
    display: grid;
    gap: 0.55rem;
}
.pd-review-form h3 {
    margin: 0;
    font-size: 1rem;
}
.pd-review-form__hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.pd-review-form textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.6rem;
    font: inherit;
    font-size: 0.9rem;
    resize: vertical;
}
.pd-review-form__login-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--danger);
}
.pd-review-form__stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.2rem;
}
.pd-review-form__stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pd-review-form__stars label {
    cursor: pointer;
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1;
}
.pd-review-form__stars label:hover,
.pd-review-form__stars label:hover ~ label,
.pd-review-form__stars input:checked ~ label {
    color: #f59e0b;
}

/* İlgili ürünler */
.pd-related {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}
.pd-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}
.pd-related__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}
.pd-related__nav { display: flex; gap: 0.35rem; }
.pd-related__arrow {
    width: 2rem;
    height: 2rem;
    border: 1.5px solid var(--primary);
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--duration), color var(--duration);
}
.pd-related__arrow:hover { background: var(--primary); color: #fff; }

.pd-related__strip {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.pd-related__strip > .catalog__item {
    flex: 0 0 clamp(165px, 16vw, 205px);
    min-width: clamp(165px, 16vw, 205px);
}
.pd-related__strip .product-card {
    height: 100%;
}

/* YouTube */
.pd-youtube { margin: 1.75rem 0 0; max-width: 100%; }
.pd-youtube__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--secondary); }
.pd-youtube__wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #111;
    box-shadow: var(--shadow-sm);
}
.pd-youtube__iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* İletişim butonları */
.pd-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }
.pd-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform var(--duration), box-shadow var(--duration);
}
.pd-contact__btn:hover { transform: translateY(-1px); }
.pd-contact__btn--wa { border: 1.5px solid #25d366; color: #128c7e; background: #fff; }
.pd-contact__btn--tel { border: 1.5px solid var(--danger); color: var(--danger); background: #fff; }

.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}
.pd-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.84);
}
.pd-lightbox__dialog {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4.25rem;
}
.pd-lightbox__img {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 16px 50px rgba(0,0,0,.35);
    background: #fff;
}
.pd-lightbox__close,
.pd-lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(15,23,42,.72);
    color: #fff;
    cursor: pointer;
}
.pd-lightbox__close {
    top: 1.1rem;
    right: 1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    font-size: 1.35rem;
}
.pd-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 3rem;
    border-radius: 8px;
    font-size: 1.55rem;
}
.pd-lightbox__nav--prev { left: 1rem; }
.pd-lightbox__nav--next { right: 1rem; }

@media (max-width: 640px) {
    .pd-lightbox__dialog {
        padding: 2.75rem 0.5rem 1.25rem;
    }
    .pd-lightbox__img {
        max-width: 100%;
        max-height: 78vh;
        max-height: 78dvh;
    }
    .pd-lightbox__close {
        top: 0.55rem;
        right: 0.55rem;
    }
    .pd-lightbox__nav {
        width: 2rem;
        height: 2.6rem;
        font-size: 1.25rem;
    }
    .pd-lightbox__nav--prev { left: 0.25rem; }
    .pd-lightbox__nav--next { right: 0.25rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ORTAK UI — Uyarılar, Formlar, Tablolar
   ═══════════════════════════════════════════════════════════════ */
.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.45rem;
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
}
.site-nav a { color: var(--primary); text-decoration: none; }
.site-nav a:hover { text-decoration: underline; }
.site-nav__sep { color: var(--text-light); user-select: none; }

.alert {
    margin: 0 0 1rem;
    padding: 0.8rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: #fff;
    font-size: 0.94rem;
    box-shadow: var(--shadow-xs);
}
.alert--error   { border-color: #fecaca; background: #fff5f5; }
.alert--success { border-color: #a7f3d0; background: #f0fdf9; }
.alert--info    { border-color: #bae6fd; background: #f0f9ff; }

.alert__list { margin: 0; padding-left: 1.25rem; }
.alert__list li { margin: 0.15rem 0; }

.form .form__field { margin: 0 0 1rem; }
.form .form__field label { display: block; font-size: 0.9rem; margin-bottom: 0.28rem; font-weight: 500; color: var(--secondary); }

.form__control {
    max-width: 100%;
    width: min(100%, 30rem);
    box-sizing: border-box;
    padding: 0.5rem 0.7rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.94rem;
    color: var(--text-color);
    background: #fff;
    transition: border-color var(--duration), box-shadow var(--duration);
    outline: none;
}
.form__control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form__control {
    width: min(100%, 38rem);
    min-height: 6rem;
    resize: vertical;
}

.form__actions { margin-top: 0.85rem; }

.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0.5rem 0 1rem; }

/* ═══ Lüks sepet + sepete ekle (sıkı grid, şık butonlar) ═══ */
.lux-cart-page {
    max-width: 56rem;
    margin: 0 auto;
}
.lux-cart-page__head {
    margin-bottom: 0.65rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #c8d0dc;
}
.lux-cart-page__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #0f172a;
}
.lux-cart-page__title-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    flex-shrink: 0;
    border: 1px solid #c9a227;
    border-radius: 2px;
    background: linear-gradient(155deg, #f8f0d8 0%, #e8cf6a 45%, #b8941f 100%);
    color: #1a1508;
    font-size: 0.88rem;
    line-height: 1;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 2px 8px rgba(15, 23, 42, 0.1);
}
.lux-cart-page__title-svg {
    display: block;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
}
.lux-cart-page__title-mark > i.fa-solid {
    font-size: 0.88rem;
    line-height: 1;
}
.lux-checkout-title-mark--success {
    border-color: #166534 !important;
    background: linear-gradient(155deg, #ecfdf3 0%, #86efac 42%, #22c55e 100%) !important;
    color: #14532d !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 2px 8px rgba(22, 101, 52, 0.18) !important;
}
.lux-checkout-title-mark--success i {
    font-size: 0.82rem !important;
}
.lux-cart-page__title-text {
    padding-top: 0.06em;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
    .lux-cart-page__title-text {
        color: #0f172a;
        -webkit-text-fill-color: unset;
    }
}

/* Sepet — stok uyarısı (çok net, kırmızı, yanıp sönen ünlem) */
.lux-cart-alert--critical {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 0.9rem;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 4px;
    background: linear-gradient(180deg, #fef2f2 0%, #fecaca 100%);
    color: #7f1d1d;
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.14);
}
.lux-cart-alert__ico {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.06rem;
    font-size: 1.2rem;
    line-height: 1;
    color: #b91c1c;
    filter: drop-shadow(0 0 4px rgba(220, 38, 38, 0.45));
    animation: lux-cart-alert-blink 0.9s ease-in-out infinite;
}
.lux-cart-alert__text {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.01em;
}
@keyframes lux-cart-alert-blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(1.12);
    }
}
@media (prefers-reduced-motion: reduce) {
    .lux-cart-alert__ico {
        animation: none;
        opacity: 1;
    }
}

.lux-cart-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    border: 1px solid #c5cdd8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.lux-cart-empty__text {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    color: #475569;
}

.lux-cart-sheet {
    background: #fafbfc;
    border: 1px solid #aeb8c6;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 24px rgba(15, 23, 42, 0.06);
}
.lux-cart-table-wrap {
    margin: 0;
}

.lux-cart-grid {
    font-size: 0.72rem;
    min-width: 32rem;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}
.lux-cart-grid th,
.lux-cart-grid td {
    padding: 0.28rem 0.4rem;
    border: 1px solid #b4bcc8;
    vertical-align: middle;
    line-height: 1.25;
}
.lux-cart-grid thead .lux-cart-grid__th {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #e2d5b6;
    font-weight: 600;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-color: #334155;
    white-space: nowrap;
    padding: 0.32rem 0.4rem;
}
.lux-cart-grid tbody .lux-cart-grid__cell {
    background: #fff;
    color: #1e293b;
}
.lux-cart-grid tbody tr:nth-child(even) .lux-cart-grid__cell {
    background: #f8fafc;
}
.lux-cart-grid tbody tr:hover .lux-cart-grid__cell {
    background: #f1f5f9;
}

.lux-cart-grid__th--img { width: 3.25rem; }
.lux-cart-grid__th--qty { width: 7.1rem; }
.lux-cart-grid__th--act { width: 4.5rem; }

.lux-cart-thumb {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid #94a3b8;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.lux-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lux-cart-num {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

.lux-cart-grid__cell--name {
    font-size: 0.7rem;
    font-weight: 500;
    max-width: 14rem;
}

.lux-cart-qty-form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
}
.lux-cart-qty-input {
    width: 100%;
    max-width: 3.85rem;
    box-sizing: border-box;
    padding: 0.22rem 0.35rem;
    font: inherit;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    border: 1px solid #94a3b8;
    border-radius: 1px;
    background: #fff;
    color: #0f172a;
    line-height: 1.2;
}
.lux-cart-qty-input:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.35);
}

.lux-cart-qty-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
    padding: 0;
    border: 1px solid #8a6a1f;
    border-radius: 2px;
    cursor: pointer;
    color: #1a1205;
    background: linear-gradient(165deg, #f8efd8 0%, #e6c565 42%, #b8941f 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 2px 6px rgba(15, 23, 42, 0.12);
    transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.lux-cart-qty-submit i {
    font-size: 0.68rem;
    line-height: 1;
    transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.lux-cart-qty-submit:hover {
    filter: brightness(1.05);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 3px 10px rgba(15, 23, 42, 0.14);
}
.lux-cart-qty-submit:hover i {
    transform: rotate(180deg);
}
.lux-cart-qty-submit:active {
    transform: translateY(1px);
}
.lux-cart-qty-submit:focus-visible {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

.lux-cart-remove-form {
    margin: 0;
}

.btn-lux {
    appearance: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 2px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.btn-lux:active {
    transform: translateY(1px);
}

.btn-lux--remove {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.4rem;
    width: 100%;
    border: 1px solid #475569;
    color: #e2e8f0;
    background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 2px 5px rgba(15, 23, 42, 0.2);
}
.btn-lux--remove:hover {
    filter: brightness(1.08);
    border-color: #64748b;
}

.btn-lux--checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.55rem 1.35rem;
    border: 1px solid #1e3a5f;
    color: #f8fafc;
    background: linear-gradient(165deg, #1e3a8a 0%, #172554 55%, #0f172a 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 4px 14px rgba(15, 23, 42, 0.25);
}
.btn-lux--checkout:hover {
    filter: brightness(1.06);
    color: #fff;
}

.lux-cart-foot {
    margin-top: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #b4bcc8;
    border-top: none;
}
.lux-cart-foot__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}
.lux-cart-foot__left {
    flex: 1 1 14rem;
    min-width: min(100%, 11rem);
    max-width: 26rem;
}
.lux-cart-foot__legal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
    margin: 0 0 0.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lux-cart-foot__legal:hover {
    border-color: #94a3b8;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 2px 8px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}
.lux-cart-foot__legal-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
    font-size: 0.72rem;
    color: #b8860b;
    background: linear-gradient(180deg, #fefce8 0%, #fef3c7 100%);
    border: 1px solid #e7d39a;
    border-radius: 2px;
}
.lux-cart-foot__legal-txt {
    line-height: 1.25;
    text-align: left;
}
.lux-cart-foot__right {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 0.5rem;
    min-width: min(100%, 12rem);
}
.lux-cart-foot__right .lux-cart-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    width: 100%;
    padding-bottom: 0.5rem;
    margin: 0;
    border-bottom: 1px solid #cbd5e1;
}
.lux-cart-total__label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
}
.lux-cart-total__value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}
.lux-cart-foot__hint {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    line-height: 1.45;
    color: #475569;
}
.lux-cart-foot__links {
    margin: 0;
    font-size: 0.7rem;
}
.lux-cart-foot__dot {
    color: #94a3b8;
    margin: 0 0.35rem;
}
.lux-cart-link {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 64, 175, 0.35);
}
.lux-cart-link:hover {
    color: #172554;
    border-bottom-color: #172554;
}
.lux-cart-foot__cta-wrap {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 560px) {
    .lux-cart-foot__right {
        align-items: stretch;
        text-align: left;
        width: 100%;
    }
    .lux-cart-foot__right .lux-cart-total {
        align-items: flex-start;
    }
    .lux-cart-foot__cta-wrap {
        justify-content: stretch;
    }
    .lux-cart-foot__cta-wrap .btn-lux--checkout {
        width: 100%;
    }
}

/* Ödeme / checkout — sepet ile aynı sıkı lüks grid */
.lux-checkout-page {
    max-width: 56rem;
    margin: 0 auto;
}
/* Ödeme başlığı — tek satır, açıklama parantez içinde yanında */
.lux-checkout-head {
    margin-top: 0;
    margin-bottom: 0.4rem;
    padding-bottom: 0.32rem;
    border-bottom: 1px solid #d1d9e2;
}
.lux-checkout-head__title {
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.45rem;
    line-height: 1.2;
}
.lux-checkout-head__mark {
    width: 1.85rem !important;
    height: 1.85rem !important;
    margin-top: 0.12rem;
}
.lux-checkout-head__mark > i.fa-solid {
    font-size: 0.75rem !important;
}
.lux-checkout-head__main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
    min-width: 0;
    flex: 1;
}
.lux-checkout-head__note {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.4;
    color: #64748b;
    flex: 1 1 10rem;
    max-width: 100%;
}
@media (max-width: 640px) {
    .lux-checkout-head__title {
        flex-wrap: wrap;
    }
    .lux-checkout-head__main {
        flex-basis: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }
    .lux-checkout-head__note {
        flex-basis: auto;
        padding-left: 0.05rem;
    }
}
.lux-checkout-lede {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #475569;
    max-width: 42rem;
}
.lux-checkout-errors {
    margin-bottom: 0.65rem;
}
.lux-checkout-errors .alert {
    margin: 0 0 0.5rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 3px;
}
.lux-checkout-addr {
    margin: 0 0 0.85rem;
    padding: 0.65rem 0.75rem 0.7rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #94a3b8;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.lux-checkout-addr__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.45rem 0.85rem;
    margin-bottom: 0.55rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #cbd5e1;
}
.lux-checkout-addr__head-main {
    flex: 1 1 10rem;
    min-width: 0;
}
.lux-checkout-addr__manage {
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1e40af;
    padding: 0.38rem 0.55rem;
    border: 1px solid rgba(30, 64, 175, 0.4);
    border-radius: 4px;
    background: #fff;
    white-space: nowrap;
    transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.lux-checkout-addr__manage:hover {
    border-color: #1e40af;
    background: #eff6ff;
    color: #172554;
}
.lux-checkout-addr-solo {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    line-height: 1.45;
    color: #475569;
}
.lux-checkout-addr__manage--solo {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    border-bottom: 1px solid rgba(30, 64, 175, 0.35);
}
.lux-checkout-addr__manage--solo:hover {
    background: none;
    border-bottom-color: #172554;
}
.lux-checkout-addr-solo__hint {
    font-weight: 500;
    color: #64748b;
    font-size: 0.65rem;
}
.lux-checkout-addr__title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0f172a;
}
.lux-checkout-addr__title i {
    color: #b45309;
    font-size: 0.85rem;
}
.lux-checkout-addr__hint {
    display: block;
    margin-top: 0.28rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: #475569;
    letter-spacing: 0.02em;
    line-height: 1.35;
}
.lux-checkout-addr__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: stretch;
}
.lux-checkout-addr__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.35rem;
    padding: 0.4rem 0.75rem 0.4rem 0.55rem;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease;
}
.lux-checkout-addr__chip:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    color: #0f172a;
}
.lux-checkout-addr__chip.is-active {
    border-color: #1e3a8a;
    background: linear-gradient(165deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e3a8a;
    box-shadow:
        0 0 0 1px rgba(30, 58, 138, 0.25),
        0 3px 12px rgba(30, 58, 138, 0.12);
}
.lux-checkout-addr__chip.is-active .lux-checkout-addr__chip-ic {
    background: linear-gradient(180deg, #1e40af 0%, #1e3a8a 100%);
    color: #fff;
    border-color: #1e3a8a;
}
.lux-checkout-addr__chip-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    font-size: 0.78rem;
    transition: inherit;
}
.lux-checkout-addr__chip:hover .lux-checkout-addr__chip-ic {
    border-color: #cbd5e1;
    color: #334155;
}
.lux-checkout-addr__chip-txt {
    line-height: 1.2;
    text-align: left;
}
@media (max-width: 480px) {
    .lux-checkout-addr__chip {
        flex: 1 1 calc(50% - 0.45rem);
        min-width: 6.5rem;
        justify-content: flex-start;
    }
}
.lux-checkout-summary {
    padding: 0.35rem 0.4rem 0.45rem;
    border-bottom: 1px solid #b4bcc8;
    background: #f8fafc;
}
.lux-checkout-summary__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.2rem 0.75rem;
    padding: 0.2rem 0.15rem;
    font-size: 0.68rem;
    border-bottom: 1px solid #e2e8f0;
}
.lux-checkout-summary__row:last-child {
    border-bottom: none;
}
.lux-checkout-summary__row--grand {
    padding-top: 0.35rem;
    margin-top: 0.15rem;
    border-top: 1px solid #cbd5e1;
    border-bottom: none;
}
.lux-checkout-summary__k {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.55rem;
    color: #64748b;
}
.lux-checkout-summary__v {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.74rem;
}
.lux-checkout-summary__row--grand .lux-checkout-summary__v {
    font-size: 0.95rem;
}
.lux-checkout-summary__note {
    margin: 0.3rem 0 0;
    padding: 0.35rem 0.15rem 0;
    font-size: 0.62rem;
    color: #64748b;
    line-height: 1.4;
    border-top: 1px dashed #cbd5e1;
}
.lux-checkout-grid .lux-cart-grid__th--checkout-adet {
    width: 3.4rem;
    text-align: right;
}
.lux-checkout-grid .lux-cart-grid__cell--checkout-adet {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.lux-checkout-h2 {
    margin: 0.85rem 0 0.4rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #334155;
    padding-bottom: 0.32rem;
    border-bottom: 1px solid #c8d0dc;
}
.lux-checkout-form .form__field {
    margin: 0 0 0.5rem;
}
.lux-checkout-form .form__field label {
    font-size: 0.7rem;
    margin-bottom: 0.18rem;
    font-weight: 600;
    color: #334155;
}
.lux-checkout-form .form__control {
    padding: 0.28rem 0.4rem;
    font-size: 0.78rem;
    border-radius: 1px;
    max-width: 100%;
    width: min(100%, 32rem);
}
.lux-checkout-form textarea.form__control {
    min-height: 4.5rem;
    width: min(100%, 38rem);
}
.lux-checkout-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin: 0 0 0.65rem;
    align-items: stretch;
}
.lux-checkout-pay-opt {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    min-height: 2.5rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.74rem;
    font-weight: 600;
    border: 1px solid #b4bcc8;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
}
.lux-checkout-pay-opt:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}
.lux-checkout-pay-opt:has(input:checked) {
    border-color: #1e40af;
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    box-shadow: 0 0 0 1px rgba(30, 64, 175, 0.12);
}
.lux-checkout-pay-opt input {
    flex-shrink: 0;
}
.lux-checkout-paytr-keys-hint {
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #92400e;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fbbf24;
    border-radius: 4px;
}
.lux-checkout-contact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.6rem;
    margin: 0 0 0.5rem;
    align-items: start;
}
.lux-checkout-contact-row .form__field {
    margin: 0;
    min-width: 0;
}
.lux-checkout-form .lux-checkout-contact-row .form__control {
    width: 100%;
    max-width: none;
}
.lux-checkout-field--address .form__control {
    width: 100%;
    max-width: none;
}
.lux-checkout-contract {
    margin: 0.35rem 0 0.15rem;
}
.lux-checkout-contract__label {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0;
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.45;
    color: #334155;
    border: 1px solid #b4bcc8;
    border-radius: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    cursor: pointer;
}
.lux-checkout-contract__label:hover {
    border-color: #94a3b8;
}
.lux-checkout-contract__label input {
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: #1e40af;
    cursor: pointer;
}
.lux-checkout-contract__text {
    flex: 1;
    min-width: 0;
}
.lux-checkout-contract__text a {
    font-weight: 700;
    color: #1e40af;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lux-checkout-contract__text a:hover {
    color: #172554;
}
@media (max-width: 720px) {
    .lux-checkout-contact-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .lux-checkout-pay-grid {
        grid-template-columns: 1fr;
    }
}
.lux-checkout-form .form__actions {
    margin-top: 0.75rem;
}
.lux-checkout-foot {
    margin-top: 0.65rem;
    font-size: 0.72rem;
}

/* Hesabım — sepet / ödeme ile aynı sıkı lüks düzen */
.lux-account-page .lux-cart-page__head {
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
}
.lux-account-head__mark > i.fa-solid {
    font-size: 0.82rem !important;
}
.lux-adreslerim-page .lux-cart-page__head {
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
}
.lux-adreslerim-head__mark > i.fa-solid {
    font-size: 0.82rem !important;
    color: #1d4ed8;
}
.lux-adreslerim-form__opt {
    font-weight: 400;
    color: #64748b;
    font-size: 0.75rem;
}
.lux-adreslerim-form__check .fa-solid {
    margin-right: 0.3rem;
    color: #64748b;
}
.lux-account-addresses__sub .fa-solid {
    margin-right: 0.4rem;
    color: #475569;
    font-size: 0.88em;
}
.lux-account-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.35rem;
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
}
.lux-account-nav__link {
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 64, 175, 0.35);
}
.lux-account-nav__link:hover {
    color: #172554;
    border-bottom-color: #172554;
}
.lux-account-nav__sep {
    color: #94a3b8;
    user-select: none;
}
.lux-account-tabs {
    margin-bottom: 0.65rem;
    padding: 0 0.15rem;
}
.lux-account-tabs__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.35rem 0.55rem;
    border-bottom: 1px solid #b4bcc8;
    padding-bottom: 0;
}
.lux-account-tabs__scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    flex: 1 1 auto;
    min-width: 0;
}
.lux-account-tabs__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
}
.lux-account-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    background: #f1f5f9;
    line-height: 1.2;
    transition: background 0.12s, color 0.12s;
}
.lux-account-tab:hover {
    color: #1e3a5f;
    background: #e8eefc;
}
.lux-account-tab--active {
    color: #0f172a;
    background: #fff;
    border-color: #b4bcc8;
    border-bottom-color: #fff;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}
.lux-account-tab--link {
    background: #f8fafc;
    border: 1px solid #c5ced9;
    border-radius: 6px;
    margin-bottom: 0.2rem;
}
.lux-account-tab--link:hover {
    border-color: #94a3b8;
    background: #fff;
}
.lux-account-panels {
    min-height: 1rem;
}
.lux-account-panel[hidden] {
    display: none !important;
}
.lux-account-orders--tabbed .lux-checkout-h2 {
    margin-top: 0;
}
.lux-account-addresses {
    padding: 0 0 0.35rem;
}
.lux-account-addresses .lux-checkout-h2 {
    margin-top: 0;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}
.lux-account-addresses__hint {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0 0 0.75rem;
    padding: 0 0.35rem;
    line-height: 1.45;
}
.lux-account-addresses__empty {
    margin: 0.5rem 0.35rem 1rem;
    color: #64748b;
    font-size: 0.875rem;
}
.lux-account-address-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.15rem 0.35rem 0.85rem;
}
.lux-account-address-card {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.55rem 0.65rem;
    background: #fff;
}
.lux-account-address-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}
.lux-account-address-card__title {
    font-size: 0.9rem;
    color: #0f172a;
}
.lux-account-address-card__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #065f46;
    background: #d1fae5;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}
.lux-account-address-card__line {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #334155;
}
.lux-account-address-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding-top: 0.45rem;
    border-top: 1px solid #e2e8f0;
}
.lux-account-address-card__form {
    display: inline;
    margin: 0;
}
.lux-account-address-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
}
.lux-account-addresses__sub {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0.65rem 0.35rem 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid #b4bcc8;
}
.lux-account-address-form {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    padding-bottom: 0.35rem;
    border-top: none;
}
.lux-account-address-form__check {
    font-size: 0.875rem;
    color: #334155;
    cursor: pointer;
}
.lux-account-profile {
    margin-bottom: 0.85rem;
    padding: 0 0 0.15rem;
}
.lux-account-profile .lux-checkout-h2 {
    margin-top: 0;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}
.lux-account-profile__hint {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0 0 0.5rem;
    padding: 0 0.35rem;
    line-height: 1.45;
}
.lux-account-profile__alert {
    margin: 0 0.35rem 0.5rem;
}
.lux-account-profile__errors {
    margin-bottom: 0.5rem;
}
.lux-account-profile-avatar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.65rem 1rem;
    margin-bottom: 0.65rem;
    padding: 0.45rem 0.35rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
}
.lux-account-profile-avatar__preview {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #b4bcc8;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lux-account-profile-avatar__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lux-account-profile-avatar__placeholder {
    font-size: 2.25rem;
    color: #94a3b8;
    line-height: 1;
}
.lux-account-profile-avatar__fields {
    flex: 1 1 12rem;
    min-width: 0;
}
.lux-account-profile-avatar__fields .form__field {
    margin-bottom: 0.4rem;
}
.lux-account-profile-avatar__fields .form__field:last-child {
    margin-bottom: 0;
}
.lux-account-profile-avatar__file {
    padding: 0.28rem 0.35rem;
    font-size: 0.8125rem;
}
.lux-account-profile-avatar__hint {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.6875rem;
    color: #94a3b8;
}
.lux-account-profile-avatar__remove {
    font-size: 0.8125rem;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.lux-account-profile-avatar__remove .fa-solid {
    color: #64748b;
}
.lux-account-profile-form {
    padding: 0.35rem 0.35rem 0.5rem;
    border-top: 1px solid #b4bcc8;
    background: #f8fafc;
}
.lux-account-profile-form__row {
    display: grid;
    gap: 0.5rem 0.65rem;
    margin-bottom: 0.5rem;
}
.lux-account-profile-form__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lux-account-profile-form__row .form__field {
    margin-bottom: 0;
}
.lux-account-profile-form .form__field {
    margin-bottom: 0.5rem;
}
.lux-account-profile-form__row--pw {
    margin-bottom: 0;
}
.lux-profile-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.lux-profile-label .fa-solid {
    width: 1.1em;
    flex-shrink: 0;
    text-align: center;
    color: #64748b;
}
.lux-account-profile-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.lux-account-profile-form__submit .fa-solid {
    font-size: 0.95em;
}
.lux-account-profile__meta .fa-solid {
    margin-right: 0.35rem;
    color: #94a3b8;
}
.lux-account-profile-form input[readonly] {
    background: #e2e8f0;
    color: #475569;
    cursor: default;
}
.lux-account-profile__meta {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0.15rem 0 0.65rem;
}
.lux-account-profile__pw {
    margin: 0.35rem 0 0.5rem;
    padding: 0.5rem 0.65rem 0.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
}
.lux-account-profile__pw-legend {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    padding: 0 0.35rem;
}
.lux-account-profile__pw-legend .lux-profile-label .fa-solid {
    color: #475569;
}
@media (max-width: 768px) {
    .lux-account-profile-form__row--3 {
        grid-template-columns: 1fr;
    }
}
.lux-account-profile__optional {
    font-weight: 400;
    color: #64748b;
}
.lux-account-profile__body {
    padding: 0.15rem 0.35rem 0.35rem;
    border-top: 1px solid #b4bcc8;
    background: #f8fafc;
}
.lux-account-profile__body .lux-checkout-summary__row {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
}
.lux-account-break {
    word-break: break-word;
}
.lux-account-orders .lux-checkout-h2 {
    margin-top: 0;
}
.lux-account-empty {
    text-align: center;
    padding: 1rem 0.75rem;
}
.lux-account-order-summary {
    margin-bottom: 0.55rem;
    padding: 0.45rem 0.4rem 0.5rem;
    border: 1px solid #b4bcc8;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.lux-account-order-summary__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem 0.55rem;
    margin-bottom: 0.45rem;
}
.lux-account-order-summary__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.35rem 0.4rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    min-width: 0;
}
.lux-account-order-summary__stat:nth-child(1) {
    background: #e0f2fe;
    border-color: #bae6fd;
}
.lux-account-order-summary__stat:nth-child(1) .lux-account-order-summary__ico {
    color: #0369a1;
}
.lux-account-order-summary__stat:nth-child(2) {
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.lux-account-order-summary__stat:nth-child(2) .lux-account-order-summary__ico {
    color: #047857;
}
.lux-account-order-summary__stat:nth-child(3) {
    background: #fef3c7;
    border-color: #fde68a;
}
.lux-account-order-summary__stat:nth-child(3) .lux-account-order-summary__ico {
    color: #b45309;
}
.lux-account-order-summary__ico {
    color: #475569;
    font-size: 0.75rem;
    opacity: 0.9;
}
.lux-account-order-summary__main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.4rem;
}
.lux-account-order-summary__val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}
.lux-account-order-summary__lbl {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}
.lux-account-order-summary__hint {
    font-size: 0.65rem;
    line-height: 1.35;
    color: #94a3b8;
}
.lux-account-order-summary__lede {
    margin: 0;
    padding: 0.15rem 0.2rem 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #334155;
}
.lux-account-order-summary__lede strong {
    font-weight: 800;
    color: #0f172a;
}
@media (max-width: 640px) {
    .lux-account-order-summary__grid {
        grid-template-columns: 1fr;
    }
}
.lux-account-order-list {
    padding: 0;
    overflow: hidden;
}
.lux-account-order-list__head {
    display: grid;
    grid-template-columns: 5.5rem 4.75rem minmax(0, 1fr) auto minmax(3.5rem, 4.25rem);
    gap: 0.35rem 0.45rem;
    align-items: center;
    padding: 0.32rem 0.45rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 1px solid #334155;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e2d5b6;
}
.lux-account-order-list__h--products {
    min-width: 0;
}
.lux-account-order-list__h--action {
    text-align: center;
}
.lux-account-order-item {
    border-bottom: 1px solid #b4bcc8;
}
.lux-account-order-item:last-of-type {
    border-bottom: none;
}
.lux-account-order-item__summary {
    display: grid;
    grid-template-columns: 5.5rem 4.75rem minmax(0, 1fr) auto minmax(3.5rem, 4.25rem);
    gap: 0.35rem 0.45rem;
    align-items: center;
    padding: 0.38rem 0.45rem;
    list-style: none;
    cursor: pointer;
    font-size: 0.68rem;
    background: #fff;
    color: #1e293b;
    transition: background 0.12s ease;
}
.lux-account-order-item__summary::-webkit-details-marker {
    display: none;
}
.lux-account-order-item__summary::marker {
    content: '';
}
.lux-account-order-item__summary:hover {
    background: #f8fafc;
}
.lux-account-order-item[open] > .lux-account-order-item__summary {
    background: #f1f5f9;
    border-bottom: 1px solid #cbd5e1;
}
.lux-account-order-item__iddate {
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
    min-width: 0;
}
.lux-account-order-item__id {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f172a;
}
.lux-account-order-item__date {
    font-size: 0.58rem;
    color: #64748b;
}
.lux-account-order-item__cargo-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.12rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #047857;
}
.lux-account-order-item__cargo-hint i {
    font-size: 0.55rem;
    opacity: 0.9;
}
.lux-account-order-item__total {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f172a;
}
.lux-account-order-item__products {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.62rem;
    color: #475569;
    line-height: 1.3;
}
.lux-account-order-item__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 7.5rem;
    padding: 0.22rem 0.4rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    color: #1e3a8a;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
    white-space: nowrap;
}
.lux-account-order-item__detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.4rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1508;
    background: linear-gradient(165deg, #f8efd8 0%, #e6c565 42%, #b8941f 100%);
    border: 1px solid #8a6a1f;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
    pointer-events: none;
}
.lux-account-order-item__panel {
    padding: 0.35rem 0.4rem 0.5rem;
    background: #fafbfc;
    border-top: 1px solid #e2e8f0;
}
.lux-account-order-item__panel-head {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 0.35rem;
    padding-bottom: 0.28rem;
    border-bottom: 1px dashed #cbd5e1;
}
.lux-account-order-item__summary-block {
    padding: 0.1rem 0.15rem 0.25rem;
    margin-bottom: 0.35rem;
}
@media (max-width: 720px) {
    .lux-account-order-list__head {
        display: none;
    }
    .lux-account-order-item__summary {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'iddate total'
            'products products'
            'pill detail';
    }
    .lux-account-order-item__iddate {
        grid-area: iddate;
    }
    .lux-account-order-item__total {
        grid-area: total;
        justify-self: end;
        text-align: right;
    }
    .lux-account-order-item__products {
        grid-area: products;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .lux-account-order-item__pill {
        grid-area: pill;
        justify-self: start;
        max-width: none;
    }
    .lux-account-order-item__detail-btn {
        grid-area: detail;
        justify-self: end;
    }
}
@media (max-width: 400px) {
    .lux-account-order-item__summary {
        grid-template-columns: 1fr;
        grid-template-areas:
            'iddate'
            'total'
            'products'
            'pill'
            'detail';
    }
    .lux-account-order-item__total {
        justify-self: start;
        text-align: left;
    }
    .lux-account-order-item__detail-btn {
        justify-self: stretch;
        width: 100%;
    }
}

.lux-account-cargo {
    margin: 0.4rem 0.15rem 0.45rem;
    padding: 0.55rem 0.65rem 0.65rem;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
    background: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 55%, #ecfdf5 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}
.lux-account-cargo__head {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}
.lux-account-cargo__icon {
    display: inline-flex;
    color: #047857;
    font-size: 0.85rem;
}
.lux-account-cargo__title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #065f46;
}
.lux-account-cargo__lede {
    margin: 0 0 0.45rem;
    font-size: 0.62rem;
    line-height: 1.45;
    color: #166534;
}
.lux-account-cargo__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.65rem;
    margin-bottom: 0.28rem;
    font-size: 0.65rem;
}
.lux-account-cargo__k {
    font-weight: 700;
    color: #14532d;
    min-width: 6.5rem;
}
.lux-account-cargo__v {
    color: #1e293b;
}
.lux-account-cargo__code {
    font-family: ui-monospace, monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0f172a;
    word-break: break-all;
}
.lux-account-cargo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.45rem;
    padding: 0.42rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(165deg, #059669 0%, #047857 100%);
    border: 1px solid #065f46;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: filter 0.12s ease, transform 0.12s ease;
}
.lux-account-cargo__btn:hover {
    filter: brightness(1.06);
    color: #fff;
}
.lux-account-cargo__btn:focus-visible {
    outline: 2px solid #047857;
    outline-offset: 2px;
}
.lux-account-cargo__note {
    margin: 0.35rem 0 0;
    font-size: 0.6rem;
    line-height: 1.4;
    color: #166534;
}
.lux-account-cargo-wait {
    margin: 0.35rem 0.15rem 0.4rem;
    padding: 0.45rem 0.55rem;
    font-size: 0.62rem;
    line-height: 1.45;
    color: #64748b;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
}
.lux-account-order__addr {
    padding: 0.35rem 0.15rem 0.15rem;
    margin-top: 0.15rem;
    border-top: 1px dashed #cbd5e1;
}
.lux-account-order__addr .lux-checkout-summary__k {
    display: block;
    margin-bottom: 0.25rem;
}
.lux-account-order__addr-txt {
    font-size: 0.68rem;
    line-height: 1.45;
    color: #334155;
    white-space: pre-wrap;
}
.lux-account-order__table-wrap {
    margin: 0;
}
.lux-account-order-grid {
    min-width: 16rem;
}
.lux-account-order-grid .lux-cart-grid__cell--name {
    max-width: none;
}

.lux-checkout-success-lede {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #334155;
}
.lux-checkout-success-bank {
    margin: 0.65rem 0;
    padding: 0.55rem 0.65rem;
    font-size: 0.78rem;
    border: 1px solid #b4bcc8;
    border-radius: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.lux-checkout-success-bank strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
}
.lux-checkout-success-bank__body {
    white-space: pre-wrap;
    font-size: 0.76rem;
    line-height: 1.5;
    color: #1e293b;
}
@media (max-width: 640px) {
    .lux-checkout-grid {
        min-width: 18rem;
    }
}

/* Ürün detay + kart — premium sepete ekle */
.btn-lux-cart.pd-btn--cart {
    position: relative;
    overflow: hidden;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    padding: 0.72rem 1rem !important;
    border-radius: 3px !important;
    border: 1px solid #8b6914 !important;
    background: linear-gradient(165deg, #f8ecd4 0%, #e8c547 38%, #b8860b 100%) !important;
    color: #1a1204 !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 4px 16px rgba(15, 23, 42, 0.12) !important;
}
.btn-lux-cart.pd-btn--cart::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.btn-lux-cart.pd-btn--cart:hover::after {
    opacity: 1;
}
.btn-lux-cart.pd-btn--cart:hover {
    filter: brightness(1.03) !important;
    border-color: #6b4f0c !important;
}

.product-card__cta.btn-lux-cart {
    min-height: 1.65rem !important;
    font-size: 0.56rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    border-radius: 2px !important;
    border: 1px solid #7a5a12 !important;
    background: linear-gradient(165deg, #f5e8c8 0%, #deb949 45%, #b8860b 100%) !important;
    color: #140f05 !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.45) inset,
        0 2px 6px rgba(15, 23, 42, 0.1) !important;
}
.product-card__cta.btn-lux-cart:hover {
    filter: brightness(1.04) !important;
}

/* PayTR ödeme iframe — çift kaydırma azaltılır, mobilde yükseklik viewport’a göre */
.paytr-embed {
    width: 100%;
    max-width: 100%;
    margin: 0.75rem 0 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d5db;
    background: #f1f5f9;
    box-sizing: border-box;
}
.paytr-embed__iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    height: 70vh;
    border: 0;
    vertical-align: top;
}
@media (min-width: 900px) {
    .paytr-embed__iframe {
        min-height: 640px;
        height: 680px;
    }
}

/* Sepet + ödeme özeti — mobil: yatay scroll yok, satırlar kart; adet alanı dokunmatik */
@media (max-width: 768px) {
    .lux-cart-page .lux-cart-table-wrap,
    .lux-checkout-page .lux-cart-table-wrap {
        overflow-x: visible;
        margin: 0;
    }
    .lux-cart-page .lux-cart-sheet,
    .lux-checkout-page .lux-cart-sheet {
        overflow: visible;
        min-width: 0;
    }
    .lux-cart-page .lux-cart-grid,
    .lux-checkout-page .lux-checkout-grid {
        min-width: 0 !important;
        width: 100%;
        display: block;
        background: transparent;
        border: none;
        font-size: 0.74rem;
    }
    .lux-cart-page .lux-cart-grid.data-table,
    .lux-checkout-page .lux-checkout-grid.data-table {
        min-width: 0 !important;
    }
    .lux-cart-page .lux-cart-grid thead,
    .lux-checkout-page .lux-checkout-grid thead {
        display: none;
    }
    .lux-cart-page .lux-cart-grid tbody,
    .lux-checkout-page .lux-checkout-grid tbody {
        display: block;
    }
    .lux-cart-page .lux-cart-grid tbody tr,
    .lux-checkout-page .lux-checkout-grid tbody tr {
        display: block;
        margin-bottom: 0.65rem;
        padding: 0.55rem 0.65rem;
        border: 1px solid #b4bcc8;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
    }
    .lux-cart-page .lux-cart-grid tbody tr:hover .lux-cart-grid__cell,
    .lux-checkout-page .lux-checkout-grid tbody tr:hover .lux-cart-grid__cell {
        background: transparent;
    }
    .lux-cart-page .lux-cart-grid tbody td,
    .lux-checkout-page .lux-checkout-grid tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        width: 100%;
        box-sizing: border-box;
        border: none;
        border-bottom: 1px dashed #e2e8f0;
        padding: 0.45rem 0;
        background: transparent !important;
        vertical-align: middle;
    }
    .lux-cart-page .lux-cart-grid tbody td:last-child,
    .lux-checkout-page .lux-checkout-grid tbody td:last-child {
        border-bottom: none;
    }
    .lux-cart-page .lux-cart-grid tbody td[data-label]::before,
    .lux-checkout-page .lux-checkout-grid tbody td[data-label]::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #64748b;
        flex-shrink: 0;
        max-width: 42%;
    }
    .lux-cart-page .lux-cart-grid__cell--img,
    .lux-checkout-page .lux-checkout-grid .lux-cart-grid__cell--img {
        justify-content: center;
        padding: 0.4rem 0 0.55rem;
        border-bottom: 1px solid #e2e8f0;
    }
    .lux-cart-page .lux-cart-grid__cell--img::before,
    .lux-checkout-page .lux-checkout-grid .lux-cart-grid__cell--img::before {
        display: none;
        content: none;
    }
    .lux-cart-page .lux-cart-grid__cell--name,
    .lux-checkout-page .lux-checkout-grid .lux-cart-grid__cell--name {
        max-width: none;
        font-size: 0.78rem;
        font-weight: 600;
        text-align: right;
        line-height: 1.35;
        word-break: break-word;
    }
    .lux-cart-page .lux-cart-grid__cell--qty {
        align-items: stretch;
    }
    .lux-cart-page .lux-cart-grid__cell--qty .lux-cart-qty-form {
        flex: 1;
        justify-content: flex-end;
        min-width: 0;
        max-width: 100%;
        touch-action: manipulation;
    }
    .lux-cart-page .lux-cart-qty-input {
        flex: 1 1 auto;
        width: auto;
        min-width: 4.25rem;
        max-width: 8rem;
        min-height: 2.75rem;
        padding: 0.4rem 0.55rem;
        font-size: 1rem;
        line-height: 1.25;
        -webkit-appearance: none;
        appearance: textfield;
        touch-action: manipulation;
    }
    .lux-cart-page .lux-cart-qty-input::-webkit-outer-spin-button,
    .lux-cart-page .lux-cart-qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .lux-cart-page .lux-cart-qty-submit {
        width: 2.65rem;
        height: 2.65rem;
        min-width: 2.65rem;
        flex-shrink: 0;
        touch-action: manipulation;
    }
    .lux-cart-page .lux-cart-grid__cell--act {
        justify-content: center;
        padding-top: 0.55rem;
    }
    .lux-cart-page .lux-cart-grid__cell--act::before {
        display: none;
        content: none;
    }
    .lux-cart-page .lux-cart-grid__cell--act .btn-lux--remove {
        width: 100%;
        max-width: 14rem;
        min-height: 2.65rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.62rem;
        touch-action: manipulation;
    }
    .paytr-embed__iframe {
        min-height: 55vh;
        height: 75vh;
        height: 75dvh;
    }
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 280px;
}
.data-table th,
.data-table td {
    text-align: left;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border-subtle);
    vertical-align: top;
}
.data-table th {
    font-weight: 600;
    background: var(--surface-muted);
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.data-table tr:hover td { background: color-mix(in srgb, var(--primary) 5%, #ffffff); }

/* Hesap sayfası */
.account-order {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}
.account-order:last-of-type { border-bottom: none; }

.address-card {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}
.address-card__actions { margin-top: 0.5rem; }

.form__field--inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .site-nav { font-size: 0.88rem; }
    .data-table { font-size: 0.84rem; }
}

/* ╔═══════════════════════════════════════════════════════════════╗
   ║  AQUAMARINE SUPPLY — KOMPLE TASARIM OVERRIDE                 ║
   ║  Screenshot ile birebir eşleşen stiller                      ║
   ╚═══════════════════════════════════════════════════════════════╝ */

/* ── Duyuru Çubuğu ──────────────────────────────────────────── */
.announcement-bar {
    background: var(--secondary);
    color: rgba(255,255,255,.88);
    text-align: center;
    padding: 0.55rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.announcement-bar a,
.announcement-bar__link {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 0.4rem;
}
.announcement-bar a:hover { opacity: .82; }

/* ── Header Tam Yeniden Tasarım ─────────────────────────────── */
.global-topbar {
    display: none !important; /* announcement-bar kullanıyoruz */
}

.global-header {
    background: #fff !important;
    border-bottom: 1px solid #e4e9f0 !important;
    box-shadow: 0 2px 14px rgba(11,29,62,.07) !important;
    backdrop-filter: none !important;
    position: sticky;
    top: 0;
    z-index: 60;
}

.global-header__main {
    max-width: 100rem !important;
    margin: 0 auto !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Logo ve Marka */
.global-brand {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    text-decoration: none !important;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    background: var(--surface-card) !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
}
.global-brand__logo--text {
    width: 2rem !important;
    height: 2rem !important;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light)) !important;
    font-size: 0.85rem !important;
}
.global-brand__name {
    font-family: var(--font-display) !important;
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    letter-spacing: -0.01em !important;
}

/* Navigasyon — orta */
.global-nav {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
    overflow: hidden;
}
.global-nav__link {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: var(--radius-sm) !important;
    white-space: nowrap !important;
    background: transparent !important;
    color: var(--text-color) !important;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.global-nav__link:hover {
    color: var(--primary) !important;
    background: var(--surface-muted) !important;
    border-color: var(--primary);
}
.global-nav__link.is-active {
    color: var(--text-on-dark) !important;
    background: var(--primary) !important;
    border-color: var(--primary);
    font-weight: 700 !important;
}

/* Aksiyonlar sağ */
.global-header__actions {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* Arama kutusu */
.global-search {
    max-width: 220px !important;
}
.global-search__input {
    height: 2.3rem !important;
    border: 1.5px solid #d8e0ec !important;
    border-radius: 5px !important;
    background: #f5f7fb !important;
    font-size: 0.78rem !important;
}
.global-search__input:focus {
    border-color: var(--primary) !important;
    background: #fff !important;
}

/* Login / Cart butonları */
.global-cart.btn--primary {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    min-height: 2.3rem !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    padding: 0 0.9rem !important;
    gap: 0.35rem !important;
    overflow: visible !important;
}
.global-cart.btn--primary:hover {
    background: var(--secondary-light) !important;
    transform: none !important;
    box-shadow: none !important;
}
.global-member-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.3rem;
    padding: 0 0.65rem;
    border-radius: 5px;
    border: 1px solid #d8e0ec;
    background: #f5f7fb;
    color: #1a2744;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Üst bar — giriş yapmış üye: profil görseli + Hesabım ile aynı dolgu butonlar + giriş metni */
.global-member-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.32rem;
    max-width: min(100%, 26rem);
}
.global-member-btn--profile {
    min-width: 2.3rem;
    max-width: min(100%, 11rem);
    padding: 0 0.55rem !important;
}
.global-member-btn__chip {
    max-width: 6.5em;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.1;
}
.global-member-btn--profile .fa-user {
    font-size: 0.95rem;
}
.global-member-btn__face {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.global-member-block__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.35rem;
}

/* Misafir: Giriş + Sepet aynı genişlik ve yükseklik (Sepet sütununa göre eşitlenir) */
.global-member-block--guest .global-member-block__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0.35rem;
    min-width: min(100%, 17.5rem);
}
.global-member-block--guest .global-member-block__actions > .global-member-btn {
    width: 100%;
    min-height: 2.45rem;
    justify-content: center;
    box-sizing: border-box;
}
.global-member-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 2.3rem;
    padding: 0 0.78rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff !important;
    box-shadow: none;
    line-height: 1.1;
}
.global-member-btn:hover {
    filter: brightness(1.08);
    color: #fff !important;
}
.global-member-btn .fa-solid {
    font-size: 0.78rem;
    opacity: 0.95;
}
.global-member-btn--cart {
    overflow: visible;
}

/* Misafir üst bar — giriş yapmış ile aynı ölçü (.global-member-btn); renkler temada */
.global-member-btn--guest-login {
    background: #f5f7fb;
    border-color: #d8e0ec;
    color: var(--secondary) !important;
}
.global-member-btn--guest-login:hover {
    filter: brightness(0.97);
    color: var(--secondary) !important;
}
.global-member-btn--guest-login .fa-solid {
    color: inherit !important;
}
.global-member-btn--guest-cart {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff !important;
    overflow: visible;
}
.global-member-btn--guest-cart:hover {
    color: #fff !important;
}
.global-member-btn--guest-cart .fa-solid {
    color: inherit !important;
}
.global-member-btn--guest-cart .global-member-btn__badge {
    border-color: var(--secondary);
}

.global-member-btn__badge {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    min-width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    color: #0f172a;
    font-size: 0.58rem;
    font-weight: 800;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.28rem;
    border: 2px solid var(--primary);
    line-height: 1;
}
.global-member-btn__badge.is-empty {
    opacity: 0.82;
}
.global-member-block__hint {
    margin: 0;
    padding: 0;
    font-size: 0.62rem;
    line-height: 1.35;
    color: #64748b;
    text-align: right;
    max-width: 100%;
    word-break: break-word;
}
.global-member-block__hint strong {
    color: #1e293b;
    font-weight: 700;
}
.btn--danger {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}
.btn--danger:hover {
    background: #ef4444 !important;
    color: #fff !important;
}
.global-cart.btn--primary::before {
    display: none !important;
}
.global-cart__badge {
    background: var(--primary) !important;
    border-color: #fff !important;
    color: #111 !important;
    z-index: 4 !important;
    font-weight: 800 !important;
}
.global-cart__badge.is-empty {
    opacity: 0.75;
}

/* Mobil toggle */
.global-header__mobile-toggle {
    border: 1.5px solid #d8e0ec !important;
    color: var(--secondary) !important;
    border-radius: 5px !important;
}

/* ── Ürün Kartı Tam Yeniden Tasarım ─────────────────────────── */
/* Katalog grid — daha küçük kartlar */
.catalog {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.72rem !important;
    padding: 0 !important;
}

/* Renkli üst çizgini kaldır */
.product-card::before { display: none !important; }

/* Kart */
.product-card {
    background: var(--surface-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease !important;
    overflow: hidden !important;
    width: auto !important;
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}
.product-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
    border-color: #cbd5e1 !important;
}

/* Kart üst bölüm: görsel + marka başlığı + gövde linki */
.product-card__link-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
}

.product-card__media-link {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
}

.product-card__brand-title-row {
    padding: 0.42rem 0.6rem 0 !important;
    flex: 0 0 auto !important;
}

.product-card__brand-title-link {
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    color: #1d4ed8 !important;
    text-decoration: none !important;
}

.product-card__brand-title-link:hover {
    text-decoration: underline !important;
}

.product-card__brand-title-text {
    font-size: 0.74rem !important;
    font-weight: 600 !important;
    color: #1a2744 !important;
}

/* Kart link — flex sütun */
.product-card__link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
}

/* Görsel — beyaz marin teması */
.product-card__media {
    aspect-ratio: 4 / 3 !important;
    background: #f8fafc !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0.35rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-radius: 6px 6px 0 0 !important;
}
.product-card__img {
    transform: none !important;
    object-fit: var(--product-card-image-fit, contain) !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
    transition: none !important;
}
.product-card:hover .product-card__img {
    transform: none !important;
}

/* Rozetler */
.product-card__badges {
    top: auto !important;
    bottom: 0.48rem !important;
    right: 0.48rem !important;
    left: auto !important;
    align-items: flex-end !important;
    gap: 0.25rem !important;
}
.badge {
    padding: 0.2rem 0.6rem !important;
    border-radius: 3px !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.08em !important;
}
.badge--new      { background: #16a34a !important; } /* green */
.badge--showcase { background: #0b1d3e !important; } /* navy */
.badge--campaign { background: #1d4ed8 !important; } /* blue */
.badge--star     { background: #059669 !important; } /* green */

.product-card__campaign-chip {
    position: absolute;
    right: 0.48rem;
    bottom: 0.48rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.15rem;
    padding: 0.1rem 0.58rem;
    border-radius: 4px;
    background: #1d4ed8 !important;
    color: #fff !important;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(29, 78, 216, 0.35);
}

.product-card__campaign-ribbon {
    position: absolute;
    top: 0.5rem;
    right: -1.88rem;
    width: 7.3rem;
    height: 1.08rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(35deg);
    background: linear-gradient(90deg, #991b1b 0%, #dc2626 52%, #ef4444 100%);
    color: #fff;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.45);
    z-index: 4;
    pointer-events: none;
}

.product-card--is-new .product-card__media::before {
    content: 'YENI';
    position: absolute;
    top: 0.62rem;
    left: -2.1rem;
    width: 6.15rem;
    height: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    background: linear-gradient(90deg, #15803d 0%, #16a34a 52%, #22c55e 100%);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.45);
    z-index: 3;
    pointer-events: none;
}
.product-card--is-new .product-card__media::after {
    content: '';
    position: absolute;
    top: 0.42rem;
    left: 0.42rem;
    width: 2.1rem;
    height: 2.1rem;
    border-top: 1px solid rgba(22, 163, 74, 0.28);
    border-left: 1px solid rgba(22, 163, 74, 0.28);
    border-radius: 5px 0 0 0;
    z-index: 2;
    pointer-events: none;
}
.product-card--is-new .product-card__badges {
    top: auto !important;
    bottom: 0.48rem !important;
    right: 0.48rem !important;
}

/* Kart gövdesi */
.product-card__body {
    padding: 0.38rem 0.56rem 0.34rem !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.24rem !important;
    border-top: none !important;
    grid-template-rows: unset !important;
    min-height: 5.8rem !important;
}

/* Kategori gizle */
.product-card__category { display: none !important; }

a.product-card__brand-logo--link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card__brand-logo {
    position: absolute !important;
    left: 0.38rem !important;
    bottom: 0.38rem !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 74px !important;
    height: 38px !important;
    padding: 0.22rem 0.34rem !important;
    background: rgba(255,255,255,.92) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 7px !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, .08) !important;
}
.product-card__brand-logo img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Başlık */
.product-card__title {
    font-family: var(--font-display) !important;
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    color: #1a2744 !important;
    margin: 0 !important;
    -webkit-line-clamp: 2 !important;
    letter-spacing: 0 !important;
    min-height: calc(1.25em * 2) !important;
}

/* Açıklama gizle */
.product-card__desc { display: none !important; }

/* Yıldız reytingi */
.product-card__stars {
    display: flex !important;
    align-items: center !important;
    gap: 0.1rem !important;
    color: #f59e0b !important;
    font-size: 0.66rem !important;
    margin: 0.1rem 0 !important;
}
.product-card__stars .stars-count {
    color: #9aabbe !important;
    font-size: 0.58rem !important;
    margin-left: 0.15rem !important;
}

/* Fiyat */
.product-card__price-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-top: auto !important;
    align-items: flex-start !important;
}
.product-card__old-price {
    font-size: 0.62rem !important;
    color: #9aabbe !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
    order: -1 !important;
    margin: 0 !important;
}
.product-card__discount-rate {
    margin: 0 !important;
    font-size: 0.58rem !important;
    font-weight: 600 !important;
    color: #0f766e !important;
}
.product-card__price {
    font-family: var(--font-display) !important;
    font-size: 1.02rem !important;
    font-weight: 600 !important;
    color: #1a2744 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
}
.product-card__price.is-discounted {
    color: #d90429 !important;
}

/* Kart footer — beyaz marin "Sepete Ekle" */
.product-card__footer {
    padding: 0.28rem 0.56rem 0.45rem !important;
    background: transparent !important;
    margin-top: auto !important;
    position: relative !important;
    z-index: 3 !important;
}
.product-card__footer form {
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 3 !important;
}
.product-card__code { display: none !important; }
.product-card__cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    width: 100% !important;
    min-height: 1.02rem !important;
    background: var(--store-product-cta-bg, #f97316) !important;
    color: var(--store-product-cta-text, #ffffff) !important;
    font-size: 0.5rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    text-transform: uppercase !important;
    border-radius: 3px !important;
    border: 1px solid var(--store-product-cta-hover-bg, #ea580c) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.product-card__cta-icon {
    font-size: 0.76rem !important;
    line-height: 1 !important;
}
.product-card:hover .product-card__cta {
    background: var(--store-product-cta-hover-bg, #ea580c) !important;
    color: var(--store-product-cta-text, #ffffff) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ── Kategori Vitrin Kartları ────────────────────────────────── */
.category-showcase {
    max-width: 90rem;
    margin: 0 auto 2.8rem;
    padding: 0 1.5rem;
    text-align: center;
}
.category-showcase__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 1.1rem;
    padding: 0;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: inherit;
}
.category-showcase__heading-title {
    display: block;
    font-size: clamp(0.65rem, 1.2vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--secondary);
    font-feature-settings: "kern" 1, "liga" 1;
}
.category-showcase__heading-stars {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.48rem;
    line-height: 1;
    letter-spacing: 0.38em;
    white-space: nowrap;
    color: #94a3b8;
    opacity: 0.88;
    font-weight: 400;
}
.category-showcase__heading-rule {
    position: relative;
    width: min(18.5rem, 88vw);
    height: 2px;
    margin-top: 0.48rem;
    overflow: hidden;
    border-radius: 2px;
}
.category-showcase__heading-rule::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 12%,
        rgba(110, 160, 205, 0.2) 22%,
        rgba(110, 160, 205, 0.85) 48%,
        rgba(61, 77, 102, 0.55) 52%,
        rgba(110, 160, 205, 0.85) 56%,
        rgba(110, 160, 205, 0.2) 78%,
        transparent 88%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: category-showcase-rule-flow 6s ease-in-out infinite;
}

.mobile-member-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}
.mobile-member-actions__hint--full {
    width: 100%;
    flex-basis: 100%;
    margin: 0 0 0.35rem;
}
.mobile-member-actions__hint {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 0.68rem;
    line-height: 1.35;
    color: #64748b;
}
.mobile-member-actions__hint strong {
    color: #1e293b;
    font-weight: 700;
}
.mobile-member-actions__link--profile {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.mobile-member-actions__link-face {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.mobile-member-actions__link--profile .fa-user {
    font-size: 0.95rem;
    color: #1a2744;
}
.mobile-member-actions__link .fa-solid {
    margin-right: 0.35rem;
    font-size: 0.85em;
    opacity: 0.9;
}
.mobile-member-actions__name {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1a2744;
}
.mobile-member-actions__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.9rem;
    padding: 0 0.65rem;
    border: 1px solid #d8e0ec;
    border-radius: 6px;
    text-decoration: none;
    color: #1a2744;
    font-size: 0.72rem;
    font-weight: 700;
}
.mobile-member-actions__link--logout {
    border-color: #ef4444;
    color: #ef4444;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(6.6rem + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0.7rem;
        right: 0.7rem;
        bottom: max(0.55rem, env(safe-area-inset-bottom));
        z-index: 1200;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.45rem;
        padding: 0.5rem;
        border-radius: 1rem;
        background: rgba(8, 15, 30, 0.9);
        box-shadow: 0 12px 30px rgba(2, 10, 28, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-bottom-nav__item {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        min-height: 3rem;
        border: 0;
        border-radius: 0.8rem;
        color: #fff;
        font-size: 0.63rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        text-decoration: none;
        cursor: pointer;
    }

    .mobile-bottom-nav__item i {
        font-size: 0.95rem;
        line-height: 1;
    }

    .mobile-bottom-nav__item--home { background: linear-gradient(145deg, #2563eb, #1d4ed8); }
    .mobile-bottom-nav__item--member,
    .mobile-bottom-nav__item--account { background: linear-gradient(145deg, #0ea5a4, #0f766e); }
    .mobile-bottom-nav__item--cart { background: linear-gradient(145deg, #f59e0b, #d97706); }
    .mobile-bottom-nav__item--menu { background: linear-gradient(145deg, #8b5cf6, #6d28d9); }

    .mobile-bottom-nav__badge {
        position: absolute;
        top: 0.28rem;
        right: 0.32rem;
        min-width: 1rem;
        height: 1rem;
        padding: 0 0.2rem;
        border-radius: 999px;
        background: #ffffff;
        color: #b45309;
        font-size: 0.58rem;
        font-weight: 800;
        line-height: 1rem;
        text-align: center;
    }

    .mobile-bottom-nav__badge.is-empty {
        opacity: 0.75;
    }
}
@keyframes category-showcase-rule-flow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.72;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .category-showcase__heading-rule::before {
        animation: none;
        opacity: 0.85;
        background-position: 50% 50%;
    }
}
.category-showcase__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.45rem 0.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 112px;
    max-width: 112px;
    height: 94px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    /* İnce neon hat + hafif derinlik (renk sırayla değişir) */
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.25s var(--ease-out), transform 0.2s var(--ease-out);
    border: 1px solid rgba(184, 201, 222, 0.75);
    background: #f0f5fa;
}
.category-showcase .showcase-card:nth-child(8n + 1) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(0, 255, 247, 0.88),
        0 0 7px rgba(0, 255, 247, 0.38);
}
.category-showcase .showcase-card:nth-child(8n + 2) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(255, 0, 170, 0.85),
        0 0 7px rgba(255, 0, 170, 0.35);
}
.category-showcase .showcase-card:nth-child(8n + 3) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(57, 255, 20, 0.82),
        0 0 7px rgba(57, 255, 20, 0.32);
}
.category-showcase .showcase-card:nth-child(8n + 4) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(255, 235, 59, 0.9),
        0 0 7px rgba(255, 235, 59, 0.4);
}
.category-showcase .showcase-card:nth-child(8n + 5) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(191, 95, 255, 0.88),
        0 0 7px rgba(191, 95, 255, 0.38);
}
.category-showcase .showcase-card:nth-child(8n + 6) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(255, 107, 53, 0.88),
        0 0 7px rgba(255, 107, 53, 0.36);
}
.category-showcase .showcase-card:nth-child(8n + 7) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(0, 255, 213, 0.85),
        0 0 7px rgba(0, 255, 213, 0.34);
}
.category-showcase .showcase-card:nth-child(8n + 8) {
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.07),
        0 0 0 1px rgba(255, 60, 252, 0.82),
        0 0 7px rgba(255, 60, 252, 0.34);
}
.showcase-card:hover {
    transform: translateY(-2px);
}
.category-showcase .showcase-card:nth-child(8n + 1):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(0, 255, 247, 1),
        0 0 12px rgba(0, 255, 247, 0.5);
}
.category-showcase .showcase-card:nth-child(8n + 2):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(255, 0, 170, 0.95),
        0 0 12px rgba(255, 0, 170, 0.48);
}
.category-showcase .showcase-card:nth-child(8n + 3):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(57, 255, 20, 0.95),
        0 0 12px rgba(57, 255, 20, 0.45);
}
.category-showcase .showcase-card:nth-child(8n + 4):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(255, 235, 59, 1),
        0 0 12px rgba(255, 235, 59, 0.5);
}
.category-showcase .showcase-card:nth-child(8n + 5):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(191, 95, 255, 1),
        0 0 12px rgba(191, 95, 255, 0.5);
}
.category-showcase .showcase-card:nth-child(8n + 6):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(255, 107, 53, 1),
        0 0 12px rgba(255, 107, 53, 0.48);
}
.category-showcase .showcase-card:nth-child(8n + 7):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(0, 255, 213, 0.98),
        0 0 12px rgba(0, 255, 213, 0.46);
}
.category-showcase .showcase-card:nth-child(8n + 8):hover {
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.11),
        0 0 0 1px rgba(255, 60, 252, 0.95),
        0 0 12px rgba(255, 60, 252, 0.46);
}
.showcase-card__visual {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5fa;
    padding: 0.2rem 0.25rem 0;
}
.showcase-card:hover .showcase-card__visual { transform: none; }
.showcase-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
/* Kategori düzenleme — ikon seçiciyle aynı renkler (beyaz ikon + renkli rozet) */
.showcase-card__icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}
.showcase-card__icon-badge i {
    font-size: 1.32rem;
    line-height: 1;
    color: #fff;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.showcase-card__icon--custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(184, 201, 222, 0.6);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}
.showcase-card__custom-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-anchor"] { background: #1565c0; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-fish"] { background: #00897b; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-ship"] { background: #0d47a1; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-droplet"] { background: #0277bd; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-compass"] { background: #5e35b1; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-life-ring"] { background: #d32f2f; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-sailboat"] { background: #00695c; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-water"] { background: #0288d1; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-ferry"] { background: #283593; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-wind"] { background: #607d8b; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-bolt"] { background: #f57c00; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-plug"] { background: #5d4037; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-oil-can"] { background: #4e342e; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-screwdriver-wrench"] { background: #455a64; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-wrench"] { background: #37474f; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-cart-shopping"] { background: #2e7d32; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-bag-shopping"] { background: #388e3c; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-basket-shopping"] { background: #43a047; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-store"] { background: #7b1fa2; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-tags"] { background: #c2185b; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-percent"] { background: #ad1457; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-credit-card"] { background: #303f9f; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-truck-fast"] { background: #ef6c00; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-truck"] { background: #e65100; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-box-open"] { background: #6d4c41; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-box"] { background: #795548; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-receipt"] { background: #546e7a; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-barcode"] { background: #37474f; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-gift"] { background: #c62828; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-star"] { background: #f57c00; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-hand-holding-dollar"] { background: #1b5e20; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-wallet"] { background: #5d4037; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-clipboard-list"] { background: #455a64; }
.category-showcase .showcase-card__icon-badge[data-category-icon="fa-solid fa-headset"] { background: #00838f; }
.showcase-card__label {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0.2rem 0.35rem 0.35rem;
    text-align: center;
    color: #1e3a5f;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    border-top: 1px solid rgba(184, 201, 222, 0.85);
    background: #f0f5fa;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}

/* ── Bölüm Başlığı (centered) ───────────────────────────────── */
.section-title-center {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 1.6rem;
    position: relative;
}
.section-title-center::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

/* Ürün bölümü — lüks başlık + renkli ikon (kampanya / yeni) */
.section-title-center--lux {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    flex-wrap: wrap;
    text-align: left !important;
    margin-bottom: 0 !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: normal;
    text-transform: none;
    position: relative;
}
.section-title-center--lux::after {
    display: none;
}
.section-title-center--lux__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
    background: none;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    height: auto;
}
.section-title-center--lux__icon-wrap i {
    display: block;
    font-size: 1.12em;
    line-height: 1;
}
/* Renkli ikon (kutu yok): FA glifi ::before üzerinde */
.section-title-center--lux--campaign .section-title-center--lux__icon-wrap .fa-tags::before {
    background: linear-gradient(125deg, #f97316 0%, #ea580c 28%, #e11d48 58%, #9333ea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
.section-title-center--lux--new .section-title-center--lux__icon-wrap .fa-sparkles::before {
    background: linear-gradient(125deg, #5eead4 0%, #14b8a6 35%, #0d9488 70%, #047857 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
.section-title-center--lux__label {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(0.95rem, 2.1vw, 1.2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2c2825;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.88);
    padding-bottom: 0.3rem;
    line-height: 1.25;
}
.section-title-center--lux--campaign .section-title-center--lux__label {
    border-bottom: 1px solid rgba(234, 88, 12, 0.4);
}
.section-title-center--lux--new .section-title-center--lux__label {
    border-bottom: 1px solid rgba(13, 148, 136, 0.45);
}

/* ── Öne çıkan markalar (borsa bandı) ───────────────────────── */
.partners-section {
    max-width: 90rem;
    margin: 0 auto 3rem;
    padding: 2.2rem 1.5rem;
    background: #f5f7fb;
    border-top: 1px solid #e4e9f0;
    border-bottom: 1px solid #e4e9f0;
}
.partners-section--ticker {
    margin: 0 auto;
    padding-top: 0.85rem;
    padding-bottom: 0.45rem;
}
.partners-section__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
/* Lüks başlık (marka şeridi) */
.partners-section--ticker .partners-section__title--lux {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.65rem, 3vw, 1.35rem);
    margin: 0 0 0.55rem;
    padding: 0 0.5rem;
    font-weight: inherit;
    line-height: 1.2;
    border: none;
}
.partners-section__lux-line {
    flex: 1 1 0;
    max-width: 4.5rem;
    min-width: 1.5rem;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(120, 95, 60, 0.2) 35%,
        rgba(120, 95, 60, 0.45) 50%,
        rgba(120, 95, 60, 0.2) 65%,
        transparent 100%
    );
    pointer-events: none;
}
.partners-section__lux-text {
    flex: 0 0 auto;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(0.88rem, 2.1vw, 1.08rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #2c2825;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
    padding: 0.2rem 0 0.42rem;
    border-bottom: 1px solid rgba(166, 124, 72, 0.38);
    white-space: nowrap;
}
.partners-ticker {
    position: relative;
    width: 100%;
}
.partners-ticker__viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.partners-ticker__track {
    display: flex;
    width: max-content;
    animation: partners-ticker-marquee 58s linear infinite;
    will-change: transform;
}
.partners-ticker:hover .partners-ticker__track {
    animation-play-state: paused;
}
.partners-ticker__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.partners-ticker__item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.partners-ticker__link,
.partners-ticker__text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.28rem 0.45rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.partners-ticker__link:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
    background: rgba(255, 255, 255, 0.65);
}
.partners-ticker__link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.partners-ticker__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.55rem;
    color: #94a3b8;
    opacity: 0.4;
    font-size: 0.45rem;
    line-height: 1;
    user-select: none;
}
.partners-ticker__sep i {
    display: block;
    transform: scale(0.55);
    transform-origin: center;
}
/* Yumuşak, birbirine yakın doygunluklu marka renkleri */
.partners-ticker__link--n0 { color: #4f46e5; }
.partners-ticker__link--n1 { color: #0f766e; }
.partners-ticker__link--n2 { color: #b45309; }
.partners-ticker__link--n3 { color: #7c3aed; }
.partners-ticker__link--n4 { color: #0369a1; }
.partners-ticker__link--n5 { color: #be185d; }
.partners-ticker__link--n6 { color: #15803d; }
.partners-ticker__link--n7 { color: #a16207; }

@keyframes partners-ticker-marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .partners-ticker__viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .partners-ticker__group[aria-hidden="true"] {
        display: none;
    }
    .partners-ticker__track {
        animation: none;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.35rem;
    }
    .partners-ticker__group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
    max-width: 90rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}
.testimonials-section .section-title-center {
    font-size: 1.18rem !important;
    margin-bottom: 1.1rem !important;
    line-height: 1.2;
}
.testimonials-section .section-title-center::before {
    content: '★★★★★';
    display: block;
    margin-top: 0.3rem;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    background: linear-gradient(90deg, #b45309 0%, #fbbf24 30%, #fff1a6 50%, #f59e0b 70%, #b45309 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: testimonial-stars-shine 2.8s linear infinite;
}
@keyframes testimonial-stars-shine {
    from { background-position: 0% 50%; }
    to { background-position: 220% 50%; }
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 8px;
    padding: 0.48rem 0.56rem 0.5rem;
    box-shadow: 0 1px 6px rgba(11,29,62,.05);
    position: relative;
}
.testimonial-card__quote {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1;
    margin: -0.08rem 0 0.08rem;
    opacity: .8;
}
.testimonial-card__text {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0 0 0.3rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.28rem;
}
.testimonial-card__avatar {
    width: 1.42rem;
    height: 1.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    font-size: 0.64rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--secondary);
}
.testimonial-card__stars {
    color: #f59e0b;
    font-size: 0.58rem;
    display: block;
    margin-top: 0.02rem;
}

/* ── Footer — AquaMarine Maritime Theme ─────────────────── */
.global-footer {
    margin-top: 0 !important;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%) !important;
    color: var(--text-on-dark) !important;
    border-top: 3px solid var(--primary) !important;
    position: relative !important;
    overflow: hidden !important;
}
.global-footer::before { display: none !important; }

.global-footer__grid {
    max-width: 90rem !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr !important;
    gap: 2.5rem !important;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.global-footer__title {
    font-family: var(--font-display) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin: 0 0 1.1rem !important;
}

.global-footer__link {
    display: block !important;
    color: rgba(255,255,255,.85) !important;
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
}
.global-footer__link:hover { color: var(--primary) !important; }

/* Newsletter */
.footer-newsletter {
    display: flex;
    gap: 0;
    margin-top: 0.25rem;
}
.footer-newsletter__input {
    flex: 1;
    height: 2.5rem;
    padding: 0 0.85rem;
    border: 1.5px solid rgba(255,255,255,.2);
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s;
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter__input:focus { border-color: var(--primary); }
.footer-newsletter__btn {
    height: 2.5rem;
    padding: 0 1.1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    border: none;
    border-radius: 0 6px 6px 0;
    font-family: var(--font-display);
    font-size: var(--type-small);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(196,154,60,.3);
}
.footer-newsletter__btn:hover { 
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196,154,60,.4);
}

/* Sosyal ikonlar */
.footer-social {
    display: flex !important;
    gap: 0.4rem !important;
    margin-top: 0.8rem !important;
    flex-wrap: wrap !important;
}
.footer-social__link {
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background: var(--surface-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-color) !important;
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.footer-social__link:hover {
    border-color: var(--primary) !important;
    color: var(--text-on-dark) !important;
    background: var(--primary) !important;
    transform: translateY(-1px) !important;
}

/* Alt çizgi */
.global-footer__bottom {
    max-width: 90rem !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 1.1rem 0 !important;
    margin: 0 auto !important;
    border-top: none !important;
}

.global-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
}

.global-footer__server-timing {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.38) !important;
    font-family: ui-monospace, monospace !important;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .global-footer__bottom-right {
        margin-left: 0 !important;
        width: 100%;
        justify-content: flex-start !important;
    }
}

.global-footer__copy {
    border-top: none !important;
    padding-top: 0 !important;
    font-size: 0.78rem !important;
    color: rgba(255,255,255,.4) !important;
    margin: 0 !important;
}

/* Ödeme ikonları */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.footer-payments__image-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.5rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 252, 0.94) 100%);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.footer-payments__image {
    display: block;
    width: min(100%, 34rem);
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}
.footer-payment-icon {
    height: 1.6rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    color: rgba(255,255,255,.75);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

/* Footer brand */
.global-footer__brand { margin-bottom: 0.7rem !important; }
.global-footer__brand-name {
    font-size: 1.1rem !important;
    color: #fff !important;
}
.global-footer__text {
    font-size: 0.84rem !important;
    color: rgba(255,255,255,.58) !important;
    line-height: 1.65 !important;
}
.global-footer__contact-link { color: rgba(255,255,255,.6) !important; }

/* Footer badges kaldır */
.global-footer__badges { display: none !important; }
.global-footer__copy-links { display: none !important; }

/* ── Hero Slider Güncelleme ──────────────────────────────────── */
.hero {
    border-radius: 0 !important;
    margin: 0 0 0 !important;
    box-shadow: none !important;
}
.hero__slides { min-height: 460px !important; }
.hero__title { font-size: 2.4rem !important; }

/* ── Sayfa Container ─────────────────────────────────────────── */
.storefront {
    padding: 0 0 4rem !important;
    max-width: none !important;
}
/* Marka şeridi varken footer öncesi boşluk */
.storefront:has(.partners-section--ticker) {
    padding-bottom: 0.35rem !important;
}

/* Ürün bölümü inner */
.products-section {
    max-width: 90rem !important;
    padding: 0 1.5rem !important;
}

/* Features bar ve category strip padding */
.features-bar,
.category-strip,
.promo-banner { padding: 0 1.5rem !important; max-width: 90rem !important; }

/* Trust section */
.trust-section { margin: 0 1.5rem 3rem !important; max-width: calc(90rem - 3rem) !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .catalog { grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
    .category-showcase__grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .testimonials-grid { grid-template-columns: repeat(4, 1fr) !important; }
    .global-footer__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.8rem !important; }
}
@media (max-width: 900px) {
    .global-nav { display: none !important; }
    .global-header__mobile-toggle { display: flex !important; }
    .mobile-nav-drawer { display: flex; }
    .catalog { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 1rem !important; }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .partners-ticker__link,
    .partners-ticker__text { font-size: 0.88rem !important; }
    .global-search { display: none !important; }
    .global-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem !important; }
    .hero__slides { min-height: 320px !important; }
    .hero__title { font-size: 1.7rem !important; }
}
@media (max-width: 600px) {
    .catalog { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 0.65rem !important; }
    .category-showcase__grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.4rem !important;
    }
    .global-footer__grid { grid-template-columns: 1fr !important; }
    .hero__slides { min-height: 260px !important; }
    .hero__title { font-size: 1.35rem !important; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .global-header__main { padding: 0.6rem 1rem !important; }
}

/* ═══ İletişim sayfası (Leaflet) ═══ */
.site-main.contact-page {
    max-width: 56rem;
    margin: 0 auto;
    padding: 1rem 1.1rem 1.4rem;
}
.site-main.contact-page--compact {
    padding-bottom: 1rem;
}
.contact-page__head {
    margin-bottom: 1.75rem;
    text-align: center;
}
.contact-page__head--compact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-bottom: 0.85rem;
    text-align: left;
}
.contact-page__head--compact .contact-page__title {
    margin: 0;
}
.contact-page__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}
.contact-page--compact .contact-page__title {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
}
.contact-page__lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}
.contact-page--compact .contact-page__grid {
    gap: 0.75rem;
    align-items: start;
}
.contact-page__col--left {
    display: grid;
    gap: 0.6rem;
    align-content: start;
}
@media (max-width: 900px) {
    .contact-page__grid { grid-template-columns: 1fr; }
}
.contact-page__card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 0.95rem 1rem;
    box-shadow: var(--shadow-xs);
}
.contact-page--compact .contact-page__card {
    padding: 0.65rem 0.78rem;
}
.contact-page__card--map.contact-page__card {
    display: flex;
    flex-direction: column;
    transform: translateY(-0.2rem);
}
.contact-page--compact .contact-page__card--map {
    padding: 0.65rem 0.75rem;
}
.contact-page__h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.02em;
}
.contact-page__block { margin-bottom: 1rem; }
.contact-page__block:last-child { margin-bottom: 0; }
.contact-page--compact .contact-page__block {
    margin-bottom: 0.55rem;
}
.contact-page__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.contact-page--compact .contact-page__label {
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
}
.contact-page__value {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-color);
}
.contact-page--compact .contact-page__value {
    font-size: 0.86rem;
    line-height: 1.45;
}
.contact-page__value a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.contact-page__value a:hover { text-decoration: underline; }
.contact-page__hours { white-space: pre-line; }
.contact-page__map {
    height: 450px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface-muted);
    flex: 1;
    min-height: 360px;
}
.contact-page--compact .contact-page__map {
    height: 430px;
    min-height: 340px;
    flex: none;
}
.contact-page__map .leaflet-pane,
.contact-page__map .leaflet-control,
.contact-page__map .leaflet-top,
.contact-page__map .leaflet-bottom {
    z-index: 1 !important;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem 0.45rem;
}
.contact-form .form__field {
    margin: 0;
}
.contact-form .form__field label {
    font-size: 0.68rem;
    margin-bottom: 0.12rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
}
.contact-form .form__control {
    width: 100%;
    min-height: 1.68rem;
    padding: 0.22rem 0.42rem;
    font-size: 0.74rem;
    border-radius: 5px;
}
.contact-form textarea.form__control {
    min-height: 3.25rem;
}
.contact-form__field--full,
.contact-form__actions {
    grid-column: 1 / -1;
}
.contact-form__actions {
    margin-top: 0.12rem;
}
.contact-form__actions button {
    min-height: 1.72rem;
    padding: 0 0.78rem;
    font-size: 0.72rem;
}
@media (max-width: 760px) {
    .contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-page__card--map.contact-page__card {
        transform: none;
    }
    .contact-page__map,
    .contact-page--compact .contact-page__map {
        height: 210px;
        min-height: 170px;
    }
}
@media (max-width: 560px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .form__control {
        min-height: 1.78rem;
    }
    .contact-form textarea.form__control {
        min-height: 3.6rem;
    }
}
.contact-page__map-attribution {
    margin: 0.45rem 0 0;
    font-size: 0.7rem;
    color: var(--text-muted);
}
.contact-page--compact .contact-page__map-attribution {
    margin: 0.3rem 0 0;
    font-size: 0.65rem;
}
.contact-page__map-fallback {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact-page--compact .contact-page__map-fallback {
    font-size: 0.8rem;
    line-height: 1.4;
}
.contact-page__social-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}
.contact-page__social-inline li {
    margin: 0;
    padding: 0;
}
.contact-page__social {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
}
.contact-page__social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.contact-page__soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-xs);
}
.contact-page--compact .contact-page__soc {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.95rem;
}
.contact-page__soc:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-sm);
}
.contact-page__soc--wa { background: linear-gradient(145deg, #25d366, #128c7e); }
.contact-page__soc--ig { background: linear-gradient(145deg, #f58529, #dd2a7b, #8134af); }
.contact-page__soc--fb { background: linear-gradient(145deg, #1877f2, #0c63d4); }
.contact-page__soc--yt { background: linear-gradient(145deg, #ff0000, #c00); }
.contact-page__soc--tw { background: linear-gradient(145deg, #0f172a, #334155); }

.mobile-nav__ic {
    display: inline-flex;
    width: 1.35rem;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-nav__ic i { font-size: 0.95rem; opacity: 0.9; }

/* Alt sabit menü yalnızca ≤768px: tekrarları üstten kaldır. 769–900px aralığında
   aksi halde ne hamburger ne sepet/üyelik kalıyordu (kritik mobil/tablet bug). */
@media (max-width: 768px) {
    .global-header__mobile-toggle {
        display: none !important;
    }

    .global-header__actions .btn,
    .global-header__actions .global-cart,
    .global-header__actions .global-member-chip,
    .global-header__actions .global-member-block,
    .global-header__actions .header-social-inline {
        display: none !important;
    }

    .global-header__actions {
        width: auto !important;
        margin-left: 0 !important;
        gap: 0 !important;
    }
}

.all-products-page .all-products-section {
    margin-top: 0.35rem;
}
.all-products-loader {
    margin: 1rem auto 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.all-products-loader.is-done {
    color: #16a34a;
}

/* Tum urunler + urun detayi: yapiskan kategori + siralama */
.all-products-layout.pd-page,
.product-detail .pd-page {
    align-items: start;
}
.all-products-layout .pd-sidebar--all-products,
.product-detail .pd-sidebar--all-products {
    position: sticky;
    top: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.25rem));
    align-self: start;
    max-height: calc(100vh - 6.5rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.all-products-layout .pd-sidebar__nav,
.product-detail .pd-sidebar__nav {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
    padding-right: 2px;
    margin-right: -2px;
}
.all-products-layout .pd-sidebar__nav::-webkit-scrollbar,
.product-detail .pd-sidebar__nav::-webkit-scrollbar {
    width: 5px;
}
.all-products-layout .pd-sidebar__nav::-webkit-scrollbar-thumb,
.product-detail .pd-sidebar__nav::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--secondary) 35%, transparent);
    border-radius: 999px;
}
.pd-side-menu__list--nested {
    margin-top: 0.2rem;
}
.all-products-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-bottom: 0.75rem;
}
.all-products-section__title {
    text-align: left;
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--secondary);
}
.all-products-head-actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem 0.75rem;
    flex-shrink: 0;
}
.all-products-count-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
}
.all-products-count-hint {
    font-size: 8px;
    line-height: 1.15;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
    white-space: nowrap;
    user-select: none;
}
.all-products-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.65rem 0.32rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    line-height: 1;
}
.all-products-count-badge__ic {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 400;
    opacity: 0.95;
}
.all-products-count-badge__num {
    font-size: 0.84rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #64748b;
    letter-spacing: 0.01em;
    min-width: 1.1rem;
    text-align: center;
}
.all-products-sort {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow:
        0 2px 14px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.all-products-sort__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.88rem;
    transition:
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.18s ease;
}
.all-products-sort__btn:hover {
    transform: translateY(-1px);
}
/* Artan fiyat — zümrüt / teal */
.all-products-sort__btn--asc {
    color: #0f766e;
    background: linear-gradient(155deg, rgba(45, 212, 191, 0.28) 0%, rgba(255, 255, 255, 0.95) 52%, #f0fdfa 100%);
    border: 1px solid rgba(13, 148, 136, 0.42);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}
.all-products-sort__btn--asc:hover {
    color: #fff;
    background: linear-gradient(155deg, #2dd4bf 0%, #0d9488 48%, #0f766e 100%);
    border-color: #0d9488;
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.38);
}
.all-products-sort__btn--asc.is-active {
    color: #fff;
    background: linear-gradient(155deg, #14b8a6 0%, #0f766e 55%, #115e59 100%);
    border-color: #134e4a;
    box-shadow:
        0 4px 16px rgba(17, 94, 89, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
/* Azalan fiyat — amber / altın ton */
.all-products-sort__btn--desc {
    color: #a16207;
    background: linear-gradient(155deg, rgba(251, 191, 36, 0.35) 0%, rgba(255, 255, 255, 0.96) 50%, #fffbeb 100%);
    border: 1px solid rgba(217, 119, 6, 0.45);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}
.all-products-sort__btn--desc:hover {
    color: #fff;
    background: linear-gradient(155deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
    border-color: #c2410c;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
}
.all-products-sort__btn--desc.is-active {
    color: #fff;
    background: linear-gradient(155deg, #eab308 0%, #ca8a04 48%, #92400e 100%);
    border-color: #78350f;
    box-shadow:
        0 4px 16px rgba(180, 83, 9, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
@media (max-width: 1080px) {
    .all-products-layout .pd-sidebar--all-products,
    .product-detail .pd-sidebar--all-products {
        position: static;
        max-height: none;
        overflow: visible;
    }
    .all-products-layout .pd-sidebar__nav,
    .product-detail .pd-sidebar__nav {
        max-height: none;
        overflow: visible;
    }
}

/* —— Giriş / Üye ol — iOS tarzı yumuşak formlar (Hesabım ile uyumlu sıklık) —— */
.lux-auth-page {
    max-width: 26rem;
    margin: 0 auto;
    padding: 0.5rem 0.65rem 1.75rem;
    border-radius: 18px;
    background:
        radial-gradient(100% 70% at 50% -5%, rgba(224, 231, 255, 0.85) 0%, transparent 58%),
        linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, transparent 100%);
}
.lux-auth-page__head.lux-cart-page__head {
    margin-bottom: 0.35rem;
    padding-bottom: 0.25rem;
    border-bottom: none;
}
.lux-auth-page .lux-cart-page__title {
    align-items: center;
}
.lux-auth-page__mark > i.fa-solid {
    font-size: 0.88rem !important;
    color: #1d4ed8;
}
.lux-auth-page__switch {
    margin: 0 0 0.65rem;
    padding: 0 0.15rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}
.lux-auth-page__alert {
    margin-bottom: 0.55rem;
}
.lux-auth-page__alert .alert {
    margin: 0;
    border-radius: 12px;
    font-size: 0.8125rem;
}
.lux-auth-page__errors {
    margin-bottom: 0.55rem;
}
.lux-auth-page__errors .alert {
    border-radius: 12px;
}
.lux-auth-sheet.lux-cart-sheet {
    padding: 0.65rem 0.75rem 0.85rem;
    border-radius: 16px;
    border: 1px solid #c5cfdd;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.lux-auth-form .form__field {
    margin-bottom: 0.62rem;
}
.lux-auth-form .form__field:last-of-type {
    margin-bottom: 0;
}
.lux-auth-label {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #475569;
}
.lux-auth-label .lux-profile-label {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}
.lux-auth-label .lux-profile-label .fa-solid {
    width: 1em;
    color: #64748b;
}
.lux-auth-req {
    text-decoration: none;
    border: none;
    color: #94a3b8;
    font-weight: 800;
    margin-left: 0.1rem;
}
.lux-auth-opt {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
    font-size: 0.65rem;
}
.lux-auth-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.62rem 0.95rem;
    font-size: 0.9375rem;
    line-height: 1.35;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}
.lux-auth-input::placeholder {
    color: #94a3b8;
}
.lux-auth-input:hover {
    border-color: #cbd5e1;
    background: #fff;
}
.lux-auth-input:focus {
    border-color: color-mix(in srgb, var(--primary) 55%, #93c5fd);
    box-shadow:
        0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent),
        0 2px 8px rgba(15, 23, 42, 0.06);
    background: #fff;
}
.lux-auth-input--num {
    font-variant-numeric: tabular-nums;
}
.lux-auth-form__grid {
    display: grid;
    gap: 0.62rem;
}
@media (min-width: 520px) {
    .lux-auth-form__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem 0.75rem;
    }
    .lux-auth-form__grid .form__field {
        margin-bottom: 0;
    }
}
.lux-auth-form__actions {
    margin-top: 0.85rem;
    padding-top: 0.15rem;
}
.lux-auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.65rem;
    padding: 0 1.1rem;
    border: none;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff !important;
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 92%, #fff) 0%, var(--primary) 100%);
    box-shadow:
        0 4px 14px color-mix(in srgb, var(--primary) 35%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
    transition:
        filter 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}
.lux-auth-submit:hover {
    filter: brightness(1.06);
    box-shadow:
        0 6px 18px color-mix(in srgb, var(--primary) 42%, transparent),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
}
.lux-auth-submit:active {
    transform: scale(0.98);
}
.lux-auth-submit .fa-solid {
    font-size: 0.9em;
    opacity: 0.95;
}
@supports not (background: color-mix(in srgb, red, blue)) {
    .lux-auth-input:focus {
        border-color: #60a5fa;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 2px 8px rgba(15, 23, 42, 0.06);
    }
    .lux-auth-submit {
        background: var(--primary);
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    }
}

/* —— Mobil genel: yatay taşma, çentik, iOS odak zoom —— */
html {
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .mobile-search__input {
        font-size: 1rem;
    }
    .mobile-bottom-nav {
        left: max(0.7rem, env(safe-area-inset-left, 0px));
        right: max(0.7rem, env(safe-area-inset-right, 0px));
    }
}

/* —— Blog (ana sayfa önizleme: referans vitrin — üstte 16:9, tarih rozeti, altta başlık/özet) —— */
@keyframes blog-preview-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}
@keyframes blog-preview-shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.blog-preview-section {
    margin: 1.5rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}
.blog-preview-section__inner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--surface, #fff) 88%, var(--primary, #1e3a5f) 12%) 0%,
        color-mix(in srgb, var(--surface, #fff) 94%, #0ea5e9 6%) 100%
    );
    border-radius: 14px;
    padding: 0.85rem 0.9rem 1rem;
    border: 1px solid color-mix(in srgb, var(--primary, #1e3a5f) 22%, var(--border, #e2e8f0));
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.05);
}
.blog-preview-section__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 40%,
        color-mix(in srgb, #fff 70%, transparent) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: blog-preview-shine 8s ease-in-out infinite;
    opacity: 0.35;
    pointer-events: none;
}
.blog-preview-section__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}
.blog-preview-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.blog-preview-section__helm,
.blog-preview-section__waves {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 8px;
    background: color-mix(in srgb, var(--primary, #1e3a5f) 12%, transparent);
    color: var(--primary, #1e3a5f);
    font-size: 0.85rem;
}
.blog-preview-section__waves {
    background: color-mix(in srgb, #0ea5e9 18%, transparent);
    color: color-mix(in srgb, #0369a1 70%, var(--primary, #1e3a5f));
}
.blog-preview-section__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.blog-preview-section__all {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    color: var(--primary, #1e3a5f);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary, #1e3a5f) 28%, transparent);
    background: color-mix(in srgb, var(--surface, #fff) 85%, transparent);
    transition:
        background 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}
.blog-preview-section__all:hover {
    background: var(--surface, #fff);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}
.blog-preview-grid {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    width: 100%;
    gap: 0.65rem 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 252px), 272px));
    justify-content: start;
}
.blog-preview-card {
    min-width: 0;
}
.blog-preview-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    text-decoration: none;
    color: inherit;
    background: var(--surface, #fff);
    border-radius: 11px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--border, #e5e7eb) 92%, var(--primary, #1e3a5f) 8%);
    box-shadow: 0 1px 6px rgba(15, 23, 42, 0.07);
    transition:
        box-shadow 0.25s ease,
        transform 0.22s ease,
        border-color 0.2s ease;
}
.blog-preview-card__link:hover {
    box-shadow: 0 8px 22px rgba(15, 76, 117, 0.11);
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--primary, #1e3a5f) 22%, var(--border, #e5e7eb));
}
.blog-preview-card__link:hover .blog-preview-card__icon-floating {
    animation: blog-preview-bob 1.1s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary, #1e3a5f);
}
.blog-preview-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(160deg, #e0f2fe 0%, #f8fafc 45%, color-mix(in srgb, var(--primary, #1e3a5f) 12%, #e2e8f0) 100%);
    overflow: hidden;
}
.blog-preview-card__media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    pointer-events: none;
}
.blog-preview-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-preview-card__img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.65rem;
    color: color-mix(in srgb, var(--primary, #1e3a5f) 50%, #0ea5e9);
    opacity: 0.88;
}
.blog-preview-card__icon-floating {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 1.55rem;
    height: 1.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: var(--primary, #1e3a5f);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 7px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.blog-preview-card__date-badge {
    position: absolute;
    left: 6px;
    bottom: 6px;
    z-index: 2;
    padding: 0.28rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 6px;
    line-height: 1;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
}
.blog-preview-card__body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.55rem 0.65rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    align-items: stretch;
}
.blog-preview-card__title {
    margin: 0;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: 1.28;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blog-preview-card__excerpt {
    font-size: 0.72rem;
    line-height: 1.38;
    color: color-mix(in srgb, #64748b 88%, var(--primary, #1e3a5f) 12%);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.blog-preview-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    margin-top: 0.05rem;
    font-weight: 700;
    font-size: 0.68rem;
    color: var(--primary, #1e3a5f);
}
.blog-preview-card__more .fa-arrow-right-long {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}
.blog-preview-card__link:hover .blog-preview-card__more .fa-arrow-right-long {
    transform: translateX(4px);
}
.blog-preview-card__meta {
    font-size: 0.62rem;
    color: #94a3b8;
    margin-top: auto;
    padding-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.28rem;
}
.blog-page-as-home .blog-preview-card article {
    display: contents;
}
.blog-page-board__sub {
    position: relative;
    z-index: 1;
    margin: 0 0 0.7rem;
}
.blog-page-board__line {
    margin: 0 0 0.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.82;
    color: #334155;
}
.blog-page-board__hint {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.4;
    opacity: 0.68;
    color: #64748b;
}
.blog-empty {
    max-width: 720px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
    opacity: 0.8;
}
.blog-empty--in-board {
    position: relative;
    z-index: 1;
    margin: 0.5rem 0 0;
    max-width: none;
}
.blog-pagination {
    padding: 0 1rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-pagination--in-board {
    padding: 0;
    max-width: none;
    margin-top: 1rem;
    margin-bottom: 0;
}
.blog-pagination__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.5rem;
}
.blog-pagination__link,
.blog-pagination__edge {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary, #1e3a5f);
    text-decoration: none;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.blog-pagination__link:hover,
.blog-pagination__edge:hover {
    background: color-mix(in srgb, var(--primary, #1e3a5f) 10%, transparent);
}
.blog-pagination__nums {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}
.blog-pagination__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.4rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--primary, #1e3a5f);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--border, #e2e8f0) 70%, var(--primary, #1e3a5f) 15%);
    background: var(--surface, #fff);
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}
.blog-pagination__num:hover {
    border-color: color-mix(in srgb, var(--primary, #1e3a5f) 40%, var(--border, #e2e8f0));
    background: color-mix(in srgb, var(--primary, #1e3a5f) 6%, var(--surface, #fff));
}
.blog-pagination__num.is-current {
    color: #fff;
    background: var(--primary, #1e3a5f);
    border-color: var(--primary, #1e3a5f);
    pointer-events: none;
}
.blog-pagination__gap {
    padding: 0 0.15rem;
    font-weight: 700;
    opacity: 0.45;
    user-select: none;
}
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1rem 2.5rem;
}
.blog-article__header {
    margin-bottom: 1.25rem;
}
.blog-article__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 4vw, 2rem);
    line-height: 1.2;
}
.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.88rem;
    opacity: 0.75;
}
.blog-article__figure {
    margin: 0 0 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}
.blog-article__figure img {
    width: 100%;
    height: auto;
    display: block;
}
.rte-content {
    line-height: 1.65;
    font-size: 1.02rem;
}
.rte-content p {
    margin: 0 0 1rem;
}
.rte-content h2,
.rte-content h3,
.rte-content h4 {
    margin: 1.5rem 0 0.65rem;
    line-height: 1.25;
}
.rte-content ul,
.rte-content ol {
    margin: 0 0 1rem 1.25rem;
}
.rte-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.rte-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.rte-content th,
.rte-content td {
    border: 1px solid var(--border, #e2e8f0);
    padding: 0.45rem 0.55rem;
}
.blog-article__footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border, #e2e8f0);
}
.blog-article__back {
    font-weight: 600;
    color: var(--primary, #1e3a5f);
    text-decoration: none;
}
.blog-article__back:hover {
    text-decoration: underline;
}
