/* ==================================================================
   Glamora Theme
   Palette: #114469 lacivert   #fff beyaz   #f5f5f5 açık gri
   Font: Poppins
================================================================== */
:root {
    --gl-primary:      #114469;
    --gl-primary-dark: #0c3351;
    --gl-black:        #1a1a1a;
    --gl-bg:           #ffffff;
    --gl-bg-gray:      #f5f5f5;
    --gl-text:         #1a1a1a;
    --gl-text-muted:   #888888;
    --gl-border:       #e8e8e8;
    --gl-font:         'Poppins', sans-serif;
    --gl-radius:       4px;
    --gl-tr:           .2s ease;
    /* Üst duyuru şeridi — özelleştirme: :root { --gl-announcement-text: #...; } */
    --gl-announcement-text: #ffffff;

    /* Bootstrap font değişkenlerini Poppins ile override et */
    --bs-body-font-family:    'Poppins', sans-serif;
    --bs-body-font-size:      14px;
    --bs-body-font-weight:    400;
    --bs-body-line-height:    1.6;
    --bs-font-sans-serif:     'Poppins', sans-serif;
    --bs-body-color:          #1a1a1a;
}

/* Bootstrap 5 .container — xxl kırılımında üst sınır 1500px (varsayılan 1320px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1500px;
    }
}

*,*::before,*::after { box-sizing: border-box; }

/* Mobilde yatay taşmayı kökten engelle. */
html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

/* Tüm elemanlara Poppins uygula — Bootstrap bileşenleri dahil */
body.gl-body,
body.gl-body *,
body.gl-body input,
body.gl-body button,
body.gl-body select,
body.gl-body textarea,
body.gl-body optgroup {
    font-family: 'Poppins', sans-serif;
}

body.gl-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gl-text);
    background: var(--gl-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
}

/* Drawer açıkken arka plan scroll'unu kilitle. */
body.gl-body.gl-mob-open {
    overflow: hidden;
    touch-action: none;
}

a { color: inherit; text-decoration: none; transition: color var(--gl-tr); }

/* ── Tipografi ─────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }
p { margin-bottom: .75rem; }

/* Bootstrap bileşen font override — form, btn, badge */
.btn, .form-control, .form-select,
.badge, .nav-link, .dropdown-item,
.input-group-text, .modal-title,
.list-group-item, .card-title,
.alert, .table { font-family: 'Poppins', sans-serif !important; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; padding-left: 20px; padding-right: 20px; }

/* ── Duyuru Şeridi ───────────────────────────────────────────────── */
#gl-announcement {
    background: var(--gl-primary);
    color: var(--gl-announcement-text);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .3px;
    height: 36px;
    overflow: hidden;        /* ZORUNLU — vertical swiper taşmasını engeller */
    position: relative;
}
#gl-announcement .swiper {
    width: 100%;
    height: 36px;
    overflow: hidden;        /* Swiper kendi taşmasını engelle */
}
#gl-announcement .swiper-wrapper {
    height: 36px;
}
#gl-announcement .swiper-slide {
    height: 36px !important; /* Vertical swiper slide yüksekliği sabit */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 36px;
    color: var(--gl-announcement-text) !important;
}
#gl-announcement .swiper-slide .bi {
    font-size: 13px;
    color: var(--gl-announcement-text) !important;
}

/* ── Navbar ──────────────────────────────────────────────────────── */
#gl-navbar {
    background: #fff;
    border-bottom: 1px solid var(--gl-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.gl-nav-wrap {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 0;
}
.gl-logo {
    flex-shrink: 0;
    margin-right: 28px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gl-primary);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}
.gl-logo img { height: 40px; width: auto; }

/* Kategori menüsü */
.gl-nav-cats {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.gl-nav-cats > li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.gl-nav-cats > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gl-text);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color var(--gl-tr), border-color var(--gl-tr);
}
.gl-nav-cats > li > a:hover,
.gl-nav-cats > li.gl-nav-active > a {
    color: var(--gl-primary);
    border-bottom-color: var(--gl-primary);
}
/* Dropdown */
.gl-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--gl-border);
    border-top: 2px solid var(--gl-primary);
    min-width: 200px;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity var(--gl-tr), transform var(--gl-tr);
    z-index: 999;
}
.gl-nav-cats > li:hover .gl-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.gl-dropdown a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--gl-text);
    transition: background var(--gl-tr), color var(--gl-tr);
}
.gl-dropdown a:hover {
    background: var(--gl-bg-gray);
    color: var(--gl-primary);
}

