:root {
    --color-primary: #E30613;
    --color-secondary: #333333;
    --color-green: #70BD28;
    --color-white: #ffffff;
    --color-dark-bg: #1a1a1a;
    --color-card-bg: #2d2d2d;
    --font-main: 'Montserrat', sans-serif;
    --font-cursive: 'Lifehack', 'Pacifico', cursive;

}


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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--color-secondary);
    background-color: #fff;
    background-image: url('../images/bg-left.svg'), url('../images/bg-right.svg'), url('../images/bg-left-2.svg');
    background-position: left top 29%, right top 60%, left top 71%;
    background-size: 12%, 12%, 12%;
    background-repeat: no-repeat;
    font-size: 18px;
    line-height: 1.6;
    padding-top: 55px;

    /* Sticky Footer Logic */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

section {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.wrap {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-red {
    color: var(--color-primary);
}


.topbar {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.topbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.topbar .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.logo {
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    display: block;
}


.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 16px;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.menu a:hover,
.menu a.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.menu a.menu-btn-red {
    background-color: var(--color-primary);
    color: #ffffff !important;
    padding: 2px 10px;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
}

.menu a.menu-btn-red:hover {
    background-color: #c40510;
    border-color: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.4);
}

.menu a.menu-btn-red.active {
    color: #fff !important;
    border-color: #c40510;
}


.hero-section {
    padding: 20px 20px;
}

.hero-banner-container {
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    height: 380px;

}

.hero-bg-image {
    width: 100%;
    height: 100%;
}

.hero-decor-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    z-index: 5;
    pointer-events: none;
}

.hero-decor-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.hero-decor-left,
.hero-decor-right {
    display: none;
}


.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-text-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-cursive);
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
    position: relative;
    z-index: 12;
    width: 100%;
}

.hero-subtitle-straight {
    font-family: var(--font-main);

    font-weight: 700;
}


.hero-play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 10px auto;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
    z-index: 20;
}

.hero-play-btn:hover {
    transform: scale(1.1);
}

.hero-play-btn .play-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}


.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;

    background: #000;
    display: none;

}

.hero-video-wrapper.active {
    display: block;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-video-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 60;
}

.close-video-btn:hover {
    background: rgba(227, 6, 19, 0.8);
}


.hero-shops-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
}

.hero-shops-btn:hover {
    background: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}


.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

.hero-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}


.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10000;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
}


.shops-section {
    padding: 50px 0;
}


.shops-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}

.shops-icon-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shops-main-icon {
    width: 300px;
    height: auto;
}

.shops-brand-label {
    display: none;

}

.section-title {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.8;
    margin: 0;
    color: #000;
    text-transform: uppercase;
}

.section-title .text-red {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-cursive);
    font-weight: 400;
    text-transform: none;
    font-size: 0.8em;
    margin-top: 5px;
    line-height: 1;
}

.shops-title {
    text-align: right;
}

.shops-title .text-red {
    text-align: right;
}


.shops-icon-badge {
    flex: 0 0 250px;
}

.shops-main-icon {
    width: 100%;
    height: auto;
    display: block;
}

.shops-schedule-badge {
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 10px;
    text-align: center;
}

.schedule-icon {
    width: 50px;
    height: 50px;
}

.schedule-text {
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

.schedule-text strong {
    display: block;
    font-weight: 700;
    font-size: 18px;

    margin-bottom: 0;
}

.schedule-hours {
    font-size: 28px;

    font-weight: 900;
    color: #000;
}

.schedule-hours sup {
    font-size: 16px;
    vertical-align: super;
}


.shops-info-banner {
    background: var(--color-primary);
    color: #fff;
    padding: 25px 80px;
    border-radius: 40px;
    margin-top: 5px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: -1;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.2);
}

.shops-info-banner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 986px;
}



.shops-top-flex-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    margin-bottom: 0px;
}

.shops-carousel-header {
    flex: 1;
    text-align: left;
}

.shops-carousel-header h3 {
    text-align: left;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-secondary);
}

.arrow-down-teaser {
    margin-top: 120px;
    margin-bottom: 0px;
    text-align: left;
    padding-left: 165px;
}

.arrow-down-teaser img {
    width: 60px;
}

.city-carousel-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    padding-left: 145px;
}

.shops-carousel-decor {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.decor-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}


.shops-slider-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 0px;
    top: -140px;
}

.shops-swiper {
    z-index: 1;
    padding: 20px 0;
}

