:root {
    /* Terea turkuaz — IQOS Terea Turquoise uyumlu */
    --terea-teal: #00b4bc;
    --terea-teal-hover: #00949b;
    --terea-teal-soft: #e3f7f8;
    --terea-teal-light: #5fd4da;
    --terea-teal-deep: #0c484c;
    --terea-teal-darker: #083538;
    --bg: #f5f5f5;
    --surface: #ffffff;
    --surface-2: #ffffff;
    --bg2: var(--surface);
    --bg3: var(--surface);
    --bg-alt: #efefef;
    --text: #333333;
    --text-strong: #0d3d40;
    --muted: #6b7b7c;
    --accent: var(--terea-teal);
    --accent-hover: var(--terea-teal-hover);
    --accent-soft: var(--terea-teal-soft);
    --sale: #d32f2f;
    --gold: var(--accent);
    --gold2: var(--accent);
    --gold-soft: var(--accent-soft);
    --line: #dce8e9;
    --input-bg: #f0f0f0;
    --header-bg: var(--terea-teal-deep);
    --header-text: rgba(255, 255, 255, 0.92);
    --header-muted: rgba(255, 255, 255, 0.62);
    --header-bar: var(--header-bg);
    --header-top-bg: var(--terea-teal-darker);
    --header-top-text: var(--header-muted);
    --footer-bg: var(--terea-teal-deep);
    --footer-text: rgba(255, 255, 255, 0.65);
    --footer-heading: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --header-h: 52px;
    --content-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.age-locked { overflow: hidden; }
a { color: var(--text-strong); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
.container { width: min(var(--content-max), 97%); margin: 0 auto; }
.container-narrow { max-width: 820px; }

#main {
    background: var(--bg);
    min-height: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.header-top {
    background: var(--header-top-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: .72rem;
    color: var(--header-muted);
}
.header-top-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--header-muted);
}
.header-top-item:hover { color: #fff; }
.header-top-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .4rem 0;
    gap: 1rem;
}
.header-top-item svg { flex-shrink: 0; opacity: .85; }

.header-bar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-h);
    padding: .65rem 0;
}

.header-actions { display: flex; align-items: center; gap: .5rem; }

.logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}
.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #fff;
    color: var(--header-bg);
    display: grid;
    place-items: center;
    font-size: .72rem;
    font-weight: 700;
}
.logo-text { font-weight: 700; font-size: .95rem; letter-spacing: .01em; }

.search-form {
    display: flex;
    max-width: none;
    width: 100%;
    margin: 0;
}
.search-form input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #fff;
    padding: .55rem .85rem;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font);
    font-size: .88rem;
}
.search-form input:focus { outline: none; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35); }
.search-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.search-form button {
    background: var(--terea-teal);
    border: 0;
    padding: 0 1rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    color: #fff;
    display: grid;
    place-items: center;
}
.search-form button:hover { background: var(--terea-teal-hover); }

.search-wrap {
    position: relative;
    width: 100%;
}
.search-suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1200;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: .35rem 0;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest-group { padding: .25rem 0 .15rem; }
.search-suggest-label {
    display: block;
    padding: .35rem .85rem .25rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}
.search-suggest-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .85rem;
    color: var(--text);
    text-decoration: none;
    font-size: .86rem;
    line-height: 1.35;
}
.search-suggest-item:hover,
.search-suggest-item.is-active {
    background: var(--accent-soft);
    color: var(--text-strong);
}
.search-suggest-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--bg-alt);
}
.search-suggest-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--bg-alt);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
}
.search-suggest-meta {
    flex: 1;
    min-width: 0;
}
.search-suggest-meta strong {
    display: block;
    font-weight: 600;
    color: var(--text-strong);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-suggest-meta span {
    display: block;
    font-size: .76rem;
    color: var(--muted);
}
.search-suggest-price {
    font-weight: 700;
    font-size: .82rem;
    color: var(--text-strong);
    white-space: nowrap;
}
.search-suggest-foot {
    border-top: 1px solid var(--line);
    padding: .55rem .85rem;
}
.search-suggest-foot a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
}
.search-suggest-empty {
    padding: .85rem;
    font-size: .84rem;
    color: var(--muted);
    text-align: center;
}
.search-wrap-mobile .search-suggest {
    position: static;
    margin-top: .5rem;
    max-height: 240px;
    box-shadow: none;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .65rem;
    border-radius: var(--radius);
    color: var(--header-text);
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
}
.header-phone:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.header-phone svg { flex-shrink: 0; opacity: .7; }
.header-wa { color: #25d366; }
.header-wa:hover { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.header-icon-btn {
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    color: var(--header-text);
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
}
.header-icon-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: transparent; }
.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #fff;
    color: var(--header-bg);
    font-size: .65rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0 4px;
}

.menu-toggle { display: none; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-menu { display: none; }
.menu-toggle.is-open .icon-close { display: block; }

.header-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--header-bg);
    padding: 0;
}
.nav-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
}
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-link {
    color: var(--header-text);
    font-size: .84rem;
    font-weight: 500;
    padding: .7rem .9rem;
    border-radius: 0;
    white-space: nowrap;
    border: 0;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.nav-link:hover { color: #fff; background: transparent; border-bottom-color: var(--terea-teal-light); }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: transparent;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
}
.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .75rem 1.5rem;
    padding: .6rem 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.35;
    background: transparent;
    flex: 1;
    min-width: 160px;
}
.trust-item svg { flex-shrink: 0; color: var(--accent); opacity: .7; width: 18px; height: 18px; }
.trust-item strong {
    display: block;
    color: var(--text-strong);
    font-size: .8rem;
    font-weight: 600;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    visibility: hidden;
}
.mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
}
.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,.65);
    opacity: 0;
    transition: .25s;
}
.mobile-drawer.open .mobile-drawer-backdrop { opacity: 1; }
.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: min(320px, 88vw);
    height: 100%;
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--line);
}
.mobile-drawer-head button {
    background: none;
    border: 0;
    color: var(--text-strong);
    cursor: pointer;
    padding: .25rem;
}
.mobile-search {
    display: flex;
    padding: .85rem 1.1rem;
    gap: .5rem;
    border-bottom: 1px solid var(--line);
}
.mobile-search input {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: .55rem .75rem;
    border-radius: 8px;
    font-family: var(--font);
}
.mobile-search button {
    background: var(--accent);
    border: 0;
    border-radius: 8px;
    padding: 0 .85rem;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}
