/* =====================================================
   QR MENU V2 — Complete Redesign
   Layout: Fixed Sidebar (desktop) + Mobile Top Nav
   Font: DM Sans | Design: Card-first, minimal
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ─── DESIGN TOKENS (default theme) ─── */
:root {
    --primary-color:   #FF9800;
    --primary-dark:    #e65100;
    --primary-light:   rgba(255,152,0,0.12);
    --secondary-color: #18181b;
    --body-bg:         #F2F1ED;
    --card-bg:         #ffffff;
    --nav-bg:          #18181b;
    --dark-bg:         #18181b;
    --dark-text:       #ececec;
    --text-color:      #18181b;
    --text-muted:      #5a5a68;
    --text-faint:      #9e9eae;
    --border-color:    #e2e2de;
    --input-bg:        #ffffff;
    --input-border:    #d0d0cc;
    --sidebar-bg:      #18181b;
    --sidebar-text:    rgba(255,255,255,0.62);
    --sidebar-hover:   rgba(255,255,255,0.09);
    --sidebar-active:  rgba(255,255,255,0.13);
    --box-shadow:      0 1px 4px rgba(0,0,0,0.07);
    --box-shadow-md:   0 6px 28px rgba(0,0,0,0.12);
    --radius:          18px;
    --radius-sm:       10px;
    --radius-xs:       6px;
    --sidebar-w:       272px;
    --transition:      all 0.22s ease;
    --light-gray:      #f2f1ed;
    --info-bg:         #e8f0fe;
    --info-color:      #1a56db;
    --waiter-btn-bg:   #18181b;
    --waiter-btn-hover:#333340;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    /* overflow-x html'de tutulur: body'de olsa sticky elemanları bozar */
    overflow-x: hidden;
}
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--body-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.main-content { flex: 1; } /* legacy compat */

/* ═══════════════════════════════════════════════
   LAYOUT SHELL
   ═══════════════════════════════════════════════ */
.v2-wrap {
    min-height: 100vh;
    position: relative;
}

/* ═══════════════════════════════════════════════
   SIDEBAR  (desktop only)
   ═══════════════════════════════════════════════ */
.v2-sidebar {
    width: var(--sidebar-w);
    background: var(--sidebar-bg);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}
.v2-sidebar::-webkit-scrollbar { width: 4px; }
.v2-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Logo */
.v2-sidebar-logo {
    padding: 26px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.v2-sidebar-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.v2-sidebar-logo img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 9px;
}
.v2-logo-name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.v2-logo-tagline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    display: block;
    margin-top: 1px;
}

/* Sidebar search */
.v2-sidebar-search {
    padding: 14px 16px 8px;
    flex-shrink: 0;
}
.v2-s-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0 12px;
    height: 38px;
    gap: 8px;
    transition: background 0.2s;
}
.v2-s-search:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.16);
}
.v2-s-search i { color: rgba(255,255,255,0.28); font-size: 13px; flex-shrink: 0; }
.v2-s-search input {
    flex: 1; background: none; border: none; outline: none;
    color: #fff; font-family: inherit; font-size: 13px;
}
.v2-s-search input::placeholder { color: rgba(255,255,255,0.25); }

/* Category nav */
.v2-cat-nav { flex: 1; padding: 6px 10px 4px; overflow-y: auto; }
.v2-cat-nav-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.25);
    padding: 8px 10px 6px; display: block;
}
.v2-cat-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 9px;
    color: var(--sidebar-text); font-size: 13.5px; font-weight: 500;
    transition: var(--transition); margin-bottom: 1px;
}
.v2-cat-nav-item i {
    width: 17px; text-align: center; font-size: 13px;
    color: rgba(255,255,255,0.3); transition: color 0.2s; flex-shrink: 0;
}
.v2-cat-nav-item:hover { background: var(--sidebar-hover); color: #fff; }
.v2-cat-nav-item:hover i { color: var(--primary-color); }
.v2-cat-nav-item.active {
    background: var(--sidebar-active); color: #fff; font-weight: 600;
}
.v2-cat-nav-item.active i { color: var(--primary-color); }
.v2-cat-nav-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 8px 10px; }

