/* ==================== БАЗОВЫЕ СТИЛИ ==================== */
*, ::before, ::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul, ol, li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
    color: black;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
}

p {
    line-height: 150%;
}

html, body {
    margin: 0;
    height: 100%;
    line-height: 1;
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 150%;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-weight: 700;
}

h4 {
    font-size: 16px;
    font-weight: 600;
}

.myrm {
    max-width: 100%;
}

[class*='__container'] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== ХЕДЕР - УЛУЧШЕННЫЙ ==================== */

.first-info {
    background: linear-gradient(135deg, #bb1d1d 0%, #a01717 50%, #bb1d1d 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 20px 0;
}

.first-info__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    width: 100px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.logo-text {
    flex: 1;
    text-align: center;
}

.logo-text h1 {
    color: white;
    font-size: 36px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
}

.update-date {
    color: white;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.update-date span {
    color: #f8c006;
    font-weight: 700;
    font-size: 18px;
}

.header-contacts {
    flex-shrink: 0;
}

.icon {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* ==================== STICKY МЕНЮ ==================== */

.main-nav {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-nav__container {
    padding: 0;
}

.menu__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu__list li {
    flex: 1;
}

.menu__list li a {
    display: block;
    padding: 18px 15px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.menu__list li a:hover,
.menu__list li a.current {
    color: #bb1d1d;
    background: rgba(187, 29, 29, 0.05);
    border-bottom-color: #bb1d1d;
}

.menu__new-kirov {
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    animation: pulseKirov 2s infinite;
    border-bottom: none !important;
}

.menu__new-kirov:hover {
    background: linear-gradient(135deg, #d62828 0%, #bb1d1d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 29, 29, 0.5);
}

@keyframes pulseKirov {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(187, 29, 29, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(187, 29, 29, 0);
    }
}

/* ==================== ПРЕИМУЩЕСТВА (ВЫНЕСЕНЫ ИЗ ХЕДЕРА) ==================== */

.advantages {
    background: linear-gradient(135deg, #f8c006 0%, #ffd54f 100%);
    padding: 50px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.advantages__title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* ==================== О НАС ==================== */

.about {
    padding: 70px 0;
    background: #f9f9f9;
}

.about__container h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.about__container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bb1d1d, #f8c006);
    border-radius: 2px;
}

.about__block {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-img {
    flex: 0 0 380px;
    align-self: center;
}

.about-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
    padding: 0 10px;
    text-align: justify;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    white-space: pre-line;
}

/* ==================== ГРАФИК ЦЕН ==================== */

.price {
    padding: 70px 0;
    background: #fff;
}

.title__price h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.title__price h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bb1d1d, #f8c006);
    border-radius: 2px;
}

.table-price__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.table {
    flex: 0 0 auto;
    border: 3px solid #bb1d1d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.table table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding: 18px 25px;
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.table td {
    border: 2px solid #f0f0f0;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
}

.table tr:nth-child(even) {
    background: #f9f9f9;
}

.table td span {
    color: #bb1d1d;
    font-weight: 700;
    font-size: 13px;
}

.td_left {
    border-bottom-left-radius: 11px;
}

.td_right {
    border-bottom-right-radius: 11px;
}

.desc-text {
    flex: 1;
}

.desc-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    color: #1a1a1a;
}

.desc-text p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.desc-text .leftimg {
  
    margin: 0 25px 20px 0;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==================== МАГАЗИНЫ (НОВЫЕ КАРТОЧКИ) ==================== */

.magazine {
    padding: 70px 0;
    background: #f9f9f9;
}

.title__magazine h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.title__magazine h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bb1d1d, #f8c006);
    border-radius: 2px;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.shop-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.shop-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.shop-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card__image img {
    transform: scale(1.1);
}

.shop-card__city {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    padding: 30px 20px 15px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-card__content {
    padding: 25px;
}

.shop-card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.info-value {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

.info-value a {
    color: #bb1d1d;
    font-weight: 600;
    transition: color 0.3s;
}

.info-value a:hover {
    color: #d62828;
    text-decoration: underline;
}

.shop-card--new {
    border: 3px solid #f8c006;
    position: relative;
}

.shop-card--new .shop-card__image {
    position: relative;
}

.new-badge {
    position: absolute;
    top: 50px;
    right: -75px;
    background: #f8c006;
    color: #1a1a1a;
    padding: 8px 50px;
    font-weight: 700;
    font-size: 13px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shop-card__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #bb1d1d 0%, #d62828 100%);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.shop-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(187, 29, 29, 0.4);
}

/* ==================== АКЦИИ ==================== */

.event {
    padding: 70px 0;
    background: #fff;
}

.event__price h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.event__price h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bb1d1d, #f8c006);
    border-radius: 2px;
}

.description {
    display: flex;
    padding: 30px;
    gap: 40px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-img {
    flex: 0 0 320px;
}

.event-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-text {
    flex: 1;
    padding: 0 10px;
    text-align: justify;
}

.event-text h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.event-text h4 {
    text-align: center;
    padding-bottom: 15px;
    font-size: 18px;
    color: #666;
}

.event-text h4 span {
    color: #bb1d1d;
    font-weight: 700;
}

.event-text p {
    font-size: 16px;
    line-height: 1.8;
}

/* ==================== УЛУЧШЕННЫЙ ФУТЕР ==================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0 25px;
    margin-top: 80px;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8c006;
}

.footer__column p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 12px;
}

.footer__tagline {
    font-style: italic;
    color: #f8c006;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s;
}

.footer__social-link:hover {
    color: #f8c006;
    transform: translateX(5px);
}

.footer__social-link img {
    width: 20px;
    height: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s;
}

.footer__nav a:hover {
    color: #f8c006;
    transform: translateX(5px);
}

.footer__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__cities span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: #ccc;
}

.city-new {
    background: #bb1d1d !important;
    color: #fff !important;
    font-weight: 600;
}

.footer__info p {
    margin-bottom: 15px;
}

.footer__info strong {
    color: #f8c006;
}

.footer__bottom {
    text-align: center;
    padding-top: 25px;
}

.footer__bottom p {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer__slogan {
    color: #f8c006;
    font-style: italic;
    font-size: 15px;
}

/* ==================== АДАПТИВ ==================== */

@media (max-width: 991px) {
    .about__block {
        flex-direction: column;
    }

    .about-img {
        flex: 1;
        max-width: 100%;
    }

    .table-price__container {
        flex-direction: column;
    }

    .table {
        width: 100%;
    }

    .desc-text .leftimg {
        max-width: 220px;
    }

    .description {
        flex-direction: column;
    }

    .event-img {
        flex: 1;
        max-width: 100%;
    }

    .shops-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    .first-info__container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        width: 80px;
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 14px;
    }

    .update-date {
        font-size: 14px;
    }

    .menu__list {
        flex-wrap: wrap;
    }

    .menu__list li {
        flex: 1 1 calc(50% - 5px);
    }

    .menu__list li a {
        padding: 14px 10px;
        font-size: 12px;
    }

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

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

    .desc-text .leftimg {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .description {
        padding: 20px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 560px) {
    .logo-text h1 {
        font-size: 24px;
    }

    .update-date {
        font-size: 13px;
        padding: 6px 15px;
    }

    .update-date span {
        font-size: 15px;
    }

    .menu__list li a {
        padding: 12px 8px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .advantages__title {
        font-size: 20px;
    }

    .advantage-card {
        padding: 25px 15px;
    }

    .table td {
        padding: 10px;
        font-size: 13px;
    }

    .title__price h2,
    .title__magazine h2,
    .event__price h2,
    .about__container h2 {
        font-size: 28px;
    }
}

@media (max-width: 440px) {
    .menu__list li a {
        padding: 10px 6px;
        font-size: 10px;
    }

    .icon {
        justify-content: center;
    }
}