.mobile-links { padding: .5rem 0; }
.mobile-links a {
    display: block;
    padding: .75rem 1.1rem;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: max(200px, min(680px, 31.25vw));
    overflow: hidden;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
}
.hero-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
    border: 0;
}
.hero-banner video.hero-banner-media {
    pointer-events: none;
}
.hero-banner-overlay { position: relative; }
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
    pointer-events: none;
}
.hero-overlay-inner {
    pointer-events: auto;
    padding: 2rem 1rem;
    color: #fff;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-overlay-inner h1 {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    margin: 0 0 .45rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.hero-overlay-inner .home-lead {
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 1.25rem;
    max-width: 520px;
    font-size: .92rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.hero-overlay-inner .home-intro-actions { justify-content: center; }
.btn-hero {
    padding: .85rem 2.25rem;
    font-size: .95rem;
    background: #fff;
    color: var(--header-bg);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.btn-hero:hover { background: #f5f5f5; color: var(--header-bg); }
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: #fff !important;
    color: #fff !important;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.hero-feature {
    display: block;
    max-width: 300px;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg3);
    transition: border-color .2s;
}
.hero-feature:hover { border-color: var(--gold); color: inherit; }
.hero-feature img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: var(--bg-alt);
}
.hero-feature-info {
    padding: 1rem 1.1rem;
    border-top: 1px solid var(--line);
}
.hero-feature-info span {
    display: block;
    font-size: .72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    margin-bottom: .25rem;
}
.hero-feature-info strong {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: .35rem;
}
.hero-feature-info em {
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold2);
}
.hero-cats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    width: 100%;
    max-width: 320px;
}
.hero-cats-mini a {
    padding: 1rem;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg3);
    color: var(--text);
}
.hero-cats-mini a:hover { border-color: var(--gold); color: var(--text-strong); }

.logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.footer-brand .logo-img { height: 40px; }

/* ===== AGE GATE ===== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.age-gate.show { opacity: 1; visibility: visible; }
.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(6px);
}
.age-gate-box {
    position: relative;
    background: var(--bg);
    border: 0;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(.97);
    transition: .35s;
}
.age-gate.show .age-gate-box { transform: translateY(0) scale(1); }
.age-gate-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    background: var(--accent);
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.age-gate-box h2 {
    margin: 0 0 .75rem;
    font-size: 1.45rem;
    font-weight: 700;
}
.age-gate-text, .age-gate-warn {
    font-size: .88rem;
    color: var(--muted);
    margin: 0 0 .75rem;
    line-height: 1.6;
    text-align: left;
}
.age-gate-warn {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: .75rem 0 0;
    margin-top: .5rem;
}
.age-gate-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    text-align: left;
    font-size: .85rem;
    margin: 1.25rem 0;
    cursor: pointer;
    line-height: 1.5;
}
.age-gate-check input {
    margin-top: .2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
}
.age-gate-decline {
    margin-top: .5rem;
    font-size: .82rem;
    color: var(--muted) !important;
    border-color: transparent !important;
}

/* ===== BUTTONS & SECTIONS ===== */
.section {
    padding: .45rem 0;
}
.section-home { padding: .4rem 0; }
.section-home-last { padding-bottom: .75rem; }
.section-panel {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.15rem;
}
.section + .section { border-top: 0; }
.section-alt { background: transparent; }
.categories-strip { padding-top: .85rem; padding-bottom: .85rem; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .85rem; gap: 1rem; }
.section-head h2 { font-size: 1.125rem; font-weight: 600; margin: 0; color: var(--text-strong); }
.link-more { color: var(--muted); font-size: .82rem; font-weight: 500; white-space: nowrap; }
.link-more:hover { color: var(--text-strong); text-decoration: underline; }

/* ===== CATALOG LAYOUT ===== */
.page-section { padding: .85rem 0 1.25rem; }
.container-narrow .page-block { margin-bottom: 0; }
.section-tight { padding: .5rem 0 .85rem; }
.catalog-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
}
.catalog-main {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    min-width: 0;
}
.catalog-main > .page-block { margin-bottom: 0; }
.page-block {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 1rem 0;
    box-shadow: none;
}
.page-block-home { padding: 1.15rem 1.25rem; }
.block-divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 1rem 0;
}
.home-zone { margin: 0; }
.zone-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    margin: 0 0 .65rem;
}
.home-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
    align-items: start;
}
.home-promo-box {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}
.home-promo-box h2 { font-size: 1rem; font-weight: 600; margin: 0 0 .35rem; }
.home-promo-box p { margin: 0 0 .85rem; font-size: .88rem; color: var(--muted); }
.seo-details {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    margin-bottom: .85rem;
}
.seo-details summary {
    padding: .6rem .85rem;
    font-size: .86rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-strong);
    list-style: none;
}
.seo-details summary::-webkit-details-marker { display: none; }
.seo-details-body { padding: 0 .85rem .75rem; font-size: .86rem; color: var(--muted); line-height: 1.6; }
.seo-details-body p { margin: 0; }
.page-top { margin-bottom: .85rem; }
.page-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .35rem;
}
.page-top h1,
.page-block h1 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-strong);
}
.page-lead { margin: .25rem 0 0; font-size: .84rem; color: var(--muted); }
.page-top-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.meta-badge {
    display: inline-block;
    padding: .25rem .55rem;
    background: var(--accent-soft);
    border: 0;
    border-radius: 999px;
    font-size: .76rem;
    color: var(--accent);
    white-space: nowrap;
}
.meta-badge-green {
    background: var(--accent-soft);
    border-color: transparent;
    color: var(--accent);
}
.block-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 .75rem;
    color: var(--text-strong);
}

