/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #CC1B1B;
    --red-dark: #A51515;
    --red-bright: #E52020;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-bg: #F2F2F2;
    --text-dark: #111111;
    --text-muted: #555555;
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== AGE MODAL ===== */
.age-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.age-modal-overlay.hidden { display: none; }

.age-modal {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalPulse 0.5s ease;
}

@keyframes modalPulse {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.age-modal__icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.age-modal h2 {
    color: var(--red);
    font-size: 28px;
    margin-bottom: 10px;
}

.age-modal p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.age-modal__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-modal__btn {
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.age-modal__btn--yes {
    background: var(--red);
    color: var(--white);
}

.age-modal__btn--yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,27,27,0.4);
    background: var(--red-dark);
}

.age-modal__btn--no {
    background: transparent;
    border: 2px solid #999;
    color: #555;
}

.age-modal__btn--no:hover {
    border-color: var(--red);
    color: var(--red);
}

.age-denied {
    display: none;
    color: var(--red-bright);
    font-size: 16px;
    margin-top: 20px;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    border-bottom: 2px solid #eeeeee;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo img {
    height: 110px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__nav a {
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
    background: var(--red);
    color: var(--white);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__phone {
    color: var(--red);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.header__phone:hover { color: var(--red-dark); }

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn--gold {
    background: var(--red);
    color: var(--white);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,27,27,0.35);
    background: var(--red-dark);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
}

.btn--outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn--large {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 12px;
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.active {
    background: var(--red);
    color: var(--white);
}

.nav-dropdown__arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-top: 3px solid var(--red);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
    padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-dropdown__menu a:hover {
    background: rgba(204,27,27,0.06);
    color: var(--red);
    border-left-color: var(--red);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: var(--light-bg);
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--red);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--light-bg);
    padding: 50px 0;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__slider-wrap {
    flex: 0 0 55%;
    max-width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero__title span { color: var(--red); }

.hero__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
}

.hero-slider__track {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.7s ease;
}

.hero-slider__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
}

.hero-slider__slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(180,20,20,0.20));
}

.hero-slider__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-slider__content h2 {
    font-size: 26px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.hero-slider__content p {
    font-size: 15px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    color: var(--white);
}

.hero-slider__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.hero-slider__arrow {
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(204,27,27,0.75);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__arrow:hover {
    background: var(--red);
    transform: scale(1.1);
}

.hero-slider__dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider__dot.active {
    background: var(--red);
    transform: scale(1.3);
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 50px;
}

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

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

.showcase__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.beer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.beer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}

.beer-card__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: var(--off-white);
}

/* Главная страница "Наш ассортимент" — квадратные 1:1 */
#showcase .beer-card__img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.beer-card__body {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.beer-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.beer-card__desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beer-card__format {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    align-self: center;
}

.beer-card .btn { 
    width: 100%;
    margin-top: auto;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 80px 0;
    background: var(--text-dark);
    color: var(--white);
}

.advantages .section-title { color: var(--white); }
.advantages .section-subtitle { color: rgba(255,255,255,0.65); }

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

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(204,27,27,0.25);
    transition: var(--transition);
}

.advantage-item:hover {
    background: rgba(204,27,27,0.12);
    border-color: var(--red);
    transform: translateY(-5px);
}

.advantage-item__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    color: var(--red-bright);
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta h2 span { color: var(--red); }

.cta p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PARTNERS ===== */
.partners {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.partners__content {
    max-width: 800px;
    margin: 0 auto;
}

.partners__content h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.partners__content h2 span { color: var(--red); }

.partners__content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.partners__highlight {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 5px solid var(--red);
}

.partners__highlight p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 0;
}

.partners__highlight strong { color: var(--red-bright); }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 20px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer__col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer__col a {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.footer__col a:hover { color: var(--red-bright); }

.footer__col p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer__copyright {
    text-align: center;
    padding-top: 15px;
    font-size: 12px;
}

.footer__copyright p {
    color: #999;
    margin: 0;
}

.footer__copyright a {
    color: #CC1B1B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__copyright a:hover {
    color: #CC1B1B;
}

/* ===== INNER PAGES ===== */
.page-hero {
    background: var(--text-dark);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
    color: var(--red-bright);
}

.beer-detail { padding: 60px 0; }

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

.beer-detail__img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.beer-detail__img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: var(--off-white);
}

.beer-detail__info h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.beer-detail__info .beer-card__format { margin-bottom: 20px; }

.beer-detail__info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.beer-detail__specs {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.beer-detail__specs h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.beer-detail__specs ul { display: grid; gap: 8px; }

.beer-detail__specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.beer-detail__specs li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
}