/* Sidebar footer */
.v2-sidebar-foot {
    padding: 14px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.v2-s-phone {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px;
    transition: color 0.2s;
}
.v2-s-phone:hover { color: #fff; }
.v2-s-phone i { color: var(--primary-color); font-size: 12px; }
.v2-s-social { display: flex; gap: 6px; margin-bottom: 10px; }
.v2-s-social a {
    width: 30px; height: 30px; border-radius: 8px;
    background: rgba(255,255,255,0.07); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 12px; transition: var(--transition);
}
.v2-s-social a:hover { background: var(--primary-color); color: #fff; }
.v2-s-admin {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.28); font-size: 11.5px; transition: color 0.2s;
}
.v2-s-admin:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════
   MAIN CONTENT AREA
   ═══════════════════════════════════════════════ */
.v2-main {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.v2-page-wrap {
    flex: 1;
    padding: 36px 36px 24px;
    max-width: 1080px;
    width: 100%;
}

/* ─── PAGE TITLE BAR ─── */
.v2-page-title {
    margin-bottom: 28px;
}
.v2-page-title h1 {
    font-size: 26px; font-weight: 800; letter-spacing: -0.5px;
}
.v2-page-title p {
    font-size: 14px; color: var(--text-muted); margin-top: 2px;
}

/* ─── MOBILE TOP BAR ─── */
.v2-topbar {
    display: none;
    position: sticky; top: 0; z-index: 200;
    background: var(--sidebar-bg);
    height: 56px; padding: 0 16px;
    align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-topbar-logo {
    flex: 1; display: flex; align-items: center; gap: 8px;
}
.v2-topbar-logo img { height: 28px; width: 28px; object-fit: cover; border-radius: 7px; }
.v2-topbar-logo-text { font-size: 15px; font-weight: 800; color: #ffffff; }
.v2-topbar-actions { display: flex; align-items: center; gap: 6px; }
.v2-topbar-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.09); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.75); font-size: 15px; transition: background 0.2s;
}
.v2-topbar-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* ─── MOBILE CATEGORY TABS ─── */
.v2-mobile-cats {
    display: none;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 56px; z-index: 190;
    overflow-x: auto; scrollbar-width: none;
}
.v2-mobile-cats::-webkit-scrollbar { display: none; }
.v2-mobile-cats-inner {
    display: inline-flex; gap: 6px;
    padding: 10px 16px; white-space: nowrap;
}
.v2-cat-tab {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 14px; border-radius: 30px;
    font-size: 12.5px; font-weight: 500; color: var(--text-muted);
    background: var(--body-bg); border: 1.5px solid var(--border-color);
    white-space: nowrap; transition: var(--transition);
}
.v2-cat-tab i { font-size: 11px; }
.v2-cat-tab.active, .v2-cat-tab:hover {
    background: var(--primary-color); border-color: var(--primary-color); color: #fff;
}

/* ─── SECTION ─── */
.v2-section { margin-bottom: 44px; }
.v2-section-head {
    display: flex; align-items: baseline;
    justify-content: space-between; margin-bottom: 20px;
}
.v2-section-head h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; }
.v2-section-head a { font-size: 13px; font-weight: 500; color: var(--primary-color); }

/* ─── CAMPAIGN BANNER ─── */
.v2-campaign { margin-bottom: 40px; }
.v2-campaign-card {
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    min-height: 200px; background: #111;
    display: flex; align-items: flex-end;
}
.v2-campaign-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; opacity: 0.5;
}
.v2-campaign-body {
    position: relative; z-index: 1;
    padding: 28px 36px; width: 65%;
    background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.v2-campaign-sub {
    font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--primary-color); margin-bottom: 6px;
}
.v2-campaign-title {
    font-size: 24px; font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.4px;
}
.v2-campaign-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-color); color: #fff;
    padding: 9px 20px; border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 600; transition: var(--transition);
}
.v2-campaign-btn:hover { background: var(--primary-dark); color: #fff; transform: translateX(2px); }

/* Campaign carousel overrides */
.v2-campaign .carousel-item { border-radius: var(--radius); overflow: hidden; }
.v2-campaign .carousel-control-prev,
.v2-campaign .carousel-control-next {
    width: 40px; height: 40px; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); border-radius: 50%; opacity: 1;
    margin: 0 8px; bottom: auto;
}
.v2-campaign .carousel-control-prev-icon,
.v2-campaign .carousel-control-next-icon { width: 16px; height: 16px; }
.v2-campaign .carousel-indicators { margin-bottom: 8px; }