.catalog-sidebar {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    position: sticky;
    top: calc(var(--header-h) + 110px);
}
.sidebar-block {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: .75rem 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
}
.sidebar-block:last-child { border-bottom: 0; }
.sidebar-title {
    margin: 0 0 .5rem;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
}
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav a {
    display: block;
    padding: .32rem .45rem;
    border-radius: 4px;
    font-size: .82rem;
    color: var(--text);
}
.sidebar-nav a:hover { background: var(--accent-soft); color: var(--accent); }
.sidebar-nav a.active {
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}
.sidebar-help p {
    margin: 0 0 .5rem;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.45;
}
.sidebar-phone {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: .55rem;
}
.sidebar-trust-mini ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.55;
}
.sidebar-trust-mini li { padding: .12rem 0; }

.search-form-page { margin-bottom: 1rem; max-width: none; }
.contact-sub { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.cat-grid-compact { grid-template-columns: repeat(3, 1fr); }
.city-grid-full { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: .35rem; }
.city-badge {
    display: block;
    font-size: .65rem;
    color: #1e7e45;
    margin-top: .15rem;
}
.blog-grid-full { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.catalog-main .kategori-intro { margin-bottom: .85rem; }
.catalog-main .product-grid { margin-top: .25rem; }
.ilan-satis-kutu { position: static; padding: 1.15rem; }
.ilan-grid { gap: 1.25rem; }
.ilan-sayfa { padding-top: 0; }


.btn {
    display: inline-block;
    padding: .72rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    font-family: var(--font);
    transition: .15s;
}
.btn-gold,
.btn-primary { background: var(--accent); color: #fff; border: 0; }
.btn-gold:hover,
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-gold:disabled { opacity: .45; cursor: not-allowed; filter: none; }
.btn-outline { border: 1px solid var(--line); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-sm { padding: .4rem .8rem; font-size: .82rem; }
.btn-block { display: block; width: 100%; text-align: center; }

.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .65rem; }
.cat-card {
    background: transparent;
    border: 0;
    border-radius: var(--radius);
    padding: .5rem .25rem;
    text-align: center;
    color: var(--text);
    transition: color .15s;
    box-shadow: none;
}
.cat-card:hover { color: var(--accent); box-shadow: none; }
.cat-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0 auto .35rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
}
.cat-icon svg { width: 20px; height: 20px; }
.cat-name { font-size: .74rem; font-weight: 500; line-height: 1.25; display: block; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}
.product-grid-home,
.product-grid-katalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
}
@media (min-width: 640px) {
    .product-grid-home { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .product-grid-home { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1100px) {
    .product-grid-home { grid-template-columns: repeat(5, 1fr); }
}
.product-card {
    background: var(--surface);
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: none;
    opacity: 1;
}
.product-grid-home .product-card { box-shadow: none; background: transparent; }
.product-grid-home .product-card:hover { box-shadow: none; }
.product-grid-home .product-image { border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.product-card-link { color: inherit; flex: 1; }
.product-image { position: relative; aspect-ratio: 1; background: var(--bg-alt); display: block; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 1; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.02); }
.product-hover-cta { display: none; }
.badge { position: absolute; top: 8px; left: 8px; font-size: .68rem; padding: .2rem .5rem; border-radius: 4px; font-weight: 600; z-index: 2; }
.badge.sale { background: var(--sale); color: #fff; }
.badge.stock-low { top: auto; bottom: 8px; left: 8px; right: auto; background: #e67e22; color: #fff; }
.badge.hot { background: var(--accent-soft); color: var(--accent); left: auto; right: 8px; border: 0; }
.product-info { padding: .65rem 0 .5rem; }
.product-cat { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; font-weight: 500; }
.product-info h3 { margin: .2rem 0 .4rem; font-size: .9rem; font-weight: 500; line-height: 1.35; min-height: 2.5em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--text-strong); }
.product-price { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: .78rem; }
.price-current { color: var(--text-strong); font-weight: 700; font-size: 1.05rem; }
.quick-add { padding: 0; display: block; }
.quick-add-form { width: 100%; }
.quick-add-form button { width: 100%; font-weight: 500; font-size: .8rem; padding: .5rem; }
.btn-wa-sm { display: none; }

/* ===== ILAN / URUN DETAY ===== */
.ilan-ust { padding: 1.25rem 0 0; background: var(--bg2); border-bottom: 1px solid var(--line); }
.bc-sep { margin: 0 .35rem; opacity: .4; }
.ilan-sayfa { padding-top: 1.75rem; }
.ilan-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: start; }
.ilan-gorsel-cerceve { position: relative; background: var(--bg-alt); border: 0; border-radius: var(--radius); padding: 1.25rem; }
.ilan-gorsel-cerceve img { width: 100%; height: auto; border-radius: var(--radius); display: block; object-fit: contain; max-height: 520px; margin: 0 auto; }
.ilan-indirim { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--sale); color: #fff; font-weight: 800; font-size: .85rem; padding: .35rem .65rem; border-radius: 8px; z-index: 2; }
.ilan-rozet { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--accent); color: #fff; font-weight: 700; font-size: .72rem; padding: .3rem .6rem; border-radius: 8px; z-index: 2; }
.ilan-rozet.stok-az { left: 1.5rem; right: auto; top: auto; bottom: 1.5rem; background: #e67e22; color: #fff; font-size: .78rem; }
.ilan-guven-sira { display: none; }
.guven-kart { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: .85rem .5rem; background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; text-align: center; font-size: .72rem; color: var(--muted); font-weight: 600; }
.guven-kart svg { width: 22px; height: 22px; color: var(--text); }
.ilan-satis-kutu { position: sticky; top: 1.25rem; background: transparent; border: 0; border-left: 1px solid var(--line); border-radius: 0; padding: 1.75rem; }
.ilan-kategori { display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem; }
.ilan-satis-kutu h1 { font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 700; line-height: 1.25; margin: 0 0 .75rem; }
.ilan-ozet { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0 0 1.25rem; }
.ilan-fiyat-blok { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.fiyat-eski { text-decoration: line-through; color: var(--muted); font-size: 1rem; }
.fiyat-guncel { font-size: 2rem; font-weight: 700; color: var(--text-strong); line-height: 1; }
.fiyat-tasarruf { font-size: .78rem; font-weight: 700; color: #27ae60; background: rgba(39,174,96,.12); padding: .25rem .55rem; border-radius: 6px; }
.ilan-stok { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; margin-bottom: 1.25rem; }
.ilan-stok.stokta { color: #27ae60; }
.ilan-stok.stok-az { color: #e67e22; }
.ilan-stok.tukendi { color: #e74c3c; }
.stok-nokta { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.ilan-sepet-form { margin-bottom: .75rem; }
.adet-satir { display: flex; gap: .75rem; align-items: end; }
.adet-satir label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.adet-satir input[type=number] { display: block; width: 72px; margin-top: .3rem; padding: .65rem; background: var(--input-bg); border: 1px solid var(--line); color: var(--text); border-radius: 8px; font-family: var(--font); font-size: 1rem; }
.adet-satir .btn-lg { flex: 1; }
.btn-lg { padding: .85rem 1.25rem; font-size: .95rem; }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: .55rem; width: 100%; background: #25d366; color: #fff; border: 0; border-radius: 10px; font-weight: 700; text-decoration: none; margin-bottom: 1.25rem; transition: background .2s; }
.btn-whatsapp:hover { background: #1ebe57; color: #fff; }
.ilan-ozellik-liste { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); padding-top: 1rem; }
.ilan-ozellik-liste li { position: relative; padding: .4rem 0 .4rem 1.1rem; font-size: .84rem; color: var(--muted); }
.ilan-ozellik-liste li::before { content: ''; position: absolute; left: 0; top: .75rem; width: 5px; height: 5px; border-radius: 50%; background: var(--muted); }
.ilan-ozellik-liste a { color: var(--text-strong); }
.ilan-detay .ilan-sekme { max-width: 820px; }
.ilan-sekme h2 { font-size: 1.2rem; font-weight: 700; margin: 0 0 1rem; }
.ilan-icerik { line-height: 1.85; color: var(--muted); font-size: .95rem; }

/* ===== KATEGORI ===== */
.kategori-hero { padding: 2rem 0; background: linear-gradient(180deg, var(--bg2), var(--bg)); border-bottom: 1px solid var(--line); }
.kategori-hero-ic { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; margin-top: .75rem; }
.kategori-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; margin: 0; }
.kategori-meta { display: flex; align-items: center; gap: 1rem; }
.kategori-sayi { font-size: .82rem; color: var(--muted); font-weight: 600; padding: .4rem .75rem; background: var(--bg3); border: 1px solid var(--line); border-radius: 8px; }
.bos-katalog { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.bos-katalog .btn { margin-top: 1rem; }

.bos-durum {
    padding: 2.5rem 1rem 3rem;
}
.bos-durum-ic {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.bos-durum-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--muted);
    background: var(--bg2);
    border-radius: 50%;
}
.bos-durum-ikon svg { opacity: .85; }
.bos-durum h2 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}
.bos-durum p {
    margin: 0 0 1.25rem;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.55;
}
.bos-durum .btn { min-width: 160px; }

.sepet-sayfa .section { padding-top: 1.75rem; }
.cart-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem; align-items: start; }
.cart-panel {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.cart-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--line);
    background: var(--bg2);
}
.cart-panel-head h2 { margin: 0; font-size: .95rem; font-weight: 600; }
.cart-panel-head span { font-size: .8rem; color: var(--muted); }
.cart-items { padding: 0 1.15rem; }
.cart-row {
    display: grid;
    grid-template-columns: 72px 1fr auto auto;
    gap: .85rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.cart-row:last-child { border-bottom: 0; }
.cart-thumb {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--line);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-info { min-width: 0; }
.cart-name {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .2rem;
    line-height: 1.35;
}
.cart-name:hover { color: var(--gold2); }
.cart-unit { font-size: .8rem; color: var(--muted); }
.cart-line-price { font-size: .92rem; font-weight: 600; white-space: nowrap; }
.cart-remove-form { margin: 0; }
.btn-remove {
    background: none;
    border: 0;
    color: var(--muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: .25rem .4rem;
    border-radius: 4px;
}
.btn-remove:hover { color: #e74c3c; background: rgba(231,76,60,.08); }
.cart-foot {
    padding: 1rem 1.15rem;
    border-top: 1px solid var(--line);
    background: var(--bg2);
}
.cart-continue {
    display: inline-block;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: .75rem;
}
.cart-continue:hover { color: var(--text-strong); }
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: .95rem;
}
.cart-total strong { font-size: 1.15rem; color: var(--text-strong); }
.cart-checkout {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.15rem;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}
.cart-checkout h2 { margin: 0 0 .35rem; font-size: 1rem; font-weight: 600; }
.cart-checkout-note { margin: 0 0 1rem; font-size: .82rem; color: var(--muted); }
.cart-checkout label { display: block; margin-bottom: .7rem; font-size: .82rem; font-weight: 500; color: var(--muted); }
.cart-checkout input,
.cart-checkout textarea {
    width: 100%;
    padding: .55rem .65rem;
    background: var(--input-bg);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 6px;
    margin-top: .25rem;
    font-family: var(--font);
    font-size: .9rem;
}
.cart-checkout input:focus,
.cart-checkout textarea:focus {
    outline: none;
    border-color: #ccc;
}
.cart-checkout .btn-block { margin-top: .5rem; }
.cart-wa { margin-top: .5rem; }

.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.5rem;
    align-items: start;
}
.checkout-fieldset {
    margin: 0;
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg2);
}
.checkout-fieldset legend {
    padding: 0 .35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-strong);
}
.checkout-row { display: grid; gap: .85rem; }
.checkout-row-2 { grid-template-columns: 1fr 1fr; }
.checkout-field { display: block; margin-bottom: .85rem; }
.checkout-field > span {
    display: block;
    margin-bottom: .3rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
}
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    padding: .6rem .7rem;
    background: var(--input-bg);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 6px;
    font-family: var(--font);
    font-size: .92rem;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: var(--terea-teal, #00b4bc);
}
.field-error {
    display: block;
    margin-top: .25rem;
    font-style: normal;
    font-size: .78rem;
    color: #e74c3c;
}
.checkout-submit { margin-top: .25rem; }
.checkout-submit-note {
    margin: .75rem 0 0;
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.5;
}
.checkout-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}
.checkout-summary h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
}
.checkout-summary-items { display: grid; gap: .85rem; margin-bottom: 1rem; }
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    align-items: flex-start;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--line);
}
.checkout-summary-product {
    display: flex;
    gap: .65rem;
    align-items: center;
    min-width: 0;
}
.checkout-summary-product img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.checkout-summary-product strong {
    display: block;
    font-size: .85rem;
    line-height: 1.35;
    margin-bottom: .15rem;
}
.checkout-summary-product span {
    font-size: .78rem;
    color: var(--muted);
}
.checkout-summary-price {
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
}
.checkout-summary-line {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    font-size: .88rem;
    margin-bottom: .45rem;
    color: var(--muted);
}
.checkout-summary-discount { color: #27ae60; }
.checkout-summary-total {
    margin-top: .65rem;
    padding-top: .75rem;
    border-top: 1px solid var(--line);
    font-size: .95rem;
    color: var(--text-strong);
}
.checkout-summary-total strong { font-size: 1.15rem; }
.checkout-back {
    display: inline-block;
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--muted);
}
.checkout-back:hover { color: var(--text-strong); }
.cart-panel-full { max-width: 820px; }
.cart-foot-checkout {
    flex-wrap: wrap;
    gap: 1rem;
}
.cart-foot-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .85rem;
    margin-left: auto;
}
.cart-pay-btn { min-width: 220px; text-align: center; }
.cart-min-hint { margin-top: .35rem; font-size: .85rem; color: var(--muted); }