/* Sağ araçlar */
.gl-nav-tools { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.gl-nav-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: none;
    color: var(--gl-text);
    font-size: 18px;
    cursor: pointer;
    transition: background var(--gl-tr), color var(--gl-tr);
    position: relative;
    text-decoration: none;
}
.gl-nav-btn:hover { background: var(--gl-bg-gray); color: var(--gl-primary); }
.gl-cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    width: 17px; height: 17px;
    background: var(--gl-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.gl-cart-badge:empty {
    display: none;
}

/* Üst menü arama kutusu (yalnızca .gl-nav-tools içi — arama sayfası formu content/css/search-page.css) */
.gl-nav-tools .gl-search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--gl-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--gl-bg-gray);
    height: 50px;
    margin-right: 8px;
}
.gl-nav-tools .gl-search-form > form {
    display: contents;
}
.gl-search-input {
    border: none;
    background: none;
    padding: 0 12px;
    font-size: 13px;
    font-family: var(--gl-font);
    color: var(--gl-text);
    outline: none;
    width: 180px;
}
.gl-search-input::placeholder { color: var(--gl-text-muted); }
.gl-search-btn {
    border: none;
    background: none;
    color: var(--gl-text-muted);
    padding: 0 10px;
    cursor: pointer;
    font-size: 15px;
    height: 100%;
}
.gl-search-btn:hover { color: var(--gl-primary); }

/* Hamburger */
.gl-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px;
}
.gl-hamburger span {
    display: block;
    height: 2px;
    background: var(--gl-text);
    border-radius: 2px;
    transition: all var(--gl-tr);
}

/* ── Mobil Menü ──────────────────────────────────────────────────── */
#gl-mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
}
#gl-mob-nav.open { display: flex; }
.gl-mob-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.gl-mob-drawer {
    position: relative;
    width: min(300px, 88vw);
    max-width: 100vw;
    height: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 4px 0 20px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.gl-mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gl-border);
    background: var(--gl-primary);
    color: #fff;
}
.gl-mob-head .gl-logo { color: #fff; font-size: 17px; }
.gl-mob-head .gl-logo img { filter: brightness(0) invert(1); }
.gl-mob-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.gl-mob-search {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gl-border);
}
.gl-mob-search form { display: flex; gap: 8px; }
.gl-mob-search input {
    flex: 1;
    border: 1px solid var(--gl-border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    font-family: var(--gl-font);
    outline: none;
}
.gl-mob-search input:focus { border-color: var(--gl-primary); }
.gl-mob-search button {
    background: var(--gl-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}
.gl-mob-menu { list-style: none; margin: 0; padding: 8px 0; flex: 1; min-width: 0; }
.gl-mob-menu li { min-width: 0; }
.gl-mob-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gl-text);
    border-bottom: 1px solid var(--gl-border);
    transition: background var(--gl-tr), color var(--gl-tr);
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
}
.gl-mob-menu li a:hover { background: var(--gl-bg-gray); color: var(--gl-primary); }
.gl-mob-sub { list-style: none; margin: 0; padding: 0; background: var(--gl-bg-gray); }
.gl-mob-sub li a {
    padding: 9px 20px 9px 38px;
    font-size: 13px;
    font-weight: 400;
    color: var(--gl-text-muted);
}

/* ── Ana içerik ──────────────────────────────────────────────────── */
#gl-main { min-height: 60vh; }

/* ── Bölüm başlıkları ────────────────────────────────────────────── */
.gl-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.gl-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gl-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gl-section-title::after { display: none; } /* default tema miras */
.gl-view-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--gl-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: color var(--gl-tr);
}
.gl-view-all:hover { color: var(--gl-primary-dark); }

