/* ============================================================
   SUSHI TIME — Combined Styles
   Desktop/Tablet: full scrollable site
   Mobile (<=768px): bento-grid one-screen card
   ============================================================ */

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

:root {
    --red: #e63946;
    --red-dark: #c1121f;
    --black: #0a0a0a;
    --dark: #111111;
    --card: #161616;
    --card-border: rgba(255, 255, 255, 0.05);
    --white: #f1f3f5;
    --gray: #868e96;
    --gray-light: #adb5bd;
    --gold: #ffd43b;
    --radius: 16px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 10px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.lang-toggle:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.1);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

.lang-toggle:active {
    transform: translateY(-50%) scale(0.93);
}

.lang-flag {
    line-height: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 21px;
    position: relative;
}

.lang-flag svg,
.lang-flag img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lang-flag .flag-kg {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}

.lang-flag .flag-ru {
    opacity: 0;
    transform: rotateY(180deg) scale(0.8);
}

body.lang-kg .lang-flag .flag-kg {
    opacity: 0;
    transform: rotateY(-180deg) scale(0.8);
}

body.lang-kg .lang-flag .flag-ru {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}

.lang-toggle:hover .lang-flag svg,
.lang-toggle:hover .lang-flag img {
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    transform: rotateY(0deg) scale(1.1);
}

body.lang-kg .lang-toggle:hover .lang-flag .flag-ru {
    transform: rotateY(0deg) scale(1.1);
}

.lang-toggle:active .lang-flag {
    transform: scale(0.9);
}

/* Flag wave animation */
.lang-flag svg,
.lang-flag img {
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {

    0%,
    100% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(-5deg) scale(1);
    }

    50% {
        transform: rotateY(0deg) scale(1);
    }

    75% {
        transform: rotateY(5deg) scale(1);
    }
}

body.lang-kg .lang-flag .flag-ru {
    animation: flagWave 3s ease-in-out infinite;
}

body.lang-kg .lang-flag .flag-kg {
    animation: none;
}

.lang-code {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .lang-toggle {
        top: auto;
        bottom: 14px;
        right: 12px;
        transform: none;
        padding: 5px 10px 5px 6px;
        gap: 5px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .lang-toggle:active {
        transform: scale(0.93);
    }

    .lang-flag {
        width: 22px;
        height: 16px;
    }

    .lang-code {
        font-size: 0.58rem;
    }
}

/* ============================================================
   LAYOUT SWITCHING
   ============================================================ */
.mobile-site {
    display: none;
}

.desktop-site {
    display: block;
}

@media (max-width: 768px) {
    .mobile-site {
        display: flex;
    }

    .desktop-site {
        display: none !important;
    }
}


/* ************************************************************
   DESKTOP / TABLET — Full scrollable site
   ************************************************************ */

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.35s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.nav-logo span {
    font-family: 'Russo One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-order {
    padding: 0.5rem 1.5rem;
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-order:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(230, 57, 70, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease-out;
}

.hero-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--red);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.4);
    margin: 0 auto 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(230, 57, 70, 0.5), 0 0 120px rgba(230, 57, 70, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(230, 57, 70, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    background: rgba(230, 57, 70, 0.08);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--red);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(230, 57, 70, 0.4);
}

.hero-cta::after {
    display: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(230, 57, 70, 0.6);
    background: var(--red-dark);
    animation: none;
}

.hero-cta svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 3s ease-in-out infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-icon {
    width: 24px;
    height: 36px;
    color: var(--red);
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.3));
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    color: var(--red);
    animation: arrowBounce 2s ease-in-out infinite;
}

/* ---------- SECTIONS COMMON ---------- */
.dt-section {
    padding: 5rem 1.5rem;
}

.dt-section.alt-bg {
    background: var(--dark);
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .accent {
    color: var(--red);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ---------- DELIVERY ---------- */
.delivery-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.delivery-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.delivery-banner h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.delivery-banner p {
    font-size: 1.05rem;
    opacity: 0.95;
    position: relative;
}

.delivery-note {
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--card-border);
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- BRANCHES ---------- */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.branch-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 57, 70, 0.2);
}

.branch-label {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.branch-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.branch-detail svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--red);
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.branch-link:hover {
    gap: 0.75rem;
}

/* ---------- APPS ---------- */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    animation: appShimmer 3s ease-in-out infinite;
}

