@font-face {
    font-family: "gilroyEB";
    src: url("../../fonts/gilroy/Gilroy-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroyemibold";
    src: local("Gilroy Semibold"), local("Gilroy-Semibold"),
        url("../../fonts/gilroy/Gilroy-Semibold.woff2") format("woff2"),
        url("../../fonts/gilroy/Gilroy-Semibold.woff") format("woff"),
        url("../../fonts/gilroy/Gilroy-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GilroyRegular";
    src: local("Gilroy Regular"), local("Gilroy-Regular"),
        url("../../fonts/gilroy/Gilroy-Regular.woff2") format("woff2"),
        url("../../fonts/gilroy/Gilroy-Regular.woff") format("woff"),
        url("../../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.sizzapp-hero-v2 {
    --hero-green: #71e360;
    --hero-black: #030304;
    --hero-white: #fcfcfc;
    --hero-font-display: gilroyEB, Gilroy, sans-serif;
    --hero-font-semibold: Gilroyemibold, Gilroy, sans-serif;
    --hero-font-regular: GilroyRegular, Gilroy, sans-serif;
    min-height: 780px;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #03520a url("/themes/demo/assets/images/banner/hero-v2-green-bg.png") center top / cover no-repeat;
    color: var(--hero-white);
    font-family: var(--hero-font-semibold);
}

body:has(.discount-line-box) .sizzapp-hero-v2 {
    margin-top: 38px;
}

@media screen and (max-width: 1650px) {
    body:has(.discount-line-box) .sizzapp-hero-v2 {
        margin-top: 34px;
    }
}

@media screen and (max-width: 1370px) {
    body:has(.discount-line-box) .sizzapp-hero-v2 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1050px) {
    body:has(.discount-line-box) .sizzapp-hero-v2 {
        margin-top: 28px;
    }
}

.sizzapp-hero-v2::before,
.sizzapp-hero-v2::after {
    content: "";
    position: absolute;
    inset: 72px auto 0 0;
    width: 46%;
    background: radial-gradient(circle at 0 78%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 62%);
    pointer-events: none;
    z-index: 0;
    display: none;
}

.sizzapp-hero-v2::after {
    inset: auto 0 0 auto;
    width: 58%;
    height: 42%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.hero-v2-topbar {
    position: relative;
    z-index: 30;
    height: 72px;
    background: var(--hero-white);
    color: var(--hero-black);
}

.hero-v2-nav {
    height: 72px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-v2-logo {
    display: flex;
    width: 140px;
    height: 20px;
}

.hero-v2-logo img {
    display: block;
    width: 140px;
    height: 20px;
}

.hero-v2-menu,
.hero-v2-menu ul,
.hero-v2-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-v2-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-v2-menu-item {
    position: relative;
}

.hero-v2-menu-link,
.hero-v2-buy,
.hero-v2-submenu a {
    color: var(--hero-black);
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    text-transform: lowercase;
    white-space: nowrap;
}

.hero-v2-menu-link,
.hero-v2-buy {
    font-family: var(--hero-font-semibold);
    font-weight: 600;
}

.hero-v2-menu-link {
    display: inline-flex;
    cursor: pointer;
    padding: 18px 0;
}

.hero-v2-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    height: 51px;
    padding: 0 28px;
    border: 2px solid var(--hero-green);
    border-radius: 20px;
}

.hero-v2-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 220px;
    padding: 8px;
    border: 1px solid rgba(3, 3, 4, 0.08);
    border-radius: 12px;
    background: var(--hero-white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
    z-index: 60;
}

.hero-v2-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.hero-v2-lang .hero-v2-submenu {
    min-width: 112px;
}

.hero-v2-submenu a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-family: var(--hero-font-semibold);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.hero-v2-submenu a:hover,
.hero-v2-submenu a:focus {
    background: rgba(113, 227, 96, 0.16);
    color: var(--hero-black);
    opacity: 1;
}

.hero-v2-dropdown:hover .hero-v2-submenu,
.hero-v2-submenu.active {
    display: block;
}

.hero-v2-mobile-bar {
    display: none;
}

.hero-v2-mobile-menu.mobile-menu-open {
    display: none;
}

.hero-v2-body {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    height: calc(100% - 72px);
    margin: 0 auto;
    padding: 80px 52px 40px;
}

.hero-v2-copy {
    position: relative;
    z-index: 4;
    max-width: 900px;
}

.hero-v2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-v2-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 43px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(252, 252, 252, 0.2);
    color: var(--hero-white);
    font-family: var(--hero-font-semibold);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    backdrop-filter: blur(2.5px);
}

.hero-v2-copy h1 {
    max-width: 900px;
    margin: 0;
    color: var(--hero-white);
    font-family: var(--hero-font-display);
    font-size: 90px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-v2-copy p {
    max-width: 430px;
    margin: 32px 0 0;
    color: var(--hero-white);
    font-family: var(--hero-font-semibold);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.hero-v2-support {
    position: absolute;
    left: 52px;
    bottom: 40px;
    z-index: 5;
    width: 500px;
}

.hero-v2-support h2 {
    margin: 0 0 12px;
    color: var(--hero-white);
    font-family: var(--hero-font-semibold);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
}

.hero-v2-vehicle-icons {
    display: grid;
    grid-template-columns: repeat(7, 60px);
    gap: 12px;
}

.hero-v2-vehicle-icons span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(5px);
}

.hero-v2-vehicle-icons img {
    display: block;
    max-width: 44px;
    max-height: 32px;
}

.hero-v2-visual {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 72px;
    width: 56%;
    height: calc(100% - 72px);
    pointer-events: none;
}

.hero-v2-nova-card {
    position: absolute;
    right: 52px;
    bottom: 40px;
    width: clamp(760px, 45vw, 900px);
    min-height: 238px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    background: #f5f5f5;
    color: var(--hero-black);
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    pointer-events: auto;
}

.hero-v2-nova-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 198px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.hero-v2-nova-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-v2-nova-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.hero-v2-nova-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-v2-nova-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--hero-black);
    font-family: var(--hero-font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-v2-nova-copy small {
    display: block;
    max-width: 520px;
    color: #1c1e1c;
    font-family: var(--hero-font-semibold);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.8;
}

.hero-v2-nova-copy em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    height: 58px;
    margin-top: 24px;
    padding: 0 28px;
    border: 2px solid #338bff;
    border-radius: 20px;
    color: var(--hero-black);
    font-family: var(--hero-font-semibold);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 1400px) {
    .hero-v2-nav,
    .hero-v2-body {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-v2-menu {
        gap: 20px;
    }

    .hero-v2-menu-link,
    .hero-v2-buy {
        font-size: 15px;
    }

    .hero-v2-support {
        left: 48px;
    }

    .hero-v2-copy h1 {
        max-width: 640px;
        font-size: 70px;
    }

    .hero-v2-nova-card {
        right: 48px;
        width: min(52vw, 700px);
        min-height: 198px;
        grid-template-columns: 220px 1fr;
        gap: 28px;
        padding: 16px;
    }

    .hero-v2-nova-image {
        height: 166px;
    }

    .hero-v2-nova-copy strong {
        font-size: 38px;
    }

    .hero-v2-nova-copy small {
        font-size: 17px;
    }

    .hero-v2-nova-copy em {
        min-width: 150px;
        height: 44px;
        margin-top: 18px;
        font-size: 15px;
    }
}

@media screen and (max-width: 1120px) {
    .sizzapp-hero-v2 {
        height: auto;
        min-height: 100svh;
        background: #03520a url("/themes/demo/assets/images/banner/hero-v2-tablet-bg.png") center -80px / 100% auto no-repeat;
    }

    .hero-v2-topbar {
        height: 68px;
    }

    .hero-v2-nav {
        display: none;
    }

    .hero-v2-mobile-bar {
        height: 68px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--hero-white);
    }

    .hero-v2-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }

    .hero-v2-mobile-logo svg {
        width: 20px;
        height: 20px;
    }

    .hero-v2-mobile-lang {
        position: absolute;
        top: 0;
        right: 92px;
        height: 68px;
        display: flex;
        align-items: center;
    }

    .hero-v2-mobile-lang button {
        min-width: 48px;
        height: 44px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--hero-black);
        font-family: var(--hero-font-regular);
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
    }

    .hero-v2-mobile-lang .dropdown-menu-mobile {
        display: none;
        position: absolute;
        top: 50px;
        right: -6px;
        min-width: 116px;
        padding: 8px;
        border-radius: 8px;
        background: var(--hero-white);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
        list-style: none;
    }

    .hero-v2-mobile-lang .dropdown-menu-mobile.active {
        display: block;
    }

    .hero-v2-mobile-lang a {
        color: var(--hero-black);
        font-family: var(--hero-font-semibold);
        font-size: 13px;
        font-weight: 600;
        line-height: 1;
        min-height: 40px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .hero-v2-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .hero-v2-burger span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background: var(--hero-black);
    }

    .hero-v2-mobile-menu.mobile-menu-open {
        position: fixed;
        inset: 0;
        z-index: 1000002;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        overflow-y: auto;
        background: #1c1e1c;
        color: var(--hero-white);
        transition: transform 0.32s ease;
        transform: translateX(0);
    }

    .hero-v2-mobile-menu.mobile-menu-open.move-out {
        transform: translateX(-105%);
    }

    .hero-v2-drawer-head {
        position: relative;
        min-height: 76px;
        flex: 0 0 auto;
    }

    .hero-v2-drawer-logo {
        position: absolute;
        top: 32px;
        left: 40px;
        display: flex;
        width: 20px;
        height: 20px;
    }

    .hero-v2-drawer-logo svg {
        display: block;
        width: 20px;
        height: 20px;
    }

    .hero-v2-drawer-lang {
        position: absolute;
        top: 28px;
        right: 96px;
    }

    .hero-v2-drawer-lang button {
        border: 0;
        background: transparent;
        color: var(--hero-green);
        font-family: var(--hero-font-regular);
        font-size: 22px;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
    }

    .hero-v2-drawer-lang .dropdown-menu-mobile {
        display: none;
        position: absolute;
        top: 30px;
        right: 0;
        min-width: 78px;
        padding: 10px 12px;
        border: 1px solid rgba(252, 252, 252, 0.16);
        border-radius: 10px;
        background: #1c1e1c;
    }

    .hero-v2-drawer-lang .dropdown-menu-mobile.active {
        display: block;
    }

    .hero-v2-drawer-lang a {
        color: var(--hero-white);
        font-family: var(--hero-font-semibold);
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        text-decoration: none;
    }

    .hero-v2-mobile-close {
        position: absolute;
        top: 20px;
        right: 40px;
        width: 40px;
        height: 40px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .hero-v2-mobile-close::before,
    .hero-v2-mobile-close::after {
        content: "";
        position: absolute;
        top: 19px;
        left: 0;
        width: 40px;
        height: 3px;
        border-radius: 2px;
        background: var(--hero-white);
    }

    .hero-v2-mobile-close::before {
        transform: rotate(45deg);
    }

    .hero-v2-mobile-close::after {
        transform: rotate(-45deg);
    }

    .hero-v2-mobile-menu .hero-v2-drawer-list {
        flex: 1 1 auto;
        padding: 58px 40px 32px;
    }

    .hero-v2-mobile-menu .hero-v2-drawer-list > li + li {
        margin-top: 36px;
    }

    .hero-v2-mobile-menu a,
    .hero-v2-mobile-menu .dropdown-toggle-mobile,
    .hero-v2-drawer-toggle {
        display: inline-flex;
        align-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--hero-white);
        font-family: var(--hero-font-regular);
        font-size: 24px;
        font-weight: 400;
        line-height: 1.1;
        text-decoration: none;
        text-transform: lowercase;
        cursor: pointer;
    }

    .hero-v2-mobile-menu a:hover,
    .hero-v2-mobile-menu a:focus,
    .hero-v2-mobile-menu .dropdown-toggle-mobile:hover,
    .hero-v2-mobile-menu .dropdown-toggle-mobile:focus {
        color: var(--hero-green);
        opacity: 1;
    }

    .hero-v2-drawer-toggle::after {
        content: "";
        width: 0;
        height: 0;
        margin-left: 10px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 7px solid currentColor;
    }

    .hero-v2-mobile-menu .dropdown-menu-mobile {
        display: none;
        margin: 18px 0 0;
        padding-left: 18px;
    }

    .hero-v2-mobile-menu .dropdown-menu-mobile.active {
        display: block;
    }

    .hero-v2-mobile-menu .dropdown-menu-mobile li + li {
        margin-top: 13px;
    }

    .hero-v2-mobile-menu .dropdown-menu-mobile a {
        font-family: var(--hero-font-semibold);
        font-size: 17px;
        font-weight: 600;
    }

    .hero-v2-mobile-menu .hero-v2-mobile-buy {
        margin-top: 70px;
        height: 66px;
        min-width: 150px;
        padding: 0 28px;
        align-items: center;
        border: 2px solid var(--hero-green);
        border-radius: 22px;
        font-size: 22px;
        text-transform: none;
    }

    .hero-v2-drawer-social {
        flex: 0 0 auto;
        padding: 24px 40px 28px;
    }

    .hero-v2-drawer-email {
        color: var(--hero-white);
        font-family: var(--hero-font-regular);
        font-size: 22px;
        font-weight: 400;
        line-height: 1.2;
        text-decoration: none;
        text-transform: none;
    }

    .hero-v2-drawer-social-icons {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 16px;
    }

    .hero-v2-mobile-menu .hero-v2-social {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background-color: var(--hero-white);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px 24px;
    }

    .hero-v2-mobile-menu .hero-v2-social-youtube {
        background-image: url("/themes/demo/assets/images/logo/youtube.svg");
    }

    .hero-v2-mobile-menu .hero-v2-social-facebook {
        background-image: url("/themes/demo/assets/images/logo/facebook.svg");
    }

    .hero-v2-mobile-menu .hero-v2-social-instagram {
        background-image: url("/themes/demo/assets/images/logo/instagram.svg");
    }

    .hero-v2-body {
        height: auto;
        min-height: calc(100vh - 68px);
        min-height: calc(100svh - 68px);
        padding: 42px 24px 26px;
    }

    .hero-v2-copy {
        max-width: 560px;
    }

    .hero-v2-copy h1 {
        max-width: 520px;
        font-size: 48px;
        line-height: 1.05;
    }

    .hero-v2-copy p {
        margin-top: 18px;
        font-size: 14px;
        max-width: 320px;
    }

    .hero-v2-badges {
        margin-top: 0;
        margin-bottom: 16px;
        gap: 7px;
    }

    .hero-v2-badges-top {
        position: static;
        top: auto;
        margin-top: 0;
    }

    .hero-v2-badges span {
        min-height: 26px;
        padding: 0 8px;
        border-radius: 7px;
        font-size: 12px;
    }

    .hero-v2-support {
        display: none;
    }

    .hero-v2-visual {
        position: absolute;
        inset: 0;
        top: 68px;
        width: auto;
        height: auto;
        margin-top: 0;
    }

    .hero-v2-nova-card {
        right: auto;
        left: 50%;
        bottom: 24px;
        width: min(88vw, 680px);
        min-height: 176px;
        grid-template-columns: minmax(180px, 240px) 1fr;
        gap: 22px;
        padding: 12px;
        border-radius: 12px;
        transform: translateX(-50%);
    }

    .hero-v2-nova-image {
        height: 152px;
    }

    .hero-v2-nova-image img {
        max-width: 100%;
    }

    .hero-v2-nova-copy strong {
        margin-bottom: 8px;
        font-size: 32px;
    }

    .hero-v2-nova-copy small {
        max-width: 100%;
        font-size: 16px;
    }

    .hero-v2-nova-copy em {
        width: 150px;
        height: 42px;
        margin-top: 18px;
        font-size: 13px;
    }
}

@media screen and (min-width: 901px) and (max-width: 1120px) {
    .sizzapp-hero-v2 {
        background-position: center -110px;
    }

    .hero-v2-topbar {
        height: 56px;
    }

    .hero-v2-nav {
        height: 56px;
        padding: 0 24px;
        display: flex;
    }

    .hero-v2-mobile-bar,
    .hero-v2-mobile-menu.mobile-menu-open {
        display: none;
    }

    .hero-v2-logo,
    .hero-v2-logo img {
        width: 112px;
        height: 16px;
    }

    .hero-v2-menu {
        gap: 14px;
    }

    .hero-v2-menu-link,
    .hero-v2-buy {
        font-size: 13px;
    }

    .hero-v2-menu-link {
        padding: 16px 0;
    }

    .hero-v2-buy {
        min-width: 94px;
        height: 36px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .hero-v2-submenu {
        top: calc(100% + 6px);
    }

    .hero-v2-body {
        min-height: calc(100vh - 56px);
        min-height: calc(100svh - 56px);
        padding: 48px 24px 24px;
    }

    .hero-v2-copy h1 {
        max-width: 520px;
        font-size: 52px;
    }

    .hero-v2-copy p {
        max-width: 340px;
        font-size: 15px;
    }

    .hero-v2-visual {
        top: 56px;
    }

    .hero-v2-nova-card {
        left: 24px;
        right: auto;
        bottom: 28px;
        width: min(54vw, 560px);
        min-height: 144px;
        grid-template-columns: 168px 1fr;
        gap: 18px;
        padding: 12px;
        transform: none;
    }

    .hero-v2-nova-image {
        height: 120px;
    }

    .hero-v2-nova-copy strong {
        margin-bottom: 4px;
        font-size: 27px;
    }

    .hero-v2-nova-copy small {
        font-size: 14px;
        line-height: 1.16;
    }

    .hero-v2-nova-copy em {
        width: 128px;
        height: 34px;
        margin-top: 12px;
        font-size: 12px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 550px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-bg-offset: -78px;
        --hero-v2-mobile-bg-height: 190vw;
        --hero-v2-mobile-card-gap: 0px;
        --hero-v2-mobile-nova-space: 390px;
        height: auto;
        min-height: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-nova-space));
        background-color: #f3f3f3;
        background-image: url("/themes/demo/assets/images/banner/hero-v2-mobile-bg.png");
        background-position: center var(--hero-v2-mobile-bg-offset);
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    body:has(.discount-line-box) .sizzapp-hero-v2 {
        min-height: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-nova-space));
    }

    .hero-v2-mobile-bar {
        height: 50px;
        padding: 0 18px;
    }

    .hero-v2-topbar {
        height: 50px;
    }

    .hero-v2-mobile-lang {
        right: 78px;
        height: 50px;
    }

    .hero-v2-mobile-lang .dropdown-menu-mobile {
        top: 42px;
    }

    .hero-v2-drawer-head {
        min-height: 72px;
    }

    .hero-v2-drawer-logo {
        top: 30px;
        left: 20px;
    }

    .hero-v2-drawer-lang {
        top: 24px;
        right: 78px;
    }

    .hero-v2-drawer-lang button {
        font-size: 20px;
    }

    .hero-v2-mobile-close {
        top: 17px;
        right: 20px;
        width: 36px;
        height: 36px;
    }

    .hero-v2-mobile-close::before,
    .hero-v2-mobile-close::after {
        top: 17px;
        width: 36px;
    }

    .hero-v2-mobile-menu .hero-v2-drawer-list {
        padding: 46px 40px 24px;
    }

    .hero-v2-mobile-menu .hero-v2-drawer-list > li + li {
        margin-top: 34px;
    }

    .hero-v2-mobile-menu a,
    .hero-v2-mobile-menu .dropdown-toggle-mobile,
    .hero-v2-drawer-toggle {
        font-size: 22px;
    }

    .hero-v2-mobile-menu .hero-v2-mobile-buy {
        margin-top: 56px;
        height: 66px;
        font-size: 22px;
    }

    .hero-v2-drawer-social {
        padding: 24px 12px 28px;
    }

    .hero-v2-drawer-email {
        font-size: 22px;
    }

    .hero-v2-body {
        min-height: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-nova-space) - 50px);
        padding: 20px 16px 20px;
    }

    body:has(.discount-line-box) .hero-v2-body {
        min-height: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-nova-space) - 50px);
    }

    .hero-v2-copy {
        display: flex;
        flex-direction: column;
    }

    .hero-v2-copy h1 {
        order: 1;
        max-width: 360px;
        font-size: 36px;
        line-height: 1.02;
    }

    .hero-v2-copy p {
        order: 2;
        max-width: 340px;
        margin-top: 12px;
        font-size: 12px;
        line-height: 1.32;
    }

    .hero-v2-badges-top {
        order: 3;
        margin-top: 12px;
        margin-bottom: 0;
        max-width: 345px;
    }

    .hero-v2-badges span {
        min-height: 24px;
        padding: 0 8px;
        font-size: 11px;
    }

    .hero-v2-visual {
        top: 0;
        height: auto;
        margin-top: 0;
    }

    .hero-v2-nova-card {
        top: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-bg-offset) + var(--hero-v2-mobile-card-gap));
        bottom: auto;
        width: calc(100vw - 32px);
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 14px 22px 22px;
        border-radius: 20px;
        box-shadow: none;
        overflow: hidden;
    }

    .hero-v2-nova-image {
        width: 100%;
        height: clamp(176px, 46vw, 210px);
        border-radius: 14px;
        background: #fff;
    }

    .hero-v2-nova-image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        transform: none;
    }

    .hero-v2-nova-copy {
        width: 100%;
        min-width: 0;
    }

    .hero-v2-nova-copy strong {
        margin-bottom: 8px;
        padding: 0 2px;
        font-size: clamp(28px, 7vw, 32px);
    }

    .hero-v2-nova-copy small {
        width: 100%;
        max-width: 100%;
        padding: 0 2px;
        font-size: clamp(16px, 4.4vw, 19px);
        line-height: 1.2;
    }

    .hero-v2-nova-copy em {
        width: 100%;
        height: 56px;
        margin-top: 30px;
        border-radius: 18px;
        font-size: 18px;
    }
}

