:root {
    --blue: #0878be;
    --navy: #1d3e65;
    --yellow: #fdb500;
    --text: #151515;
    --footer: #f7f7f7;
    --line: #dddddd;
    --page-shell: min(1924px, calc(100% - 120px));
    --footer-shell: min(1800px, calc(100% - 160px));
}

* {
    box-sizing: border-box;
}

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

body {
    color: var(--text);
    background: #fff;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.site-header {
    height: 136px;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.header-shell {
    width: var(--footer-shell);
    height: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-brand {
    width: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-brand > img {
    width: 150px;
    height: 54px;
    object-fit: contain;
}

.offers-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 6px;
    background: var(--yellow);
    color: #060606;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.offers-label b {
    font-size: 17px;
}

.page-main {
    background: #fff;
}

.hero-shell {
    width: var(--page-shell);
    margin: 29px auto 0;
}

.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 6 / 1;
    overflow: hidden;
    background: #050514;
}

.hero-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-message {
    position: absolute;
    top: 20%;
    right: 4.7%;
    width: 30%;
    color: #fff;
    text-align: center;
}

.hero-message h1 {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 49px);
    font-weight: 800;
    line-height: 1.2;
}

.hero-message p {
    margin: 5px 0 29px;
    font-size: clamp(12px, 0.8vw, 16px);
    font-weight: 500;
}

.hero-message span {
    display: inline-grid;
    min-width: 170px;
    min-height: 48px;
    place-items: center;
    padding: 5px 28px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: clamp(16px, 1vw, 21px);
    font-weight: 700;
}

.brand-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 127px;
    padding-top: 12px;
    direction: rtl;
}

.brand-item {
    width: 205px;
    height: 94px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
}

.brand-item img {
    width: 140px;
    height: 60px;
    object-fit: contain;
}

.page-spacer {
    min-height: 330px;
}

.site-footer {
    background: var(--footer);
}

.footer-shell {
    width: var(--footer-shell);
    margin-inline: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.28fr 0.36fr 0.52fr 0.78fr;
    gap: clamp(40px, 5vw, 105px);
    padding: 29px 20px 68px;
}

.footer-content h2 {
    margin: 0 0 14px;
    color: #080808;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
}

.footer-about {
    text-align: right;
}

.footer-logo {
    width: 210px;
    height: 76px;
    margin: 0 0 2px auto;
    object-fit: contain;
}

.footer-about > p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 21px;
    margin-top: 20px;
    direction: ltr;
}

.social-icons a {
    display: grid;
    place-items: center;
    border-radius: 6px;
    transition: transform 160ms ease, opacity 160ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
    opacity: 0.78;
    transform: translateY(-2px);
    outline: none;
}

.social-icons img {
    width: 37px;
    height: 37px;
    object-fit: contain;
}

.social-icons a[aria-label="YouTube"] img {
    width: 43px;
}

.footer-column {
    padding-top: 7px;
}

.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin: 0 0 4px;
    white-space: nowrap;
}

.footer-contact {
    padding-top: 7px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-row a {
    color: inherit;
    text-decoration: none;
}

.contact-row a:hover,
.contact-row a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
    outline: none;
}

.contact-row svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.contact-location {
    min-height: 24px;
}

.payments {
    margin-top: 35px;
}

.payments h2 {
    margin-bottom: 13px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(58px, 1fr));
    gap: 16px 24px;
    align-items: center;
    direction: ltr;
}

.payment-grid img,
.payment-placeholder {
    width: 78px;
    height: 35px;
    object-fit: contain;
    justify-self: center;
}

.footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 8px 38px;
    border-top: 1px solid var(--line);
    font-size: 16px;
}

.footer-bottom p {
    margin: 0;
}

.company-records span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.whatsapp-button {
    position: fixed;
    z-index: 50;
    left: 18px;
    bottom: 15px;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-button img {
    width: 64px;
    height: 64px;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.24);
    outline: none;
}

@media (max-width: 1100px) {
    :root {
        --page-shell: calc(100% - 44px);
        --footer-shell: calc(100% - 44px);
    }

    .site-header {
        height: 112px;
    }

    .header-brand {
        width: 155px;
    }

    .header-brand > img {
        width: 140px;
        height: 49px;
    }

    .hero-message p {
        margin-bottom: 16px;
    }

    .hero-message span {
        min-width: 128px;
        min-height: 38px;
    }

    .brand-strip {
        min-height: 105px;
    }

    .brand-item {
        width: 160px;
        height: 78px;
    }

    .footer-content {
        grid-template-columns: 1fr 0.4fr 0.55fr 0.8fr;
        gap: 35px;
    }

    .footer-about > p,
    .footer-column p,
    .footer-column ul,
    .contact-row {
        font-size: 15px;
    }

    .footer-content h2 {
        font-size: 19px;
    }

    .payment-grid {
        gap: 13px 12px;
    }
}

@media (max-width: 760px) {
    :root {
        --page-shell: calc(100% - 24px);
        --footer-shell: calc(100% - 24px);
    }

    .site-header {
        height: 96px;
    }

    .header-shell {
        justify-content: center;
    }

    .header-brand {
        width: 145px;
        gap: 2px;
    }

    .header-brand > img {
        width: 126px;
        height: 43px;
    }

    .offers-label {
        min-height: 27px;
        padding-inline: 9px;
        font-size: 14px;
        line-height: 27px;
    }

    .hero-shell {
        margin-top: 14px;
    }

    .hero-banner {
        min-height: 225px;
        aspect-ratio: auto;
        background: #050514;
    }

    .hero-banner::after {
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        width: 57%;
        background: linear-gradient(90deg, rgba(5, 5, 20, 0.4), #050514 38%);
    }

    .hero-banner > img {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: left center;
        opacity: 0.82;
    }

    .hero-message {
        z-index: 2;
        top: 50%;
        right: 14px;
        width: 47%;
        transform: translateY(-50%);
    }

    .hero-message h1 {
        font-size: 29px;
    }

    .hero-message p {
        margin: 3px 0 18px;
        font-size: 12px;
    }

    .hero-message span {
        min-width: 115px;
        min-height: 35px;
        font-size: 15px;
    }

    .brand-strip {
        gap: 0;
        min-height: 91px;
        padding-top: 5px;
    }

    .brand-item {
        width: 33.333%;
        height: 72px;
    }

    .page-spacer {
        min-height: 150px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
        padding: 30px 4px 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 168px;
        height: 60px;
    }

    .footer-about > p {
        font-size: 14px;
    }

    .footer-about > p br {
        display: none;
    }

    .social-icons {
        gap: 17px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .payments {
        max-width: 390px;
        margin-top: 28px;
    }

    .footer-bottom {
        min-height: 116px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 16px 2px 38px;
        font-size: 12px;
        text-align: center;
    }

    .whatsapp-button {
        left: 13px;
        bottom: 13px;
        width: 62px;
        height: 62px;
    }

    .whatsapp-button img {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 430px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: auto;
    }

    .footer-shop,
    .footer-support {
        padding-top: 0;
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-button {
        transition: none;
    }
}
