@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F1E8;
    --orange: #FF8C42;
    --dark: #1a1d1f;
    --orange-soft: #FFB380;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 29, 31, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
}

.header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(26, 29, 31, 0.98) 0%, rgba(40, 40, 40, 0.98) 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.logo-image {
    height: 100px;
    width: auto;
    min-width: 120px;
    filter: brightness(1.15) drop-shadow(0 4px 12px rgba(255, 140, 66, 0.4));
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-image:hover {
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(255, 140, 66, 0.5));
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-5px);
    }
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    padding: 10rem 5% 5rem;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 140, 66, 0.1) 100%);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.hero-watermark img {
    width: 800px;
    height: auto;
    animation: watermarkPulse 8s ease-in-out infinite;
}

@keyframes watermarkPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.03;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.05;
    }
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    letter-spacing: 0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: var(--dark);
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 18px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft));
    opacity: 0.25;
    z-index: -1;
    animation: expandWidth 1s 0.5s ease forwards;
    border-radius: 4px;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    opacity: 0.75;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.3rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.35);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.45);
}

.cta-button.secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--dark);
    color: var(--cream);
    box-shadow: 0 8px 25px rgba(26, 29, 31, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-img.active {
    opacity: 1;
}

@keyframes floatImage {
    0%, 100% { 
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% { 
        transform: translateY(-20px);
    }
    75% {
        transform: translateY(-10px);
    }
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(26, 29, 31, 0.1);
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 2rem;
    border-right: 1px solid rgba(26, 29, 31, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
    text-align: center;
    width: 100%;
}

.stat-label {
    font-size: 0.9rem !important;
    color: var(--orange) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.4 !important;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.floating-shapes {
    display: none;
}

/* Анимированные круги убраны */

.menu {
    padding: 3rem 5%;
    background: var(--cream);
    border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orange);
    position: relative;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.2);
    border-color: var(--orange);
}

.card-icon {
    font-size: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe0d1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-description {
    color: var(--dark);
    opacity: 0.65;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 0.9rem;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.add-to-cart {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart svg {
    width: 18px;
    height: 18px;
}

.add-to-cart:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

/* ==================== НОВЫЙ КРАСИВЫЙ БЛОК КОНТАКТОВ ==================== */

.contact {
    padding: 6rem 5% 4rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff8c42" opacity="0.03"/><circle cx="10" cy="10" r="1" fill="%23ff8c42" opacity="0.02"/><circle cx="40" cy="15" r="1.5" fill="%23ff8c42" opacity="0.025"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 140, 66, 0.1));
    color: var(--orange);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 140, 66, 0.3);
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--cream), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff7a2b);
    border-radius: 20px 20px 0 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 140, 66, 0.3);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ff7a2b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0 0 0.8rem 0;
}

.contact-card-text {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.contact-card-note {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.6;
    margin: 0;
}

.contact-link {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--orange);
    opacity: 1;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-action-btn.primary {
    background: linear-gradient(135deg, var(--orange), #ff7a2b);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.contact-action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    background: linear-gradient(135deg, #ff7a2b, var(--orange));
}

.contact-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-action-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 140, 66, 0.5);
    color: var(--orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-action-btn svg {
    width: 20px;
    height: 20px;
}

.contact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.05));
    animation: contactFloat 6s ease-in-out infinite;
}

.contact-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.contact-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.contact-shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* ==================== АДАПТИВНОСТЬ КОНТАКТОВ ==================== */

@media (max-width: 768px) {
    .contact {
        padding: 4rem 5% 3rem;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== КРАСИВЫЙ СТРУКТУРИРОВАННЫЙ ФУТЕР ==================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--cream);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--orange);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff8c42" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ff8c42" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ff8c42" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23ff8c42" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ff8c42" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

.footer-title {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, var(--orange), #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: justify;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange), #ff7a2b);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
    background: linear-gradient(135deg, #ff7a2b, var(--orange));
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 1px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}



.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info-link {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-info-link:hover {
    opacity: 1;
    color: var(--orange);
    padding-left: 10px;
}

.footer-info-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--orange);
}