.cart-min-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, rgba(230, 126, 34, .12) 0%, rgba(230, 126, 34, .04) 100%);
    border: 1px solid rgba(230, 126, 34, .35);
    border-left: 4px solid #e67e22;
    border-radius: var(--radius);
    animation: cartMinBannerIn .45s ease;
}
@keyframes cartMinBannerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-min-banner-icon { flex-shrink: 0; color: #e67e22; }
.cart-min-banner-body { flex: 1; min-width: 0; }
.cart-min-banner-body strong { display: block; font-size: 1rem; color: var(--text-strong); margin-bottom: .25rem; }
.cart-min-banner-body p { margin: 0 0 .65rem; font-size: .92rem; color: var(--muted); line-height: 1.5; }
.cart-min-current { color: #e67e22; font-weight: 700; }
.cart-min-banner-btn {
    flex-shrink: 0;
    padding: .45rem .85rem;
    background: #e67e22;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.cart-min-banner-btn:hover { background: #d35400; transform: scale(1.03); }
.cart-min-progress {
    height: 6px;
    background: rgba(0, 0, 0, .08);
    border-radius: 999px;
    overflow: hidden;
}
.cart-min-progress-lg { height: 10px; margin: 1rem 0; }
.cart-min-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 999px;
    transition: width .85s cubic-bezier(.22, 1, .36, 1);
}

.cart-min-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    pointer-events: none;
    visibility: hidden;
}
.cart-min-modal.is-open {
    pointer-events: auto;
    visibility: visible;
}
.cart-min-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 72, 76, .55);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .35s ease;
}
.cart-min-modal.is-open .cart-min-modal-backdrop { opacity: 1; }
.cart-min-modal-panel {
    position: relative;
    width: min(100%, 420px);
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
    transform: scale(.88) translateY(24px);
    opacity: 0;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}