.shop-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin: 25px 10px;
    height: calc(100% - 20px);
}

.shop-card-image {
    position: relative;
    height: 220px;
    background: #eee;
    overflow: hidden;
}

.shop-card-image img {
    width: 250px;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}




.location-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin: 0;
    height: 100%;
}

.location-card-image {
    position: relative;
    max-width: 500px;
    height: 440px;
    margin: 0 auto;
    background: #eee;
    overflow: hidden;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card-content {
    padding: 15px 20px 20px;
}

.location-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.location-card-address,
.location-card-schedule {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 10px;
}


.shop-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
}

.shop-card-overlay .address-line {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.shop-card-footer {
    padding: 15px 20px 20px;
}

.btn-route-red {
    display: block;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-route-red:hover {
    background: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}


.shop-prev,
.shop-next {
    width: 40px;
    height: 40px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 10;
}

.shop-prev::after,
.shop-next::after {
    display: none;
}

.shop-prev {
    left: 0px !important;
}

.shop-next {
    right: 0px !important;
}

.shop-prev img,
.shop-next img {
    width: 100%;
    height: 100%;
    display: block;
}


.all-locations-btn-wrapper {
    text-align: center;
    margin: -140px 0 20px;
    position: relative;
    z-index: 2;
}

.arrow-down-button-teaser {
    margin-bottom: 5px;
}

.arrow-down-button-teaser img {
    width: 40px;
}

.btn-primary-pill {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-pill:hover {
    background: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}


.own-production-new {
    padding: 80px 0;
}

.own-production-new .wrap {
    max-width: 1024px;
}

.own-production-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.own-production-content-left {
    flex: 1;
    max-width: 500px;
}

.own-production-content-left .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.own-production-content-left .section-title .text-red {
    text-align: left;
}

.own-production-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 700;
    margin-top: 50px;
}

.own-production-text p {
    margin-bottom: 15px;
}

.own-production-visual-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.brand-boxes-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.brand-box {
    width: 170px;
    height: 170px;
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.brand-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #000;
}

.brand-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.brand-box span {
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

.meat-illustration-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.meat-illustration-wrap img {
    max-width: 100%;
    width: 480px;
    height: auto;
    display: block;

}

.brands-clickable-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
}

.brand-link,
.brand-placeholder {
    width: 50%;
    height: 50%;
}

.brand-link {
    cursor: pointer;
}

.own-production-bottom-banner {
    width: 100%;
    margin-top: 20px;
}

.own-production-bottom-banner img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}



.badge-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-primary);
    line-height: 1.3;
}

.production-desc {
    max-width: 480px;
}

.text-block p,
.production-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
}

.production-image-col {
    flex: 0 0 50%;
}

.production-image-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
}

.main-prod-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlay-brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.4);
    z-index: 2;
}

.overlay-brand-logo img {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}


.promotions-section {
    padding: 50px 0;
    text-align: center;
}

.promotions-header {
    text-align: center;
    margin-bottom: 60px;
}

.promotions-title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-bottom: 20px;
}

