/**
 * QR Menu Cebel – Milimetrik premium rehber
 * 1. Radial arka plan  2. Tipografi  3. Arama kutusu  4. Kategori  5. Kartlar  6. Alt nav
 */

:root {
    /* 1. Ana arka plan: altın – koyulaştırılmış sarı tonları */
    --bg-center: #8A7020;
    --bg-mid: #5A471B;
    --bg-edge: #1F1806;
    /* 2. Tipografi */
    --text-heading: #FFFFFF;
    --text-accent: #B8962E;
    --text-muted: #9CA3AF;
    /* 3. Arama kutusu */
    --search-bg: #142E1F;
    /* 5. Kart */
    --card-bg: #122E1C;
    --card-radius: 20px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* 6. Alt nav */
    --footer-bg: #122E1C;
    --radius-pill: 9999px;
    --safe-top: env(safe-area-inset-top, 0);
    --safe-bottom: env(safe-area-inset-bottom, 0);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 280px; /* Filtreye tıklanınca içerik sticky bar altında kalmaması için */
    -webkit-tap-highlight-color: transparent;
}

/* 1. Ana arka plan: altın gradient + belli belirsiz smooth efektler */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-edge);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.028) 0%, transparent 52%),
        radial-gradient(ellipse 130% 100% at 50% 100%, rgba(0, 0, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 100% 90% at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse 100% 90% at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse 120% 110% at 50% 35%, var(--bg-center) 0%, var(--bg-center) 25%, var(--bg-mid) 55%, var(--bg-edge) 100%);
    background-attachment: fixed;
    color: var(--text-heading);
    line-height: 1.5;
    min-height: 100vh;
    padding-bottom: calc(80px + var(--safe-bottom));
    font-size: 16px;
}

/* Sticky: üst container’da overflow yok, scroll body’de */
.cebel-fixed-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.2s ease;
    padding: calc(0.5rem + var(--safe-top)) 1rem 0.5rem;
    pointer-events: none;
}

.cebel-fixed-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cebel-fixed-bar-inner {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.cebel-fixed-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}


/* Başlık yüksekliği: arama+kategori bar’ının top değeri için (tek satır ~3rem, iki satır için pay) */
/* 2) Arama + kategoriler başlığın hemen altında yapışır */

/* ----- Header: arama/kategori ile arası sıkı (referans hiza) ----- */
.cebel-header {
    padding: calc(1rem + var(--safe-top)) 1.25rem 1rem;
}