/* Delivery */
.delivery-page { padding: 60px 0; }

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.delivery-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--red);
    transform: translateY(-5px);
}

.delivery-card__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.delivery-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.delivery-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* About */
.about-page { padding: 60px 0; }

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

.about-content h2 {
    font-size: 28px;
    color: var(--red);
    margin-top: 40px;
    margin-bottom: 15px;
}

.about-content h2:first-of-type { margin-top: 0; }

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-list {
    margin: 20px 0;
    padding-left: 0;
}

.about-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    border-bottom: 1px solid #eeeeee;
}

.about-list li::before {
    content: '●';
    color: var(--red);
    position: absolute;
    left: 5px;
    font-size: 12px;
    top: 15px;
}

.about-list li strong { color: var(--text-dark); }

.about-highlight {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 5px solid var(--red);
}

.about-highlight p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.about-invite {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    text-align: center;
}

.about-invite h2 { color: var(--text-dark); }
.about-invite p { color: var(--text-muted); }

/* ===== ABOUT REQUISITES ===== */
.about-requisites {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--light-bg);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px 30px;
    margin: 30px 0;
    transition: var(--transition);
}

.about-requisites:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
}

.about-requisites__info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-requisites__icon {
    font-size: 40px;
    flex-shrink: 0;
}

.about-requisites__text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-requisites__text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
    line-height: 1.5;
}

.about-requisites__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red);
    color: var(--white);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-requisites__btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,27,27,0.35);
}

.about-requisites__btn svg {
    flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
}

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

.cta-section__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-section__title span { color: var(--red); }

.cta-section__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-section__btn svg { flex-shrink: 0; }

.cta-section__btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(204,27,27,0.3);
}

.cta-section__btn--primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,27,27,0.4);
}

.cta-section__btn--outline {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--red);
}

.cta-section__btn--outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-section__btn--phone {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    font-weight: 700;
}

.cta-section__btn--phone:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: rgba(255,255,255,0.9);
    z-index: 9999;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}

.cookie-banner__btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.cookie-banner__btn:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

/* ===== RESPONSIVE ===== */

