@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900&family=Sora:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #E8380D;
    --primary-dark: #C42E09;
    --primary-light: #FFF2EE;
    --danger: #EF4444;
    --success: #10B981;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font: 'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
    --fire: #E8380D;
    --fire-soft: #FFF5F2;
    --fire-mid: #FF6B3D;
    --dark: #0D0F12;
    --ink: #0F172A;
    --body: #475569;
    --muted: #94A3B8;
    --ghost: #E2E8F0;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --green: #10B981;
    --green-bg: #ECFDF5;
    --gold: #F59E0B;
    --r: 18px;
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, .07), 0 1px 4px rgba(15, 23, 42, .04);
    --shadow-lg: 0 12px 36px rgba(15, 23, 42, .1), 0 4px 10px rgba(15, 23, 42, .04);
    --shadow-xl: 0 24px 64px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .06);
    --shadow-fire: 0 8px 32px rgba(232, 56, 13, .18);
    --transition: .25s cubic-bezier(.4, 0, .2, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--bg);
    font-family: var(--font);
    color: var(--body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -.015em;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition)
}

img {
    display: block;
    max-width: 100%
}

::selection {
    background: rgba(232, 56, 13, .12);
    color: var(--fire)
}

.h2-header {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .25s ease, background .3s;
}

.h2-header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08);
}

.h2-inner {
    display: flex;
    align-items: center;
    height: 64px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    gap: 12px;
}

.h2-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0
}

.h2-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none
}

.h2-logo-img {
    height: 34px;
    width: auto;
    border-radius: 6px;
    object-fit: contain
}

.h2-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #FF6B3D 0%, #E8380D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(232, 56, 13, .35);
    transition: transform .2s, box-shadow .2s;
}

.h2-logo:hover .h2-logo-mark {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 5px 16px rgba(232, 56, 13, .45)
}

.h2-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.6px
}

.h2-logo-text span {
    color: var(--fire);
    font-weight: 900
}

.h2-divider {
    width: 1px;
    height: 22px;
    background: var(--ghost);
    flex-shrink: 0
}

.h2-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--body);
    font-weight: 500;
    cursor: pointer;
    padding: 6px 11px;
    border-radius: 35px;
    border: 1px solid var(--ghost);
    background: var(--bg);
    transition: all .18s;
    max-width: 290px;
    white-space: nowrap;
    overflow: hidden;
    height: 40px;
}

.h2-loc:hover {
    border-color: var(--fire);
    color: var(--fire);
    background: var(--fire-soft)
}

.h2-loc i:first-child {
    color: var(--fire);
    font-size: 11px;
    flex-shrink: 0
}

.h2-loc span {
    overflow: hidden;
    text-overflow: ellipsis
}

.h2-loc .fa-angle-down {
    font-size: 9px;
    color: var(--muted);
    flex-shrink: 0
}

.h2-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px
}

.h2-search {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.h2-search input {
    width: 100%;
    height: 40px;
    border: 1.5px solid var(--ghost);
    border-radius: 999px;
    padding: 0 16px 0 42px;
    font-size: 13px;
    color: var(--ink);
    font-family: var(--font);
    outline: none;
    transition: all .2s;
    background: #f9fafb;
}

.h2-search input::placeholder {
    color: var(--muted)
}

.h2-search input:focus {
    border-color: var(--fire);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 56, 13, .1)
}

.h2-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px;
    pointer-events: none;
    transition: color .2s
}

.h2-search:focus-within i {
    color: var(--fire)
}

.h2-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    width: 272px;
}

.h2-btn {
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid var(--ghost);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--body);
    font-size: 13px;
    padding: 0 13px;
    cursor: pointer;
    transition: all .18s;
    font-family: var(--font);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    width: 100px;
    border-radius: 10px;
}

.h2-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--bg)
}

.h2-btn-icon {
    width: 50px;
    padding: 0
}

.h2-btn-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.h2-btn-dark:hover {
    background: #1f2937;
    border-color: #1f2937;
    color: #fff
}

.h2-btn-accent {
    background: var(--fire);
    border-color: var(--fire);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(232, 56, 13, .25);
    width: 50px;
}

.h2-btn-accent:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .35);
    transform: translateY(-1px)
}

.h2-cbadge {
    position: relative
}

/* User dropdown */
.h2-user-wrap {
    position: relative;
}

.h2-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .06);
    border: 1px solid var(--ghost);
    min-width: 228px;
    z-index: 300;
    display: none;
    overflow: hidden;
    animation: dropIn .18s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(.98)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.h2-dropdown.active,
.h2-dropdown.show {
    display: block;
}

.h2-dropdown-user {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ghost);
    background: var(--fire-soft);
}

.h2-dropdown-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
}

.h2-dropdown-email {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.h2-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--body) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: .15s;
    font-weight: 500;
}

.h2-dropdown a:hover {
    background: var(--bg);
    color: var(--ink) !important;
    padding-left: 20px;
}

.h2-dropdown a i {
    width: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.h2-dropdown-divider {
    height: 1px;
    background: var(--ghost);
    margin: 4px 0;
}

.h2-dropdown-danger {
    color: var(--danger) !important;
}

.h2-dropdown-danger i {
    color: var(--danger) !important;
}

/* Notif badge */
.h2-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: #fff;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
    padding: 0 3px;
}

/* Cart count */
.h2-cart-count,
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--fire);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding: 0 3px;
}

/* Location Modal */
.yg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.yg-modal-overlay.active,
.yg-modal-overlay.show {
    display: flex;
}

.yg-modal {
    background: #fff;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 8px 20px rgba(0, 0, 0, .08);
    animation: yg-modal-in .22s cubic-bezier(0, 0, .2, 1);
}

@keyframes yg-modal-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.yg-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--ghost);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 18px 18px 0 0;
}

.yg-modal-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.yg-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: .15s;
}

.yg-modal-close:hover {
    background: var(--bg);
    color: var(--ink);
}

.yg-modal-body {
    padding: 20px 22px;
}

.yg-address-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 8px;
    border: 1.5px solid var(--ghost);
    transition: all .18s;
}

.yg-address-option:hover {
    border-color: var(--fire);
    background: var(--fire-soft);
}

/* Search results */
.yg-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .06);
    border: 1px solid var(--ghost);
    max-height: 340px;
    overflow-y: auto;
    z-index: 200;
    display: none;
}

.yg-search-results.active,
.yg-search-results.show {
    display: block;
}

/* Layout */
.osahan-home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1480px;
    margin: auto;
    background: #FFF0;
    box-shadow: none !important;
}

.osahan-main {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .h2-inner {
        padding: 8px 14px;
        height: auto;
        flex-wrap: wrap;
    }

    .h2-divider,
    .h2-loc {
        display: none;
    }

    .h2-logo-text {
        font-size: 15px;
    }

    .h2-left {
        flex: 1;
    }

    .h2-center {
        order: 3;
        flex-basis: 100%;
        padding: 0;
        padding-top: 8px;
    }

    .h2-center .h2-search input {
        height: 38px;
        font-size: 12.5px;
    }

    .h2-right {
        flex-shrink: 0;
        width: 100px;
    }

    /* Mobilde favori, bildirim, user butonlarını gizle */
    .h2-btn-fav-mob,
    .h2-btn-notif-mob,
    .h2-user-wrap,
    .h2-btn-login-mob {
        display: none !important;
    }
}

/* === SLIDER + KATEGORİ === */
.v1-wrap {
    background: transparent;
    position: relative
}

.v1-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #fff0;
    pointer-events: none;
    z-index: 1;
    box-shadow: none !important;
    border: none !important;
}

.v1-area {
    padding: 28px 48px 0;
    max-width: 1480px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.v1-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.v1-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    box-sizing: border-box;
    margin-right: 16px
}

.v1-card {
    height: 280px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 32px rgba(15, 23, 42, .08)
}

.v1-card a,
.v1-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.v1-card:hover {
    box-shadow: 0 20px 56px rgba(15, 23, 42, .14);
    transform: translateY(-6px) scale(1.005)
}

.v1-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    position: relative;
    overflow: hidden;
    text-decoration: none
}

.v1-bg.a {
    background: linear-gradient(150deg, #FF6B35 0%, #E8380D 60%, #C42E09 100%)
}

.v1-bg.b {
    background: linear-gradient(150deg, #7C3AED 0%, #6D28D9 50%, #4C1D95 100%)
}

.v1-bg::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    animation: v1float 8s ease-in-out infinite
}

@keyframes v1float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(10px, -10px)
    }
}

.v1-bg::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    animation: v1float 6s ease-in-out infinite reverse
}

.v1-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 18px;
    padding: 14px 18px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .4)
}

.v1-float-n {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--fire)
}

.v1-float-l {
    font-size: 9px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px
}

.v1-cnt {
    position: relative;
    z-index: 1
}

.v1-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    padding: 5px 14px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: none
}

.v1-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px
}

.v1-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
    margin-bottom: 16px
}

.v1-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--ink);
    padding: 11px 24px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.v1-cta:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    transform: translateY(-1px)
}

.dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 0 0
}

.dt {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ghost);
    border: none;
    cursor: pointer;
    transition: all .25s
}

.dt.on {
    background: var(--fire);
    width: 24px;
    border-radius: 3px
}

.v1-cats {
    padding: 24px 0 28px;
    max-width: 1480px;
    margin: 0 auto;
    position: relative
}

.sh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 40px
}

.sh-l {
    display: flex;
    align-items: center;
    gap: 10px
}

.sh-ic {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--fire-soft);
    color: var(--fire)
}

.sh-t {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink)
}

.sh-sub {
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 1px
}

.sh-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    transition: all .2s
}

.sh-link:hover {
    color: var(--fire)
}

.v1-scroll-wrap {
    position: relative;
    padding: 0 48px
}

.v1-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.v1-scroll::-webkit-scrollbar {
    display: none
}

.v1-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 12px;
    color: var(--ink);
    transition: all .25s;
    box-shadow: var(--shadow-md)
}

.v1-arrow:hover {
    color: var(--fire);
    border-color: rgba(232, 56, 13, .15);
    box-shadow: var(--shadow-lg)
}

.v1-arrow.left {
    left: 8px
}

.v1-arrow.right {
    right: 8px
}

.v1-c {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    background: var(--white);
    border: 1.5px solid var(--ghost);
    border-radius: 18px;
    padding: 12px 22px 12px 12px;
    transition: all .35s var(--ease-spring);
    box-shadow: var(--shadow-xs)
}

.v1-c:hover {
    background: var(--white);
    border-color: rgba(232, 56, 13, .2);
    box-shadow: 0 8px 24px rgba(232, 56, 13, .08);
    transform: translateY(-3px)
}

.v1-ring {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg)
}

.v1-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.v1-ring i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--fire)
}