.cebel-header-inner {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

/* Logo varsa en üstte, başlığın üstünde gösterilir; yoksa PHP hiç render etmez */
.cebel-logo-wrap {
    width: var(--cebel-logo-size, 72px);
    height: var(--cebel-logo-size, 72px);
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cebel-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. Restoran adı: sticky bar içinde, sadece tipografi */
.cebel-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.cebel-brand-text { display: inline; }

.cebel-brand-leaf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.cebel-brand-leaf svg { width: 20px; height: 20px; }

.cebel-location {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.cebel-contact { margin-bottom: 0.85rem; }

/* 2. Alt metinler: üst alan beyaz */
.cebel-phone,
.cebel-address {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.45;
}

.cebel-phone + .cebel-address { margin-top: 0.15rem; }

/* 3. Arama kutusu: koyu yeşil (referans), pill, placeholder gri */
.cebel-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--search-bg);
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cebel-search-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center/contain no-repeat;
}

.cebel-search {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-family: inherit;
}

.cebel-search::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.cebel-search:focus { outline: none; }

/* 4. Kategori: arama çubuğuna yakın (referans hiza) */
.cebel-cat-nav {
    padding: 0.5rem 0 0.65rem;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cebel-cat-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cebel-cat-scroll::-webkit-scrollbar { display: none; }

.cebel-cat-pill {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none !important;
    color: #FFFFFF;
    background: transparent;
    transition: color 0.2s;
    white-space: nowrap;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
}

.cebel-cat-pill:hover { color: #FFFFFF; opacity: 0.9; }

.cebel-cat-pill.active {
    color: var(--text-accent);
    font-weight: 600;
    border-bottom-color: var(--text-accent);
}

/* ----- Main: üst boşluk ile sticky bar ile çakışma azaltılır ----- */
.cebel-main {
    max-width: 420px;
    margin: 0 auto;
    padding: 1.25rem 1rem 1.75rem;
    padding-top: max(1.25rem, env(safe-area-inset-top));
}

.cebel-cat-section {
    scroll-margin-top: 280px; /* Telefonda filtreye tıklanınca bölüm sticky barın altında kalmaz */
    margin-bottom: 1.35rem;
}

.cebel-cat-section:last-child { margin-bottom: 0; }

.cebel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

/* 5. Ürün kartları: #163A24, radius 20px, gölge 0 10px 30px rgba(0,0,0,0.4), resim sadece üst köşeler 20px, iç padding 16px, buton yok */
.cebel-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cebel-card:active { transform: scale(0.98); }

.cebel-card-image-wrap {
    aspect-ratio: 1;
    background: #0d2818;
    overflow: hidden;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
}

.cebel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cebel-card-img--placeholder {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0d2818 100%);
}

.cebel-card-body {
    padding: 14px 15px 16px;
}

/* 2. Ürün adı: referans oran – bold beyaz */
.cebel-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 2. Açıklama: referans – 12px, sıkı satır */
.cebel-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.38;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cebel-card-desc:empty { display: none; }

/* 2. Fiyat: referans – altın, bold */
.cebel-card-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-accent);
    letter-spacing: 0.02em;
    margin-top: 0.15rem;
}

/* Kart sağ üst sepet kontrolü */
.cebel-card {
    position: relative;
}

.cebel-card-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cebel-card-cart-add {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(22, 58, 36, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cebel-card-cart-add:hover,
.cebel-card-cart-add:focus {
    background: rgba(22, 58, 36, 0.95);
    transform: scale(1.05);
}

/* Sepete ürün eklenmiş kartta sadece +/− görünsün, sepet ikonu gizlensin */
.cebel-card-cart.has-items .cebel-card-cart-add {
    display: none !important;
}

.cebel-card-cart-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cebel-card-cart-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(22, 58, 36, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 4px 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cebel-card-cart-controls[hidden] {
    display: none !important;
}

.cebel-card-cart-plus,
.cebel-card-cart-down {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    color: var(--text-accent);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.cebel-card-cart-plus:hover,
.cebel-card-cart-down:hover {
    background: rgba(212, 175, 55, 0.45);
    transform: scale(1.08);
}

.cebel-card-cart-down {
    font-size: 1rem;
    font-weight: 600;
}

.cebel-card-cart-down.cebel-card-cart-down--delete {
    background: rgba(200, 80, 80, 0.35);
    color: #e8b4b4;
}

.cebel-card-cart-down.cebel-card-cart-down--delete:hover {
    background: rgba(200, 80, 80, 0.5);
}

.cebel-card-cart-down-icon {
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e8b4b4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h18M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2'/%3E%3Cline x1='10' y1='11' x2='10' y2='17'/%3E%3Cline x1='14' y1='11' x2='14' y2='17'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cebel-card-cart-qty {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    min-width: 1.2em;
    text-align: center;
    padding: 2px 0;
}

.cebel-no-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 2.5rem 1rem;
}

.cebel-card.hidden-by-search,
.cebel-cat-section.hidden-by-search {
    display: none !important;
}

/* Sepet paneli (drawer) */
.cebel-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.cebel-cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cebel-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: var(--card-bg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    z-index: 115;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.cebel-cart-drawer.is-open {
    transform: translateX(0);
}

/* Sepet drawer: modern başlık + liste + toplam */
.cebel-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.cebel-cart-header-inner {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.cebel-cart-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: 0.02em;
}

.cebel-cart-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.cebel-cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cebel-cart-close:hover,
.cebel-cart-close:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-heading);
}

.cebel-cart-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}

/* Sepet boş durumu */
.cebel-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 2rem 1rem;
    text-align: center;
}