@media screen and (max-width: 550px) and (max-height: 760px) {
    .hero-v2-nova-image {
        height: 168px;
    }
}

@media screen and (max-width: 380px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-bg-offset: -66px;
        --hero-v2-mobile-card-gap: -10px;
        --hero-v2-mobile-nova-space: 350px;
        min-height: calc(var(--hero-v2-mobile-bg-height) + var(--hero-v2-mobile-nova-space));
    }

    .hero-v2-copy h1 {
        font-size: 31px;
    }

    .hero-v2-copy p {
        max-width: 300px;
        font-size: 10px;
    }

    .hero-v2-badges-top {
        max-width: 300px;
    }

    .hero-v2-nova-image {
        height: 160px;
    }

    .hero-v2-nova-card {
        padding-top: 10px;
    }

    .hero-v2-nova-copy strong {
        font-size: 28px;
    }
}

@media screen and (max-width: 380px) and (max-height: 760px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-nova-space: 370px;
    }
}

@media screen and (max-width: 550px) and (min-height: 900px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-bg-offset: -140px;
        --hero-v2-mobile-nova-space: 360px;
    }
}

@media screen and (max-width: 550px) and (min-height: 1150px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-bg-offset: -240px;
    }
}

@media screen and (max-width: 550px) and (min-height: 1350px) {
    .sizzapp-hero-v2 {
        --hero-v2-mobile-bg-offset: -310px;
    }
}