.v1-cn {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap
}

/* === WRAPPER === */
.w {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px
}

/* === SECTION TITLE BAR === */
.tb {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-top: 56px
}

.tb .bar {
    width: 4px;
    height: 32px;
    border-radius: 4px;
    background: linear-gradient(180deg, #E8380D, #FF6B35);
    box-shadow: 0 4px 12px rgba(232, 56, 13, .2)
}

.tb h2 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    flex: 1;
    color: var(--ink);
    letter-spacing: -.04em
}

.tb a {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 10px;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent
}

.tb a:hover {
    color: var(--fire);
    background: var(--fire-soft)
}

/* === RESTORANLAR - 4 column cards === */
.rg3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.r3 {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    transition: all .4s var(--ease-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(15, 23, 42, .04);
    box-shadow: var(--shadow-sm)
}

.r3:hover {
    box-shadow: 0 20px 56px rgba(15, 23, 42, .12), 0 4px 12px rgba(15, 23, 42, .04);
    transform: translateY(-6px);
    border-color: transparent
}

.r3 .r3i {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.r3 .r3i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1)
}

.r3:hover .r3i img {
    transform: scale(1.06)
}

.r3 .r3i .overlay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .55));
    display: flex;
    align-items: center;
    gap: 6px
}

.r3-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #CBD5E1;
    transition: all .35s var(--ease-spring);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.r3-fav:hover {
    background: #fff;
    color: var(--fire);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .15)
}

.r3-fav.active {
    color: var(--fire);
    background: rgba(255, 255, 255, .98)
}

.r3-fav.active i {
    animation: heartBounce .4s
}

@keyframes heartBounce {
    0% {
        transform: scale(1)
    }

    30% {
        transform: scale(1.3)
    }

    60% {
        transform: scale(.9)
    }

    100% {
        transform: scale(1)
    }
}

.r3 .tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .01em
}

.tag-time {
    background: rgba(255, 255, 255, .95);
    color: var(--ink);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.tag-off {
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    color: #fff;
    box-shadow: 0 2px 8px rgba(232, 56, 13, .2)
}

.tag-new {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #fff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, .2)
}

.tag-free {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: #78350F;
    box-shadow: 0 2px 8px rgba(245, 158, 11, .2)
}

.r3 .r3b {
    padding: 20px 22px 22px
}

.r3 .r3-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}

.r3 .r3-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em
}

.r3 .r3-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    background: var(--bg);
    padding: 6px 12px;
    border-radius: 10px
}

.r3 .r3-rating svg {
    color: var(--gold)
}

.r3 .r3-cats {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.4
}

.r3 .r3-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--body);
    padding-top: 14px;
    border-top: 1px solid var(--ghost)
}

.r3 .r3-foot .r3-min {
    font-weight: 500;
    color: var(--muted)
}

.r3 .r3-foot .r3-del {
    font-weight: 600;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px
}

/* === EN BEĞENİLEN ÜRÜNLER === */
.pg3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.p3 {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s var(--ease-smooth);
    position: relative;
    border: 1px solid rgba(15, 23, 42, .04);
    box-shadow: var(--shadow-sm)
}

.p3:hover {
    box-shadow: 0 20px 56px rgba(15, 23, 42, .12);
    transform: translateY(-6px);
    border-color: transparent
}

.p3 .p3i {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative
}

.p3 .p3i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.p3:hover .p3i img {
    transform: scale(1.06)
}

.p3 .p3-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 0
}

.p3 .p3-likes {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fire);
    display: flex;
    align-items: center;
    gap: 4px
}

.p3 .p3b {
    padding: 14px 16px 18px
}

.p3 .p3-nm {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ink);
    letter-spacing: -.02em
}

.p3 .p3-rs {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 12px
}

.p3 .p3-ft {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.p3 .p3-pr {
    font-size: 16px;
    font-weight: 800;
    color: var(--fire)
}

.p3 .p3-old {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400
}

.p3 .p3-add {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--ink);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease-spring)
}

.p3 .p3-add:hover {
    background: var(--fire);
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-fire)
}

/* === RESPONSIVE === */
@media(max-width:1100px) {
    .rg3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .pg3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:700px) {
    .rg3 {
        grid-template-columns: 1fr
    }

    .pg3 {
        grid-template-columns: repeat(2, 1fr)
    }

    .v1-area {
        padding: 16px 16px 0
    }

    .v1-slide {
        gap: 8px;
        margin-right: 8px
    }

    .v1-card {
        height: 200px;
        border-radius: 16px
    }

    .v1-scroll-wrap {
        padding: 0 16px
    }

    .sh {
        padding: 0 16px
    }

    .w {
        padding: 0 16px
    }
}

.restaurant {
    border-bottom: none;
    padding-bottom: 0
}

.kampanyalar {
    border-bottom: none;
    padding-bottom: 0
}

.pop {
    border-bottom: none;
    padding-bottom: 0
}

/* === FOOTER === */
.ft {
    background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
    color: var(--body);
    margin-top: 100px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: none
}

.ft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ghost), transparent)
}

.ft-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 72px 48px 52px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 52px
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px
}

.ft-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(232, 56, 13, .2)
}

.ft-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain
}

.ft-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    display: none !important
}

.ft-logo-text span {
    color: var(--fire);
    font-weight: 900
}

.ft-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px
}

.ft-features {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ft-feat {
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px
}

.ft-feat i {
    color: var(--green);
    font-size: 11px
}

.ft-col {
    display: flex;
    flex-direction: column
}

.ft-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.ft-col a {
    font-size: 13.5px;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 0;
    transition: .25s;
    display: block
}

.ft-col a:hover {
    color: var(--fire);
    padding-left: 4px
}

.ft-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.ft-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fire);
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .04)
}

.ft-contact-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px
}

.ft-contact a {
    font-size: 13.5px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600
}

.ft-contact a:hover {
    color: var(--fire)
}

.ft-social-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 12px;
    letter-spacing: .6px;
    text-transform: uppercase
}

.ft-social {
    display: flex;
    gap: 10px
}

.ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
    transition: all .35s var(--ease-spring);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .04)
}

.ft-social a:hover {
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(232, 56, 13, .25);
    transform: translateY(-3px) scale(1.05)
}

.ft-social a.ft-social-disabled {
    opacity: .3;
    pointer-events: none;
    cursor: default
}

.ft-bottom {
    border-top: none;
    position: relative
}

.ft-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ghost), transparent)
}

.ft-bottom-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 24px 48px;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted)
}

@media(max-width:900px) {
    .ft-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:600px) {
    .ft-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 20px 28px
    }
}

/* === BLOG === */
.blog-search {
    position: relative;
    max-width: 400px;
    margin-bottom: 24px
}

.blog-search input {
    width: 100%;
    height: 44px;
    border: 1.5px solid var(--ghost);
    border-radius: 10px;
    padding: 0 16px 0 40px;
    font-size: 13px;
    font-family: var(--font);
    background: var(--white);
    outline: none;
    transition: .2s
}

.blog-search input:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 3px rgba(255, 79, 31, .08)
}

.blog-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 13px
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted)
}

.blog-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: .3
}

.blog-empty p {
    font-size: 15px
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    transition: all .25s;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block
}

.blog-card:hover {
    border-color: var(--fire);
    box-shadow: 0 8px 28px rgba(255, 79, 31, .08);
    transform: translateY(-3px)
}

.blog-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06)
}

.blog-card-body {
    padding: 16px 18px 20px
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px
}

.blog-card-meta i {
    margin-right: 3px
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-card-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--fire);
    display: flex;
    align-items: center;
    gap: 5px
}

.blog-pag {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px
}

.blog-pag-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: var(--white);
    border: 1px solid var(--ghost);
    text-decoration: none;
    transition: .2s
}

.blog-pag-btn:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.blog-pag-btn.active {
    background: var(--fire);
    color: #fff;
    border-color: var(--fire)
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fire);
    text-decoration: none;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--fire-soft);
    transition: .2s
}

.blog-back-btn:hover {
    background: var(--fire);
    color: #fff
}

.blog-article {
    max-width: 800px;
    margin: 0 auto
}

.blog-article-img {
    width: 100%;
    height: 360px;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 24px
}

.blog-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog-article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px
}

.blog-article-meta i {
    margin-right: 4px
}

.blog-article-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 24px
}

.blog-article-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--body)
}

.blog-article-content p {
    margin-bottom: 16px
}

.blog-article-content h2,
.blog-article-content h3 {
    color: var(--ink);
    margin: 24px 0 12px;
    font-weight: 700
}

.blog-article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0
}

.blog-article-content a {
    color: var(--fire);
    text-decoration: underline
}

@media(max-width:900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-article-title {
        font-size: 22px
    }

    .blog-article-img {
        height: 220px
    }
}

/* === LOGIN / REGISTER === */
.lg-page {
    display: flex;
    min-height: 100vh
}

.lg-left {
    width: 45%;
    background: url('../images/login-bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px;
    position: relative;
    overflow: hidden
}

.lg-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 23, 42, .88) 0%, rgba(2, 6, 23, .92) 40%, rgba(15, 23, 42, .85) 100%);
    z-index: 0
}

.lg-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 80%, rgba(232, 56, 13, .1) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(232, 56, 13, .06) 0%, transparent 50%);
    z-index: 0
}

.lg-left-content {
    position: relative;
    z-index: 1
}

.lg-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 80px
}

.lg-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(232, 56, 13, .3)
}

.lg-logo-img {
    height: 44px;
    width: auto;
    border-radius: 12px;
    object-fit: contain
}

.lg-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    display: none !important
}

.lg-logo-text span {
    color: var(--fire);
    font-weight: 800
}

.lg-hero {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -.04em
}

.lg-hero span {
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lg-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.85;
    max-width: 400px;
    margin-bottom: 56px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2)
}

.lg-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1
}

.lg-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em
}

.lg-stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
    font-weight: 500
}

.lg-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .08)
}

.lg-left-footer {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    position: relative;
    z-index: 1
}

.lg-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px;
    background: #fff
}

.lg-form-wrap {
    width: 100%;
    max-width: 420px
}

.lg-form-header {
    margin-bottom: 36px
}

.lg-form-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -.03em
}

.lg-form-header p {
    font-size: 15px;
    color: var(--muted)
}

.lg-alert {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 13.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5
}

.lg-alert i {
    margin-top: 2px
}

.lg-alert-danger {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA
}

.lg-alert-success {
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #BBF7D0
}

.lg-field {
    margin-bottom: 22px
}

.lg-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px
}

.lg-input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.lg-input-wrap i {
    position: absolute;
    left: 18px;
    font-size: 14px;
    color: var(--muted);
    transition: color .25s
}