/* ─── CATEGORY GRID ─── */
.v2-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.v2-cat-card {
    background: var(--card-bg); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    border: 1.5px solid var(--border-color); box-shadow: var(--box-shadow);
    transition: var(--transition); color: var(--text-color);
}
.v2-cat-card:hover {
    transform: translateY(-4px); box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color); color: var(--text-color);
}
.v2-cat-card-img {
    aspect-ratio: 1; background: var(--body-bg);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.v2-cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.v2-cat-card:hover .v2-cat-card-img img { transform: scale(1.07); }
.v2-cat-card-img i { font-size: 38px; color: var(--primary-color); opacity: 0.55; }
.v2-cat-card-body { padding: 12px 14px; }
.v2-cat-card-name { font-size: 13px; font-weight: 600; line-height: 1.3; }

/* ─── PRODUCT GRID ─── */
.v2-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}
.v2-product-card {
    background: var(--card-bg); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    border: 1.5px solid var(--border-color); box-shadow: var(--box-shadow);
    transition: var(--transition); color: var(--text-color);
}
.v2-product-card:hover {
    transform: translateY(-4px); box-shadow: var(--box-shadow-md);
    border-color: var(--primary-color); color: var(--text-color);
}
.v2-product-card-img {
    aspect-ratio: 4/3; overflow: hidden;
    background: var(--body-bg); position: relative;
}
.v2-product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.v2-product-card:hover .v2-product-card-img img { transform: scale(1.06); }
.v2-product-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--primary-color); color: #fff;
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
}
.v2-product-badge.sold { background: #c62828; }
.v2-product-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.v2-product-card-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.35; }
.v2-product-card-desc {
    font-size: 12px; color: var(--text-muted); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 12px; flex: 1;
}
.v2-product-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid var(--border-color); margin-top: auto;
}
.v2-product-price { font-size: 16px; font-weight: 700; color: var(--primary-color); }
.v2-product-old-price {
    font-size: 11.5px; color: var(--text-faint);
    text-decoration: line-through; display: block; line-height: 1; margin-bottom: 2px;
}
.v2-product-card-arrow {
    width: 30px; height: 30px; border-radius: var(--radius-xs);
    background: var(--body-bg); display: flex; align-items: center;
    justify-content: center; font-size: 12px; color: var(--text-muted);
    transition: var(--transition); flex-shrink: 0;
}
.v2-product-card:hover .v2-product-card-arrow { background: var(--primary-color); color: #fff; }

/* ─── CATEGORY PAGE HEADER ─── */
.v2-cat-header { margin-bottom: 28px; }
.v2-back-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: var(--text-muted);
    margin-bottom: 12px; transition: color 0.2s;
}
.v2-back-btn:hover { color: var(--primary-color); }
.v2-back-btn i { font-size: 12px; }
.v2-cat-header-title {
    font-size: 28px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2;
}
.v2-cat-header-count { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ─── MAIN SEARCH ─── */
.v2-main-search { margin-bottom: 24px; }
.v2-m-search {
    display: flex; align-items: center;
    background: var(--card-bg); border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm); padding: 0 16px;
    height: 46px; gap: 12px; max-width: 420px; transition: border-color 0.2s;
}
.v2-m-search:focus-within { border-color: var(--primary-color); }
.v2-m-search i { color: var(--text-faint); font-size: 14px; }
.v2-m-search input {
    flex: 1; border: none; outline: none; background: none;
    font-family: inherit; font-size: 14px; color: var(--text-color);
}
.v2-m-search input::placeholder { color: var(--text-faint); }