.footer-info-link:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.7;
    margin-top: 0.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.footer-copyright p {
    margin: 0;
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 140, 66, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.8;
    font-weight: 500;
}

/* ==================== АДАПТИВНОСТЬ ФУТЕРА ==================== */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-list {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-info-link::before {
        display: none;
    }
    
    .footer-info-link:hover {
        padding-left: 0;
    }
    
    .footer-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badge-item {
        padding: 0.4rem 0.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}



@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 5% 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        border-top: none;
        padding-top: 0;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 29, 31, 0.1);
        padding: 1rem 0;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


/* Корзина */
.cart-button {
    position: relative;
    background: linear-gradient(135deg, var(--orange), #ff7a2b);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    padding: 0;
}

.cart-button svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: all 0.3s ease;
    display: block;
}

.cart-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
    background: linear-gradient(135deg, #ff7a2b, var(--orange));
}

.cart-button:active {
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.4s ease;
}

.cart-modal.active {
    right: 0;
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-bottom: none;
    color: white;
}

.cart-header h2 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
}

.close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.12) 0%, rgba(255, 140, 66, 0.05) 50%, rgba(255, 140, 66, 0.15) 100%);
}

.empty-cart {
    text-align: center;
    color: var(--dark);
    opacity: 0.5;
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
    background: white;
    border: 2px solid rgba(255, 140, 66, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.08);
}

.cart-item:hover {
    border-color: var(--orange);
    background: rgba(255, 140, 66, 0.02);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    justify-content: space-between;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 600;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.qty-display {
    font-weight: 600;
    color: var(--dark);
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    padding: 0;
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.2);
}
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--orange);
    color: white;
}

.qty-display {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.3rem;
    margin-left: auto;
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid rgba(255, 140, 66, 0.2);
    background: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
}

.total-price {
    color: var(--orange);
    font-size: 1.5rem;
}

.checkout-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.clear-cart-btn {
    width: 100%;
    padding: 0.9rem;
    background: rgba(255, 140, 66, 0.1);
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.8rem;
}

.clear-cart-btn:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.clear-cart-btn:active {
    transform: translateY(0);
}


.profile-button {
    position: relative;
    background: transparent;
    border: 2px solid var(--orange);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-button svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    transition: all 0.3s ease;
}

.profile-button:hover {
    background: linear-gradient(135deg, var(--orange), #ff7a2b);
    border-color: #ff7a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.profile-button:hover svg {
    color: white;
}

.profile-button:active {
    transform: translateY(-1px);
}

.profile-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.4s ease;
}

.profile-modal.active {
    right: 0;
}

.profile-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
}

.profile-header h2 {
    font-size: 1.8rem;
}

.close-profile {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-profile:hover {
    background: rgba(255, 255, 255, 0.3);
}

.profile-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.12) 0%, rgba(255, 140, 66, 0.05) 50%, rgba(255, 140, 66, 0.15) 100%);
}



/* Секция наград */
.awards {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 140, 66, 0.08) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.awards-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.awards-text {
    text-align: center;
}

.awards .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.awards-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.75;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.award-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 140, 66, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.2);
    border-color: var(--orange);
}

.award-icon {
    font-size: 3.5rem;
    line-height: 1;
    flex-shrink: 0;
    display: none;
}

.award-info {
    text-align: center;
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.award-subtitle {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
    font-weight: 500;
}

.awards-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 140, 66, 0.15);
}

.awards-stat-item {
    text-align: center;
}

.awards-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.awards-stat-label {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.65;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-stats {
        gap: 2rem;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
    }
    
    .award-info {
        text-align: center;
    }
}


/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: bottom 0.5s ease;
    padding: 1.5rem 5%;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--orange);
    color: white;
}

.cookie-accept:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cookie-decline:hover {
    background: var(--dark);
    color: white;
}

/* Политика конфиденциальности */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal.active {
    display: flex;
}

.privacy-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
}

.privacy-header h2 {
    font-size: 1.8rem;
}