.cart-min-modal.is-open .cart-min-modal-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.cart-min-modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    padding: .25rem;
    line-height: 0;
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.cart-min-modal-close:hover { color: var(--text-strong); background: rgba(0,0,0,.05); }
.cart-min-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 180, 188, .15), rgba(0, 180, 188, .05));
    color: var(--terea-teal, #00b4bc);
    border-radius: 50%;
    animation: cartMinIconPop .6s cubic-bezier(.22, 1, .36, 1) .15s both;
}
@keyframes cartMinIconPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.cart-min-modal-title {
    margin: 0 0 .65rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-strong);
}
.cart-min-modal-lead {
    margin: 0 0 1.25rem;
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.6;
}
.cart-min-modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .25rem;
}
.cart-min-stat {
    padding: .85rem .75rem;
    background: var(--bg2, #f7f7f7);
    border-radius: 10px;
    border: 1px solid var(--line);
}
.cart-min-stat-accent {
    background: rgba(230, 126, 34, .08);
    border-color: rgba(230, 126, 34, .25);
}
.cart-min-stat-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    margin-bottom: .2rem;
}
.cart-min-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-strong);
}
.cart-min-stat-accent .cart-min-stat-value { color: #e67e22; }
.cart-min-modal-note {
    margin: 0 0 1.25rem;
    font-size: .85rem;
    color: var(--muted);
}
.cart-min-modal-actions {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.cart-min-modal-actions .btn { width: 100%; justify-content: center; }
body.cart-min-locked { overflow: hidden; }

.kategori-intro,
.heets-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.25rem;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--text-strong);
    border-radius: var(--radius);
}
.kategori-intro-metin {
    flex: 1;
    min-width: min(100%, 260px);
}
.kategori-intro p,
.heets-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: .92rem;
}
.kategori-intro-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.heets-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.heets-info-card {
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
}
.heets-info-card h3 { margin: 0 0 .4rem; font-size: .95rem; color: var(--text-strong); }
.heets-info-card p { margin: 0; font-size: .86rem; color: var(--muted); line-height: 1.55; }

.breadcrumb { font-size: .8rem; color: var(--muted); margin: 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text-strong); }
.lead { color: var(--muted); margin: .5rem 0 0; font-size: .92rem; line-height: 1.55; }