.promotions-header .section-title {
    font-size: 64px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.promotions-header .section-title .text-red {
    font-size: 1.1em !important;
    margin-top: -10px !important;
}

.decor-left,
.decor-right {
    width: 200px;
    height: auto;
}

.header-text-bottom {
    margin-top: 15px;
}

.subtitle-cursive {
    font-family: var(--font-cursive);
    font-size: 25px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.header-text-bottom p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.promotions-slider-wrapper {
    padding: 0 60px;
    position: relative;
}

.promo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin: 20px 10px;
}


.promo-card:hover {
    transform: none;
}

.promo-card-top-green {
    background: var(--color-green);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.promo-card-top-green::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath fill='%2370BD28' d='M0 4c4.4 0 5.6-4 10-4s5.6 4 10 4V0H0z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 25px 20px;
}

.discount-sticker {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.promo-card-body {
    padding: 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-city-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    margin-bottom: -5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-img-wrap {
    height: 220px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img-wrap img {
    max-height: 100%;
    width: 250px;
    object-fit: contain;
}

.price-container {
    position: relative;
    width: 100%;
}

.old-price {
    font-size: 20px;
    color: #000;
    text-decoration: line-through;
    font-weight: 700;
    text-align: right;
    padding-right: 50px;
}

.promo-card-footer {
    width: 100%;
    margin-top: auto;
}

.new-price-blob {
    background: var(--color-primary);
    color: #fff;

    border-radius: 50% 50% 0 0;
    font-weight: 900;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    position: relative;
    padding-top: 10px;
}

.new-price-blob .price-val {
    font-size: 40px;
    line-height: 1;
}

.new-price-blob .currency {
    font-size: 28px;
    font-weight: 700;
}


.promo-prev,
.promo-next {
    width: 40px !important;
    height: 40px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 10;
}

.promo-prev::after,
.promo-next::after {
    display: none !important;

}

.promo-prev {
    background-image: url('../images/stores-arrow-left-icon.svg') !important;
    left: 0px !important;
}

.promo-next {
    background-image: url('../images/stores-arrow-right-icon.svg') !important;
    right: 0px !important;
}

.promo-card-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
}

.btn-locations {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.btn-locations:hover {
    background: #c00511;
    transform: scale(1.05);
}

.btn-show {
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-show:hover {
    background: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}


.vacancies-section {
    padding: 100px 0;
    overflow: hidden;
}

.vacancies-header {
    position: relative;
    text-align: center;
    margin-bottom: 210px;
}

.vacancies-header-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    z-index: 0;
    pointer-events: none;
}

.vacancies-header-bg-img {
    max-width: 560px;
    height: auto;
}

.vacancies-header .section-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #000;
}

.vacancies-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.vacancies-info {
    flex: 0 0 50%;
}

.vacancies-visual {
    flex: 0 0 50%;
    position: relative;
}

.vacancies-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
}

.vacancies-intro {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 35px;
    font-weight: 500;
}

.vacancies-search-description {
    font-weight: 700;
}

.benefits-badge {
    background: var(--color-primary);
    color: #fff;
    padding: 7px 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.benefits-list li {
    font-size: 16px;
    font-weight: 600;
    padding-left: 35px;
    padding-bottom: 3px;
    position: relative;
    color: #000;
}

.benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 21px;
    height: 21px;
    background: var(--color-primary);
    border-radius: 50%;
}

.benefits-list li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.vacancies-footer-text {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 600;
}

.vacancies-img-wrapper {
    position: relative;
    width: 100%;
}

.vacancies-main-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.vacancies-svg-overlay {
    position: absolute;
    bottom: -30px;
    right: 0px;
    width: 90%;
    z-index: 2;
    pointer-events: none;
}

.vacancies-svg-overlay img {
    width: 100%;
    height: auto;
}

.vacancies-dynamic-block {
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
}

.dynamic-block-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.vacancies-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 60px;
}

.vacancies-swiper {
    padding: 20px 0;
}

.vacancy-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    margin: 20px 10px;
}

.vacancy-card-top {
    background: var(--color-primary);
    padding: 10px 15px;
    margin-bottom: 25px;
}

.vacancy-pill {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacancy-card-body {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vacancy-description {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.vacancy-conditions {
    margin-top: auto;
}

.conditions-label {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.conditions-text {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    font-weight: 600;
}


.vacancy-prev,
.vacancy-next {
    width: 40px !important;
    height: 40px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 10;
}

.vacancy-prev::after,
.vacancy-next::after {
    display: none !important;
}

.vacancy-prev {
    background-image: url('../images/stores-arrow-left-icon.svg') !important;
    left: 0px !important;
}

.vacancy-next {
    background-image: url('../images/stores-arrow-right-icon.svg') !important;
    right: 0px !important;
}


.vacancies-form-wrap {
    margin-top: 20px;
}

.vacancies-form {
    border: 1px solid #ccc;
    border-radius: 60px;
    padding: 8px 10px 8px 30px;
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
}

.form-inner {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.input-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.vacancies-form input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    background: transparent;
    color: #000;
    padding: 10px 0;
}

.vacancies-form input::placeholder {
    color: #999;
}

.btn-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c40510;
    transform: scale(1.05);
}

.form-note {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.vacancies-search {
    text-align: center;
}

.position-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 20px;
    color: #666;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.tag.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.search-bar {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 5px;
    display: flex;
}

.input-group {
    flex: 1;
    border-right: 1px solid #eee;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.input-group:last-child {
    border: none;
}

.input-group input {
    border: none;
    width: 100%;
    outline: none;
    font-size: 13px;
}

.btn-search {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 700;
    cursor: pointer;
}


.footer-dark-section {
    background: var(--color-dark-bg);
    color: #fff;
    padding: 1px 0 30px;
    margin-top: 80px;
    position: relative;
}

.history-content {
    text-align: center;
    max-width: 800px;
    margin: -100px auto 50px;
    position: relative;
    z-index: 10;
}

.history-content h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    background: var(--color-dark-bg);
    display: inline-block;
    padding: 20px 60px 0;

    border-radius: 60px 60px 0 0;
    position: relative;
}


.history-content h2::before,
.history-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    z-index: -1;
}

.history-content h2::before {
    left: -40px;
    border-bottom-right-radius: 50%;
    box-shadow: 20px 0 0 0 var(--color-dark-bg);
}

.history-content h2::after {
    right: -40px;
    border-bottom-left-radius: 50%;
    box-shadow: -20px 0 0 0 var(--color-dark-bg);
}

.history-cursive {
    font-family: 'Pacifico', cursive;
    color: var(--color-primary);
    text-transform: lowercase;
    font-weight: 400;
    font-size: 1.1em;
    margin-right: 5px;
}

.history-paragraphs p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}