/* ─── PRODUCT DETAIL ─── */
.v2-detail-nav { margin-bottom: 20px; }
.v2-detail-card {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1.5px solid var(--border-color); box-shadow: var(--box-shadow);
    overflow: hidden; display: grid;
    grid-template-columns: 420px 1fr;
    margin-bottom: 44px;
}
.v2-detail-img-wrap { background: var(--body-bg); overflow: hidden; }
.v2-detail-img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; display: block; }
.v2-detail-img-placeholder {
    width: 100%; min-height: 360px; display: flex;
    align-items: center; justify-content: center; background: var(--body-bg);
}
.v2-detail-img-placeholder img { max-height: 160px; opacity: 0.35; object-fit: contain; }
.v2-detail-info { padding: 36px 40px; display: flex; flex-direction: column; }
.v2-detail-name {
    font-size: 26px; font-weight: 800; letter-spacing: -0.5px;
    line-height: 1.25; margin-bottom: 16px;
}
.v2-detail-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.v2-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.v2-badge-cat   { background: var(--body-bg); color: var(--text-muted); }
.v2-badge-stock { background: #e6f7ee; color: #1a9e4a; }
.v2-badge-nostock { background: #fdecea; color: #c62828; }
.v2-badge-warn  { background: #fff3e0; color: #e65100; }
.v2-badge-feat  { background: #fffde7; color: #f57f17; }
.v2-detail-price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
.v2-detail-price { font-size: 34px; font-weight: 800; color: var(--primary-color); line-height: 1; }
.v2-detail-old-price {
    font-size: 16px; color: var(--text-faint); text-decoration: line-through; font-weight: 400;
}
.v2-detail-discount-badge {
    font-size: 11px; font-weight: 700; background: var(--primary-color);
    color: #fff; padding: 3px 10px; border-radius: 20px;
}
.v2-detail-divider { border: none; border-top: 1px solid var(--border-color); margin: 20px 0; }
.v2-detail-desc { font-size: 14px; color: var(--text-muted); line-height: 1.85; flex: 1; }
.v2-detail-cta { margin-top: 28px; }
.v2-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-color); color: #fff;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; transition: var(--transition);
    border: none; cursor: pointer; font-family: inherit;
}
.v2-cta-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

/* ─── EMPTY STATE ─── */
.v2-empty { text-align: center; padding: 64px 24px; color: var(--text-faint); }
.v2-empty i { font-size: 44px; opacity: 0.2; margin-bottom: 14px; display: block; }
.v2-empty p { font-size: 15px; }

/* ─── FOOTER ─── */
.v2-footer {
    padding: 24px 36px;
    border-top: 1px solid var(--border-color);
    font-size: 12px; color: var(--text-faint);
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
}
.v2-footer-links { display: flex; gap: 14px; }
.v2-footer-links a { color: var(--text-faint); font-size: 12px; transition: color 0.2s; }
.v2-footer-links a:hover { color: var(--text-muted); }

/* ─── WAITER BUTTON ─── */
.waiter-call-btn, .v2-waiter-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 500;
    display: flex; align-items: center; gap: 8px;
    background: var(--waiter-btn-bg); color: #fff;
    border: none; border-radius: var(--radius-sm);
    padding: 12px 22px; font-family: inherit; font-size: 14px; font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22); cursor: pointer;
    transition: var(--transition); text-decoration: none;
}
.waiter-call-btn:hover, .v2-waiter-btn:hover {
    background: var(--waiter-btn-hover); color: #fff;
    transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

/* ─── TOAST ─── */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 1000; }
.v2-toast {
    position: fixed; top: 72px; left: 50%; transform: translateX(-50%);
    background: #1a9e4a; color: #fff; padding: 10px 22px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    z-index: 999; box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root { --sidebar-w: 240px; }
    .v2-page-wrap { padding: 28px 28px 20px; }
    .v2-detail-card { grid-template-columns: 340px 1fr; }
}

@media (max-width: 991px) {
    .v2-sidebar { display: none; }
    .v2-topbar { display: flex; }
    .v2-mobile-cats { display: block; }
    .v2-main { margin-left: 0; }
    .v2-page-wrap { padding: 20px 16px; }
    .v2-campaign-body {
        width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 100%);
    }
    .v2-campaign-title { font-size: 20px; }
    .v2-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .v2-product-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Yatay kart: görsel solda %33, bilgi sağda */
    .v2-product-card { flex-direction: row; }
    .v2-product-card-img {
        width: 33%;
        flex-shrink: 0;
        aspect-ratio: auto;
        min-height: 110px;
    }
    .v2-product-card-body { padding: 12px 14px; }
    .v2-product-card-name { font-size: 13.5px; -webkit-line-clamp: 2; white-space: normal; }
    .v2-product-card-desc { -webkit-line-clamp: 2; margin-bottom: 8px; }
    .v2-product-card-foot { padding-top: 8px; }
    .v2-product-price { font-size: 15px; }
    /* hover: sadece yüksekliğe izin ver, genişlik sabitleme bozulmasın */
    .v2-product-card:hover { transform: none; box-shadow: var(--box-shadow-md); }

    .v2-detail-card { grid-template-columns: 1fr; }
    .v2-detail-img { min-height: 260px; max-height: 320px; }
    .v2-detail-img-placeholder { min-height: 260px; }
    .v2-detail-info { padding: 22px 20px; }
    .v2-detail-name { font-size: 21px; }
    .v2-detail-price { font-size: 26px; }
    .v2-footer { padding: 18px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
    .v2-section-head h2 { font-size: 17px; }
    .v2-cat-header-title { font-size: 22px; }
    .waiter-call-btn, .v2-waiter-btn { bottom: 16px; right: 16px; padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 600px) {
    .v2-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .v2-product-card-img { width: 32%; min-height: 100px; }
    .v2-product-card-body { padding: 10px 12px; }
    .v2-product-card-name { font-size: 13px; }
    .v2-product-price { font-size: 14px; }
    .v2-campaign-card { min-height: 160px; }
    .v2-m-search { max-width: 100%; }
}