/* ── Ürün kartı ──────────────────────────────────────────────────── */
.gl-pc {
    background: #fff;
    border: 1px solid var(--gl-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow var(--gl-tr);
}
.gl-pc:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.gl-pc--card {
    border: 1px solid var(--gl-border);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border-radius: 10px;
}
.gl-pc__vendor {
    font-size: 11px;
    color: var(--gl-text-muted);
    line-height: 1.3;
}
.gl-pc__rating {
    font-size: 12px;
    color: #f5a623;
    line-height: 1.2;
}
.gl-pc__img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Kapak img — en-boy oranı korunur: kutuyu zorla doldurma (100%x100%), max + auto ile sığdır */
.gl-pc__img:not(.gl-pc__img--dual) img:not(.gl-pc__kampanya-badge) {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .35s ease;
}
.gl-pc:hover .gl-pc__img:not(.gl-pc__img--dual) img:not(.gl-pc__kampanya-badge) { transform: scale(1.04); }
/* Çift görsel: flex yerine stack — varsayılan yalnızca 1. görsel */
.gl-pc__img.gl-pc__img--dual {
    display: block;
    padding: 0;
}
.gl-pc__img--dual .gl-pc__img-stack {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
}
.gl-pc__img--dual .gl-pc__img1,
.gl-pc__img--dual .gl-pc__img2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);
    object-fit: contain;
    object-position: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: opacity .3s ease;
}
.gl-pc__img--dual .gl-pc__img1 {
    opacity: 1;
    z-index: 1;
}
.gl-pc__img--dual .gl-pc__img2 {
    opacity: 0;
    z-index: 2;
}
.gl-pc--dual:hover .gl-pc__img--dual .gl-pc__img1 {
    opacity: 0;
}
.gl-pc--dual:hover .gl-pc__img--dual .gl-pc__img2 {
    opacity: 1;
}

/* Vitrin / kart — hover çift görsel: w-100+h-100 yerine kutuya sığdır (oran korunur) */
.myt-sc-hov2-box img.myt-sc-hov2-a,
.myt-sc-hov2-box img.myt-sc-hov2-b {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%);
    object-fit: contain;
    object-position: center;
}

/* Minimal kutu: tek görseli ortala (çift görsel absolute olduğundan etkilenmez) */
.myt-sc-minimal__img.myt-sc-hov2-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.myt-sc-minimal__img.myt-sc-hov2-box > img.w-100.h-100 {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* İndirim rozeti */
.gl-pc__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gl-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}
.gl-pc__badge.disc { background: #e53935; }
.gl-pc__kampanya-badge {
    position: absolute;
    z-index: 6;
    max-width: 28%;
    max-height: 28%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    margin: 0;
    /* Flex/grid kapsayıcıda static-position karışmasın: dört köşe inset ile */
}
.gl-pc__kampanya-badge--tl { inset: 8px auto auto 8px; }
.gl-pc__kampanya-badge--tr { inset: 8px 8px auto auto; }
.gl-pc__kampanya-badge--br { inset: auto 8px 8px auto; }
.gl-pc__kampanya-badge--bl { inset: auto auto 8px 8px; }
.gl-pc__urun-badge { z-index: 7; }
.gl-pc__badge--pair-first { z-index: 6; }
.gl-pc__badge--pair-second { z-index: 7; }
.gl-pc__badge--pair-second--tl { transform: translate(12px, 12px); }
.gl-pc__badge--pair-second--tr { transform: translate(-12px, 12px); }
.gl-pc__badge--pair-second--br { transform: translate(-12px, -12px); }
.gl-pc__badge--pair-second--bl { transform: translate(12px, -12px); }
.gl-pc__img--dual .gl-pc__badge {
    z-index: 5;
}
/* Body */
.gl-pc__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.gl-pc__name {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gl-text);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}
.gl-pc__name:hover { color: var(--gl-primary); }
.gl-pc__prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.gl-pc__price-new {
    font-size: 15px;
    font-weight: 700;
    color: var(--gl-text);
}
.gl-pc__price-new.red { color: #e53935; }
.gl-pc__price-old {
    font-size: 12.5px;
    color: var(--gl-text-muted);
    text-decoration: line-through;
}
/* İki CTA: Sepete Ekle + Hemen Al — yan yana */
.gl-pc__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 10px;
}
.gl-pc__actions .gl-pc__btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    margin-top: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
    letter-spacing: 0.35px;
}
@media (min-width: 576px) {
    .gl-pc__actions .gl-pc__btn {
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Sepet butonu */
.gl-pc__btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    background: var(--gl-primary);
    color: #fff;
    border: none;
    border-radius: var(--gl-radius);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--gl-font);
    cursor: pointer;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background var(--gl-tr);
    text-align: center;
    text-decoration: none;
    display: block;
}
.gl-pc__btn:hover { background: var(--gl-primary-dark); color: #fff; }
.gl-pc__btn:disabled { opacity: .6; cursor: not-allowed; }
.gl-pc__btn--quickbuy {
    background: transparent;
    color: var(--gl-primary);
    border: 1px solid var(--gl-primary);
}
.gl-pc__btn--quickbuy:hover {
    background: var(--gl-primary);
    color: #fff;
}

/* ── Kategori kartı ──────────────────────────────────────────────── */
.gl-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
}
.gl-cat-card__circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gl-bg-gray);
    overflow: hidden;
    border: 2px solid var(--gl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--gl-tr), box-shadow var(--gl-tr);
}
.gl-cat-card__circle img { width: 100%; height: 100%; object-fit: cover; }
.gl-cat-card:hover .gl-cat-card__circle {
    border-color: var(--gl-primary);
    box-shadow: 0 0 0 3px rgba(17,68,105,.12);
}
.gl-cat-card__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gl-text);
    line-height: 1.35;
}
.gl-cat-card:hover .gl-cat-card__name { color: var(--gl-primary); }