.lg-input-wrap input {
    width: 100%;
    height: 54px;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 0 52px 0 48px;
    font-size: 14.5px;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: all .25s cubic-bezier(.4, 0, .2, 1)
}

.lg-input-wrap input::placeholder {
    color: #94A3B8
}

.lg-input-wrap input:focus {
    border-color: var(--fire);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 56, 13, .08), 0 4px 16px rgba(232, 56, 13, .04)
}

.lg-input-wrap input:focus~i,
.lg-input-wrap input:focus+i {
    color: var(--fire)
}

.lg-eye {
    position: absolute;
    right: 6px;
    background: none;
    border: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 14px;
    border-radius: 12px;
    transition: .2s
}

.lg-eye:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, .04)
}

.lg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.lg-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: var(--body);
    margin-bottom: 24px;
    cursor: pointer
}

.lg-check input {
    margin-top: 2px;
    accent-color: var(--fire);
    width: 16px;
    height: 16px
}

.lg-check a {
    color: var(--fire);
    font-weight: 600;
    text-decoration: none
}

.lg-check a:hover {
    text-decoration: underline
}

.lg-submit {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    letter-spacing: -.01em;
    box-shadow: 0 4px 16px rgba(232, 56, 13, .2)
}

.lg-submit:hover {
    box-shadow: 0 8px 32px rgba(232, 56, 13, .3);
    transform: translateY(-2px)
}

.lg-submit:active {
    transform: translateY(0) scale(.98)
}

.lg-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    color: var(--muted);
    font-size: 12.5px
}

.lg-divider::before,
.lg-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ghost)
}

.lg-alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    font-family: var(--font)
}

.lg-alt-btn:hover {
    border-color: var(--fire);
    color: var(--fire);
    background: var(--fire-soft);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .06)
}

.lg-back {
    text-align: center;
    margin-top: 24px
}

.lg-back a {
    font-size: 13.5px;
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: .25s
}

.lg-back a:hover {
    color: var(--fire);
    background: var(--fire-soft)
}

@media(max-width:900px) {
    .lg-page {
        flex-direction: column
    }

    .lg-left {
        width: 100%;
        padding: 36px;
        min-height: auto
    }

    .lg-hero {
        font-size: 36px
    }

    .lg-right {
        padding: 36px
    }
}

@media(max-width:500px) {
    .lg-left {
        padding: 24px
    }

    .lg-right {
        padding: 24px
    }

    .lg-row {
        grid-template-columns: 1fr
    }

    .lg-stats {
        flex-wrap: wrap;
        gap: 16px
    }

    .lg-hero {
        font-size: 32px
    }
}

/* === RESTORAN DETAY === */
.rs-hero {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--ghost);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.rs-cover {
    width: 100%;
    height: 250px;
    overflow: hidden
}

.rs-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rs-cover-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg)
}

.rs-cover-empty i {
    font-size: 48px;
    color: var(--ghost)
}

.rs-hero-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px
}

.rs-hero-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.rs-avatar {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    margin-top: -44px;
    background: var(--white);
    flex-shrink: 0
}

.rs-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rs-name {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink)
}

.rs-cats-text {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px
}

.rs-fav-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--ghost);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--muted);
    transition: all .2s
}

.rs-fav-btn:hover,
.rs-fav-btn.active {
    border-color: var(--fire);
    color: var(--fire);
    background: var(--fire-soft)
}

.rs-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

.rs-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--ghost);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.rs-info-item small {
    color: var(--muted);
    font-weight: 400
}

.rs-info-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted)
}

.rs-info-icon.green {
    background: var(--green-bg);
    color: var(--green)
}

.rs-info-icon.red {
    background: #FEF2F2;
    color: #DC2626
}

.rs-info-icon.gold {
    background: #FFF8E1;
    color: var(--gold)
}

.rs-desc {
    font-size: 13px;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--ghost)
}

.rs-closed {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    margin-bottom: 16px
}

.rs-closed i {
    font-size: 20px;
    color: #DC2626
}

.rs-closed-title {
    font-size: 14px;
    font-weight: 700;
    color: #DC2626
}

.rs-closed-sub {
    font-size: 12px;
    color: #DC2626;
    opacity: .7
}

.rs-cat-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: sticky;
    top: 72px;
    z-index: 50;
    background: var(--bg);
    padding-top: 8px
}

.rs-cat-nav::-webkit-scrollbar {
    display: none
}

.rs-cat-pill {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: var(--white);
    border: 1px solid var(--ghost);
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap
}

.rs-cat-pill:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.rs-cat-pill.active {
    background: var(--fire);
    color: #fff;
    border-color: var(--fire)
}

.rs-cat-pill small {
    opacity: .6;
    margin-left: 2px
}

.rs-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.rs-product {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid #bababa47;
    padding: 12px;
    transition: all .25s;
    cursor: pointer
}

.rs-product:hover {
    border-color: var(--fire);
    box-shadow: 0 4px 16px rgba(255, 79, 31, .06)
}

.rs-product-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0
}

.rs-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.rs-product:hover .rs-product-img img {
    transform: scale(1.06)
}

.rs-product-noimg {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.rs-product-noimg i {
    font-size: 22px;
    color: var(--ghost)
}

.rs-product-body {
    flex: 1;
    min-width: 0
}

.rs-product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.rs-product-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.rs-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.rs-product-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--fire)
}

.rs-old-price {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 4px;
    font-weight: 400
}

.rs-add-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--dark);
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.rs-add-btn:hover {
    background: var(--fire);
    transform: scale(1.1)
}

.rs-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted)
}

.rs-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: .3
}

.rs-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.rs-review {
    background: var(--white);
    border-radius: var(--r);
    padding: 16px;
    border: 1px solid var(--ghost)
}

.rs-review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.rs-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--fire-soft);
    color: var(--fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0
}

.rs-review-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink)
}

.rs-review-stars {
    display: flex;
    gap: 1px;
    margin-top: 2px
}

.rs-review-date {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted)
}

.rs-review-text {
    font-size: 13px;
    color: var(--body);
    line-height: 1.6
}

.rs-review-reply {
    margin-top: 10px;
    padding: 10px 12px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 12px;
    color: var(--body)
}

.rs-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ghost)
}

.rs-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--ghost);
    background: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: var(--ink)
}

.rs-qty-btn:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.rs-qty-wrap span {
    font-size: 18px;
    font-weight: 700;
    min-width: 30px;
    text-align: center
}

.rs-opt-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--ghost);
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: .15s;
    font-size: 13px
}

.rs-opt-label:hover {
    border-color: var(--fire);
    background: var(--fire-soft)
}

.rs-opt-label input {
    accent-color: var(--fire)
}

@media(max-width:900px) {
    .rs-menu-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .rs-reviews {
        grid-template-columns: 1fr
    }

    .rs-cover {
        height: 180px
    }
}

@media(max-width:600px) {
    .rs-menu-grid {
        grid-template-columns: 1fr
    }
}

/* === GENEL SAYFA YAPISI === */
.pg-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 32px 56px
}

.pg-wrap-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 32px 56px
}

.pg-wrap-md {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 32px 56px
}

.pg-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px
}

.pg-head h1 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink)
}

.pg-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid var(--ghost);
    transition: .2s;
    background: var(--white)
}

.pg-back:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.pg-empty {
    text-align: center;
    padding: 80px 20px
}

.pg-empty i {
    font-size: 56px;
    color: var(--ghost);
    margin-bottom: 16px;
    display: block
}

.pg-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px
}

.pg-empty p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px
}

.pg-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 10px;
    background: var(--fire);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 2px 8px rgba(232, 56, 13, .25)
}

.pg-empty-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(232, 56, 13, .3)
}

/* === KART S�STEM� === */
.cd {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 14px;
    overflow: hidden;
    transition: .2s
}

.cd:hover {
    border-color: rgba(0, 0, 0, .08)
}

.cd-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ghost);
    background: var(--bg)
}

.cd-head h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px
}

.cd-head h3 i {
    color: var(--fire);
    font-size: 13px
}

.cd-body {
    padding: 18px
}

.cd-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px
}

.cd-row+.cd-row {
    border-top: 1px solid var(--bg)
}

.cd-label {
    color: var(--muted)
}

.cd-value {
    font-weight: 600;
    color: var(--ink)
}

.cd-divider {
    height: 1px;
    background: var(--ghost);
    margin: 12px 0
}

.cd-total {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 800
}

.cd-total .cd-value {
    color: var(--fire)
}

/* === FORM ELEMENTLER� === */
.fm-group {
    margin-bottom: 16px
}

.fm-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px
}

.fm-input {
    width: 100%;
    height: 46px;
    border: 1.5px solid var(--ghost);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: .2s
}

.fm-input:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 3px rgba(255, 79, 31, .08)
}

.fm-input::placeholder {
    color: #C0C3CC
}

select.fm-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0A3AD' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px
}

textarea.fm-input {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 80px
}

.fm-hint {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}

.fm-icon-wrap {
    position: relative
}

.fm-icon-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--muted)
}

.fm-icon-wrap .fm-input {
    padding-left: 40px
}

/* === BUTONLAR === */
.btn-f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none
}

.btn-f.full {
    width: 100%
}

.btn-f.sm {
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 8px
}

.btn-f.primary {
    background: var(--fire);
    color: #fff
}

.btn-f.primary:hover {
    background: #E8380D;
    box-shadow: 0 8px 24px rgba(255, 79, 31, .2);
    transform: translateY(-1px)
}

.btn-f.secondary {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--ghost)
}

.btn-f.secondary:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.btn-f.danger {
    background: #DC2626;
    color: #fff
}

.btn-f.danger:hover {
    background: #B91C1C
}

.btn-f.ghost {
    background: transparent;
    color: var(--muted);
    border: 1.5px solid var(--ghost)
}

.btn-f.ghost:hover {
    border-color: var(--ink);
    color: var(--ink)
}

.btn-f.accent-soft {
    background: var(--fire-soft);
    color: var(--fire)
}

.btn-f.accent-soft:hover {
    background: var(--fire);
    color: #fff
}

/* === BADGE / TAB === */
.badge-f {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2px
}

.badge-f.green {
    background: var(--green-bg);
    color: var(--green)
}

.badge-f.red {
    background: #FEF2F2;
    color: #DC2626
}

.badge-f.gold {
    background: #FFF8E1;
    color: #D97706
}

.badge-f.blue {
    background: #EFF6FF;
    color: #2563EB
}

.badge-f.gray {
    background: var(--bg);
    color: var(--muted)
}

.badge-f.fire {
    background: var(--fire-soft);
    color: var(--fire)
}

.tabs-f {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.tabs-f::-webkit-scrollbar {
    display: none
}

.tab-f {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: var(--white);
    border: 1px solid var(--ghost);
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap
}

.tab-f:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.tab-f.active {
    background: var(--fire);
    color: #fff;
    border-color: var(--fire)
}

/* === SEPET === */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bg)
}