.promo-banner { background: transparent; border-block: 0; padding: 0; }
.promo-banner .page-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.promo-banner h2 { font-size: 1rem; font-weight: 600; margin: 0 0 .15rem; color: var(--text-strong); }
.promo-banner p { margin: 0; color: var(--muted); font-size: .84rem; }
.promo-banner .btn-gold { background: var(--accent); flex-shrink: 0; }
.promo-banner .btn-gold:hover { background: var(--accent-hover); }

.page-header { padding: 1rem 0; border-bottom: 0; background: transparent; }
.page-header .container { background: transparent; border: 0; border-radius: 0; padding: 0; }
.page-header h1 { font-size: 1.25rem; font-weight: 600; margin: .4rem 0 0; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .65rem; }
.blog-card { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .85rem 0; }
.blog-card p { font-size: .84rem; color: var(--muted); margin: .35rem 0; line-height: 1.5; }
.blog-card h3 { margin-top: 0; font-size: .95rem; font-weight: 600; color: var(--text-strong); }
.read-more { color: var(--muted); font-size: .84rem; font-weight: 500; }
.read-more:hover { color: var(--text-strong); }

.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: .4rem; }
.city-grid-compact { grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); }
.city-link { background: var(--bg-alt); border: 0; padding: .45rem .55rem; border-radius: 999px; color: var(--text); font-size: .8rem; text-align: center; font-weight: 400; }
.city-link:hover { color: var(--accent); background: var(--accent-soft); }

.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-price.large .price-current { font-size: 1.8rem; }
.add-to-cart-form { display: flex; gap: .75rem; align-items: end; flex-wrap: wrap; margin: 1.25rem 0; }
.add-to-cart-form input[type=number] { width: 70px; padding: .5rem; background: var(--input-bg); border: 1px solid var(--line); color: var(--text); border-radius: 8px; font-family: var(--font); }


.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.contact-card { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .85rem 0; }
.contact-card h3 { margin: 0 0 .5rem; font-size: .88rem; font-weight: 600; color: var(--text); }
.contact-card p { margin: 0; font-size: .9rem; }

.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    margin-top: 0;
    color: var(--footer-text);
}
.footer-main { padding: 1.5rem 0 1.15rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 1.75rem;
    align-items: start;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-grid h4 {
    margin: 0 0 .65rem;
    font-size: .78rem;
    color: var(--footer-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.footer-grid a { color: var(--footer-text); font-size: .84rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-mark { background: #fff; color: var(--footer-bg); }
.footer-brand p {
    color: var(--footer-text);
    line-height: 1.55;
    font-size: .84rem;
    margin: .75rem 0 .85rem;
    max-width: 300px;
}
.footer-contact-quick a { color: #fff; font-weight: 500; }
.footer-contact-quick a:hover { color: rgba(255, 255, 255, 0.8); }
.footer-grid a:hover { color: #fff; }
.footer-city-tags a {
    display: inline-block;
    padding: .28rem .55rem;
    border: 0;
    border-radius: 999px;
    font-size: .76rem;
    color: var(--footer-text);
    background: rgba(255, 255, 255, 0.08);
}
.footer-city-tags a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}
.footer-bottom {
    border-top: 1px solid var(--footer-border);
    background: rgba(0, 0, 0, 0.2);
    padding: .75rem 0;
    font-size: .76rem;
    color: var(--footer-text);
}
.age-notice { color: var(--muted); }
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { margin: 0; }
.age-notice { color: var(--footer-text); }

.whatsapp-float { position: fixed; right: 20px; bottom: 24px; width: 52px; height: 52px; background: #25d366; color: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); z-index: 90; }
.whatsapp-float:hover { background: #1ebe57; color: #fff; }

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 1rem 0 2rem; }
.product-page .breadcrumb { margin-bottom: 1rem; }
.product-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-top: .85rem;
    font-size: .78rem;
    color: var(--muted);
}
.product-trust-line span::before { content: '✓ '; color: var(--text-strong); }
.ilan-satis-kutu { border-left: 0; padding: 0; }
.ilan-gorsel-cerceve { background: var(--surface); padding: 1rem; }
.product-related {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.product-desc-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}
.product-desc-block h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 .75rem;
    color: var(--text-strong);
}
.ilan-rozet { background: var(--accent); color: #fff; }
.badge.hot { background: var(--accent); color: #fff; }

.alert { padding: .75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: .88rem; }
.alert.success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.25); color: #1e7e45; }
.alert.error { background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.25); color: #c0392b; }
.empty-state { color: var(--muted); text-align: center; padding: 2rem; }

/* ===== SEO CONTENT ===== */
/* ===== HOME FLOW (kutusuz) ===== */
.home-flow {
    background: var(--surface);
    padding: 1rem 0 1.5rem;
}

/* ===== 3 AL 1 HEDİYE KAMPANYA ===== */
.promo-deal {
    background: linear-gradient(135deg, #083538 0%, #0c484c 45%, #0f6369 100%);
    color: #fff;
    border-bottom: 1px solid rgba(95, 212, 218, 0.2);
    padding: 1.75rem 0;
}
.promo-deal-inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 2rem;
    align-items: center;
}
.promo-deal-badge {
    display: inline-block;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(0, 180, 188, 0.22);
    border: 1px solid rgba(95, 212, 218, 0.45);
    color: var(--terea-teal-light);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.promo-deal-title {
    margin: 0 0 .55rem;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.05;
}
.promo-deal-text {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: .92rem;
    line-height: 1.6;
    max-width: 520px;
}
.promo-deal-points {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: .45rem;
}
.promo-deal-points li {
    position: relative;
    padding-left: 1.25rem;
    font-size: .86rem;
    color: rgba(255, 255, 255, 0.88);
}
.promo-deal-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terea-teal-light);
}
.promo-deal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .85rem 1.25rem;
}
.promo-deal-actions .btn-primary {
    background: var(--terea-teal);
    color: #fff;
    border-color: var(--terea-teal);
}
.promo-deal-actions .btn-primary:hover {
    background: var(--terea-teal-hover);
    color: #fff;
}
.promo-deal-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: .86rem;
    font-weight: 600;
}
.promo-deal-link:hover { color: #fff; }
.promo-deal-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}
.promo-deal-stack {
    position: relative;
    width: min(100%, 220px);
    height: 150px;
}
.promo-deal-card {
    position: absolute;
    width: 88px;
    height: 110px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.promo-deal-card-a {
    left: 0;
    top: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--terea-teal-deep);
    transform: rotate(-8deg);
}
.promo-deal-card-b {
    left: 66px;
    top: 0;
    background: var(--terea-teal);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: rotate(4deg);
}
.promo-deal-card-c {
    right: 0;
    bottom: 0;
    width: auto;
    min-width: 88px;
    padding: 0 1rem;
    height: 88px;
    background: #fff;
    color: var(--terea-teal-deep);
    font-size: 1.15rem;
    transform: rotate(6deg);
}
.promo-deal-note {
    margin: 0;
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.cart-promo-hint {
    margin: .35rem 0 0;
    font-size: .82rem;
    color: var(--accent);
    font-weight: 500;
}
.cart-totals { display: grid; gap: .35rem; text-align: right; }
.cart-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .84rem;
    color: var(--muted);
}
.cart-total-discount { color: #1e7e45; font-weight: 600; }

.home-section {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}
.home-section:last-child { border-bottom: 0; }
.home-hero-text {
    padding: 1.5rem 0 1rem;
    text-align: center;
}
.home-hero-text h1 { font-size: 1.5rem; margin: 0 0 .5rem; color: var(--text-strong); }
.cat-strip {
    display: flex;
    gap: .5rem 1.25rem;
    overflow-x: auto;
    padding: .25rem 0;
    scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    min-width: 72px;
    flex-shrink: 0;
    color: var(--text);
    padding: .25rem;
}
.cat-chip:hover { color: var(--accent); }
.cat-chip .cat-icon {
    background: transparent;
    width: 28px;
    height: 28px;
    border-radius: 0;
    color: var(--accent);
}
.cat-chip .cat-icon svg { width: 24px; height: 24px; }
.cat-chip .cat-name { font-size: .72rem; font-weight: 500; text-align: center; line-height: 1.25; }
.home-section-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}
.home-wa-cta strong { display: block; font-size: .95rem; color: var(--text-strong); margin-bottom: .35rem; }
.home-wa-cta p { margin: 0 0 .75rem; font-size: .86rem; color: var(--muted); }
.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.city-tags a {
    padding: .35rem .65rem;
    background: transparent;
    border-radius: 999px;
    font-size: .8rem;
    color: var(--text);
    border: 1px solid var(--line);
}
.city-tags a:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-soft); }
.home-details {
    margin-bottom: 1rem;
    font-size: .88rem;
    color: var(--muted);
}
.home-details summary { cursor: pointer; color: var(--text-strong); font-weight: 500; margin-bottom: .35rem; }
.home-details p { margin: .35rem 0 0; line-height: 1.6; }
.home-section-faq .faq-section h2 { font-size: 1rem; }
.home-section-faq .faq-item { border: 0; background: transparent; border-bottom: 1px solid var(--line); border-radius: 0; }
.home-section-faq .faq-item:last-child { border-bottom: 0; }
.blog-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-list-compact li { border-bottom: 1px solid var(--line); }
.blog-list-compact li:last-child { border-bottom: 0; }
.blog-list-compact a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    color: var(--text);
}
.blog-list-compact a:hover { color: var(--accent); }