/* ── Genel butonlar ──────────────────────────────────────────────── */
.btn-gl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: var(--gl-radius);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--gl-font);
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background var(--gl-tr), color var(--gl-tr), border-color var(--gl-tr);
    text-decoration: none;
    border: 2px solid transparent;
}
.btn-gl-solid {
    background: var(--gl-primary);
    color: #fff;
    border-color: var(--gl-primary);
}
.btn-gl-solid:hover { background: var(--gl-primary-dark); border-color: var(--gl-primary-dark); color: #fff; }
.btn-gl-outline {
    background: transparent;
    color: var(--gl-primary);
    border-color: var(--gl-primary);
}
.btn-gl-outline:hover { background: var(--gl-primary); color: #fff; }

/* ── Sayfalama ───────────────────────────────────────────────────── */
.gl-pagination .page-link {
    color: var(--gl-primary);
    border-color: var(--gl-border);
    font-size: 13px;
    border-radius: 3px !important;
    margin: 0 2px;
}
.gl-pagination .page-item.active .page-link {
    background: var(--gl-primary);
    border-color: var(--gl-primary);
}
.gl-pagination .page-link:hover { background: var(--gl-bg-gray); color: var(--gl-primary); }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.gl-bc { font-size: 12px; color: var(--gl-text-muted); padding: 12px 0; }
.gl-bc a { color: var(--gl-text-muted); }
.gl-bc a:hover { color: var(--gl-primary); }
.gl-bc .sep { margin: 0 6px; }

/* ── Ürün detay ──────────────────────────────────────────────────── */
.gl-pdp-img-main {
    position: relative;
    /*background: var(--gl-bg-gray);
    border: 1px solid var(--gl-border);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gl-pdp-img-main img#gl-main-img {
    width: auto;
    height: auto;
    /*max-height: min(85vh, 920px);*/
    max-height: min(70vh, 920px);
    display: block;
    position: relative;
    z-index: 1;
}
/* Rozetler ana görselden ayrı; tüm img kurallarından muaf, köşe inset ile */
.gl-pdp-img-main .gl-pc__kampanya-badge {
    position: absolute;
    z-index: 4;
    margin: 0;
}
.gl-pdp-img-main .gl-pdp-kampanya-badge {
    max-width: 32%;
    max-height: 32%;
}
.gl-thumb-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    align-items: flex-end;
}
.gl-thumb-btn {
    width: 64px;
    flex-shrink: 0;
    border: 1.5px solid var(--gl-border);
    border-radius: 4px;
    overflow: hidden;
    background: var(--gl-bg-gray);
    cursor: pointer;
    padding: 4px;
    transition: border-color var(--gl-tr);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-thumb-btn:hover, .gl-thumb-btn.active { border-color: var(--gl-primary); }
.gl-thumb-btn img {
    max-width: 100%;
    max-height: 96px;
    width: auto;
    height: auto;
    display: block;
}
/* Ürün adı / fiyat */
.gl-pdp-title { font-size: 20px; font-weight: 700; line-height: 1.3; }
.gl-pdp-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--gl-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    display: block;
}
.gl-pdp-sku { font-size: 11px; color: var(--gl-text-muted); }
.gl-pdp-price-main { font-size: 22px; font-weight: 800; color: var(--gl-text); }
.gl-pdp-price-main.red { color: #e53935; }
.gl-pdp-price-old { font-size: 15px; color: var(--gl-text-muted); text-decoration: line-through; }
.gl-disc-badge { background: #e53935; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
/* Stok */
.gl-stock-yes { color: #2e7d32; font-size: 13px; font-weight: 500; }
.gl-stock-no  { color: #c62828; font-size: 13px; font-weight: 500; }
/* Adet */
.gl-qty { display: flex; align-items: center; border: 1px solid var(--gl-border); border-radius: 4px; overflow: hidden; width: fit-content; }
.gl-qty-btn { width: 36px; height: 42px; border: none; background: var(--gl-bg-gray); font-size: 16px; cursor: pointer; color: var(--gl-text); transition: background var(--gl-tr); }
.gl-qty-btn:hover { background: var(--gl-border); }
.gl-qty-num { width: 48px; height: 42px; border: none; border-left: 1px solid var(--gl-border); border-right: 1px solid var(--gl-border); text-align: center; font-size: 14px; font-weight: 600; font-family: var(--gl-font); outline: none; }
/* Sepete ekle butonları */
.gl-add-btn {
    width: 100%;
    padding: 13px;
    background: var(--gl-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--gl-font);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: background var(--gl-tr);
}
.gl-add-btn:hover { background: var(--gl-primary-dark); }
.gl-buy-btn {
    width: 100%;
    padding: 13px;
    background: transparent;
    color: var(--gl-primary);
    border: 2px solid var(--gl-primary);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--gl-font);
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: all var(--gl-tr);
}
.gl-buy-btn:hover { background: var(--gl-primary); color: #fff; }
/* Tab */
.gl-tabs .nav-link { font-size: 13px; font-weight: 600; color: var(--gl-text-muted); border: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 10px 16px; font-family: var(--gl-font); }
.gl-tabs .nav-link.active { color: var(--gl-primary); border-bottom-color: var(--gl-primary); background: none; }
.gl-tabs .nav-link:hover { color: var(--gl-primary); background: none; }

/* ── Kategori / Arama sayfası ────────────────────────────────────── */
.gl-sort { border: 1px solid var(--gl-border); border-radius: 4px; padding: 7px 10px; font-size: 13px; font-family: var(--gl-font); color: var(--gl-text); outline: none; background: #fff; cursor: pointer; }
.gl-sort:focus { border-color: var(--gl-primary); }
.gl-result-count { font-size: 12.5px; color: var(--gl-text-muted); }
.gl-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--gl-bg-gray);
    border-radius: 8px;
}
.gl-empty svg { color: var(--gl-border); margin-bottom: 16px; }
.gl-empty p { color: var(--gl-text-muted); font-size: 15px; margin-bottom: 20px; }

/* ── CMS ─────────────────────────────────────────────────────────── */
.gl-cms { font-size: 14px; line-height: 1.85; color: var(--gl-text); }
.gl-cms h1,.gl-cms h2,.gl-cms h3 { color: var(--gl-primary); margin-top: 28px; }
.gl-cms a { color: var(--gl-primary); }
.gl-cms img { border-radius: 6px; margin: 12px 0; }

/* ── Input ───────────────────────────────────────────────────────── */
.gl-input {
    width: 100%;
    border: 1px solid var(--gl-border);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--gl-font);
    color: var(--gl-text);
    outline: none;
    transition: border-color var(--gl-tr);
    background: #fff;
}
.gl-input:focus { border-color: var(--gl-primary); }
.gl-label { font-size: 12px; font-weight: 600; margin-bottom: 5px; display: block; }

/* ── Footer ──────────────────────────────────────────────────────── */
#gl-footer {
    background: var(--gl-primary);
    color: rgba(255,255,255,.88);
    padding: 52px 0 0;
    margin-top: 56px;
}
.gl-ft-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -1px; }
.gl-ft-logo img { height: 36px; filter: brightness(0) invert(1); }
.gl-ft-desc { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 220px; }
.gl-ft-social { display: flex; gap: 8px; margin-top: 16px; }
.gl-ft-soc-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px;
    transition: background var(--gl-tr);
    text-decoration: none;
}
.gl-ft-soc-btn:hover { background: rgba(255,255,255,.3); color: #fff; }
.gl-ft-heading {
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.gl-ft-links { list-style: none; padding: 0; margin: 0; }
.gl-ft-links li { margin-bottom: 7px; }
.gl-ft-links a { font-size: 12.5px; color: rgba(255,255,255,.65); transition: color var(--gl-tr); }
.gl-ft-links a:hover { color: #fff; }

/* Footer bülten — mobilde taşma yok; dar sütunda dikey yığın */
.gl-ft-nl-lead {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 10px;
}
.gl-ft-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.gl-ft-nl-input {
    flex: 1 1 140px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 12px;
    color: #fff;
    outline: none;
    font-family: inherit;
}
.gl-ft-nl-input::placeholder {
    color: rgba(255, 255, 255, .55);
}
.gl-ft-nl-btn {
    flex: 0 0 auto;
    background: #fff;
    color: var(--gl-primary);
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}
.gl-ft-nl-msg {
    display: none;
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
    margin-top: 8px;
}
@media (max-width: 575.98px) {
    .gl-ft-newsletter {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .gl-ft-nl-input {
        width: 100%;
        flex: 1 1 auto;
    }
    .gl-ft-nl-btn {
        width: 100%;
        white-space: normal;
    }
}

/* Footer alt bar */
.gl-ft-bottom {
    background: rgba(0,0,0,.2);
    margin-top: 40px;
    padding: 14px 0;
}
.gl-ft-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11.5px;
    color: #fff;
}
/* Ödeme kartları */
.gl-payment-icons { display: flex; gap: 8px; align-items: center; }
.gl-payment-icons svg, .gl-payment-icons img:not(.gl-footer-trust-band) {
    height: 22px;
    opacity: .7;
    filter: brightness(0) invert(1);
}
/* Geniş ödeme / güven şeridi (beyaz PNG, koyu footer) */
.gl-payment-icons .gl-footer-trust-band {
    height: auto;
    max-height: 36px;
    width: auto;
    max-width: min(100%, 520px);
    opacity: .9;
    filter: none;
    object-fit: contain;
    object-position: center right;
}

/* ── "Özellikleri" şeridi (features bar) ────────────────────────── */
.gl-features {
    padding: 18px 0;
    border-bottom: 1px solid var(--gl-border);
}
.gl-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
}
.gl-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gl-text);
    white-space: nowrap;
}
.gl-feat-item i { font-size: 18px; color: var(--gl-primary); }