.cart-item:last-child {
    border-bottom: none
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cart-item-body {
    flex: 1;
    min-width: 0
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px
}

.cart-item-opts {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px
}

.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--fire)
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1.5px solid var(--ghost);
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: var(--ink)
}

.cart-qty-btn:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.cart-qty span {
    font-size: 14px;
    font-weight: 700;
    min-width: 20px;
    text-align: center
}

.cart-sticky {
    position: sticky;
    top: 96px
}

@media(max-width:900px) {
    .cart-layout {
        grid-template-columns: 1fr
    }
}

/* === CHECKOUT === */
.co-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start
}

.co-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1.5px solid var(--ghost);
    border-radius: 10px;
    cursor: pointer;
    transition: .15s;
    margin-bottom: 8px
}

.co-option:hover {
    border-color: var(--fire);
    background: var(--fire-soft)
}

.co-option input {
    margin-top: 3px;
    accent-color: var(--fire)
}

.co-option input:checked~div .co-opt-title {
    color: var(--fire)
}

.co-opt-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.co-opt-sub {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px
}

.co-coupon-row {
    display: flex;
    gap: 8px
}

.co-coupon-row .fm-input {
    flex: 1
}

.co-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px
}

@media(max-width:900px) {
    .co-layout {
        grid-template-columns: 1fr
    }
}

/* === S�PAR��LER === */
.order-card {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 10px;
    transition: .2s;
    text-decoration: none;
    color: inherit
}

.order-card:hover {
    border-color: var(--fire);
    box-shadow: 0 4px 16px rgba(255, 79, 31, .06)
}

.order-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center
}

.order-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.order-card-logo i {
    font-size: 18px;
    color: var(--muted)
}

.order-card-body {
    flex: 1;
    min-width: 0
}

.order-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.order-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
}

.order-card-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px
}

.order-card-items {
    font-size: 12px;
    color: var(--body);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.order-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.order-card-total {
    font-size: 16px;
    font-weight: 800;
    color: var(--fire)
}

.order-card-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

/* === S�PAR�� TAK�P === */
.track-steps {
    position: relative;
    padding: 0 0 0 40px
}

.track-step {
    position: relative;
    padding: 0 0 32px 28px
}

.track-step:last-child {
    padding-bottom: 0
}

.track-step::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ghost)
}

.track-step:last-child::before {
    display: none
}

.track-step.done::before {
    background: var(--green)
}

.track-dot {
    position: absolute;
    left: -52px;
    top: -2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--ghost);
    transition: all .3s
}

.track-step.done .track-dot {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.track-step.now .track-dot {
    background: var(--fire);
    border-color: var(--fire);
    color: #fff;
    box-shadow: 0 0 0 6px var(--fire-soft);
    animation: trackPulse 2s infinite
}

@keyframes trackPulse {

    0%,
    100% {
        box-shadow: 0 0 0 6px var(--fire-soft)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(232, 56, 13, .1)
    }
}

.track-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted)
}

.track-step.done .track-label,
.track-step.now .track-label {
    color: var(--ink)
}

.track-time {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

/* Yatay Modern Tracker */
.hz-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 8px
}

.hz-tracker::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 28px;
    right: 28px;
    height: 3px;
    background: var(--ghost);
    border-radius: 2px;
    z-index: 0
}

.hz-tracker-fill {
    position: absolute;
    top: 20px;
    left: 28px;
    height: 3px;
    background: var(--fire);
    border-radius: 2px;
    z-index: 1;
    transition: width .8s ease
}

.hz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 80px
}

.hz-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--ghost);
    transition: all .4s;
    margin-bottom: 8px
}

.hz-step.done .hz-dot {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.hz-step.now .hz-dot {
    background: var(--fire);
    border-color: var(--fire);
    color: #fff;
    box-shadow: 0 0 0 6px var(--fire-soft);
    animation: hzPulse 2s infinite
}

@keyframes hzPulse {

    0%,
    100% {
        box-shadow: 0 0 0 6px var(--fire-soft)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(232, 56, 13, .08)
    }
}

.hz-step-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
    transition: color .3s
}

.hz-step.done .hz-step-label {
    color: var(--green)
}

.hz-step.now .hz-step-label {
    color: var(--fire);
    font-weight: 800
}

.hz-status-card {
    text-align: center;
    padding: 28px 20px;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(232, 56, 13, .04) 0%, rgba(232, 56, 13, .01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(232, 56, 13, .08)
}

.hz-status-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--fire);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(232, 56, 13, .2)
}

.hz-status-icon i {
    font-size: 26px;
    color: #fff
}

.hz-status-icon.done-icon {
    background: var(--green);
    box-shadow: 0 4px 16px rgba(16, 185, 129, .2)
}

.hz-status-text {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink)
}

.hz-status-time {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

.hz-status-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px
}

@media(max-width:480px) {
    .hz-dot {
        width: 32px;
        height: 32px;
        font-size: 12px
    }

    .hz-step-label {
        font-size: 9px
    }

    .hz-status-card {
        padding: 20px 16px
    }

    .hz-status-icon {
        width: 52px;
        height: 52px
    }

    .hz-status-icon i {
        font-size: 22px
    }

    .hz-status-text {
        font-size: 16px
    }
}

/* === PROF�L === */
.pf-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px
}

.pf-avatar-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ghost);
    margin-bottom: 10px
}

.pf-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pf-avatar-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--fire-soft);
    color: var(--fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px
}

.pf-menu {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pf-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: .2s;
    border: 1px solid var(--ghost);
    background: var(--white)
}

.pf-menu-item:hover {
    border-color: var(--fire);
    color: var(--fire);
    background: var(--fire-soft)
}

.pf-menu-item i {
    width: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px
}

.pf-menu-item.danger {
    color: #DC2626;
    border-color: #FECACA
}

.pf-menu-item.danger i {
    color: #DC2626
}

.pf-menu-item.danger:hover {
    background: #FEF2F2
}

/* === B�LD�R�MLER === */
.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 8px;
    cursor: pointer;
    transition: .2s
}

.notif-item:hover {
    border-color: var(--fire);
    box-shadow: 0 2px 12px rgba(255, 79, 31, .06)
}

.notif-item.unread {
    border-left: 3px solid var(--fire);
    background: var(--fire-soft)
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--muted)
}

.notif-item.unread .notif-icon {
    background: var(--fire-soft);
    color: var(--fire)
}

.notif-body {
    flex: 1;
    min-width: 0
}

.notif-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px
}

.notif-item.unread .notif-title {
    font-weight: 700
}

.notif-msg {
    font-size: 12px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.notif-time {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fire);
    flex-shrink: 0;
    margin-top: 6px
}

/* === KUPONLAR === */
.coupon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden
}

.coupon-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--fire)
}

.coupon-card-body {
    flex: 1
}

.coupon-code {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--fire);
    letter-spacing: .5px
}

.coupon-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 2px
}

.coupon-meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.coupon-meta span {
    display: flex;
    align-items: center;
    gap: 3px
}

.coupon-copy {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--ghost);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--muted);
    transition: .2s;
    flex-shrink: 0
}

.coupon-copy:hover {
    border-color: var(--fire);
    color: var(--fire);
    background: var(--fire-soft)
}

/* === ADRESLER === */
.addr-card {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 10px;
    transition: .2s
}

.addr-card.default {
    border-color: var(--fire);
    background: var(--fire-soft)
}

.addr-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--muted)
}

.addr-card.default .addr-icon {
    background: var(--fire);
    color: #fff
}

.addr-body {
    flex: 1;
    min-width: 0
}

.addr-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px
}

.addr-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

.addr-actions {
    display: flex;
    gap: 6px;
    margin-top: 8px
}

/* === DESTEK === */
.ticket-card {
    display: block;
    padding: 16px 18px;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: .2s
}

.ticket-card:hover {
    border-color: var(--fire);
    box-shadow: 0 4px 16px rgba(255, 79, 31, .06)
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px
}

.ticket-subject {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
}

.ticket-meta {
    font-size: 12px;
    color: var(--muted)
}

.chat-msg {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bg)
}

.chat-msg.mine {
    background: var(--fire-soft)
}

.chat-msg.theirs {
    background: #EFF6FF
}

.chat-msg-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 12px
}

.chat-msg-sender {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px
}

.chat-msg-time {
    color: var(--muted)
}

.chat-msg-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
    white-space: pre-wrap
}

/* === FAVOR�LER === */
.fav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.fav-card {
    position: relative
}

.fav-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #DC2626;
    z-index: 2;
    transition: .2s
}

.fav-remove:hover {
    background: #DC2626;
    color: #fff;
    transform: scale(1.1)
}

@media(max-width:1100px) {
    .fav-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .fav-grid {
        grid-template-columns: 1fr
    }
}

/* === DE�ERLEND�RMELER === */
.review-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--ghost);
    padding: 16px 18px;
    margin-bottom: 10px
}

.review-card-head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px
}

.review-card-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0
}

.review-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
}

.review-stars {
    display: flex;
    gap: 1px
}

.review-card-date {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted)
}

.review-card-text {
    font-size: 13px;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 6px
}

.review-card-ratings {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    gap: 12px
}

.review-card-reply {
    margin-top: 10px;
    padding: 10px 12px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 12px;
    color: var(--body)
}

/* === �DEME === */
.pay-amount {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1d28 100%);
    border-radius: var(--r);
    color: #fff;
    margin-bottom: 20px
}

.pay-amount-label {
    font-size: 12px;
    color: #8B8FA3;
    margin-bottom: 4px
}

.pay-amount-value {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--fire)
}

.pay-amount-sub {
    font-size: 12px;
    color: #8B8FA3;
    margin-top: 4px
}

.pay-card-input {
    position: relative
}

.pay-card-input i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--muted)
}

/* === ARAMA === */
.search-hero {
    text-align: center;
    padding: 32px 0 24px
}

.search-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px
}

.search-big {
    position: relative;
    max-width: 560px;
    margin: 0 auto
}

.search-big input {
    width: 100%;
    height: 52px;
    border: 2px solid var(--ghost);
    border-radius: 14px;
    padding: 0 20px 0 48px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: .2s
}

.search-big input:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 4px rgba(255, 79, 31, .08)
}

.search-big i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--muted)
}

/* === RESTORANLAR L�STE === */
.rl-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.rl-count {
    font-size: 13px;
    color: var(--muted)
}

.rl-sort {
    height: 38px;
    border: 1.5px solid var(--ghost);
    border-radius: 8px;
    padding: 0 32px 0 12px;
    font-size: 12px;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0A3AD' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer
}

/* === SAYFA ��ER�K === */
.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--body)
}

.page-content p {
    margin-bottom: 16px
}