.home-intro .page-block { text-align: center; }
.home-intro-standalone { padding-top: .65rem; }
.home-intro h1 { font-size: 1.4rem; font-weight: 700; margin: 0 0 .65rem; color: var(--text-strong); }
.home-lead { margin: 0 auto 1rem; max-width: 680px; font-size: .92rem; color: var(--muted); line-height: 1.65; }
.home-intro-actions { display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap; }
.blog-list-title { flex: 1; font-size: .9rem; font-weight: 500; }
.blog-list-excerpt { display: none; }
.blog-list-page .blog-list-excerpt {
    display: block;
    flex: 1;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 400;
}
.blog-list-page a { flex-wrap: wrap; }
.blog-list-arrow { color: var(--muted); font-size: .9rem; flex-shrink: 0; }
.seo-intro h2 { font-size: 1.05rem; font-weight: 600; margin: 0 0 .5rem; color: var(--text-strong); }
.seo-intro p { margin: 0 0 .75rem; font-size: .88rem; color: var(--text); line-height: 1.65; }
.seo-text-link { margin-top: .85rem; font-size: .84rem; }
.seo-link-list { margin: 0; padding: 0; list-style: none; }
.seo-link-list li { margin: 0 0 .45rem; }
.seo-link-list a { font-size: .88rem; color: var(--text); }
.seo-link-list a:hover { color: var(--text-strong); text-decoration: underline; }
.faq-section h2 { font-size: 1.05rem; font-weight: 600; margin: 0 0 .75rem; color: var(--text-strong); }
.faq-list { display: flex; flex-direction: column; gap: .45rem; }
.faq-item { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
    padding: .65rem .85rem;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-strong);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0; padding: 0 .85rem .75rem; font-size: .84rem; color: var(--muted); line-height: 1.6; }
.legal-content a { color: var(--text-strong); text-decoration: underline; }

