:root {
    --color-red: #ec0001;
    --color-arrow: rgba(252, 133, 131, 0.8);
    --color-text: #292929;
    --color-dark-footer: #292929;
    --font-main: 'Roboto', sans-serif;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --stroke: 2;
}

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

html {
    scroll-behavior: smooth;
}

html body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.4;
    overflow-x: hidden;
    font-size: 16px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
}

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

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

.btn-city {
    background: var(--color-red);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-right: auto;
}

.btn-city:hover {
    background: #d00001;
}

.work-hours {
    font-size: 16px;
}

.work-hours__title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    display: block;
}

.work-hours ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.work-hours li {
    position: relative;
    padding-left: 15px;
    line-height: 1.1;
}

.work-hours li::before {
    content: "";
    position: absolute;
    left: 0;
    font-size: 8px;
    top: 6px;
    background-color: #000;
    width: 6px;
    height: 6px;
}

.work-hours-bold {
    font-weight: 700;
}

.contacts-card {
    gap: 18px;
}

.contacts-card__icon {
    background: var(--color-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.contacts-card__icon svg {
    width: 28px;
    height: 28px;
}

.phone-num {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
    text-decoration: none;
}

.address-link-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
}

.address-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    position: relative;
}

.address-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.address-link:hover::after {
    transform: scaleX(0);
    transform-origin: bottom right;
}

.address-icon {
    width: 20px;
    height: 20px;
    color: #000;
}

.hero {
    padding: 20px 0 80px;
    background-color: #fff;
}

.main-slider {
    overflow: visible;
    position: relative;
    background: #f2f2f2;
    border-radius: 25px;
}

.swiper-slide img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 25px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--color-arrow);
    border-radius: 50%;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: -24px;
}

.swiper-button-next {
    right: -24px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.hero .main-slider .swiper-pagination-bullets-dynamic {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    display: block;
    overflow: visible;
}

.hero .main-slider .swiper-pagination-bullet {
    background: var(--color-red);
    opacity: 0.25;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    transition: 0.3s;
    display: inline-block;
}

.hero .main-slider .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1);
}

.info-alert {
    padding-bottom: 40px;
    background-color: #fff;
}

.alert-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #2e3138;
    padding: 15px 25px;
}

.alert-icon-box {
    width: 54px;
    height: 54px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.alert-icon-box svg {
    width: 26px;
    height: 26px;
    fill: #000;
}

.alert-text-content {
    flex-grow: 1;
}

.alert-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1c20;
    margin-bottom: 2px;
}

.alert-main-msg {
    font-size: 16px;
    font-weight: 700;
    color: #1a1c20;
    margin-bottom: 2px;
}

.alert-sub-msg {
    font-size: 13px;
    color: #7c7f86;
}

.alert-time-block {
    padding-left: 25px;
    margin-left: 20px;
    border-left: 1px solid #e5e7eb;
    text-align: center;
    min-width: 140px;
}

.alert-time-val {
    font-size: 26px;
    font-weight: 800;
    color: #2e3138;
    line-height: 1;
}

.alert-date-val {
    font-size: 11px;
    color: #8e9198;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

.marketing {
    padding: 40px 0 60px;
    text-align: center;
    background-color: #fff;
}

.marketing-text {
    font-size: 36px;
    line-height: 1.1;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 400;
}

.marketing-bold {
    font-weight: 700;
    color: #000;
}

.stores {
    padding: 60px 0;
    background: #fafafa;
}

.stores-title {
    text-align: left;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
}

.footer {
    background-color: var(--color-dark-footer);
    color: #fff;
    padding: 60px 0 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 50px;
}

.footer-logo-box img {
    height: 75px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-copy {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.footer-info-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 5px;
}

.footer-menu-link {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    transition: 0.3s;
    text-decoration: none;
}

.footer-menu-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-phone-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    flex-shrink: 0;
}

.footer-phone {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-phone:hover{
    opacity: 0.75;
    text-decoration: none;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-item {
    margin-bottom: 0px;
    color: #fff;
}

.footer-legal-link {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer-text {
    text-align: justify;
    color: #fff;
    font-size: 14px;
}

.footer-legal-details{
    text-align: left;
    color: #fff;
}

.footer-legal-details a{
    color: #fff;
}

.content-page{
    margin-top: 70px;
    margin-bottom: 70px;
}

.content-page__title{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: var(--font-main);
}

.content-page__title--big{
    font-size: 72px;
}

.content-page__subtitle{
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 750px;
}

.content-block{
    padding-left: 70px;
    max-width: 1100px;
}

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

.breadcrumb-item__link{
    text-decoration: none;
    color: rgb(6, 6, 7);
    transition: all 0.3s;
    position: relative;
}

.breadcrumb-item__link:after{
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    height: 1px;
    background-color: rgb(6, 6, 7);
    left: 0;
    right: 0;
    opacity: 0;
}

.breadcrumb-item__link:hover:after{
    opacity: 1;
}

.breadcrumb-item-angle{
    background: url("../img/arrow.svg") no-repeat center;
    background-size: contain;
    width: 10px;
    height: 8px;
    margin-top: 2px;
}

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

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

@media (max-width: 768px) {
    .swiper-slide img {
        height: 350px;
    }

    .swiper-button-prev {
        left: 10px !important;
    }

    .swiper-button-next {
        right: 10px !important;
    }

    .alert-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .alert-time-block {
        border: none;
        padding: 0;
        margin: 0;
    }

    .marketing-text {
        font-size: 24px;
        max-width: 360px;
    }

    .stores-title {
        font-size: 28px;
        text-align: center;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-logo-box{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-logo-box img{
        margin-bottom: 0;
    }

    .footer-contacts {
        justify-content: center;
        order: -1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-city {
        margin-right: 0;
    }

    .footer-disclaimer-text{
        color: #fff;
        text-align: left;
    }
}

/* Онлайн оплата */
.content-page__title {
    color: #000;
}

.payment-subtitle {
    font-family: var(--font-main);
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
}

.payment-grid {
    display: flex;
    gap: 120px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.payment-col {
    flex: 1 1 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-col__title {
    font-family: var(--font-main);
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
}

.payment-col__img {
    width: 100%;
    max-width: 389px;
    height: auto;
    display: block;
}

.payment-notes {
    font-family: var(--font-main);
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

/* Адаптив для онлайн-оплаты */
@media (max-width: 768px) {
    .content-block {
        padding-left: 0;
    }

    .payment-grid {
        gap: 40px;
        justify-content: center;
    }

    .payment-col {
        max-width: 100%;
    }
}

/* Способы оплаты */
.content-block p {
    margin-bottom: 20px;
    font-family: var(--font-main);
    color: #000;
}

.content-block ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
}

.content-block li {
    font-family: var(--font-main);
    color: #000;
    margin-bottom: 8px;
    line-height: 1.5;
}

.payment-logos-img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 25px 0;
}

/* адаптив способы оплаты*/
@media (max-width: 768px) {
    .content-block {
        padding-left: 0;
    }
    .payment-grid {
        gap: 40px;
        justify-content: center;
    }

    .payment-col {
        max-width: 100%;
    }


    .payment-logos-img {
        max-width: 100%;
        margin: 20px 0;
    }
}