.page-content h2,
.page-content h3 {
    color: var(--ink);
    margin: 24px 0 12px;
    font-weight: 700
}

.page-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0
}

.page-content a {
    color: var(--fire);
    text-decoration: underline
}

.page-content ul,
.page-content ol {
    margin: 12px 0;
    padding-left: 24px
}

.page-content li {
    margin-bottom: 6px
}

/* === PAG�NASYON === */
.pag-f {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px
}

.pag-f a,
.pag-f span {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    background: var(--white);
    border: 1px solid var(--ghost);
    text-decoration: none;
    transition: .2s
}

.pag-f a:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.pag-f .active {
    background: var(--fire);
    color: #fff;
    border-color: var(--fire)
}

/* === HESAP GÜVENLİĞİ === */
.sec-session {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 0
}

.sec-session-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sec-session-info {
    flex: 1
}

.sec-session-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
}

.sec-session-meta {
    font-size: 11px;
    color: var(--muted)
}

.sec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px
}

.sec-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--bg);
    font-weight: 600;
    color: var(--ink);
    font-size: 12px
}

.sec-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--bg);
    color: var(--body)
}

.sec-danger-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px
}

.sec-danger-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FEF2F2;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

/* === HESAP S�LME === */
.del-warning {
    text-align: center;
    margin-bottom: 24px
}

.del-warning-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FEF2F2;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px
}

.del-warning h3 {
    color: #DC2626;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700
}