.cebel-cart-empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cebel-cart-empty p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
}

.cebel-cart-empty-hint {
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    margin-top: 0.35rem !important;
    opacity: 0.85;
}

/* Sepet kalemi: kart görünümü, +/− ile adet */
.cebel-cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cebel-cart-item-info {
    grid-column: 1;
    min-width: 0;
}

.cebel-cart-item-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.cebel-cart-item-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cebel-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0.2rem;
}

.cebel-cart-item-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    color: var(--text-accent);
    background: rgba(212, 175, 55, 0.2);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.cebel-cart-item-btn:hover,
.cebel-cart-item-btn:focus {
    background: rgba(212, 175, 55, 0.35);
    transform: scale(1.05);
}

.cebel-cart-item-btn:active {
    transform: scale(0.98);
}

.cebel-cart-item-qty {
    min-width: 1.75em;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    text-align: center;
}

.cebel-cart-item-line {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-accent);
    text-align: right;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.25rem;
}

@media (min-width: 360px) {
    .cebel-cart-item-line {
        grid-column: 3;
        border-top: none;
        margin-top: 0;
        padding-top: 0;
        text-align: right;
    }
}

.cebel-cart-footer {
    padding: 1.15rem 1.25rem;
    padding-bottom: calc(1.15rem + env(safe-area-inset-bottom, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.cebel-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cebel-cart-total-row:last-child {
    margin-bottom: 0;
}

.cebel-cart-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.cebel-cart-total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-accent);
    letter-spacing: 0.02em;
}

.cebel-cart-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* 6. Alt navigasyon: arka plan #06140C, üst çizgi 1px rgba(255,255,255,0.05), aktif altın, pasif #9CA3AF */
.cebel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--footer-bg);
    padding: 0.65rem 0 calc(0.65rem + var(--safe-bottom));
    z-index: 40;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cebel-footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
}

.cebel-footer-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.35rem 0.25rem;
    color: var(--text-accent);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    transition: opacity 0.2s;
}

.cebel-footer-item:hover,
.cebel-footer-item:focus {
    opacity: 0.9;
}

.cebel-footer-item--active {
    color: var(--text-accent);
    font-weight: 600;
}

/* İkonlar: navbar yazı/ikon rengi var(--text-accent) */
.cebel-footer-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: inherit;
    vertical-align: middle;
}

/* Navbar ikonları: yazı rengi (altın) – currentColor mobilde siyah kalabildiği için doğrudan renk */
.cebel-footer-icon--home {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B8962E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'/%3E%3C/svg%3E");
}

.cebel-footer-icon--cart {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B8962E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 002 1.61h9.72a2 2 0 002-1.61L23 6H6'/%3E%3C/svg%3E");
}

.cebel-footer-item-cart {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    line-height: 1.2;
}

.cebel-footer-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.cebel-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: var(--footer-bg);
    background: var(--text-accent);
    border-radius: 999px;
}

.cebel-cart-badge:empty,
.cebel-cart-badge[aria-hidden="true"] { display: none; }

.cebel-footer-icon--phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B8962E' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.cebel-footer-icon--location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B8962E' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0116 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

@media (max-width: 360px) {
    .cebel-grid { gap: 0.7rem; }
    .cebel-card-body { padding: 12px 13px 14px; }
    .cebel-card-title { font-size: 0.875rem; }
    .cebel-card-desc { font-size: 11px; }
    .cebel-card-price { font-size: 0.9rem; }
}

@media (min-width: 400px) {
    .cebel-brand { font-size: 2rem; letter-spacing: 0.06em; }
    .cebel-main { padding: 1.15rem 1.25rem 1.85rem; }
    .cebel-grid { gap: 1rem; }
    .cebel-card-title { font-size: 1rem; }
    .cebel-card-price { font-size: 1rem; }
}