.feedback-card {
    background: var(--color-card-bg);
    max-width: 900px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-card h3 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-form-redesigned {
    width: 100%;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.feedback-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feedback-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 36px;

}


.feedback-icon-wrap {
    margin-bottom: 10px;
    height: 60px;
    display: flex;
    align-items: flex-end;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.feedback-select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    appearance: none;
    cursor: pointer;
    text-align: center;
}

.custom-select-wrapper::after {
    content: '▼';
    font-size: 10px;
    color: #333;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1;
}

.star {
    color: #555;

    cursor: pointer;
    transition: color 0.2s;
}


.star:hover,
.star:hover~.star {
    color: #FFC107 !important;
}


.star.active {
    color: #FFC107;
}

.star-rating:hover .star {
    color: #555;

}

.star-rating:hover .star:hover,
.star-rating:hover .star:hover~.star {
    color: #FFC107;

}

.feedback-textarea-small {
    width: 100%;
    height: 80px;
    border-radius: 15px;
    border: none;
    padding: 10px;
    font-size: 12px;
    resize: none;
}


.feedback-textarea-large {
    width: 100%;
    height: 110px;
    border-radius: 15px;
    border: none;
    padding: 10px;
    font-size: 12px;
    resize: none;
    margin-bottom: 15px;
}

.btn-feedback-submit {
    background: #E30613;

    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-feedback-submit:hover {
    background: #c40510;
}



.footer-bottom-info {
    text-align: center;
    margin-top: 50px;
    color: #cfcfcf;
    font-size: 12px;
}


.contacts-info-wrap {
    margin: 30px auto 60px;
    text-align: center;
    max-width: 800px;
}

.contacts-info-wrap h2 {
    margin-bottom: 30px;
}

.contacts-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-primary);
}

.contact-link img {
    width: 32px;
    height: 32px;
}

.contact-link svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.footer-contacts-bottom {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.footer-contacts-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts-bottom a:hover {
    color: var(--color-primary);
}

.footer-sep {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}


.swiper-button-prev,
.swiper-button-next {
    color: var(--color-primary);
}


.quality-standards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 0px;
}

.quality-content {
    flex: 1;
    width: 50%;
}

.quality-title {
    text-align: left;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-weight: 800;
    text-transform: none;
}

.quality-title strong {
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quality-list li {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    line-height: 1;
    position: relative;
}

.quality-map-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.map-wrapper {
    position: relative;
    max-width: 100%;
}

.map-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-main {
    width: 50px;
    height: 50px;
    z-index: 2;
    transition: transform 0.3s;
}

.marker-main:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.marker-main img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(227, 6, 19, 0.3);
    z-index: 1;
}


.locations-page {
    padding: 80px 0;
    min-height: 60vh;
}

.locations-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

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

.shop-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}


.shop-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shop-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.shop-card-address,
.shop-card-schedule {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.shop-card-address strong,
.shop-card-schedule strong {
    color: #000;
    font-weight: 700;
}

.btn-route {
    display: block;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-route:hover {
    background: #c40510;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}

.locations-map-section {
    margin-top: 60px;
}

.map-section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.locations-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}


.locations-map .leaflet-popup-content-wrapper {
    border-radius: 15px;
    padding: 5px;
}

.locations-map .shop-popup {
    text-align: center;
    max-width: 250px;
}

.locations-map .shop-popup img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.locations-map .shop-popup h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.locations-map .shop-popup p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.locations-map .shop-popup .button {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 5px;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.g-recaptcha>div {
    margin: 0 auto;
}

/* Responsive reCAPTCHA */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}