/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap');

:root {
    --primary: #D62828;
    --primary-dark: #9D1B1B;
    --secondary: #F77F00;
    --accent: #FCBF49;
    --dough: #FFF4E6;
    --basil: #4C956C;
    --dark: #1E1512;

    --gradient-1: linear-gradient(135deg, #D62828, #F77F00);
    --gradient-2: linear-gradient(135deg, #F77F00, #FCBF49);

    --bg-cream: #FFF4E6;
    --bg-warm: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-dark: #2B2118;
    --bg-deep: #2B2118;
    --bg-footer: #1E1512;
    --gradient-dark: linear-gradient(180deg, #2B2118, #1E1512);
    --gradient-footer: linear-gradient(180deg, #1E1512, #150F0D);

    --text-main: #2B2118;
    --text-muted: #6B5A4E;
    --text-light: #F7EFE7;
    --text-light-muted: rgba(247, 239, 231, 0.72);

    --border-radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 4px 14px rgba(43, 33, 24, 0.08);
    --shadow-md: 0 10px 30px rgba(43, 33, 24, 0.12);
    --shadow-hover: 0 18px 40px rgba(214, 40, 40, 0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Rubik', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-main);
    background: var(--bg-warm);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Rubik', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(214, 40, 40, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-head.light .section-title {
    color: var(--text-light);
}

.section-head.light .section-subtitle {
    color: var(--text-light-muted);
}

.section-head.light .section-label {
    color: var(--accent);
    background: rgba(252, 191, 73, 0.14);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(214, 40, 40, 0.42);
}

.btn-primary:active {
    transform: translateY(0) scale(0.97);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.35), rgba(255,255,255,0));
    transform: skewX(-20deg);
    opacity: 0;
    transition: left 0.5s ease, opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover::before {
    opacity: 1;
    left: 120%;
}

.req {
    color: var(--primary);
    font-weight: 700;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    padding: 14px 0;
    background: rgba(30, 21, 18, 0.55);
    backdrop-filter: blur(8px);
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
    background: rgba(30, 21, 18, 0.96);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.logo-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone i {
    color: var(--accent);
}

.header-phone:hover {
    color: var(--accent);
}

.cart-toggle {
    position: relative;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.35);
    transition: var(--transition);
}

.cart-toggle:hover {
    transform: translateY(-2px) scale(1.05);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark);
}

.cart-count.bounce {
    animation: bounce-in 0.45s ease;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 130px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(30, 21, 18, 0.75), rgba(30, 21, 18, 0.55));
}

.hero::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 25% 70%, rgba(247, 127, 0, 0.55), transparent 55%),
        radial-gradient(circle at 78% 30%, rgba(252, 191, 73, 0.4), transparent 55%);
    opacity: 0.12;
    animation: oven-glow 7s ease-in-out infinite;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(252, 191, 73, 0.35);
    filter: blur(1px);
}

.bubble.b1 { width: 10px; height: 10px; left: 12%; bottom: 12%; animation: spark-rise 7s ease-in-out infinite; }
.bubble.b2 { width: 7px; height: 7px; left: 32%; bottom: 8%; animation: spark-rise 9s ease-in-out 1.2s infinite; }
.bubble.b3 { width: 12px; height: 12px; left: 58%; bottom: 15%; animation: spark-rise 8s ease-in-out 0.6s infinite; }
.bubble.b4 { width: 6px; height: 6px; left: 76%; bottom: 10%; animation: spark-rise 10s ease-in-out 2s infinite; }
.bubble.b5 { width: 9px; height: 9px; left: 88%; bottom: 20%; animation: spark-rise 8.5s ease-in-out 1.6s infinite; }

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(252, 191, 73, 0.16);
    border: 1px solid rgba(252, 191, 73, 0.4);
    color: var(--accent);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-title .accent {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 30px;
}

.hero-facts li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 16px;
    border-radius: 999px;
}