.app-card:nth-child(2) {
    animation-delay: 0.4s;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(230, 57, 70, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon-box svg {
    width: 28px;
    height: 28px;
    fill: var(--red);
}

.app-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.app-card p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* ---------- CONTACT ---------- */
.contact-phone {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-phone a {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    transition: color 0.3s;
}

.contact-phone a:hover {
    color: var(--red);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(230, 57, 70, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-btn-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--red);
    fill: none;
}

.contact-btn h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-btn p {
    color: var(--gray-light);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

/* ---------- FOOTER ---------- */
.dt-footer {
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

.footer-quote {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copy {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 2rem;
    opacity: 0.6;
}

/* ---------- FADE-IN ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TABLET ---------- */
@media (max-width: 960px) and (min-width: 769px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-grid .about-card {
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .about-icon {
        margin-bottom: 0;
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }
}


/* ************************************************************
   MOBILE — Bento Grid
   ************************************************************ */

.mobile-site {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 10px;
    align-items: flex-start;
    justify-content: center;
}

.bento {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* --- Cells --- */
.cell {
    background: var(--card);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    opacity: 0;
    animation: cellIn 0.5s ease-out forwards;
}

.cell:nth-child(1) {
    animation-delay: 0.05s;
}

.cell:nth-child(2) {
    animation-delay: 0.10s;
}

.cell:nth-child(3) {
    animation-delay: 0.15s;
}

.cell:nth-child(4) {
    animation-delay: 0.20s;
}

.cell:nth-child(5) {
    animation-delay: 0.25s;
}

.cell:nth-child(6) {
    animation-delay: 0.30s;
}

.cell:nth-child(7) {
    animation-delay: 0.35s;
}

.cell:nth-child(8) {
    animation-delay: 0.40s;
}

.cell:nth-child(9) {
    animation-delay: 0.45s;
}

.cell:nth-child(10) {
    animation-delay: 0.50s;
}

@keyframes cellIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cell-full {
    grid-column: 1 / -1;
}

/* --- Brand --- */
.cell-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px 16px;
    text-align: center;
    background: linear-gradient(135deg, #220a0a 0%, #1a1010 100%);
}

.cell-brand::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.m-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--red);
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.35);
}

.m-brand-info {
    position: relative;
    z-index: 1;
    text-align: center;
}

.m-brand-name {
    font-family: 'Russo One', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.m-brand-sub {
    font-size: 0.65rem;
    color: var(--gray-light);
    margin-top: 4px;
    text-align: center;
}

/* --- Order CTA --- */
.cell-order {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ff0015 0%, #e63946 100%);
    padding: 16px;
    -webkit-tap-highlight-color: transparent;
    animation: cellIn 0.5s ease-out forwards, mobileCtaPulse 2.5s 1s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cell-order a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.cell-order svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    flex-shrink: 0;
}

.cell-order .m-order-text {
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cell-order .m-order-sub {
    font-size: 0.65rem;
    opacity: 0.8;
}

/* --- Apps mini (same size as delivery, 1 column) --- */
.cell-apps-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    animation: cellIn 0.5s ease-out forwards, appShimmer 3s 1.2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cell-apps-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    animation: btnSweep 4s 2s ease-in-out infinite;
    pointer-events: none;
}

.m-apps-header {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    text-align: center;
}

.m-app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
    position: relative;
    z-index: 1;
}

.m-app-link:active {
    background: rgba(230, 57, 70, 0.15);
}

.m-app-link svg {
    width: 22px;
    height: 22px;
    fill: var(--gray-light);
    flex-shrink: 0;
}

.m-app-link span {
    font-size: 0.72rem;
    font-weight: 600;
}

/* --- Delivery --- */
.cell-delivery {
    justify-content: center;
    background: linear-gradient(135deg, #2a1a08 0%, #1a1208 100%);
    border-color: rgba(255, 213, 59, 0.2);
    box-shadow: 0 0 20px rgba(255, 213, 59, 0.05);
}

.m-del-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.m-del-title {
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.m-del-desc {
    font-size: 0.63rem;
    color: var(--gray);
    line-height: 1.4;
}

/* --- Branch --- */
.cell-branch {
    grid-column: 1 / -1;
    padding: 14px;
}

.cell-branch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.m-branch-tag {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6b7a;
    background: rgba(255, 75, 87, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
    align-self: flex-start;
}

.m-branch-name {
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.m-branch-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--gray);
    font-size: 0.72rem;
    margin-bottom: 3px;
    line-height: 1.3;
}

.m-branch-row svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--red);
    margin-top: 1px;
}

.m-branch-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--red);
}

/* --- Contacts (socials + phone merged) --- */
.cell-contacts {
    flex-direction: column;
    gap: 10px;
    padding: 14px 10px;
}

.m-contacts-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.m-phone-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 75, 87, 0.15);
    border: 1px solid rgba(255, 75, 87, 0.3);
    color: #fff;
    font-family: 'Russo One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}

.m-phone-line:active {
    background: rgba(255, 75, 87, 0.3);
}

.m-phone-line svg {
    width: 18px;
    height: 18px;
    fill: var(--red);
    flex-shrink: 0;
}

.m-social-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gray-light);
    font-size: 0.58rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.m-social-btn:active {
    background: rgba(230, 57, 70, 0.15);
}

.m-social-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-light);
    fill: none;
}

/* --- Quote --- */
.cell-quote {
    grid-column: 1 / -1;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: transparent;
}

.m-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gray-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* --- Copyright --- */
.m-copyright {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.5rem;
    color: var(--gray);
    opacity: 0.5;
    padding: 4px 0 8px;
}


/* ============================================================
   KYRGYZ FONT OVERRIDE (Russo One → Montserrat)
   ============================================================ */
body.lang-kg .section-title,
body.lang-kg .delivery-banner h3,
body.lang-kg .contact-phone a,
body.lang-kg .footer-quote,
body.lang-kg .cell-order .m-order-text,
body.lang-kg .m-phone-line,
body.lang-kg .m-quote {
    font-family: 'Montserrat', sans-serif;
}


/* ============================================================
   DESKTOP KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(230, 57, 70, 0.6);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

/* --- App card shimmer (desktop + mobile) --- */
@keyframes appShimmer {

    0%,
    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }

    50% {
        border-color: rgba(230, 57, 70, 0.25);
        box-shadow: 0 0 20px rgba(230, 57, 70, 0.1);
    }
}

/* --- Mobile order button pulse --- */
@keyframes mobileCtaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
        transform: scale(1);
    }

    15% {
        box-shadow: 0 0 0 6px rgba(230, 57, 70, 0.25);
        transform: scale(1.015);
    }

    30% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
        transform: scale(1);
    }
}

/* --- Light sweep across app buttons --- */
@keyframes btnSweep {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}