/* ── Ana sayfa hero (slider + placeholder) ───────────────────────── */
#gl-hero-sw {
    height: clamp(300px, 55vw, 680px);
}
.gl-hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--gl-primary);
    background-image: var(--gl-hero-image, none);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.gl-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .32);
    pointer-events: none;
}
.gl-hero-slide__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
    max-width: 660px;
}
.gl-hero-slide__title {
    font-size: clamp(1.6rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: .75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.gl-hero-slide__subtitle {
    font-size: clamp(.9rem, 2vw, 1.15rem);
    margin-bottom: 1.5rem;
    opacity: .9;
}
.gl-hero-slide__cta {
    display: inline-block;
    padding: .7rem 2.2rem;
    background: #fff;
    color: var(--gl-primary);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .5px;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    transition: opacity .2s;
}
.gl-hero-slide__cta:hover {
    opacity: .85;
    color: var(--gl-primary);
}
#gl-hero .gl-hero-nav {
    color: #fff;
}
.gl-hero-placeholder {
    height: 480px;
    background: var(--gl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.gl-hero-placeholder__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.gl-hero-placeholder__sub {
    font-size: 1.1rem;
    opacity: .8;
    margin-bottom: 2rem;
}
.gl-hero-placeholder__cta {
    display: inline-block;
    padding: .75rem 2.5rem;
    background: #fff;
    color: var(--gl-primary);
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .85rem;
}
.gl-hero-placeholder__cta:hover {
    opacity: .92;
    color: var(--gl-primary);
}
.gl-cat-card__icon-fallback {
    font-size: 28px;
    color: var(--gl-primary);
}
.gl-home-bestsellers {
    background: var(--gl-bg-gray);
    padding: 48px 0;
}

/* ── PDP paket (bundle) ───────────────────────────────────────────── */
.gl-bundle-pdp {
    border-radius: var(--gl-radius);
    border: 1px solid var(--gl-border);
    background: var(--gl-bg);
    box-shadow: 0 8px 28px rgba(17, 68, 105, .06);
}
.gl-bundle-pdp__head {
    background: linear-gradient(180deg, rgba(17, 68, 105, .04) 0%, transparent 100%);
}
.gl-bundle-pdp__icon {
    width: 44px;
    height: 44px;
    background: var(--gl-primary);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(17, 68, 105, .25);
}
.gl-bundle-pdp__list .list-group-item {
    border-color: var(--gl-border);
    background: transparent;
}
.gl-bundle-pdp__row {
    min-width: 0;
}
.gl-bundle-pdp__thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    flex: 0 0 56px;
    border: 1px solid var(--gl-border);
    background: var(--gl-bg-gray);
}
.gl-bundle-pdp__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gl-bundle-pdp__thumb-ph {
    width: 100%;
    height: 100%;
    color: var(--gl-text-muted);
    font-size: 1.1rem;
}
.gl-bundle-pdp__badge {
    font-size: 11px;
    padding: 0.2rem 0.55rem;
    background: rgba(17, 68, 105, .08);
    color: var(--gl-primary);
    border: 1px solid rgba(17, 68, 105, .15);
}
.gl-bundle-pdp__qty {
    min-width: 108px;
    max-width: 150px;
}
.gl-bundle-pdp__qty .input-group-text {
    font-size: 11px;
    border-color: var(--gl-border);
    background: var(--gl-bg-gray);
    color: var(--gl-text-muted);
}
.gl-bundle-pdp__qty .form-control {
    border-color: var(--gl-border);
    font-weight: 500;
}
.gl-bundle-pdp__actions .form-check-input.bundle-line-include {
    cursor: pointer;
    width: 2.25rem;
}
.gl-bundle-pdp__qty-pill {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(17, 68, 105, .08);
    color: var(--gl-primary);
    border: 1px solid rgba(17, 68, 105, .12);
}
.gl-bundle-pdp__foot {
    border-top: 1px solid var(--gl-border) !important;
    background: var(--gl-bg-gray) !important;
}

/* Sipariş takip — sonuç alanı; JS display:block ile gösterir */
#myt-track-result {
    margin-top: 1rem;
    display: none;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .gl-nav-cats, .gl-nav-tools .gl-search-form { display: none !important; }
    .gl-hamburger { display: flex !important; }
    .gl-pdp-title { font-size: 17px; }
}
@media (max-width: 575.98px) {
    .gl-nav-wrap { height: 58px; }
    .gl-logo { font-size: 17px; }
    .gl-logo img { height: 34px; }
    #gl-footer { padding-top: 32px; }
    .gl-hero-placeholder { height: 380px; }
    .gl-hero-placeholder__title { font-size: clamp(1.5rem, 8vw, 2.25rem); }
}