.del-warning p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.del-notice {
    background: #FEF2F2;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #DC2626;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

/* === 404 === */
.not-found {
    text-align: center;
    padding: 80px 20px
}

.not-found-num {
    font-size: 120px;
    font-weight: 800;
    color: var(--ghost);
    line-height: 1;
    font-family: 'Sora', sans-serif
}

.not-found-bar {
    width: 80px;
    height: 4px;
    background: var(--fire);
    border-radius: 2px;
    margin: 20px auto
}

/* === RESPONSIVE GENEL === */
@media(max-width:768px) {

    .pg-wrap,
    .pg-wrap-sm,
    .pg-wrap-md {
        padding: 20px 16px 32px
    }

    .pg-head h1 {
        font-size: 18px
    }
}

/* ═══ LOCATION CONFIRM MODAL — fm-* & btn-f overrides ═══ */
/* Duplicate definitions removed — fm-* and btn-f are defined above */

/* ═══════════════════════════════════════════
   DARK MODE
═══════════════════════════════════════════ */

/* Dark/Light Logo Toggle */
.logo-dark {
    display: none;
}

.logo-light {
    display: inline-block;
}

.logo-always {
    display: inline-block !important;
}

[data-theme="dark"] .logo-light:not(.logo-always) {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: inline-block;
}

[data-theme="dark"] {
    --dark: #F9FAFB;
    --ink: #F3F4F6;
    --body: #D1D5DB;
    --muted: #6B7280;
    --ghost: #1F2937;
    --bg: #1a1f2e;
    --bg2: #1a1f2e;
    --white: #111827;
    --fire-soft: #1c1210;
    --green-bg: #0d2818;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, .15);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .2), 0 1px 2px rgba(0, 0, 0, .15);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .25);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, .35);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, .4);
}

[data-theme="dark"] body {
    background: #0D0F12;
    color: #D1D5DB;
}

/* Header dark */
[data-theme="dark"] .h2-header {
    background: rgba(13, 15, 18, .92);
    border-bottom-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .h2-header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .h2-logo-text {
    color: #F3F4F6;
}

[data-theme="dark"] .h2-divider {
    background: #374151;
}

[data-theme="dark"] .h2-loc {
    border-color: #374151;
    background: #1F2937;
    color: #D1D5DB;
}

[data-theme="dark"] .h2-loc:hover {
    border-color: var(--fire);
    background: #2a1510;
    color: var(--fire);
}

[data-theme="dark"] .h2-search input {
    border-color: #374151;
    background: #1F2937;
    color: #F3F4F6;
}

[data-theme="dark"] .h2-search input::placeholder {
    color: #6B7280;
}

[data-theme="dark"] .h2-search input:focus {
    border-color: var(--fire);
    background: #111827;
    box-shadow: 0 0 0 3px rgba(232, 56, 13, .15);
}

[data-theme="dark"] .h2-search i {
    color: #6B7280;
}

[data-theme="dark"] .h2-btn {
    border-color: #374151;
    background: #1F2937;
    color: #D1D5DB;
}

[data-theme="dark"] .h2-btn:hover {
    border-color: #6B7280;
    color: #F3F4F6;
    background: #374151;
}

[data-theme="dark"] .h2-btn-accent {
    background: var(--fire);
    border-color: var(--fire);
    color: #fff;
}

[data-theme="dark"] .h2-dropdown {
    background: #1F2937;
    border-color: #374151;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

[data-theme="dark"] .h2-dropdown-user {
    background: #111827;
    border-bottom-color: #374151;
}

[data-theme="dark"] .h2-dropdown-name {
    color: #F3F4F6;
}

[data-theme="dark"] .h2-dropdown-email {
    color: #6B7280;
}

[data-theme="dark"] .h2-dropdown a {
    color: #D1D5DB !important;
}

[data-theme="dark"] .h2-dropdown a:hover {
    background: #374151;
    color: #F3F4F6 !important;
}

[data-theme="dark"] .h2-dropdown a i {
    color: #6B7280;
}

[data-theme="dark"] .h2-dropdown-divider {
    background: #374151;
}

/* Slider dark */
[data-theme="dark"] .v1-wrap {
    background: #0D0F12;
}

[data-theme="dark"] .v1-float {
    background: rgba(26, 31, 46, .95);
}

[data-theme="dark"] .v1-float-l {
    color: #6B7280;
}

[data-theme="dark"] .v1-c {
    background: #1a1f2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}

[data-theme="dark"] .v1-c:hover {
    background: #1c1210;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .v1-cn {
    color: #F3F4F6;
}

[data-theme="dark"] .v1-ring {
    background: #111827;
}

[data-theme="dark"] .v1-arrow {
    background: #1a1f2e;
    color: #D1D5DB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .v1-arrow:hover {
    color: var(--fire);
}

[data-theme="dark"] .dt {
    background: #1F2937;
}

/* Cards dark */
[data-theme="dark"] .r3 {
    background: #1a1f2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .r3:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}

[data-theme="dark"] .r3 .r3-name {
    color: #F3F4F6;
}

[data-theme="dark"] .r3 .r3-rating {
    background: #111827;
    color: #F3F4F6;
}

[data-theme="dark"] .r3 .r3-cats {
    color: #6B7280;
}

[data-theme="dark"] .r3 .r3-foot {
    color: #9CA3AF;
}

[data-theme="dark"] .r3-fav {
    background: rgba(31, 41, 55, .9);
    color: #6B7280;
}

[data-theme="dark"] .r3-fav:hover {
    background: #374151;
    color: var(--fire);
}

[data-theme="dark"] .r3-fav.active {
    background: rgba(42, 21, 16, .95);
    color: var(--fire);
}

[data-theme="dark"] .tag-time {
    background: rgba(31, 41, 55, .9);
    color: #F3F4F6;
}

[data-theme="dark"] .p3 {
    background: #1a1f2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .p3:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

[data-theme="dark"] .p3 .p3-nm {
    color: #F3F4F6;
}

[data-theme="dark"] .p3 .p3-rs {
    color: #6B7280;
}

[data-theme="dark"] .p3 .p3-likes {
    background: rgba(31, 41, 55, .92);
}

[data-theme="dark"] .p3 .p3-add {
    background: #374151;
}

[data-theme="dark"] .p3 .p3-add:hover {
    background: var(--fire);
}

/* Section titles dark */
[data-theme="dark"] .tb h2 {
    color: #F3F4F6;
}

[data-theme="dark"] .sh-t {
    color: #F3F4F6;
}

[data-theme="dark"] .sh-ic {
    background: #2a1510;
}

/* Restaurant detail dark */
[data-theme="dark"] .rs-hero {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .rs-name {
    color: #F3F4F6;
}

[data-theme="dark"] .rs-info-item {
    background: #1F2937;
    border-color: #374151;
    color: #F3F4F6;
}

[data-theme="dark"] .rs-info-icon {
    background: #374151;
}

[data-theme="dark"] .rs-cat-nav {
    background: #0D0F12;
}

[data-theme="dark"] .rs-cat-pill {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .rs-cat-pill.active {
    background: var(--fire);
    color: #fff;
    border-color: var(--fire);
}

[data-theme="dark"] .rs-product {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .rs-product:hover {
    border-color: var(--fire);
}

[data-theme="dark"] .rs-product-name {
    color: #F3F4F6;
}

[data-theme="dark"] .rs-product-noimg {
    background: #374151;
}

[data-theme="dark"] .rs-add-btn {
    background: #374151;
}

[data-theme="dark"] .rs-desc {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .rs-review {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .rs-review-name {
    color: #F3F4F6;
}

[data-theme="dark"] .rs-review-reply {
    background: #374151;
}

/* Page wrappers dark */
[data-theme="dark"] .pg-head h1 {
    color: #F3F4F6;
}

[data-theme="dark"] .pg-back {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .pg-empty h3 {
    color: #F3F4F6;
}

/* Cards system dark */
[data-theme="dark"] .cd {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .cd-head {
    background: #111827;
    border-bottom-color: #374151;
}

[data-theme="dark"] .cd-head h3 {
    color: #F3F4F6;
}

[data-theme="dark"] .cd-value {
    color: #F3F4F6;
}

[data-theme="dark"] .cd-row+.cd-row {
    border-top-color: #374151;
}

[data-theme="dark"] .cd-divider {
    background: #374151;
}

/* Forms dark */
[data-theme="dark"] .fm-label {
    color: #F3F4F6;
}

[data-theme="dark"] .fm-input {
    background: #1F2937;
    border-color: #374151;
    color: #F3F4F6;
}

[data-theme="dark"] .fm-input:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 3px rgba(232, 56, 13, .15);
}

[data-theme="dark"] .fm-input::placeholder {
    color: #6B7280;
}

/* Buttons dark */
[data-theme="dark"] .btn-f.secondary {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .btn-f.secondary:hover {
    border-color: #6B7280;
    color: #F3F4F6;
}

[data-theme="dark"] .btn-f.ghost {
    border-color: #374151;
    color: #6B7280;
}

/* Tabs/badges dark */
[data-theme="dark"] .tab-f {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .tab-f:hover {
    border-color: var(--fire);
    color: var(--fire);
}

[data-theme="dark"] .badge-f.gray {
    background: #374151;
    color: #9CA3AF;
}

/* Order cards dark */
[data-theme="dark"] .order-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .order-card:hover {
    border-color: var(--fire);
}

[data-theme="dark"] .order-card-name {
    color: #F3F4F6;
}

[data-theme="dark"] .order-card-logo {
    background: #374151;
}

/* Notifications dark */
[data-theme="dark"] .notif-item {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .notif-item.unread {
    background: #2a1510;
    border-left-color: var(--fire);
}

[data-theme="dark"] .notif-icon {
    background: #374151;
}

[data-theme="dark"] .notif-title {
    color: #F3F4F6;
}

/* Coupons dark */
[data-theme="dark"] .coupon-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .coupon-title {
    color: #F3F4F6;
}

[data-theme="dark"] .coupon-copy {
    background: #1F2937;
    border-color: #374151;
}

/* Addresses dark */
[data-theme="dark"] .addr-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .addr-card.default {
    border-color: var(--fire);
    background: #2a1510;
}

[data-theme="dark"] .addr-icon {
    background: #374151;
}

[data-theme="dark"] .addr-title {
    color: #F3F4F6;
}

/* Support dark */
[data-theme="dark"] .ticket-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .ticket-subject {
    color: #F3F4F6;
}

[data-theme="dark"] .chat-msg {
    border-bottom-color: #374151;
}

[data-theme="dark"] .chat-msg.mine {
    background: #2a1510;
}

[data-theme="dark"] .chat-msg.theirs {
    background: #1e293b;
}

/* Profile dark */
[data-theme="dark"] .pf-menu-item {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .pf-menu-item:hover {
    border-color: var(--fire);
    background: #2a1510;
    color: var(--fire);
}

[data-theme="dark"] .pf-avatar-placeholder {
    background: #2a1510;
}

/* Blog dark */
[data-theme="dark"] .blog-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .blog-card:hover {
    border-color: var(--fire);
}

[data-theme="dark"] .blog-card-title {
    color: #F3F4F6;
}

[data-theme="dark"] .blog-search input {
    background: #1F2937;
    border-color: #374151;
    color: #F3F4F6;
}

/* Login dark */
[data-theme="dark"] .lg-right {
    background: #0F172A;
}

[data-theme="dark"] .lg-form-header h2 {
    color: #F8FAFC;
}

[data-theme="dark"] .lg-form-header p {
    color: #64748B;
}

[data-theme="dark"] .lg-field label {
    color: #E2E8F0;
}

[data-theme="dark"] .lg-input-wrap input {
    background: #1E293B;
    border-color: #334155;
    color: #F8FAFC;
}

[data-theme="dark"] .lg-input-wrap input::placeholder {
    color: #64748B;
}

[data-theme="dark"] .lg-input-wrap input:focus {
    background: #0F172A;
    border-color: var(--fire);
    box-shadow: 0 0 0 4px rgba(232, 56, 13, .15), 0 4px 16px rgba(232, 56, 13, .06);
}

[data-theme="dark"] .lg-input-wrap i {
    color: #64748B;
}

[data-theme="dark"] .lg-alt-btn {
    background: #1E293B;
    border-color: #334155;
    color: #E2E8F0;
}

[data-theme="dark"] .lg-alt-btn:hover {
    border-color: var(--fire);
    color: var(--fire);
    background: rgba(232, 56, 13, .1);
}

[data-theme="dark"] .lg-divider::before,
[data-theme="dark"] .lg-divider::after {
    background: #334155;
}

[data-theme="dark"] .lg-divider {
    color: #64748B;
}

[data-theme="dark"] .lg-back a {
    color: #64748B;
}

[data-theme="dark"] .lg-back a:hover {
    color: var(--fire);
    background: rgba(232, 56, 13, .1);
}

[data-theme="dark"] .lg-check {
    color: #94A3B8;
}

/* Footer dark */
[data-theme="dark"] .ft {
    background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
}

[data-theme="dark"] .ft::before {
    background: linear-gradient(90deg, transparent, #1E293B, transparent);
}

[data-theme="dark"] .ft-title {
    color: #F8FAFC;
}

[data-theme="dark"] .ft-desc {
    color: #64748B;
}

[data-theme="dark"] .ft-feat {
    color: #64748B;
}

[data-theme="dark"] .ft-col a {
    color: #64748B;
}

[data-theme="dark"] .ft-col a:hover {
    color: var(--fire);
}

[data-theme="dark"] .ft-contact-icon {
    background: #1E293B;
    box-shadow: none;
    border-color: #334155;
}

[data-theme="dark"] .ft-contact a {
    color: #F8FAFC;
}

[data-theme="dark"] .ft-social-label {
    color: #F8FAFC;
}

[data-theme="dark"] .ft-social a {
    background: #1E293B;
    color: #64748B;
    box-shadow: none;
    border-color: #334155;
}

[data-theme="dark"] .ft-social a:hover {
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    color: #fff;
    border-color: transparent;
}

[data-theme="dark"] .ft-bottom::before {
    background: linear-gradient(90deg, transparent, #1E293B, transparent);
}

[data-theme="dark"] .ft-bottom-inner {
    color: #475569;
}

/* Modal dark */
[data-theme="dark"] .yg-modal {
    background: #1F2937;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

[data-theme="dark"] .yg-modal-header {
    background: #1F2937;
    border-bottom-color: #374151;
}

[data-theme="dark"] .yg-modal-header h3 {
    color: #F3F4F6;
}

[data-theme="dark"] .yg-modal-close {
    color: #6B7280;
}

[data-theme="dark"] .yg-modal-close:hover {
    background: #374151;
    color: #F3F4F6;
}

[data-theme="dark"] .yg-address-option {
    border-color: #374151;
}

[data-theme="dark"] .yg-address-option:hover {
    border-color: var(--fire);
    background: #2a1510;
}

[data-theme="dark"] .yg-search-results {
    background: #1F2937;
    border-color: #374151;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

/* Checkout dark */
[data-theme="dark"] .co-option {
    border-color: #374151;
}

[data-theme="dark"] .co-option:hover {
    border-color: var(--fire);
    background: #2a1510;
}

[data-theme="dark"] .co-opt-title {
    color: #F3F4F6;
}

/* Cart dark */
[data-theme="dark"] .cart-item {
    border-bottom-color: #374151;
}

[data-theme="dark"] .cart-item-name {
    color: #F3F4F6;
}

[data-theme="dark"] .cart-qty-btn {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

/* Payment dark */
[data-theme="dark"] .pay-amount {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
}

/* Search dark */
[data-theme="dark"] .search-big input {
    background: #1F2937;
    border-color: #374151;
    color: #F3F4F6;
}

/* Pagination dark */
[data-theme="dark"] .pag-f a,
[data-theme="dark"] .pag-f span {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

[data-theme="dark"] .pag-f a:hover {
    border-color: var(--fire);
    color: var(--fire);
}

/* Review dark */
[data-theme="dark"] .review-card {
    background: #1F2937;
    border-color: #374151;
}

[data-theme="dark"] .review-card-name {
    color: #F3F4F6;
}

[data-theme="dark"] .review-card-reply {
    background: #374151;
}

/* Table dark */
[data-theme="dark"] .sec-table th {
    background: #374151;
    color: #F3F4F6;
}

[data-theme="dark"] .sec-table td {
    border-bottom-color: #374151;
    color: #D1D5DB;
}

/* Favorites dark */
[data-theme="dark"] .fav-remove {
    background: rgba(31, 41, 55, .92);
}

/* Separators dark - no borders in minimalist design */

/* Sort dark */
[data-theme="dark"] .rl-sort {
    background: #1F2937;
    border-color: #374151;
    color: #D1D5DB;
}

/* Page content dark */
[data-theme="dark"] .page-content {
    color: #D1D5DB;
}

[data-theme="dark"] .page-content h2,
[data-theme="dark"] .page-content h3 {
    color: #F3F4F6;
}

/* Blog article dark */
[data-theme="dark"] .blog-article-title {
    color: #F3F4F6;
}

[data-theme="dark"] .blog-article-content {
    color: #D1D5DB;
}

/* ═══════════════════════════════════════════
   TOAST NOTIFICATIONS
═══════════════════════════════════════════ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    animation: toastIn .35s ease
}

.toast i {
    font-size: 16px;
    flex-shrink: 0
}

.toast-success {
    background: linear-gradient(135deg, #10b981, #059669)
}

.toast-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626)
}

.toast-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706)
}

.toast-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb)
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(40px)
    }
}

@media(max-width:600px) {
    .toast-container {
        top: auto;
        bottom: 80px;
        right: 12px;
        left: 12px
    }

    .toast {
        font-size: 12px;
        padding: 12px 16px;
        border-radius: 10px
    }
}

/* ═══════════════════════════════════════════
   MOBILE BOTTOM NAV BAR
═══════════════════════════════════════════ */
@media (max-width: 768px) {



    .mob-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 12px 16px 20px;
        background: transparent
    }

    .mob-nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-around;
        background: #ffffff;
        border-radius: 20px;
        padding: 8px 4px;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, .06), 0 4px 25px rgba(0, 0, 0, .1);
        max-width: 440px;
        margin: 0 auto
    }

    .mob-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 16px;
        transition: all .3s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        min-width: 56px;
        background: transparent
    }

    .mob-nav-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 4px
    }

    .mob-nav-icon svg {
        width: 22px;
        height: 22px;
        stroke: #9ca3af;
        stroke-width: 1.8;
        fill: none;
        transition: all .3s ease
    }

    .mob-nav-label {
        font-size: 11px;
        font-weight: 500;
        color: #9ca3af;
        transition: all .3s ease;
        white-space: nowrap
    }

    .mob-nav-item:hover:not(.mob-nav-active) {
        background: #f8f9fa
    }

    .mob-nav-item:hover:not(.mob-nav-active) .mob-nav-icon svg {
        stroke: #6b7280
    }

    .mob-nav-item:hover:not(.mob-nav-active) .mob-nav-label {
        color: #6b7280
    }

    .mob-nav-item.mob-nav-active {
        background: #fff7ed
    }

    .mob-nav-item.mob-nav-active .mob-nav-icon svg {
        stroke: var(--fire);
        fill: var(--fire);
        fill-opacity: .15
    }

    .mob-nav-item.mob-nav-active .mob-nav-label {
        color: var(--fire);
        font-weight: 600
    }

    /* Sepet - orta buton */
    .mob-nav-cart .mob-nav-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--fire) 0%, #c73e08 100%);
        border-radius: 50%;
        margin-top: -24px;
        margin-bottom: 2px;
        box-shadow: 0 4px 15px rgba(232, 56, 13, .4);
        transition: all .3s ease
    }

    .mob-nav-cart .mob-nav-icon svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none
    }

    .mob-nav-cart:hover .mob-nav-icon {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(232, 56, 13, .5)
    }

    .mob-nav-cart .mob-nav-label {
        color: #6b7280
    }

    .mob-nav-cart.mob-nav-active {
        background: transparent
    }

    .mob-nav-cart.mob-nav-active .mob-nav-label {
        color: var(--fire);
        font-weight: 600
    }

    /* Badge */
    .mob-nav-badge {
        position: absolute;
        top: -2px;
        right: -2px;
        min-width: 18px;
        height: 18px;
        background: #ef4444;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        border-radius: 9px;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        border: 2px solid #fff;
        line-height: 1
    }

    .mob-nav-badge:not(:empty) {
        display: flex
    }

    body {
        padding-bottom: 100px
    }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mob-nav {
        padding-bottom: calc(12px + env(safe-area-inset-bottom))
    }
}

/* Dark mode: mobile nav */
[data-theme="dark"] .mob-nav-inner {
    background: #111827;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, .3), 0 4px 25px rgba(0, 0, 0, .4)
}

[data-theme="dark"] .mob-nav-item:hover:not(.mob-nav-active) {
    background: #1F2937
}

[data-theme="dark"] .mob-nav-item.mob-nav-active {
    background: #2a1510
}

[data-theme="dark"] .mob-nav-badge {
    border-color: #111827
}

[data-theme="dark"] .mob-nav-cart .mob-nav-icon {
    box-shadow: 0 4px 15px rgba(232, 56, 13, .25)
}

.mob-nav {
    display: none;
}

@media screen and (max-device-width: 480px) and (orientation: portrait) {
    .mob-nav {
        display: block;
    }
}

/* ═══════════════════════════════════════════════════
   HEADER 3 — PREMIUM ELITE DESIGN
   ═══════════════════════════════════════════════════ */
:root {
    --h3-primary: #E8380D;
    --h3-primary-dark: #C42E09;
    --h3-orange: #FF6B35;
    --h3-dark: #0F172A;
    --h3-darker: #020617;
    --h3-white: #FFFFFF;
    --h3-light: #F8FAFC;
    --h3-gray: #64748B;
    --h3-gray-light: #94A3B8;
    --h3-border: #E2E8F0;
    --h3-radius: 14px;
    --h3-shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .02);
    --h3-shadow-md: 0 4px 16px rgba(0, 0, 0, .06), 0 1px 4px rgba(0, 0, 0, .03);
    --h3-shadow-lg: 0 12px 40px rgba(0, 0, 0, .1), 0 4px 12px rgba(0, 0, 0, .04);
    --h3-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TOP BAR ─────────────────────────────────── */
.h3-top-bar {
    background: linear-gradient(135deg, #0D0F12 0%, #1a1c2e 100%);
    padding: 0 60px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--h3-font);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1001;
    overflow: hidden;
    letter-spacing: .02em;
}

.h3-top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 56, 13, .06) 50%, transparent 100%);
    pointer-events: none;
}

.h3-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.h3-promo-tag {
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(232, 56, 13, .3);
}

.h3-promo-text {
    font-weight: 500;
}

.h3-promo-text b {
    color: #fff;
    font-weight: 700;
}

.h3-top-links {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.h3-top-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 8px;
    transition: var(--h3-transition);
    position: relative;
}

.h3-top-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.h3-top-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--h3-primary);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.h3-top-links a:hover::after {
    transform: scaleX(1);
}

/* ── TOPBAR LOGO ────────────────────────────── */
.h3-topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.h3-topbar-logo .h3-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(1.1);
}

.h3-topbar-logo .h3-logo-text {
    display: none !important;
}

.h3-topbar-logo .h3-logo-mark {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
}

/* ── TOPBAR RIGHT ───────────────────────────── */
.h3-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h3-topbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .12);
    margin: 0 6px;
}

/* ── TOPBAR ACTIONS ─────────────────────────── */
.h3-topbar-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.h3-topbar-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    position: relative;
    text-decoration: none;
}

.h3-topbar-btn:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.h3-topbar-btn .h3-notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    background: #E8380D;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ── TOPBAR USER ────────────────────────────── */
.h3-topbar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    font-family: var(--h3-font);
}

.h3-topbar-user:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.h3-topbar-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(232, 56, 13, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}

.h3-topbar-user i.fa-angle-down {
    font-size: 10px;
    opacity: .5;
    margin-left: 2px;
}

/* ── MAIN HEADER ─────────────────────────────── */
.h3-header {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1.5px solid rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: var(--h3-font);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: box-shadow .3s ease, background .3s ease;
}

.h3-header:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.h3-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    gap: 28px;
    max-width: 1480px;
    margin: 0 auto;
}

/* ── LOGO ────────────────────────────────────── */
.h3-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--h3-transition);
}

.h3-logo:hover {
    transform: translateY(-1px);
}

.h3-logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--h3-transition);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .25);
}