.close-privacy {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-privacy:hover {
    background: rgba(255, 255, 255, 0.3);
}

.privacy-body {
    padding: 2rem;
    overflow-y: auto;
}

.privacy-body h3 {
    color: var(--orange);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-body h3:first-child {
    margin-top: 0;
}

.privacy-body p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-body li {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.privacy-date {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-style: italic;
    opacity: 0.7;
}



@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
    
    .privacy-modal {
        padding: 1rem;
    }
}


/* Плавающая кнопка звонка */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: callPulse 2s infinite;
}

.call-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
}

.call-button svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.3s ease;
}

.call-button:hover svg {
    transform: scale(1.1);
}

@keyframes callPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 10px rgba(255, 140, 66, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4), 0 0 0 0 rgba(255, 140, 66, 0);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .call-button svg {
        width: 24px;
        height: 24px;
    }
}
/* Улучшенные стили для истории заказов */
.order-item {
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-left: 4px solid var(--orange);
    transition: all 0.3s ease;
}

.order-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.order-info {
    flex: 1;
}

.order-number {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.order-date {
    color: var(--dark);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.order-items {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 500;
}

.order-total {
    font-weight: 700;
    color: var(--orange);
    font-size: 1.3rem;
}

/* Стили для кнопки оформления заказа */
.checkout-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.checkout-button:disabled:hover {
    transform: none !important;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4) !important;
}

/* ==================== ФИЛЬТРЫ И ПОИСК ==================== */

.menu-filters {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2.5rem 2rem;
}

.menu-search {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    padding: 0;
}

.search-input {
    width: 100%;
    max-width: 650px;
    padding: 1.1rem 1.8rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 140, 66, 0.25);
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.08);
    color: var(--dark);
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.search-input:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.category-filters {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 140, 66, 0.25);
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9933 100%);
    transition: left 0.35s ease;
    z-index: -1;
    border-radius: 60px;
}

.filter-btn:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.25);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9933 100%);
    color: white;
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.35);
    transform: translateY(-2px);
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--dark);
    opacity: 0.7;
}

.no-items p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.reset-filters-btn {
    padding: 0.8rem 2rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* ==================== КОМБО КАРТОЧКИ ==================== */

.combo-card {
    position: relative;
    border: 2px solid var(--orange) !important;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 140, 66, 0.02));
}

.combo-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
    animation: comboPulse 2s infinite;
}

@keyframes comboPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
    }
}

.combo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.3);
}

/* ==================== ФИЛЬТРЫ И ПОИСК ==================== */

.cart-item {
    position: relative;
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.15);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 140, 66, 0.3);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--orange);
}

.qty-btn:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: scale(1.1);
}

.qty-display {
    font-weight: 700;
    min-width: 35px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark);
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.3rem;
    margin-left: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: scale(1.2);
}

/* ==================== УЛУЧШЕННЫЙ ПРОФИЛЬ ==================== */

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.profile-input {
    padding: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.profile-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    transform: translateY(-2px);
}