.city-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; }
.city-sidebar { background: var(--bg3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; height: fit-content; }
.city-sidebar-list a { display: block; padding: .3rem 0; color: var(--muted); font-size: .85rem; }
.city-kw-tags span { display: inline-block; background: var(--bg2); border: 1px solid var(--line); padding: .15rem .45rem; border-radius: 4px; font-size: .72rem; margin: .15rem; color: var(--muted); }
.city-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.city-content { font-size: .9rem; color: var(--text); }
.city-content h2,
.city-content h3 { font-size: 1rem; font-weight: 600; color: var(--text-strong); margin: 1.25rem 0 .5rem; }
.city-content p { margin: 0 0 .75rem; line-height: 1.7; }
.article-content { max-width: none; line-height: 1.75; font-size: .9rem; }
.article-content h2,
.article-content h3 { font-size: 1rem; font-weight: 600; color: var(--text-strong); margin: 1.25rem 0 .5rem; }
.article-content p { margin: 0 0 .85rem; }
.article-footer {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.error-page { padding: .65rem 0 1rem; }
.error-page .error-inner { text-align: center; padding: 1.5rem 1rem; }
.error-code { font-size: 4rem; font-weight: 800; line-height: 1; color: var(--gold); opacity: .25; }
.error-page h1 { margin: 0 0 .75rem; font-size: 1.35rem; font-weight: 700; }
.error-page p { color: var(--muted); margin-bottom: 1.25rem; font-size: .88rem; }
.error-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.error-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.error-links a { color: var(--muted); font-size: .88rem; }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .product-grid,
    .product-grid-home,
    .product-grid-katalog { grid-template-columns: repeat(4, 1fr); gap: .85rem; }
    .cat-grid-home { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1100px) {
    .nav-scroll { justify-content: stretch; }
    .nav-link { flex: 1; text-align: center; }
    .product-grid,
    .product-grid-home,
    .product-grid-katalog { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-grid-compact { grid-template-columns: repeat(3, 1fr); }
    .catalog-layout { grid-template-columns: 200px minmax(0, 1fr); }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .trust-bar { display: none; }
    .catalog-layout,
    .catalog-layout-cart { grid-template-columns: 1fr; }
    .catalog-sidebar { display: none; }
    .header-top-inner { justify-content: center; font-size: .7rem; }
    .header-phone span { display: none; }
    .header-bar-inner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: .5rem;
        padding: .5rem 0;
    }
    .logo { grid-column: 1; }
    .header-actions { grid-column: 2; grid-row: 1; }
    .search-wrap,
    .search-form {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: none;
    }
    .promo-deal-inner { grid-template-columns: 1fr; gap: 1.25rem; }
    .promo-deal-visual { order: -1; }
    .promo-deal-stack { height: 130px; }
    .home-section-split { grid-template-columns: 1fr; }
    .header-nav { display: none; }
    .menu-toggle { display: grid !important; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .product-grid,
    .product-grid-home,
    .product-grid-katalog { grid-template-columns: repeat(2, 1fr); }
    .home-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .product-detail-grid, .cart-layout, .checkout-layout, .city-layout, .ilan-grid { grid-template-columns: 1fr; }
    .checkout-row-2 { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .cart-foot-right { width: 100%; align-items: stretch; }
    .cart-pay-btn { width: 100%; }
    .cart-min-banner { flex-wrap: wrap; }
    .cart-min-banner-btn { width: 100%; margin-top: .25rem; }
    .cart-row { grid-template-columns: 56px 1fr auto auto; gap: .65rem; }
    .cart-thumb { width: 56px; height: 56px; }
    .ilan-satis-kutu { position: static; padding: 0; margin-top: 1.25rem; }
    .ilan-gorsel-cerceve { padding: .75rem; }
    .ilan-grid { gap: 0; }
    .product-page { padding: .75rem 0 1.5rem; }
    .page-section { padding: .5rem 0 1rem; }
    .page-block { padding: .5rem 0; }
    .adet-satir { flex-direction: column; align-items: stretch; }
    .adet-satir .btn-lg { width: 100%; }
    .kategori-hero-ic { flex-direction: column; align-items: flex-start; }
    .kategori-intro,
    .heets-intro { flex-direction: column; align-items: stretch; }
    .kategori-intro-btn { width: 100%; text-align: center; }
    .section-head h2 { font-size: 1rem; }
    .page-block { padding: .85rem; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.gr-widget {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 88;
    max-width: min(320px, calc(100vw - 80px));
    font-family: Roboto, Arial, sans-serif;
}
.gr-badge {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .5rem .75rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    color: #202124;
    text-align: left;
    transition: box-shadow .2s;
}
.gr-badge:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16); }
.gr-widget.is-open .gr-badge { border-radius: 6px 6px 0 0; border-bottom-color: #f0f0f0; }
.gr-google-icon { flex-shrink: 0; display: grid; place-items: center; line-height: 0; }
.gr-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
    flex: 1;
    min-width: 0;
}
.gr-rating { font-size: 1.125rem; font-weight: 700; line-height: 1.1; color: #202124; }
.gr-stars { color: #f7802f; font-size: .95rem; letter-spacing: .02em; line-height: 1; }
.gr-count { font-size: .68rem; font-weight: 600; color: #5f6368; letter-spacing: .04em; }
.gr-chevron {
    flex-shrink: 0;
    color: #5f6368;
    transition: transform .2s;
    display: grid;
    place-items: center;
}
.gr-widget.is-open .gr-chevron { transform: rotate(180deg); }
.gr-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}
.gr-list {
    max-height: 420px;
    overflow-y: auto;
    padding: .35rem 0;
    scrollbar-width: thin;
    scrollbar-color: #dadce0 transparent;
}
.gr-list::-webkit-scrollbar { width: 6px; }
.gr-list::-webkit-scrollbar-thumb { background: #dadce0; border-radius: 3px; }
.gr-item {
    padding: .65rem .85rem;
    border-bottom: 1px solid #f0f0f0;
}
.gr-item:last-child { border-bottom: 0; }
.gr-item-top { display: flex; gap: .65rem; align-items: flex-start; }
.gr-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.gr-item-meta { flex: 1; min-width: 0; }
.gr-item-name { display: block; font-size: .84rem; font-weight: 600; color: #202124; margin-bottom: .15rem; }
.gr-item-sub {
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
    font-size: .72rem;
    color: #5f6368;
}
.gr-item-stars { color: #f7802f; letter-spacing: .02em; }
.gr-item-g { display: inline-grid; place-items: center; line-height: 0; }
.gr-item-text {
    margin: .45rem 0 0;
    font-size: .8rem;
    line-height: 1.5;
    color: #3c4043;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gr-item-text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
}
.gr-show-more {
    background: none;
    border: 0;
    padding: .25rem 0 0;
    color: #1a73e8;
    font-size: .78rem;
    font-weight: 500;
    cursor: pointer;
}
.gr-show-more:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .gr-widget {
        left: 8px;
        bottom: 72px;
        max-width: calc(100vw - 72px);
    }
    .gr-list { max-height: 320px; }
}