.h3-logo:hover .h3-logo-mark {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(232, 56, 13, .35);
}

.h3-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.h3-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--h3-dark);
    letter-spacing: -0.6px;
    line-height: 1;
    display: none !important;
}

.h3-logo-text span {
    color: var(--h3-primary);
}

/* ── LOCATION ────────────────────────────────── */
.h3-loc {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    background: var(--h3-light);
    border: 1.5px solid var(--h3-border);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--h3-transition);
    flex-shrink: 0;
    position: relative;
}

.h3-loc:hover {
    background: var(--fire-soft);
    border-color: rgba(232, 56, 13, .15);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .06);
}

.h3-loc-icon {
    color: var(--h3-primary);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 56, 13, .08);
    border-radius: 10px;
    flex-shrink: 0;
}

.h3-loc-text {
    font-size: 13.5px;
    color: var(--h3-dark);
    font-weight: 700;
    line-height: 1.2;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.h3-loc-sub {
    font-size: 11px;
    color: var(--h3-gray-light);
    font-weight: 500;
}

.h3-loc-arrow {
    font-size: 10px;
    color: var(--h3-gray-light);
    margin-left: 2px;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.h3-loc:hover .h3-loc-arrow {
    transform: rotate(180deg);
    color: var(--h3-primary);
}

/* ── SEARCH ──────────────────────────────────── */
.h3-search-wrap {
    flex: 1;
    max-width: 680px;
    position: relative;
}

.h3-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.h3-search-icon {
    position: absolute;
    left: 20px;
    color: var(--h3-gray-light);
    font-size: 15px;
    transition: color 0.3s, transform .3s;
    pointer-events: none;
    z-index: 2;
}

.h3-search-input {
    width: 100%;
    height: 52px;
    border: 2px solid var(--h3-border);
    border-radius: 16px;
    padding: 0 140px 0 50px;
    font-size: 14.5px;
    font-family: var(--h3-font);
    font-weight: 400;
    color: var(--h3-dark);
    outline: none;
    background: var(--h3-light);
    transition: var(--h3-transition);
}

.h3-search-input:focus {
    border-color: var(--h3-primary);
    background: var(--h3-white);
    box-shadow: 0 0 0 4px rgba(232, 56, 13, .08), 0 4px 20px rgba(232, 56, 13, .06);
}

.h3-search-input:focus~.h3-search-icon {
    color: var(--h3-primary);
    transform: scale(1.1);
}

.h3-search-input::placeholder {
    color: var(--h3-gray-light);
    font-weight: 400;
}

.h3-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 28px;
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--h3-font);
    transition: var(--h3-transition);
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(232, 56, 13, .25);
    letter-spacing: .01em;
}

.h3-search-btn:hover {
    background: linear-gradient(135deg, #C42E09 0%, #E8380D 100%);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .3);
    transform: translateY(-50%) scale(1.02);
}

.h3-search-btn:active {
    transform: translateY(-50%) scale(0.97);
}

/* ── SEARCH RESULTS DROPDOWN ─────────────────── */
.h3-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--h3-white);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .04);
    border: 1px solid var(--h3-border);
    z-index: 9999;
    display: none;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

.h3-search-results.show,
.h3-search-results.active {
    display: block;
    animation: h3-dropdown-in 0.25s cubic-bezier(.4, 0, .2, 1);
}

.h3-search-results .search-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
    padding: 14px 20px 8px;
}

.h3-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: all .2s;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.h3-search-results .search-result-item:last-child {
    border-bottom: none;
}

.h3-search-results .search-result-item:hover {
    background: var(--fire-soft);
    color: var(--fire);
    padding-left: 24px;
}

.h3-search-results .search-result-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    flex-shrink: 0;
}

.h3-search-results .search-result-item:hover i {
    color: var(--fire);
}

.h3-search-results .search-result-item small {
    margin-left: auto;
    font-weight: 700;
    color: var(--fire);
    font-size: 12px;
}

/* ── RIGHT ACTIONS ───────────────────────────── */
.h3-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Base Button */
.h3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--h3-font);
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--h3-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

/* Icon Button (theme, fav, notif) */
.h3-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--h3-border);
    background: var(--h3-light);
    color: var(--h3-gray);
    font-size: 15px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--h3-transition);
}

.h3-btn-icon:hover {
    background: var(--fire-soft);
    border-color: rgba(232, 56, 13, .15);
    color: var(--h3-primary);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .08);
    transform: translateY(-1px);
}

/* Pill / Action Button */
.h3-btn-pill {
    padding: 15px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--h3-border);
    background: var(--h3-light);
    color: var(--h3-dark);
    font-size: 12.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--h3-transition);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--h3-font);
}

.h3-btn-pill:hover {
    background: var(--fire-soft);
    border-color: rgba(232, 56, 13, .15);
    color: var(--h3-primary);
    box-shadow: 0 4px 16px rgba(232, 56, 13, .08);
    transform: translateY(-1px);
}

.h3-btn-pill i {
    font-size: 14px;
}

/* Cart Button */
.h3-btn-cart {
    padding: 15px 22px;
    border-radius: 13px;
    background: linear-gradient(135deg, #0D0F12 0%, #1E293B 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--h3-transition);
    text-decoration: none;
    font-family: var(--h3-font);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .15);
}

.h3-btn-cart:hover {
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    box-shadow: 0 6px 24px rgba(232, 56, 13, .25);
    transform: translateY(-2px);
}

.h3-btn-cart:active {
    transform: translateY(0) scale(.98);
}

.h3-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--h3-primary);
    color: white;
    border-radius: 8px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
}

.h3-btn-cart .h3-cart-count {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
}

/* Notification Badge */
.h3-notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: linear-gradient(135deg, #E8380D, #FF6B35);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--h3-white);
    animation: h3-badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(232, 56, 13, .3);
}

@keyframes h3-badge-pop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* ── USER DROPDOWN ───────────────────────────── */
.h3-user-wrap {
    position: relative;
}

.h3-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 260px;
    background: var(--h3-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .04);
    display: none;
    z-index: 9999;
    overflow: hidden;
    animation: h3-dropdown-in 0.25s cubic-bezier(.4, 0, .2, 1);
}