.hero-facts i {
    color: var(--accent);
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.about-section {
    background: var(--bg-cream);
    padding: 80px 0 110px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-media:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-list {
    margin: 22px 0 28px;
    display: grid;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.about-list i {
    color: var(--basil);
    margin-top: 4px;
}

.stats-section {
    background: var(--gradient-dark);
    padding: 60px 0 110px;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.stat-item {
    text-align: center;
    padding: 26px 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 191, 73, 0.18);
}

.stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.4rem;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    min-width: 150px;
    display: inline-block;
    text-align: center;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-light-muted);
    margin-top: 4px;
}

.menu-section {
    background: var(--bg-cream);
    padding: 80px 0 110px;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid rgba(214, 40, 40, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--text-main);
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.28);
}

.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pizza-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(214, 40, 40, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pizza-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.pizza-card:hover::before {
    opacity: 0.06;
}

.pizza-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pizza-card.hidden {
    display: none;
}

.pizza-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 4 / 3;
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pizza-card:hover .pizza-image img {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.pizza-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.badge-hit { background: var(--gradient-1); }
.badge-spicy { background: var(--primary-dark); }
.badge-new { background: var(--basil); }

.pizza-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px 20px 24px;
}

.pizza-title {
    font-size: 1.18rem;
    min-height: 56px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.pizza-desc {
    flex-grow: 1;
    min-height: 66px;
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.size-switch {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.size-btn {
    flex: 1;
    padding: 8px 4px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--secondary);
}

.size-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    transform: scale(1.04);
}

.pizza-price {
    margin-top: auto;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.pizza-card .btn-add {
    margin-top: 1rem;
    width: 100%;
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(214, 40, 40, 0.3);
}

.pizza-card .btn-add:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(214, 40, 40, 0.42);
}

.pizza-card .btn-add:active {
    transform: translateY(0) scale(0.97);
}

.btn-add.pulse {
    animation: cart-pulse 0.45s ease;
}

.steps-section {
    background: var(--gradient-dark);
    padding: 70px 0 110px;
    color: var(--text-light);
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 92px;
    left: 12%;
    width: 76%;
    height: 3px;
    background: linear-gradient(90deg, rgba(252,191,73,0.15), rgba(252,191,73,0.5), rgba(252,191,73,0.15));
    z-index: 0;
}

.step-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    padding: 26px 20px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(252, 191, 73, 0.16);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 191, 73, 0.42);
}

.step-num {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.step-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 22px rgba(214, 40, 40, 0.32);
}