/* --- ПЛАНШЕТ 1024px --- */
@media (max-width: 1024px) {
    .header__logo img { height: 90px; }
    .header__nav { display: none; }
    .hamburger { display: flex; }

    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-top: 2px solid var(--red);
        z-index: 999;
    }

    .header__nav.open a {
        padding: 12px 20px;
        font-size: 16px;
        color: var(--text-dark);
    }

    /* Mobile dropdown */
    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-dropdown__toggle {
        justify-content: space-between;
        padding: 12px 20px;
        font-size: 16px;
    }

    .nav-dropdown__arrow {
        font-size: 14px;
        padding: 4px 8px;
        border-radius: 4px;
        background: rgba(204,27,27,0.08);
    }

    .nav-dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: none;
        border-radius: 0;
        background: var(--light-bg);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-dropdown.open .nav-dropdown__menu {
        max-height: 300px;
    }

    .nav-dropdown.open .nav-dropdown__arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown__menu a {
        padding: 10px 20px 10px 36px;
        font-size: 15px;
        border-left: none;
    }

    .nav-dropdown__menu a::before {
        content: '→ ';
        color: var(--red);
    }

    .hero__inner {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero__slider-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .hero__text {
        text-align: center;
        align-items: center;
    }

    .hero__buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

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

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

    .hero-slider__content h2 { font-size: 24px; }
    .hero-slider__content p { font-size: 15px; }

    .beer-detail__inner {
        grid-template-columns: 1fr;
    }

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

/* --- МОБИЛЬНЫЙ 768px --- */
@media (max-width: 768px) {
    .header__logo img { height: 80px; }
    .header__right .btn { display: none; }
    .header__phone { font-size: 13px; }

    .hero {
        padding: 20px 0;
    }

    .hero__inner {
        padding: 0 16px;
        gap: 24px;
    }

    .hero__title { font-size: 28px; }

    .hero__subtitle { font-size: 15px; }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero__buttons .cta-section__btn {
        width: 100%;
        justify-content: center;
    }

    .hero-slider__content h2 { font-size: 20px; }
    .hero-slider__content p { font-size: 13px; }

    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 16px; }

    .showcase__grid,
    .showcase__grid--3col,
    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .showcase__grid .beer-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

    .cta { padding: 50px 0; }
    .cta h2 { font-size: 28px; }
    .cta p { font-size: 16px; }
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section { padding: 40px 16px; }
    .cta-section__title { font-size: 28px; }
    .cta-section__subtitle { font-size: 16px; margin-bottom: 28px; }
    .cta-section__buttons { flex-direction: column; align-items: center; }
    .cta-section__btn { width: 100%; max-width: 320px; justify-content: center; }

    .page-hero h1 { font-size: 32px; }
    .page-hero p { font-size: 16px; }

    .beer-detail__img img { aspect-ratio: 16 / 9; object-fit: contain; }
    .beer-detail__info h2 { font-size: 26px; }

    .footer__inner {
        flex-direction: column;
        gap: 25px;
    }

    .age-modal { padding: 30px 20px; }
    .age-modal h2 { font-size: 22px; }
    .age-modal p { font-size: 14px; }
    .age-modal__buttons { flex-direction: column; gap: 12px; }
    .age-modal__btn { padding: 12px 30px; font-size: 16px; width: 100%; }

    .partners__highlight { padding: 20px; }
    .partners__highlight p { font-size: 16px; }
    .partners__content h2 { font-size: 26px; }

        .about-requisites {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .about-requisites__btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}

/* --- МАЛЕНЬКИЙ МОБИЛЬНЫЙ 480px --- */
@media (max-width: 480px) {
    .header__logo img { height: 65px; }
    .header__phone { font-size: 12px; }

    .hero { padding: 16px 0; }

    .hero__inner { 
        padding: 0 12px; 
        gap: 18px; 
    }

    .hero__title { font-size: 22px; }
    .hero__subtitle { font-size: 14px; }

    .hero-slider__content h2 { font-size: 16px; }
    .hero-slider__content p { font-size: 12px; }

    .hero-slider__arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .hero-slider__dot {
        width: 8px;
        height: 8px;
    }

    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; margin-bottom: 30px; }

    .beer-card__img { aspect-ratio: 16 / 9; object-fit: contain; }
    .beer-card__name { font-size: 16px; }

    .advantage-item { padding: 20px 15px; }
    .advantage-item__icon { font-size: 36px; }
    .advantage-item h3 { font-size: 16px; }

    .cta { padding: 40px 0; }
    .cta h2 { font-size: 24px; }
    .cta p { font-size: 15px; }
    .cta__buttons { gap: 12px; }
    .btn--large { 
        padding: 12px 24px; 
        font-size: 14px; 
        width: 100%;
        text-align: center;
    }

    .cta-section__title { font-size: 24px; }
    .cta-section__subtitle { font-size: 14px; }
    .cta-section__btn { 
        font-size: 14px; 
        padding: 12px 20px; 
    }

    .partners__content h2 { font-size: 22px; }
    .partners__content p { font-size: 15px; }

    .page-hero { padding: 40px 0; }
    .page-hero h1 { font-size: 26px; }
    .page-hero p { font-size: 14px; }

    .beer-detail__img img { aspect-ratio: 16 / 9; object-fit: contain; }
    .beer-detail__info h2 { font-size: 22px; }
    .beer-detail__specs li { font-size: 14px; }

    .delivery-card { padding: 20px; }
    .delivery-card__icon { font-size: 36px; }
    .delivery-card h3 { font-size: 18px; }

    .about-content h2 { font-size: 22px; }
    .about-content p { font-size: 15px; }
    .about-list li { font-size: 14px; }

    .footer__col h4 { font-size: 15px; }
    .footer__col a { font-size: 13px; }
    .footer__col p { font-size: 13px; }
    .footer__bottom { font-size: 12px; }

    .age-modal { padding: 25px 16px; }
    .age-modal__icon { font-size: 44px; }
    .age-modal h2 { font-size: 20px; }
}
/* ===== HERO WARNING ===== */
.hero__warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 28px 40px;
    background: rgba(204, 27, 27, 0.08);
    border: 2px solid rgba(204, 27, 27, 0.35);
    border-radius: 14px;
    min-height: 90px;
}

.hero__warning-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: var(--red);
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    border-radius: 12px;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.hero__warning-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
    .hero__warning {
        padding: 24px 30px;
        gap: 16px;
        min-height: 80px;
    }

    .hero__warning-age {
        min-width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .hero__warning-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero__warning {
        padding: 20px 20px;
        gap: 14px;
        min-height: 70px;
        border-radius: 10px;
    }

    .hero__warning-age {
        min-width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .hero__warning-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero__warning {
        flex-direction: column;
        text-align: center;
        padding: 18px 16px;
        gap: 12px;
    }

    .hero__warning-age {
        min-width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .hero__warning-text {
        font-size: 14px;
    }
}