@keyframes h3-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.h3-dropdown.active {
    display: block;
}

.h3-dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--h3-light) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.h3-dropdown-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--h3-dark);
}

.h3-dropdown-email {
    font-size: 12px;
    color: var(--h3-gray-light);
    margin-top: 3px;
}

.h3-dropdown a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--h3-dark);
    text-decoration: none;
    transition: var(--h3-transition);
}

.h3-dropdown a:hover {
    background: var(--fire-soft);
    color: var(--h3-primary);
    padding-left: 24px;
}

.h3-dropdown a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--h3-gray-light);
    transition: var(--h3-transition);
}

.h3-dropdown a:hover i {
    color: var(--h3-primary);
}

.h3-dropdown-divider {
    height: 1px;
    background: var(--h3-border);
    margin: 6px 16px;
}

.h3-dropdown-danger {
    color: var(--h3-primary) !important;
}

.h3-dropdown-danger i {
    color: var(--h3-primary) !important;
}

/* ── MOBILE MENU BUTTON ──────────────────────── */
.h3-mobile-menu {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1.5px solid var(--h3-border);
    background: var(--h3-white);
    color: var(--h3-dark);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--h3-transition);
}

.h3-mobile-menu:hover {
    background: var(--fire-soft);
    border-color: rgba(232, 56, 13, .15);
    color: var(--h3-primary);
}

/* ── LOCATION MODAL ──────────────────────────── */
.h3-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: h3-fade-in 0.2s ease;
}

.h3-modal-overlay.active {
    display: flex;
}

@keyframes h3-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.h3-modal {
    background: var(--h3-white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: h3-modal-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes h3-modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.h3-modal-head {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--h3-border);
}

.h3-modal-head h3 {
    font-family: var(--h3-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--h3-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.h3-modal-head h3 i {
    color: var(--h3-primary);
}

.h3-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid var(--h3-border);
    background: var(--h3-white);
    color: var(--h3-gray);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--h3-transition);
    line-height: 1;
}

.h3-modal-close:hover {
    background: var(--h3-primary);
    color: white;
    border-color: var(--h3-primary);
}

.h3-modal-body {
    padding: 20px 24px 24px;
}

.h3-modal-body .h3-btn-detect {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    background: var(--h3-primary);
    color: white;
    border: none;
    font-family: var(--h3-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--h3-transition);
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
}

.h3-modal-body .h3-btn-detect:hover {
    background: var(--h3-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.h3-address-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--h3-transition);
    margin-top: 8px;
    border: 1.5px solid transparent;
}

.h3-address-item:hover {
    background: #FFF5F5;
    border-color: #FFE0E0;
}

.h3-address-item i {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.h3-address-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--h3-dark);
}

.h3-address-detail {
    font-size: 12px;
    color: var(--h3-gray-light);
    margin-top: 2px;
}

.h3-add-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1.5px dashed var(--h3-border);
    background: transparent;
    color: var(--h3-dark);
    font-family: var(--h3-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--h3-transition);
}

.h3-add-address:hover {
    border-color: var(--h3-primary);
    color: var(--h3-primary);
    background: #FFF5F5;
}

.h3-modal-login-hint {
    text-align: center;
    color: var(--h3-gray-light);
    font-size: 13px;
    margin-top: 18px;
    font-family: var(--h3-font);
}

.h3-modal-login-hint a {
    color: var(--h3-primary);
    font-weight: 700;
    text-decoration: none;
}

.h3-modal-login-hint a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .h3-main {
        padding: 14px 24px;
    }

    .h3-search-wrap {
        max-width: 360px;
    }

    .h3-btn-pill .h3-btn-label {
        display: none;
    }

    .h3-btn-pill {
        padding: 10px 14px;
    }

    .h3-loc-sub {
        display: none;
    }

    .h3-top-bar {
        padding: 0 24px;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Top Bar */
    .h3-top-bar {
        padding: 0 16px;
        height: 36px;
        font-size: 11px;
    }

    .h3-top-links {
        display: none;
    }

    .h3-promo-text .h3-promo-detail {
        display: none;
    }

    /* Main Header */
    .h3-main {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 10px;
    }

    /* Logo Row */
    .h3-logo-text {
        font-size: 20px;
    }

    .h3-logo-mark {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 12px;
    }

    .h3-logo-img {
        height: 32px;
    }

    /* Location Hidden */
    .h3-loc {
        display: block;
        width: 31%;
        /*! position: absolute; */
        /*! top: 70px; */
        height: 45px;
        width: 45px;
        border: none;
    }

    /* Search Full Width */
    .h3-search-wrap {
        order: 10;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .h3-search-btn {
        display: none;
    }

    .h3-search-input {
        height: 46px;
        padding-right: 16px;
        border-radius: 14px;
    }

    /* Actions */
    .h3-btn-pill {
        display: none;
    }

    .h3-mobile-menu {
        display: none !important;
    }

    /* Keep only: theme, fav, cart, hamburger */
    .h3-btn-notif-desktop {
        display: none;
    }

    /* Cart */
    .h3-btn-cart {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 12px;
    }

    .h3-btn-cart .h3-cart-label {
        display: none;
    }

    .h3-cart-count {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .h3-top-bar {
        height: 32px;
        font-size: 10px;
    }

    .h3-promo-tag {
        font-size: 8px;
        padding: 2px 6px;
    }

    .h3-main {
        padding: 10px 12px;
        gap: 8px;
    }

    .h3-logo-text {
        font-size: 18px;
    }

    .h3-logo-mark {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 10px;
    }

    .h3-logo-img {
        height: 55px;
    }

    .h3-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
        border-radius: 12px;
    }

    .h3-btn-cart {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .h3-search-input {
        height: 42px;
        font-size: 13px;
        border-radius: 12px;
    }

    .h3-btn-fav-mob {
        display: none !important;
    }

    .h3-loc-text {
        display: none !important;
    }

    .h3-loc {
        font-size: 9.5px;
        color: var(--h3-dark);
        font-weight: 700;
        line-height: 1.2;
        width: 45px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 6px;
        height: 45px;
        display: flex !important;
        margin-right: -20%;
    }

    .h3-loc-arrow {
        font-size: 10px;
        color: var(--h3-gray-light);
        margin-left: -15px;
        transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
    }




}

/* ═══════════════════════════════════════════════════
   DARK MODE SUPPORT — H3 HEADER
   ═══════════════════════════════════════════════════ */
[data-theme="dark"] .h3-header {
    background: rgba(13, 15, 18, .94);
    border-bottom-color: rgba(255, 255, 255, .06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .2), 0 8px 32px rgba(0, 0, 0, .15);
}

[data-theme="dark"] .h3-top-bar {
    background: linear-gradient(135deg, #020617 0%, #0F172A 100%);
}

[data-theme="dark"] .h3-search-input {
    background: #1E293B;
    border-color: #334155;
    color: #E2E8F0;
}

[data-theme="dark"] .h3-search-input::placeholder {
    color: #64748B;
}

[data-theme="dark"] .h3-search-input:focus {
    border-color: var(--h3-primary);
    background: #0F172A;
    box-shadow: 0 0 0 4px rgba(232, 56, 13, .15), 0 4px 20px rgba(232, 56, 13, .08);
}

[data-theme="dark"] .h3-btn-icon {
    background: #1E293B;
    border-color: #334155;
    color: #94A3B8;
}

[data-theme="dark"] .h3-btn-icon:hover {
    background: rgba(232, 56, 13, .1);
    border-color: rgba(232, 56, 13, .2);
    color: var(--fire);
}

[data-theme="dark"] .h3-btn-pill {
    background: #1E293B;
    border-color: #334155;
    color: #E2E8F0;
}

[data-theme="dark"] .h3-btn-pill:hover {
    background: rgba(232, 56, 13, .1);
    border-color: rgba(232, 56, 13, .2);
    color: var(--fire);
}

[data-theme="dark"] .h3-btn-cart {
    background: linear-gradient(135deg, #E2E8F0 0%, #F8FAFC 100%);
    color: #0F172A;
}

[data-theme="dark"] .h3-btn-cart:hover {
    background: linear-gradient(135deg, #E8380D 0%, #FF6B35 100%);
    color: #fff;
}

[data-theme="dark"] .h3-btn-cart .h3-cart-count {
    background: rgba(0, 0, 0, .1);
}

[data-theme="dark"] .h3-loc {
    background: #1E293B;
    border-color: #334155;
}

[data-theme="dark"] .h3-loc:hover {
    background: rgba(232, 56, 13, .1);
    border-color: rgba(232, 56, 13, .2);
}

[data-theme="dark"] .h3-loc-icon {
    background: rgba(232, 56, 13, .15);
}

[data-theme="dark"] .h3-loc-text {
    color: #E2E8F0;
}

[data-theme="dark"] .h3-logo-text {
    color: #fff;
}

[data-theme="dark"] .h3-dropdown {
    background: #1E293B;
    border-color: #334155;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 4px 16px rgba(0, 0, 0, .3);
}

[data-theme="dark"] .h3-dropdown a {
    color: #E2E8F0;
}

[data-theme="dark"] .h3-dropdown a:hover {
    background: rgba(232, 56, 13, .1);
    color: var(--fire);
}

[data-theme="dark"] .h3-dropdown-header {
    background: #0F172A;
    border-color: #334155;
}

[data-theme="dark"] .h3-dropdown-name {
    color: #fff;
}

[data-theme="dark"] .h3-dropdown-divider {
    background: #334155;
}

[data-theme="dark"] .h3-mobile-menu {
    background: #1E293B;
    border-color: #334155;
    color: #E2E8F0;
}

[data-theme="dark"] .h3-mobile-menu:hover {
    background: rgba(232, 56, 13, .1);
    border-color: rgba(232, 56, 13, .2);
    color: var(--fire);
}

[data-theme="dark"] .h3-modal {
    background: #1E293B;
}

[data-theme="dark"] .h3-modal-head {
    border-color: #334155;
}

[data-theme="dark"] .h3-modal-head h3 {
    color: #fff;
}

[data-theme="dark"] .h3-modal-close {
    background: transparent;
    color: #64748B;
}

[data-theme="dark"] .h3-modal-close:hover {
    background: #0F172A;
    color: #F8FAFC;
}

[data-theme="dark"] .h3-address-item:hover {
    background: rgba(232, 56, 13, .1);
}

[data-theme="dark"] .h3-address-title {
    color: #E2E8F0;
}

[data-theme="dark"] .h3-add-address {
    border-color: #334155;
    color: #94A3B8;
}

[data-theme="dark"] .h3-search-results {
    background: #1E293B;
    border-color: #334155;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

[data-theme="dark"] .h3-notif-badge {
    border-color: rgba(13, 15, 18, .94);
}