.save-profile-btn {
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.save-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.save-profile-btn:active {
    transform: translateY(-1px);
}

/* ==================== АДАПТИВНОСТЬ ДЛЯ НОВЫХ ЭЛЕМЕНТОВ ==================== */

@media (max-width: 768px) {
    .menu-filters {
        padding: 0;
    }
    
    .menu-search {
        padding: 0 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .combo-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .cart-item-controls {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-filters {
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ==================== АНИМАЦИИ ЗАГРУЗКИ ==================== */

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.menu-card.loading {
    pointer-events: none;
}

.menu-card.loading .card-title,
.menu-card.loading .card-description,
.menu-card.loading .card-price {
    background: #f0f0f0;
    color: transparent;
    border-radius: 4px;
}

/* ==================== УЛУЧШЕНИЯ ПРОИЗВОДИТЕЛЬНОСТИ ==================== */

.menu-card,
.filter-btn,
.search-input {
    will-change: transform;
}

.menu-grid {
    contain: layout style paint;
}

/* ==================== ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ==================== */

.menu-card .card-icon {
    transition: all 0.3s ease;
}

.menu-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.add-to-cart svg {
    transition: all 0.3s ease;
}

.add-to-cart:hover svg {
    transform: scale(1.1);
}

/* ==================== СЕКЦИЯ КОМБО ==================== */

.combos {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(255, 140, 66, 0.08) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.combos .awards-content {
    max-width: 1100px;
    margin: 0 auto;
}

.combos .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.combos .awards-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.75;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.combos .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.combos .award-card {
    background: linear-gradient(135deg, white 0%, rgba(255, 140, 66, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.combos .award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.2);
    border-color: var(--orange);
}

.combos .award-icon {
    font-size: 3.5rem;
    line-height: 1;
    flex-shrink: 0;
    display: none;
}

.combos .award-info {
    text-align: center;
}

.combos .award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.combos .award-subtitle {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
    font-weight: 500;
}

.combos .awards-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 140, 66, 0.15);
}

.combos .awards-stat-item {
    text-align: center;
}

.combos .awards-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.combos .awards-stat-label {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.65;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==================== УЛУЧШЕНИЯ HERO СЕКЦИИ ==================== */

.hero-buttons .cta-button {
    position: relative;
    overflow: hidden;
}

.hero-buttons .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-buttons .cta-button:hover::before {
    left: 100%;
}

/* ==================== ДОПОЛНИТЕЛЬНЫЕ АНИМАЦИИ ==================== */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.combo-badge {
    animation: bounceIn 0.6s ease, comboPulse 2s infinite 0.6s;
}

/* ==================== УЛУЧШЕНИЯ МОБИЛЬНОЙ ВЕРСИИ ==================== */

@media (max-width: 768px) {
    .combos {
        padding: 3rem 5%;
    }
    
    .combos .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .combos .award-card {
        padding: 1.5rem;
    }
    
    .combos .award-icon {
        font-size: 2.8rem;
    }
    
    .combos .award-title {
        font-size: 1.2rem;
    }
    
    .combos .award-subtitle {
        font-size: 0.95rem;
    }
}

/* ==================== ЭФФЕКТЫ НАВЕДЕНИЯ ДЛЯ СТАТИСТИКИ ==================== */

.awards-stat-item {
    transition: all 0.3s ease;
    cursor: default;
}

.awards-stat-item:hover {
    transform: translateY(-5px);
}

.awards-stat-item:hover .awards-stat-number {
    color: var(--orange-soft);
    text-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

/* ==================== УЛУЧШЕНИЯ ПРОИЗВОДИТЕЛЬНОСТИ ==================== */

.combos .award-card,
.menu-card,
.filter-btn {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ==================== ДОПОЛНИТЕЛЬНЫЕ ВИЗУАЛЬНЫЕ ЭФФЕКТЫ ==================== */

.menu-grid {
    perspective: 1000px;
}

.menu-card:hover {
    transform: translateY(-5px) rotateX(5deg);
}

.combo-card:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(2deg);
}

/* Эффект свечения для активных элементов */
.filter-btn.active,
.add-to-cart:hover,
.cta-button:hover {
    box-shadow: 
        0 4px 15px rgba(255, 140, 66, 0.3),
        0 0 20px rgba(255, 140, 66, 0.1);
}

/* Плавное появление секций при скролле */
.combos {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Улучшенные переходы для модальных окон */
.cart-modal,
.profile-modal,
.privacy-modal {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cart-modal.active,
.profile-modal.active,
.privacy-modal.active {
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== ФОРМЫ ВХОДА И РЕГИСТРАЦИИ ==================== */

.auth-container {
    width: 100%;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.auth-tab:hover {
    opacity: 0.8;
}

.auth-tab.active {
    opacity: 1;
    border-bottom-color: var(--orange);
    color: var(--orange);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-quote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.03) 100%);
    border-radius: 12px;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.auth-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.auth-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.auth-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.auth-button:active {
    transform: translateY(0);
}

.auth-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.6;
    margin-top: 1rem;
}

/* ==================== МОДАЛЬНОЕ ОКНО ПОДТВЕРЖДЕНИЯ ЗАКАЗА ==================== */

.order-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.order-confirmation-content {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.order-confirmation-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.order-number {
    font-size: 1.1rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.confirmation-info {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.confirmation-info p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.confirmation-info p:last-child {
    margin-bottom: 0;
}

.phone-number {
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
    margin-top: 1rem;
}

.order-details {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.order-details h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    font-size: 0.95rem;
}

.order-item-row span:first-child {
    flex: 1;
    text-align: left;
}

.order-item-row span:last-child {
    color: var(--orange);
    font-weight: 600;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: var(--dark);
}

.order-total-row span:last-child {
    color: var(--orange);
    font-weight: 700;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 480px) {
    .order-confirmation-content {
        padding: 1.5rem;
    }
    
    .confirmation-icon {
        font-size: 3rem;
    }
    
    .order-confirmation-content h2 {
        font-size: 1.5rem;
    }
}


/* ==================== НОВЫЙ ДИЗАЙН ПРОФИЛЯ ==================== */

.profile-header-card {
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar-large svg {
    width: 60px;
    height: 60px;
    color: white;
}

.profile-name-card {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.profile-phone-card {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 140, 66, 0.05));
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.7;
    font-weight: 500;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 140, 66, 0.02));
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--cream);
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.loyalty-card {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 140, 66, 0.03));
    border: 2px solid rgba(255, 140, 66, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
}

.loyalty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 140, 66, 0.2);
}

.loyalty-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.loyalty-badge {
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

.loyalty-rules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    transition: all 0.3s;
}

.rule-item:hover {
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
    transform: translateX(4px);
}

.rule-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.rule-text {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.logout-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.logout-btn:active {
    transform: translateY(0);
}

.empty-orders {
    text-align: center;
    padding: 2rem;
    color: var(--dark);
    opacity: 0.6;
    font-size: 0.95rem;
}


/* ==================== НОВЫЙ МИНИМАЛИСТИЧНЫЙ ПРОФИЛЬ ==================== */

.profile-user-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 140, 66, 0.2);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.1);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.user-phone {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.6;
}

.profile-loyalty {
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.loyalty-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.points-value {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.points-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.profile-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 66, 0.15);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.08);
}

.info-item:hover {
    border-color: var(--orange);
    background: rgba(255, 140, 66, 0.02);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
}

.info-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 0.75rem;
    color: var(--dark);
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.info-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

.profile-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 66, 0.15);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.08);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.3rem;
    min-width: 25px;
}

.benefit-text {
    flex: 1;
}


/* ==================== ПОДТВЕРЖДЕНИЕ ЗАКАЗА ==================== */

.order-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.order-confirmation-content {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

.order-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 140, 66, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.order-close-btn:hover {
    background: var(--orange);
    color: white;
    transform: rotate(90deg);
}

.order-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-header {
    text-align: center;
    margin-bottom: 1rem;
}

.confirmation-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.confirmation-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.order-number {
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 700;
}

.order-summary {
    background: rgba(255, 140, 66, 0.05);
    border: 2px solid rgba(255, 140, 66, 0.15);
    border-radius: 12px;
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--dark);
}

.item-name {
    flex: 1;
    font-weight: 500;
}

.item-price {
    font-weight: 600;
    color: var(--orange);
    margin-left: 0.5rem;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.total-amount {
    color: var(--orange);
    font-size: 1rem;
}

.confirmation-info-card {
    background: white;
    border: 2px solid rgba(255, 140, 66, 0.15);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-label {
    color: var(--dark);
    opacity: 0.6;
    font-weight: 600;
}

.info-value {
    color: var(--dark);
    font-weight: 600;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-telegram {
    display: block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-telegram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 66, 0.5);
}

.btn-telegram:hover::before {
    left: 100%;
}

.btn-telegram:active {
    transform: translateY(-1px);
}

.btn-close {
    padding: 1rem;
    background: white;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn-close:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 66, 0.3);
}

.btn-close:active {
    transform: translateY(-1px);
}


/* ==================== МЕНЮ КАРТОЧКИ С АНИМАЦИЕЙ ==================== */

.menu-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }
.menu-card:nth-child(6) { animation-delay: 0.6s; }
.menu-card:nth-child(7) { animation-delay: 0.7s; }
.menu-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