.step-title {
    font-size: 1.05rem;
    color: var(--text-light);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.step-desc {
    flex-grow: 1;
    font-size: 0.92rem;
    color: var(--text-light-muted);
}

.delivery-section {
    background: var(--bg-cream);
    padding: 80px 0 110px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px 30px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(214, 40, 40, 0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.delivery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.delivery-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    color: var(--dark);
    font-size: 1.5rem;
}

.delivery-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.delivery-title {
    font-size: 1.12rem;
    min-height: 54px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.delivery-desc {
    flex-grow: 1;
    min-height: 96px;
    font-size: 0.94rem;
    color: var(--text-muted);
}

.delivery-value {
    margin-top: auto;
    padding-top: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.delivery-banner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(214, 40, 40, 0.08);
}

.delivery-banner-img {
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    min-height: 300px;
}

.delivery-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.delivery-banner:hover .delivery-banner-img img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.delivery-banner-text {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery-banner-text h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.delivery-banner-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.delivery-banner-text .btn {
    align-self: flex-start;
}

.team-section {
    background: var(--bg-warm);
    padding: 80px 0 110px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(214, 40, 40, 0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 3 / 4;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.team-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 22px 22px 26px;
    text-align: center;
}

.team-name {
    font-size: 1.12rem;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.team-role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.86rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-description {
    flex-grow: 1;
    min-height: 80px;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.gallery-section {
    background: var(--bg-cream);
    padding: 80px 0 110px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.08);
}

.testimonials-section {
    background: var(--bg-warm);
    padding: 80px 0 110px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 26px 26px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.7rem;
    color: rgba(214, 40, 40, 0.14);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testimonial-text {
    flex-grow: 1;
    min-height: 130px;
    font-size: 0.96rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(43, 33, 24, 0.1);
}

.testimonial-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-main);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-section {
    background: var(--bg-cream);
    padding: 80px 0 110px;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(214, 40, 40, 0.1);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    border: none;
    background: transparent;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.order-section {
    background: var(--gradient-dark);
    padding: 80px 0 120px;
    color: var(--text-light);
}

.order-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.order-info .section-title {
    color: var(--text-light);
}

.order-info .section-label {
    color: var(--accent);
    background: rgba(252, 191, 73, 0.14);
}

.order-lead {
    color: var(--text-light-muted);
    margin-bottom: 28px;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-list i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1rem;
}

.contact-list span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
}

.contact-list a,
.contact-list p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-list a:hover {
    color: var(--accent);
}

.order-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(252, 191, 73, 0.28);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
}

.order-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(43, 33, 24, 0.12);
    border-radius: var(--border-radius);
    background: #FFFBF6;
    color: var(--text-main);
    font-size: 0.98rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #A79A90;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(247, 127, 0, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 90px;
}

.cart-summary-box {
    margin: 8px 0 18px;
    padding: 16px 18px;
    border-radius: var(--border-radius);
    background: var(--bg-cream);
    border: 1px dashed rgba(214, 40, 40, 0.3);
}

.cart-summary-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.cart-summary-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.cart-summary-body strong {
    color: var(--text-main);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.captcha-group input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid rgba(43, 33, 24, 0.12);
    border-radius: var(--border-radius);
    background: #FFFBF6;
    color: var(--text-main);
    font-size: 0.98rem;
}

.captcha-refresh-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 8px 10px;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.captcha-refresh-btn:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 9px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-muted);
    font-family: 'Rubik', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    padding: 0;
    border: none;
}

.btn-submit {
    width: 100%;
    margin-top: 6px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: var(--gradient-footer);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.15fr 0.9fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

.footer-about {
    color: var(--text-light-muted);
    font-size: 0.94rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(252, 191, 73, 0.24);
    color: var(--text-light);
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-links li,
.footer-contacts li,
.footer-districts li {
    margin-bottom: 11px;
    font-size: 0.94rem;
    color: var(--text-light-muted);
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: var(--accent);
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contacts i {
    color: var(--secondary);
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-districts li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-districts li::before {
    content: '🍕';
    font-size: 0.85rem;
}

.footer-note {
    margin-top: 10px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(252, 191, 73, 0.14);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 4px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: var(--text-light-muted);
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 21, 18, 0.6);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    max-width: 100%;
    background: #fff;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(43, 33, 24, 0.1);
}

.cart-drawer-head h2 {
    font-size: 1.2rem;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--primary);
    font-size: 1.05rem;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 22px;
}

.cart-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 30px 0;
    font-size: 0.95rem;
}

.cart-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-row-info {
    flex: 1;
    min-width: 0;
}

.cart-row-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 3px;
}

.cart-row-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-row-price {
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    margin-top: 4px;
}

.cart-row-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(214, 40, 40, 0.2);
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.qty-value {
    min-width: 26px;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.cart-remove {
    border: none;
    background: transparent;
    color: #B9A79A;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.3s ease;
}

.cart-remove:hover {
    color: var(--primary);
}

.cart-drawer-foot {
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(43, 33, 24, 0.1);
    background: var(--bg-cream);
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cart-total-row strong {
    color: var(--primary);
    font-size: 1.35rem;
    font-variant-numeric: tabular-nums;
}

.cart-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.cart-checkout {
    width: 100%;
}

.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 1600;
    background: rgba(30, 21, 18, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-inner {
    position: relative;
    width: 100%;
    max-width: 470px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 28px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    max-height: 92vh;
    overflow-y: auto;
    animation: popup-in 0.4s ease;
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.exit-popup-close:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

.exit-popup-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(247, 127, 0, 0.12);
    color: var(--secondary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.exit-popup-title {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.exit-popup-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.exit-popup-text strong {
    color: var(--primary);
}

.exit-form .btn {
    width: 100%;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.1rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 22px rgba(214, 40, 40, 0.35);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-4px) rotate(-8deg);
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: var(--dark);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 22px rgba(247, 127, 0, 0.4);
    transition: var(--transition);
}

.floating-call-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(247, 127, 0, 0.55);
    opacity: 0;
    animation: ring-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.floating-call-btn:hover {
    transform: translateY(-4px) scale(1.06);
}

.site-modal .modal-content {
    color: #333;
}

.site-modal .modal-content h3 {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.1rem;
    margin: 18px 0 8px;
    color: var(--primary);
}

.site-modal .modal-content p {
    font-size: 0.94rem;
    margin-bottom: 10px;
    line-height: 1.7;
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
@keyframes hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@keyframes oven-glow {
    0%, 100% { transform: scale(1); opacity: 0.12; }
    50% { transform: scale(1.15); opacity: 0.28; }
}

@keyframes spark-rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    15% { opacity: 0.85; }
    70% { opacity: 0.5; }
    100% { transform: translateY(-260px) scale(0.5); opacity: 0; }
}

@keyframes cart-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@keyframes bounce-in {
    0% { transform: scale(0.5); }
    55% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.7); opacity: 0; }
}

@keyframes popup-in {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.from-left {
    transform: translateX(-30px);
}

.animate-on-scroll.zoom-in {
    transform: scale(0.94);
}

.animate-on-scroll.from-left.animate,
.animate-on-scroll.zoom-in.animate {
    transform: none;
}

.pizza-grid .animate-on-scroll:nth-child(2),
.delivery-grid .animate-on-scroll:nth-child(2),
.team-grid .animate-on-scroll:nth-child(2),
.testimonials-grid .animate-on-scroll:nth-child(2),
.steps-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.pizza-grid .animate-on-scroll:nth-child(3),
.delivery-grid .animate-on-scroll:nth-child(3),
.team-grid .animate-on-scroll:nth-child(3),
.testimonials-grid .animate-on-scroll:nth-child(3),
.steps-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.pizza-grid .animate-on-scroll:nth-child(4),
.steps-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.pizza-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.36s; }
.pizza-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.42s; }

.no-js .animate-on-scroll,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 1100px) {
    .header-phone {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        padding: 100px 26px 40px;
        background: var(--bg-footer);
        transform: translateX(105%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        z-index: 1300;
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .burger {
        display: flex;
    }

    .about-grid,
    .order-grid,
    .delivery-banner {
        grid-template-columns: 1fr;
    }

    .delivery-banner-img {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        min-height: 240px;
    }

    .stats-grid,
    .steps-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .pizza-grid,
    .delivery-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        padding: 130px 0 120px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .about-section,
    .menu-section,
    .delivery-section,
    .team-section,
    .gallery-section,
    .testimonials-section,
    .faq-section,
    .order-section {
        padding: 55px 0 95px;
    }

    .stats-section,
    .steps-section {
        padding: 45px 0 95px;
    }

    .section-divider {
        height: 55px;
    }

    .pizza-grid,
    .delivery-grid,
    .team-grid,
    .testimonials-grid,
    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pizza-image {
        aspect-ratio: 16 / 10;
    }

    .team-photo {
        aspect-ratio: 4 / 3;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bubble {
        display: none;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-facts li {
        font-size: 0.88rem;
    }

    .stat-number {
        min-width: 120px;
        font-size: 2rem;
    }

    .order-form-wrap {
        padding: 26px 20px;
    }

    .cart-drawer {
        width: 100%;
    }

    .scroll-top-btn,
    .floating-call-btn {
        bottom: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .scroll-top-btn {
        right: 20px;
    }

    .floating-call-btn {
        left: 20px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }

    .site-modal .modal-content {
        width: 95%;
        padding: 20px;
        border-radius: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .delivery-banner-text {
        padding: 26px 22px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.25rem;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.76rem;
        padding: 7px 14px;
    }

    .exit-popup-inner {
        padding: 28px 20px 22px;
    }

    .exit-popup-title {
        font-size: 1.3rem;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .pizza-title,
    .delivery-title,
    .team-name,
    .step-title {
        min-height: auto;
        display: block;
    }

    .pizza-desc,
    .delivery-desc,
    .team-description,
    .testimonial-text {
        min-height: auto;
    }
}
/* [/SITESECTION:10] */