body {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    background: #ffffff;
    color: #000000;
}

h1,
h2,
.hero-title {
    font-family: "Bebas Neue", sans-serif;
}

body,
p {
    font-family: "Bebas Neue", sans-serif;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header {
    background: rgba(0, 31, 37, 0.63);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;

    transition: color 0.3s;
    color: #000000;
}
.nav a:hover {
    color: #000000;
}

.burger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.hero {
    /* height: 100vh;
   
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; */

    /* height: 80vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center; */
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    overflow: hidden;

    /* фон-картинка подложка */
}

.hero2 {
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.heroBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.heroBg2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.hero-content h2 {
    margin-top: 10px;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.95);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #f44336;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

footer {
    background: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

footer p {
    margin: 0;
}
.socials a {
    color: #f7988d;
    margin: 0 8px;
    font-size: 22px;
    transition: color 0.3s;
}

.socials a:hover {
    color: #000000 !important;
}

.logo-small img {
    width: 60px;
    margin: 0;
}
.logo-small {
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .burger {
        display: block;
    }
    .hero {
        min-height: 65vh;
    }
    .logo-small {
        height: 60px;
    }

    .logo-small img {
        width: 60px !important;
    }
}

/* ====== Base ====== */
:where(body) {
    font-family: "Bebas Neue", sans-serif;
    color: #000000;
    line-height: 1.55;
}

.wl-container {
    width: min(100% - 32px, 980px);
    margin-inline: auto;
}

/* ====== Welcome ====== */
.wl-welcome {
    background: #fff;
    text-align: center;
}

.wl-eyebrow {
    font: 600 14px/1 "Montserrat", sans-serif;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #000000;
}

.wl-title {
    margin: 0 0 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400 !important;
    font-size: 30px !important;
    letter-spacing: 0.18em !important;
    color: #000000;
}

.wl-lead {
    margin: 0 auto 12px;

    font-size: clamp(15px, 1.7vw, 18px);
    color: #000000;
}

.wl-note {
    margin: 0 auto 28px;
    max-width: 760px;
    color: #000000;
}

.wl-link {
    color: #2c80b9;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wl-btn {
    display: inline-block;
    padding: 14px 22px;
    font: 600 14px/1 "Montserrat", sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.2s ease;
}

.wl-btn-outline {
    color: #000000;
    border: 1px solid #b8b8b8;
}

.wl-btn-outline:hover {
    color: #222;
    border-color: #222;
}

/* ====== Happy Hour Banner ====== */
.wl-happy {
    position: relative;
    min-height: 54vh;
    display: grid;
    place-items: center;
    overflow: hidden;

    /* фон-картинка подложка */
    background: linear-gradient(
        0deg,
        rgb(33 136 161 / 38%),
        rgb(17 50 58 / 71%)
    );
    color: #e7eced;
}

.wl-happy h2 {
    color: #fff;
    text-align: center;
}
/* если нужен файл из webp/jpeg — просто замените путь вверхом */

.wl-happy-inner {
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wl-deco {
    margin: 0 0 14px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(42px, 9vw, 96px);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
}

.wl-time {
    margin: 0;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.wl-small {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: rgba(0, 0, 0, 0.7);
}

.wl-specials {
    margin: 0;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* ====== Responsive polish ====== */
@media (max-width: 640px) {
    .wl-btn {
        padding: 12px 18px;
        letter-spacing: 0.14em;
    }
    .wl-time,
    .wl-specials {
        letter-spacing: 0.18em;
    }
}

.wl-location {
    background: #fff;
    text-align: center;
}

.wl-location p {
    text-transform: lowercase;
}

.wl-loc-title {
    margin: 0 0 8px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.6vw, 24px);
    line-height: 1;
    letter-spacing: 0.32em;
    color: #000000;
}

.wl-loc-sub {
    margin: 0 0 24px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 1.8vw, 12px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #000000;
}

.wl-loc-rule {
    width: min(860px, 92%);
    height: 1px;
    margin: 0 auto;
    border: 0;
    background: linear-gradient(
        90deg,
        transparent,
        #bfbfbf 10%,
        #bfbfbf 90%,
        transparent
    );
    opacity: 0.9;
}

.wl-open-title {
    margin: 0 0 8px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.6vw, 24px);
    line-height: 1;
    letter-spacing: 0.32em;
    color: #ffffff;
}

.wl-open-sub {
    color: #ffffff;
    font-size: 36px !important;
}

.wl-open-rule {
    width: min(860px, 92%);
    height: 1px;
    margin: 0 auto;
    border: 0;
    background: linear-gradient(
        90deg,
        transparent,
        #ffffff 10%,
        #bfbfbf 90%,
        transparent
    );
    opacity: 0.9;
}

section {
    margin-bottom: 60px;
}

.two-lists {
    justify-content: center;
}

.two-lists h2 {
    text-align: center;
}

.lists-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.list img {
    width: 380px;
}

/* Мобилка: списки в колонку */
@media (max-width: 640px) {
    .lists-wrap {
        flex-direction: column;
        gap: 20px;
    }
    .heroBg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: -865px;
        z-index: -1;
    }
    .hero2 {
        min-height: 23vh;
    }
    .heroBg2 {
        object-fit: contain;
    }
    .list {
        display: flex;
        flex-direction: column;

        gap: 40px;
        list-style: none;
    }
    .list img {
        width: 340px;
    }
}
.skates-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f8a9a2; /* нежный розовый фон */
    position: relative;
    flex-wrap: wrap;
    max-height: 60vh;
}

.skates-left {
    flex: 1 1 45%;
    color: #fff;
    text-align: center;
}

.skates-left h1 {
    font-size: 72px;
    line-height: 1.2;
    margin: 0;
}

.skates-left h1 span {
    font-style: italic;
    display: block;
    font-size: 38px;
}

.skates-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: #fff;
}

.btn-shop {
    display: inline-block;
    padding: 12px 28px;
    background: #ff7f50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-shop:hover {
    background: #ff5722;
}

.skates-right {
    flex: 1 1 50%;
    position: relative;
}

.skates-image {
    width: 100%;
    border-radius: 6px;
    display: block;
    object-fit: cover;
    height: 100%;
}

.skates-review {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 280px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 8px;
}

.skates-review .rev-title {
    font-size: 24px !important;
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.skates-review p {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
}

.skates-review .author {
    font-size: 13px;
    color: #888;
}

/* Адаптив */
@media (max-width: 768px) {
    .skates-section {
        flex-direction: column;
    }
    .skates-right {
        display: none;
        order: -1;
    }
    .skates-review {
        position: static;
        margin-top: 15px;
    }
    .content {
        padding: 30px 20px;
    }
    .hero2 {
        display: none !important;
    }
}

/*   НАСТРОЙКА SCROLL-BAR   */
::-webkit-scrollbar {
    width: 0.6em;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 100vw;
    margin: 10px 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 100vw;
    background-color: #f0a89c;
}

::-webkit-scrollbar-thumb:active {
    background-color: #f0a89c;
}
