    /* ####################################################
    :: Template Name: Essence - Fashion Ecommerce Template
    :: Author: Colorlib
    :: Author URL: https://colorlib.com
    :: Description: Essence is smart & elegant fashion e-commerce Template. It's suitable for all e-commerce business platform.
    :: Version: 1.0.0
    :: Created: April 27, 2018
    :: Last Updated: May 2, 2018
    #################################################### */

    /* ---------------------------------------
    ##### - PLACE YOUR CUSTOM CSS HERE - #####
    --------------------------------------- */

:root {
    --brand-primary: #e40714;
    --brand-primary-dark: #b90610;
    --brand-primary-soft: #fff0f1;
    --brand-primary-border: #efc4c8;
    --brand-primary-rgb: 228, 7, 20;
    --brand-on-primary: #ffffff;
    --brand-ink: #191919;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
}

body.search-wrapper-on {
    overflow: hidden;
}

.search-wrapper {
    position: fixed;
    z-index: 5000;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(18, 20, 23, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.search-wrapper-on .search-wrapper {
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-wrapper-on .main-content-wrapper {
    margin-top: 0;
}

.search-panel {
    position: relative;
    width: 100%;
    padding: 42px 72px 38px;
    border-top: 3px solid var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(14, 18, 24, 0.18);
    transform: translateY(-18px);
    transition: transform 260ms ease;
}

.search-wrapper-on .search-panel {
    transform: translateY(0);
}

.search-wrapper .search-close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    top: 24px;
    right: 28px;
    padding: 0;
    border: 1px solid #e4e7eb;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #26282b;
    font-size: 16px;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.search-wrapper .search-close:hover,
.search-wrapper .search-close:focus-visible {
    border-color: var(--brand-primary);
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    transform: rotate(5deg);
}

.search-wrapper .search-close:focus-visible {
    outline: 3px solid rgba(var(--brand-primary-rgb), 0.2);
    outline-offset: 3px;
}

.search-heading {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.search-heading__kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.search-heading h2 {
    margin: 0 0 5px;
    color: var(--brand-ink);
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 750;
    line-height: 1.2;
}

.search-heading p {
    margin: 0;
    color: #656b73;
    font-size: 14px;
}

.search-wrapper .search-content {
    max-width: 900px;
    margin: 0 auto;
}

.search-wrapper .search-content form {
    position: relative;
    display: flex;
    padding: 6px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(20, 24, 30, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-wrapper .search-content form:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), 0.1), 0 14px 34px rgba(20, 24, 30, 0.1);
}

.search-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-field-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 24px;
    color: var(--brand-primary);
    font-size: 17px;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-wrapper .search-content form input {
    min-width: 0;
    height: 54px;
    padding: 0 18px 0 52px;
    border: 0;
    border-radius: 7px;
    flex: 1;
    background: transparent;
    color: #282b2f;
    font-size: 16px;
}

.search-wrapper .search-content form input::placeholder {
    color: #8a9098;
    opacity: 1;
}

.search-wrapper .search-content form input:focus {
    outline: 0;
}

.search-wrapper .search-content form button {
    position: static;
    display: inline-flex;
    width: auto;
    min-width: 158px;
    height: 54px;
    padding: 0 22px;
    border: 0;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    transition: background-color 180ms ease, transform 180ms ease;
}

.search-wrapper .search-content form button i {
    color: inherit;
    font-size: 13px;
    transition: transform 180ms ease;
}

.search-wrapper .search-content form button:hover,
.search-wrapper .search-content form button:focus-visible {
    background: var(--brand-primary-dark);
}

.search-wrapper .search-content form button:hover i {
    transform: translateX(3px);
}

.search-wrapper .search-content form button:focus-visible {
    outline: 3px solid rgba(var(--brand-primary-rgb), 0.24);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .search-wrapper,
    .search-panel,
    .search-wrapper .search-close,
    .search-wrapper .search-content form button,
    .search-wrapper .search-content form button i {
        transition: none;
    }
}

.header-search {
    margin-bottom: 25px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e7eb;
}

.main-content-wrapper .header-area .header-search a {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 14px 16px;
    background: #f1f3f5;
    color: var(--brand-ink);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.main-content-wrapper .header-area .header-search a i {
    width: 18px;
    margin-right: 10px;
    color: var(--brand-primary);
    font-size: 15px;
    text-align: center;
}

.main-content-wrapper .header-area .header-search a:hover,
.main-content-wrapper .header-area .header-search a:focus-visible {
    background: #ffecee;
    color: var(--brand-primary);
}

.site-logo {
    display: block;
    width: 100%;
    height: auto;
}

.header-area .logo .site-logo {
    max-width: 175px;
}

.main-content-wrapper .header-area {
    padding: 52px;
    border-right: 1px solid #eceef1;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.main-content-wrapper .header-area .logo {
    margin-bottom: 38px;
}

.header-area .logo a {
    display: inline-block;
}

.header-brand-copy {
    max-width: 190px;
    margin: 15px 0 0;
    color: #858990;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.55;
}

.main-content-wrapper .header-area .amado-nav li {
    margin-bottom: 4px;
}

.main-content-wrapper .header-area .amado-nav li a {
    display: flex;
    padding: 13px 15px;
    align-items: center;
    border-left: 3px solid transparent;
    background: transparent;
    color: #34373b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.main-content-wrapper .header-area .amado-nav li a::after {
    display: none;
}

.main-content-wrapper .header-area .amado-nav li a i {
    width: 18px;
    margin-right: 11px;
    color: #9a9ea4;
    font-size: 13px;
    text-align: center;
    transition: color 180ms ease;
}

.main-content-wrapper .header-area .amado-nav li a:hover,
.main-content-wrapper .header-area .amado-nav li a:focus-visible {
    border-left-color: rgba(var(--brand-primary-rgb), 0.35);
    background: #f2f3f5;
    color: var(--brand-primary);
}

.main-content-wrapper .header-area .amado-nav li.active a {
    border-left-color: var(--brand-primary);
    background: #ffecee;
    color: var(--brand-primary);
}

.main-content-wrapper .header-area .amado-nav li a:hover i,
.main-content-wrapper .header-area .amado-nav li a:focus-visible i,
.main-content-wrapper .header-area .amado-nav li.active a i {
    color: var(--brand-primary);
}

.header-language {
    display: grid;
    margin-top: 27px;
    padding-top: 22px;
    border-top: 1px solid #e4e7eb;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.header-language a,
.header-language > span.is-unavailable {
    display: flex;
    min-height: 42px;
    padding: 0 11px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe2e6;
    border-radius: 5px;
    background: #ffffff;
    color: #767a80;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
}

.header-language > span.is-unavailable {
    cursor: not-allowed;
    opacity: 0.48;
}

.header-language > span.is-unavailable b {
    font-size: inherit;
    font-weight: 700;
}

.header-language a:hover,
.header-language a:focus-visible,
.header-language a.active {
    border-color: rgba(var(--brand-primary-rgb), 0.32);
    background: #ffecee;
    color: var(--brand-primary);
}

.header-language__flag {
    width: 24px;
    height: 16px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.12);
}

.header-quick-contact {
    display: grid;
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid #e4e7eb;
    gap: 8px;
}

.header-quick-contact__label {
    margin-bottom: 2px;
    color: #8a8f96;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-quick-contact__item {
    display: flex;
    min-width: 0;
    min-height: 54px;
    padding: 8px 9px;
    align-items: center;
    border: 1px solid #e4e7eb;
    border-radius: 6px;
    background: #ffffff;
    color: #34373b;
    gap: 9px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.header-quick-contact__item:hover,
.header-quick-contact__item:focus-visible {
    border-color: var(--brand-primary-border);
    background: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    transform: translateX(2px);
}

.header-quick-contact__item:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.header-quick-contact__icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 5px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    font-size: 14px;
}

.header-quick-contact__item--whatsapp .header-quick-contact__icon {
    background: #eaf8ef;
    color: #168c48;
    font-size: 17px;
}

.header-quick-contact__text {
    min-width: 0;
    flex: 1;
}

.header-quick-contact__text small,
.header-quick-contact__text strong {
    display: block;
    overflow: hidden;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-quick-contact__text small {
    margin-bottom: 3px;
    color: #858990;
    font-size: 9px;
    font-weight: 600;
}

.header-quick-contact__text strong {
    color: #292c30;
    font-size: 11px;
    font-weight: 700;
}

.header-quick-contact__arrow {
    flex: 0 0 auto;
    color: #a4a8ae;
    font-size: 8px;
}

@media only screen and (min-width: 992px) and (max-height: 820px) {
    .main-content-wrapper .header-area {
        padding: 30px 42px;
    }

    .main-content-wrapper .header-area .logo {
        margin-bottom: 22px;
    }

    .header-brand-copy {
        margin-top: 10px;
        font-size: 11px;
        line-height: 1.4;
    }

    .header-search {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .main-content-wrapper .header-area .header-search a {
        padding: 11px 13px;
    }

    .main-content-wrapper .header-area .amado-nav li {
        margin-bottom: 2px;
    }

    .main-content-wrapper .header-area .amado-nav li a {
        padding: 9px 12px;
    }

    .header-quick-contact {
        margin-top: 16px;
        padding-top: 14px;
        gap: 6px;
    }

    .header-quick-contact__label {
        display: none;
    }

    .header-quick-contact__item {
        min-height: 44px;
        padding: 6px 8px;
    }

    .header-quick-contact__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .header-language {
        margin-top: 16px;
        padding-top: 14px;
    }
}

.mobile-nav .amado-navbar-brand .site-logo {
    width: auto;
    max-width: 140px;
    max-height: 54px;
}

.footer_area.site-footer {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
    border-top: 3px solid var(--brand-primary);
    background: #17181a;
}

.site-footer__container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 68px 55px 0;
}

.site-footer__main {
    display: grid;
    padding-bottom: 58px;
    grid-template-columns: 1.35fr 0.75fr 1fr 1.15fr;
    gap: clamp(32px, 5vw, 76px);
}

.site-footer__logo {
    display: inline-block;
    padding: 10px 14px;
    background: #ffffff;
}

.site-footer__logo .site-logo {
    width: 155px;
}

.site-footer__brand > p {
    max-width: 310px;
    margin: 22px 0 24px;
    color: #aeb1b6;
    font-size: 14px;
    line-height: 1.75;
}

.site-footer__social {
    display: flex;
    gap: 9px;
}

.site-footer__social a,
.site-footer__social span {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-footer__social .is-pending {
    cursor: default;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible,
.site-footer__social .is-pending:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    transform: translateY(-2px);
}

.site-footer__column h2 {
    position: relative;
    margin: 7px 0 24px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer__column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-primary);
    content: '';
}

.site-footer__column ul li + li {
    margin-top: 13px;
}

.site-footer__column ul a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #adb0b5;
    font-size: 13px;
    line-height: 1.5;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__column ul a i {
    font-size: 9px;
}

.site-footer__column ul a:hover,
.site-footer__column ul a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

.site-footer__contact address {
    margin: 0;
    font-style: normal;
}

.site-footer__contact address a,
.site-footer__contact address p {
    display: flex;
    margin: 0 0 16px;
    align-items: flex-start;
    gap: 12px;
    color: #adb0b5;
    font-size: 13px;
    line-height: 1.65;
}

.site-footer__contact address a:hover,
.site-footer__contact address a:focus-visible {
    color: #ffffff;
}

.site-footer__contact address i {
    width: 15px;
    margin-top: 5px;
    flex: 0 0 15px;
    color: var(--brand-primary);
    font-size: 12px;
    text-align: center;
}

.site-footer__contact address .site-footer__whatsapp i {
    color: #25d366;
}

.site-footer__bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    color: #74777d;
    font-size: 11px;
    line-height: 1.6;
}

.site-footer__bottom a {
    color: #8f9297;
    font-size: inherit;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: #ffffff;
}

.site-footer__developer {
    width: 100%;
    text-align: center;
}

.site-footer__bottom .site-footer__developer-name {
    margin-bottom: 3px;
    color: #d8dade;
    font-size: 12px;
    font-weight: 600;
}

.site-footer__developer-name i {
    margin-right: 6px;
    color: var(--brand-primary);
    font-size: 10px;
}

.site-footer__bottom .site-footer__developer-name a {
    color: #ffffff;
    font-weight: 700;
}

.site-footer__bottom .site-footer__developer-name a:hover,
.site-footer__bottom .site-footer__developer-name a:focus-visible {
    color: var(--brand-primary);
}

.site-footer a:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

.quick-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 4500;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 10px;
}

.quick-contact--mobile {
    display: none;
}

.quick-contact__item {
    display: flex;
    min-width: 168px;
    min-height: 52px;
    padding: 7px 15px 7px 9px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.quick-contact__item--phone {
    background: var(--brand-primary);
}

.quick-contact__item--whatsapp {
    background: #168c48;
}

.quick-contact__item:hover,
.quick-contact__item:focus-visible {
    color: #ffffff;
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.quick-contact__item--phone:hover,
.quick-contact__item--phone:focus-visible {
    background: var(--brand-primary-dark);
}

.quick-contact__item--whatsapp:hover,
.quick-contact__item--whatsapp:focus-visible {
    background: #10763b;
}

.quick-contact__item:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.quick-contact__icon {
    display: flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 16px;
}

.quick-contact__text {
    display: flex;
    flex-direction: column;
}

.quick-contact__text small,
.quick-contact__text strong {
    color: #ffffff;
    line-height: 1.2;
}

.quick-contact__text small {
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.78;
    text-transform: uppercase;
}

.quick-contact__text strong {
    font-size: 12px;
    font-weight: 700;
}

.home-product-card > a {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
}

.home-product-card > a::after {
    display: none;
}

.home-product-card > a > img {
    display: block;
    width: 100%;
    height: calc(100% - 96px);
    flex: 0 0 calc(100% - 96px);
    min-height: 0;
    object-fit: contain;
}

.home-product-card .hover-content {
    position: static;
    top: auto;
    left: auto;
    z-index: 2;
    display: flex;
    height: 96px;
    flex: 0 0 96px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 24px 16px;
    background-color: #ffffff;
}

.home-product-card .hover-content .line {
    width: 64px;
    margin-bottom: 10px;
}

.home-product-card .hover-content h4,
.home-product-card:hover .hover-content h4,
.home-product-card:focus .hover-content h4 {
    color: var(--brand-ink);
    font-size: 20px;
    line-height: 1.25;
}

.home-product-card--tall {
    aspect-ratio: 4 / 5;
}

.home-product-card--square {
    aspect-ratio: 1 / 1;
}

.home-product-card--landscape {
    aspect-ratio: 4 / 3;
}

.main-content-wrapper .amado_product_area.shop-product-full {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 320px);
    flex: 0 0 calc(100% - 320px);
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
}

.single-product-wrapper .product-img {
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
}

.single-product-wrapper .product-img .product-cover-link {
    display: block;
    width: 100%;
    height: 100%;
}

.single-product-wrapper .product-img .product-cover-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
}

.site-topbar {
    position: relative;
    z-index: 20;
    border-bottom: 3px solid var(--brand-primary);
    background: #17181a;
    color: #ffffff;
}

.site-topbar__inner {
    display: grid;
    min-height: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 36px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.site-topbar__contact,
.site-topbar__actions,
.site-topbar__social,
.site-topbar__social-links {
    display: flex;
    align-items: center;
}

.site-topbar__contact {
    gap: 20px;
    grid-column: 1;
    justify-self: start;
}

.site-topbar__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.site-topbar__contact-link i {
    color: var(--brand-primary);
    font-size: 13px;
}

.site-topbar__contact-link--whatsapp i {
    color: #25d366;
    font-size: 15px;
}

.site-topbar__contact-label {
    display: none;
}

.site-topbar a {
    color: #f4f4f4;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.site-topbar a:hover,
.site-topbar a:focus-visible {
    color: #ffffff;
}

.site-topbar a:focus-visible {
    border-radius: 3px;
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.site-topbar__actions {
    grid-column: 2;
    justify-self: center;
}

.site-topbar__actions .site-topbar__dealer-portal {
    position: relative;
    display: inline-flex;
    min-height: 32px;
    padding: 0 14px;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color 180ms ease, transform 180ms ease;
}

.site-topbar__actions .site-topbar__dealer-portal::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(var(--brand-primary-rgb), 0.75);
    border-radius: 7px;
    pointer-events: none;
    content: '';
    animation: dealer-portal-pulse 2.6s ease-out infinite;
}

.site-topbar__actions .site-topbar__dealer-portal:hover,
.site-topbar__actions .site-topbar__dealer-portal:focus-visible {
    background: var(--brand-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-topbar__dealer-portal > i:first-child {
    font-size: 12px;
}

.site-topbar__dealer-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
}

@keyframes dealer-portal-pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
    }
    70%,
    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.site-topbar__social {
    grid-column: 3;
    justify-self: end;
    gap: 13px;
}

.site-topbar__social > span {
    color: #b9bbc0;
    font-size: 12px;
    font-weight: 500;
}

.site-topbar__social-links {
    gap: 7px;
}

.site-topbar__social-links a,
.site-topbar__social-links span {
    display: flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-topbar__social-links .is-pending {
    cursor: default;
}

.site-topbar__social-links a:hover,
.site-topbar__social-links a:focus-visible,
.site-topbar__social-links .is-pending:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    transform: translateY(-1px);
}

.shop-category-nav {
    position: relative;
    z-index: 30;
    margin-bottom: 50px;
}

.shop-category-nav__mobile-toggle {
    display: none;
}

.shop-category-nav__list {
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.shop-category-nav__item {
    position: relative;
}

.shop-category-nav__item-row {
    display: flex;
    align-items: stretch;
    border-radius: 5px;
    transition: box-shadow 180ms ease;
}

.shop-category-nav__link,
.shop-category-nav__submenu-toggle {
    border: 1px solid #e4e7eb;
    background-color: #ffffff;
    color: #6c6f73;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

a.shop-category-nav__link {
    display: flex;
    min-height: 43px;
    padding: 10px 16px;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.shop-category-nav__item.has-children .shop-category-nav__link {
    border-radius: 5px 0 0 5px;
}

.shop-category-nav__submenu-toggle {
    display: flex;
    width: 36px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-left: 0;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 9px;
}

.shop-category-nav__link:hover,
.shop-category-nav__link:focus-visible,
.shop-category-nav__submenu-toggle:hover,
.shop-category-nav__submenu-toggle:focus-visible {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 5px 14px rgba(var(--brand-primary-rgb), 0.12);
}

.shop-category-nav__item.has-children:hover > .shop-category-nav__item-row,
.shop-category-nav__item.has-children:focus-within > .shop-category-nav__item-row {
    box-shadow: 0 5px 14px rgba(var(--brand-primary-rgb), 0.12);
}

.shop-category-nav__item.has-children:hover > .shop-category-nav__item-row .shop-category-nav__link,
.shop-category-nav__item.has-children:hover > .shop-category-nav__item-row .shop-category-nav__submenu-toggle,
.shop-category-nav__item.has-children:focus-within > .shop-category-nav__item-row .shop-category-nav__link,
.shop-category-nav__item.has-children:focus-within > .shop-category-nav__item-row .shop-category-nav__submenu-toggle {
    border-color: var(--brand-primary);
    background: #fff8f8;
    color: var(--brand-primary);
    box-shadow: none;
}

.shop-category-nav__link:focus-visible,
.shop-category-nav__submenu-toggle:focus-visible,
.shop-category-nav__submenu li a:focus-visible {
    outline: 3px solid rgba(var(--brand-primary-rgb), 0.2);
    outline-offset: 2px;
}

.shop-category-nav__item.active > .shop-category-nav__item-row .shop-category-nav__link,
.shop-category-nav__item.active > .shop-category-nav__item-row .shop-category-nav__submenu-toggle {
    border-color: rgba(var(--brand-primary-rgb), 0.38);
    background: #fff0f1;
    color: var(--brand-primary);
}

.shop-category-nav__submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 40;
    display: block;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    width: 260px;
    max-height: 390px;
    margin: 0;
    padding: 8px;
    border: 1px solid #e1e4e7;
    border-top: 3px solid var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(24, 27, 31, 0.14);
    opacity: 0;
    transform: translateY(6px);
    transition: visibility 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.shop-category-nav__item:hover > .shop-category-nav__submenu,
.shop-category-nav__item:focus-within > .shop-category-nav__submenu,
.shop-category-nav__item.is-open > .shop-category-nav__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.shop-category-nav__submenu li + li {
    border-top: 1px solid #eef0f2;
}

.shop-category-nav__submenu li a {
    display: flex;
    min-height: 39px;
    padding: 9px 11px;
    align-items: center;
    color: #585d63;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 160ms ease, background-color 160ms ease, padding-left 160ms ease;
}

.shop-category-nav__submenu li a:hover,
.shop-category-nav__submenu li a:focus-visible {
    background: #fff4f5;
    color: var(--brand-primary);
    padding-left: 15px;
}

.shop-category-nav__submenu li.active a {
    background: #fff0f1;
    color: var(--brand-primary);
}

.shop-pagination {
    margin-top: 60px;
}

.shop-pagination .pagination {
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.shop-pagination .page-item .page-link {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e7eb;
    border-radius: 50%;
    margin-left: 0;
    background-color: #ffffff;
    color: #4e5155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-pagination .page-item:first-child .page-link,
.shop-pagination .page-item:last-child .page-link {
    border-radius: 50%;
}

.shop-pagination .page-item .page-link:hover {
    border-color: var(--brand-primary);
    background-color: #fff4f5;
    color: var(--brand-primary);
    box-shadow: 0 6px 16px rgba(var(--brand-primary-rgb), 0.12);
    transform: translateY(-2px);
}

.shop-pagination .page-item .page-link:focus-visible {
    border-color: var(--brand-primary);
    outline: 3px solid rgba(var(--brand-primary-rgb), 0.2);
    outline-offset: 2px;
    box-shadow: none;
}

.shop-pagination .page-item.active .page-link {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
    color: var(--brand-on-primary);
    box-shadow: 0 8px 18px rgba(var(--brand-primary-rgb), 0.24);
}

.corporate-page {
    min-width: 0;
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
    flex: 0 0 calc(100% - 320px);
    padding: 70px 55px 90px;
    background-color: #ffffff;
}

.corporate-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.corporate-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 64px;
    border-left: 5px solid var(--brand-primary);
    background: #f4f5f7;
}

.corporate-hero::after {
    position: absolute;
    right: -80px;
    bottom: -125px;
    width: 280px;
    height: 280px;
    border: 48px solid rgba(var(--brand-primary-rgb), 0.06);
    border-radius: 50%;
    content: '';
}

.corporate-hero > * {
    position: relative;
    z-index: 1;
}

.corporate-eyebrow,
.section-kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.corporate-hero h1 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--brand-ink);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.corporate-hero p {
    max-width: 740px;
    margin: 0;
    color: #60646b;
    font-size: 18px;
    line-height: 1.75;
}

.corporate-section {
    padding-top: 90px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 42px;
}

.section-heading h2,
.contact-details h2,
.contact-form-section h2 {
    margin-bottom: 20px;
    color: var(--brand-ink);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.corporate-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: var(--brand-primary);
    font-size: 14px;
    font-weight: 700;
}

.corporate-text-link:hover,
.corporate-text-link:focus-visible {
    color: var(--brand-primary-dark);
}

.corporate-text-link i {
    font-size: 11px;
    transition: transform 180ms ease;
}

.corporate-text-link:hover i {
    transform: translateX(4px);
}

/* About page */
.about-story-hero {
    position: relative;
    display: grid;
    overflow: hidden;
    padding: 58px 58px 52px;
    border-top: 4px solid var(--brand-primary);
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 50px;
    background: linear-gradient(135deg, #f7f8f9 0%, #ffffff 72%);
}

.about-story-hero::after {
    position: absolute;
    top: -90px;
    left: 42%;
    width: 250px;
    height: 250px;
    border: 46px solid rgba(var(--brand-primary-rgb), 0.045);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.about-story-hero__content,
.about-story-hero__visual {
    position: relative;
    z-index: 1;
}

.about-story-hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--brand-ink);
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.about-story-hero h1 span {
    color: var(--brand-primary);
}

.about-story-hero__content > p {
    max-width: 690px;
    margin-bottom: 27px;
    color: #5f6d78;
    font-size: 17px;
    line-height: 1.75;
}

.about-story-hero__link {
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    border: 1px solid #dfe2e5;
    border-radius: 5px;
    background: #ffffff;
    color: #272a2e;
    font-size: 12px;
    font-weight: 700;
    gap: 9px;
}

.about-story-hero__link i {
    color: var(--brand-primary);
}

.about-story-hero__link:hover,
.about-story-hero__link:focus-visible {
    border-color: rgba(var(--brand-primary-rgb), 0.4);
    color: var(--brand-primary);
}

.about-story-hero__visual {
    width: 100%;
    max-width: 440px;
    margin: 0;
    justify-self: end;
}

.about-story-hero__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.about-history {
    display: grid;
    margin-top: 92px;
    align-items: start;
    grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(55px, 8vw, 110px);
}

.about-section-heading h2,
.about-work-model__heading h2 {
    margin-bottom: 18px;
    color: var(--brand-ink);
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.about-section-heading > p {
    margin: 0;
    color: #68747e;
    font-size: 15px;
    line-height: 1.8;
}

.about-timeline {
    position: relative;
    margin: 0;
    padding: 0 0 0 31px;
    border-left: 1px solid #dfe2e5;
    list-style: none;
}

.about-timeline li {
    position: relative;
    display: grid;
    padding: 0 0 34px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
}

.about-timeline li:last-child {
    padding-bottom: 0;
}

.about-timeline li::before {
    position: absolute;
    top: 5px;
    left: -37px;
    width: 11px;
    height: 11px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 1px rgba(var(--brand-primary-rgb), 0.3);
    content: "";
}

.about-timeline time {
    color: var(--brand-primary);
    font-size: 16px;
    font-weight: 700;
}

.about-timeline h3 {
    margin: 0 0 7px;
    color: #24272b;
    font-size: 17px;
    font-weight: 700;
}

.about-timeline p {
    margin: 0;
    color: #66727c;
    font-size: 14px;
    line-height: 1.78;
}

.about-stats {
    display: grid;
    margin-top: 90px;
    border-top: 1px solid #dfe2e5;
    border-bottom: 1px solid #dfe2e5;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stats article {
    padding: 31px 25px 33px;
    border-right: 1px solid #dfe2e5;
}

.about-stats article:first-child {
    padding-left: 0;
}

.about-stats article:last-child {
    padding-right: 0;
    border-right: 0;
}

.about-stats strong {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-primary);
    font-size: 39px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
}

.about-stats h2 {
    margin-bottom: 15px;
    color: #24272b;
    font-size: 16px;
    font-weight: 700;
}

.about-stats p {
    margin: 0;
    color: #6a7680;
    font-size: 13px;
    line-height: 1.7;
}

.about-work-model {
    position: relative;
    overflow: hidden;
    margin-top: 92px;
    padding: 68px 55px 58px;
    border-top: 4px solid var(--brand-primary);
    background: #ffffff;
}

.about-work-model::after {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    border: 40px solid rgba(33, 139, 191, 0.07);
    border-radius: 50%;
    content: "";
}

.about-work-model__heading,
.about-work-grid,
.about-work-model__action {
    position: relative;
    z-index: 1;
}

.about-work-model__heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.about-work-model__heading .section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about-work-model__heading h2 span {
    color: var(--brand-primary);
}

.about-work-model__heading > p {
    margin: 0;
    color: #5d7484;
    font-size: 16px;
    line-height: 1.75;
}

.about-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-work-grid article {
    min-height: 210px;
    padding: 25px 24px;
    border: 1px solid rgba(36, 82, 108, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.76);
}

.about-work-grid__icon {
    display: flex;
    width: 43px;
    height: 43px;
    margin-bottom: 19px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--brand-primary);
    font-size: 17px;
    box-shadow: 0 7px 18px rgba(36, 82, 108, 0.1);
}

.about-work-grid h3 {
    margin-bottom: 9px;
    color: #202327;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.about-work-grid p {
    margin: 0;
    color: #627887;
    font-size: 13px;
    line-height: 1.7;
}

.about-work-model__action {
    display: flex;
    margin-top: 32px;
    justify-content: center;
}

.about-work-model__action a {
    display: inline-flex;
    min-height: 49px;
    padding: 0 21px;
    align-items: center;
    border-radius: 5px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    box-shadow: 0 10px 22px rgba(var(--brand-primary-rgb), 0.2);
}

.about-work-model__action a:hover,
.about-work-model__action a:focus-visible {
    background: var(--brand-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.corporate-cta {
    display: flex;
    margin-top: 90px;
    padding: 46px 50px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #18191b;
}

.corporate-cta .section-kicker {
    margin-bottom: 10px;
}

.corporate-cta h2 {
    max-width: 590px;
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.corporate-cta__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.corporate-btn {
    display: inline-flex;
    min-height: 46px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
}

.corporate-btn--primary {
    background: var(--brand-primary);
    color: var(--brand-on-primary);
}

.corporate-btn--primary:hover,
.corporate-btn--primary:focus-visible {
    background: var(--brand-primary-dark);
    color: #ffffff;
}

.corporate-btn--light {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.corporate-btn--light:hover,
.corporate-btn--light:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--brand-ink);
}

.brand-grid {
    display: grid;
    padding-top: 56px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.brand-card {
    overflow: hidden;
    border: 1px solid #e3e6e9;
    border-radius: 9px;
    background: #ffffff;
}

.brand-card__logo {
    display: flex;
    overflow: hidden;
    height: 285px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e8ebee;
    background: #ffffff;
}

.brand-card__logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-card__content {
    min-height: 145px;
    padding: 24px 27px 26px;
}

.brand-card__content h2 {
    margin: 0 0 10px;
    color: #202327;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.brand-card__content > p {
    margin: 0;
    color: #68737c;
    font-size: 13px;
    line-height: 1.7;
}

/* Distributors page */
.distributors-hero {
    padding-right: min(34%, 360px);
    background: linear-gradient(120deg, #f4f5f7 0%, #f4f5f7 72%, #eceff2 72%);
}

.distributors-hero::before {
    position: absolute;
    top: 50%;
    right: 74px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(var(--brand-primary-rgb), .15);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-primary-rgb), .14) 0 4px, transparent 5px), radial-gradient(circle at 27% 34%, rgba(var(--brand-primary-rgb), .32) 0 3px, transparent 4px), radial-gradient(circle at 67% 65%, rgba(var(--brand-primary-rgb), .28) 0 3px, transparent 4px);
    content: '';
    transform: translateY(-50%);
}

.distributors-hero__stats {
    display: flex;
    margin-top: 30px;
    gap: 28px;
}

.distributors-hero__stats span {
    display: flex;
    align-items: baseline;
    color: #777c83;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    gap: 8px;
}

.distributors-hero__stats strong {
    color: var(--brand-ink);
    font-size: 26px;
    letter-spacing: -.04em;
}

.distribution-network {
    display: grid;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid #e1e4e7;
    grid-template-columns: minmax(0, 1.5fr) minmax(290px, .5fr);
    background: #fff;
    box-shadow: 0 22px 55px rgba(24, 29, 34, .08);
}

.distribution-map {
    min-width: 0;
    padding: 36px 38px 38px;
    border-right: 1px solid #e1e4e7;
}

.distribution-map__heading {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.distribution-map__heading span:first-child {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.distribution-map__heading h2,
.distribution-directory__heading h2 {
    margin: 0;
    color: var(--brand-ink);
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.distribution-map__legend {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    color: #7f858c;
    font-size: 10px;
    gap: 7px;
}

.distribution-map__legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(var(--brand-primary-rgb), .12);
}

.distribution-map__canvas {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid #e3e7ea;
    border-radius: 12px;
    background:
        radial-gradient(circle at 72% 34%, rgba(var(--brand-primary-rgb), .055), transparent 34%),
        linear-gradient(145deg, #f9fafb, #f0f3f5);
}

#distribution-world-map {
    width: 100%;
    height: 500px;
    opacity: 0;
    transition: opacity 240ms ease;
}

#distribution-world-map.is-ready {
    opacity: 1;
}

#distribution-world-map .jvm-container {
    background: transparent;
}

#distribution-world-map .jvm-region {
    transition: fill 160ms ease;
}

#distribution-world-map .jvm-marker {
    filter: drop-shadow(0 3px 4px rgba(22, 27, 31, .22));
    transition: r 160ms ease, fill 160ms ease;
}

#distribution-world-map .jvm-line[animation="true"] {
    animation-duration: 6s;
}

#distribution-world-map #jvm-lines-group .jvm-line:nth-child(2n) {
    animation-delay: -1.5s;
}

#distribution-world-map #jvm-lines-group .jvm-line:nth-child(3n) {
    animation-delay: -3s;
}

#distribution-world-map .jvm-zoom-btn {
    width: 30px;
    height: 30px;
    padding: 4px;
    border: 1px solid rgba(23, 25, 28, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .94);
    color: #24282d;
    font-size: 18px;
    line-height: 20px;
    box-shadow: 0 5px 14px rgba(24, 29, 34, .1);
}

.jvm-tooltip {
    padding: 8px 11px;
    border: 0;
    border-radius: 6px;
    background: #17191c;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(20, 24, 28, .18);
}

.distribution-focus {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 38px 34px;
    align-items: stretch;
    background: #17191c;
    color: #fff;
}

.distribution-focus::after {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border: 35px solid rgba(var(--brand-primary-rgb), .15);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.distribution-focus__country,
.distribution-empty {
    position: relative;
    z-index: 1;
    width: 100%;
}

.distribution-focus__country[hidden] {
    display: none;
}

.distribution-focus .section-kicker {
    margin-bottom: 9px;
    font-size: 9px;
}

.distribution-focus__country > h2,
.distribution-empty h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.035em;
}

.distribution-focus__code {
    position: absolute;
    top: -16px;
    right: -5px;
    color: rgba(255, 255, 255, .055);
    font-size: 82px;
    font-weight: 800;
    line-height: 1;
}

.distribution-focus__company {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.distribution-focus__company h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.distribution-focus__city,
.distribution-focus__note {
    color: #aeb3ba;
    font-size: 12px;
    line-height: 1.65;
}

.distribution-focus__city {
    display: flex;
    margin: 0 0 10px;
    align-items: center;
    gap: 7px;
}

.distribution-focus__city i {
    color: var(--brand-primary);
}

.distribution-focus__note {
    margin: 0 0 14px;
}

.distribution-focus__links {
    display: grid;
    gap: 8px;
}

.distribution-focus__links a {
    display: flex;
    min-width: 0;
    align-items: center;
    color: #e7e9ec;
    font-size: 11px;
    gap: 9px;
}

.distribution-focus__links a > i:first-child {
    width: 14px;
    color: var(--brand-primary);
    text-align: center;
}

.distribution-focus__links a > i:last-child:not(:first-child) {
    margin-left: auto;
    color: #777e86;
    font-size: 8px;
}

.distribution-focus__links a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.distribution-focus__links a:hover,
.distribution-focus__links a:focus-visible {
    color: #fff;
}

.distribution-focus__links a:focus-visible,
.distribution-empty a:focus-visible,
.distribution-directory__countries button:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 3px;
}

.distribution-empty {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.distribution-empty__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--brand-primary);
    font-size: 24px;
}

.distribution-empty p {
    margin: 0 0 24px;
    color: #aeb3ba;
    font-size: 13px;
    line-height: 1.7;
}

.distribution-empty a {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    gap: 10px;
}

.distribution-empty a i {
    color: var(--brand-primary);
}

.distribution-directory {
    display: grid;
    padding: 70px 0 0;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 60px;
}

.distribution-directory__heading p {
    max-width: 500px;
    margin: 18px 0 0;
    color: #697078;
    font-size: 14px;
    line-height: 1.75;
}

.distribution-directory__countries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.distribution-directory__countries button {
    display: flex;
    min-height: 54px;
    padding: 10px 14px;
    align-items: center;
    border: 1px solid #e2e5e8;
    border-radius: 5px;
    background: #fff;
    color: #4f555c;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    gap: 11px;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.distribution-directory__countries button span {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 50%;
    background: #f2f3f5;
    color: #81868d;
    font-size: 9px;
}

.distribution-directory__countries button:hover,
.distribution-directory__countries button.is-active {
    border-color: var(--brand-primary-border);
    background: var(--brand-primary-soft);
    color: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.distribution-directory__countries button.is-active span {
    background: var(--brand-primary);
    color: var(--brand-on-primary);
}

.contact-layout {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(42px, 5vw, 68px);
}

.contact-details__intro {
    max-width: 570px;
    margin-bottom: 32px;
    color: #696d73;
    line-height: 1.75;
}

.contact-list {
    margin: 0;
    font-style: normal;
}

.contact-item {
    display: flex;
    padding: 20px 0;
    align-items: center;
    gap: 17px;
    border-bottom: 1px solid #e5e7ea;
    color: var(--brand-ink);
}

a.contact-item:hover,
a.contact-item:focus-visible {
    color: var(--brand-primary);
}

.contact-item__icon {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    background: #f5f5f6;
    color: var(--brand-primary);
    font-size: 15px;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    margin-bottom: 4px;
    color: #898d93;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-item strong {
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.contact-map {
    overflow: hidden;
    min-height: 520px;
    border: 1px solid #e3e5e8;
    background: #eef0f2;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-section {
    display: grid;
    margin-top: 86px;
    padding: 56px;
    border-top: 4px solid var(--brand-primary);
    align-items: start;
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(42px, 5vw, 72px);
    background: #f4f5f7;
}

.contact-form-section h2 {
    margin-bottom: 17px;
}

.contact-form-section__heading > p {
    margin: 0;
    color: #666b72;
    font-size: 15px;
    line-height: 1.75;
}

.contact-form-section__note {
    display: flex;
    margin-top: 28px;
    align-items: flex-start;
    gap: 10px;
    color: #777c83;
    font-size: 12px;
    line-height: 1.65;
}

.contact-form-section__note i {
    margin-top: 4px;
    color: var(--brand-primary);
}

.contact-form {
    position: relative;
    padding: 34px;
    border: 1px solid #e2e4e7;
    background: #ffffff;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__field label {
    display: block;
    margin-bottom: 8px;
    color: #30343a;
    font-size: 12px;
    font-weight: 700;
}

.contact-form__field label span,
.contact-form__footer p span {
    color: var(--brand-primary);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    display: block;
    width: 100%;
    border: 1px solid #d9dce0;
    border-radius: 4px;
    background: #ffffff;
    color: #202328;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form__field input,
.contact-form__field select {
    height: 48px;
    padding: 0 14px;
}

.contact-form__field textarea {
    min-height: 145px;
    padding: 13px 14px;
    line-height: 1.65;
    resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.1);
    outline: 0;
}

.contact-form__field .is-invalid {
    border-color: #c9202f;
}

.contact-form__error {
    display: block;
    margin-top: 7px;
    color: #b51d29;
    font-size: 11px;
    line-height: 1.45;
}

.contact-form__alert {
    display: flex;
    margin-bottom: 24px;
    padding: 14px 16px;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid;
    font-size: 13px;
    line-height: 1.55;
}

.contact-form__alert i {
    margin-top: 3px;
}

.contact-form__alert--success {
    border-color: #b8ddc6;
    background: #eef9f2;
    color: #186837;
}

.contact-form__alert--error {
    border-color: #efc4c8;
    background: #fff3f4;
    color: #9d1d29;
}

.contact-form__footer {
    display: flex;
    margin-top: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-form__footer p {
    margin: 0;
    color: #85898f;
    font-size: 11px;
}

.contact-form__footer button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--brand-primary);
    border-radius: 4px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-form__footer button:hover,
.contact-form__footer button:focus-visible {
    border-color: var(--brand-primary-dark);
    background: var(--brand-primary-dark);
    transform: translateY(-2px);
}

.contact-form__footer button:focus-visible {
    outline: 3px solid rgba(var(--brand-primary-rgb), 0.2);
    outline-offset: 2px;
}

.contact-form__honeypot {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Product detail page */
.main-content-wrapper .product-detail-page {
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
    padding: 34px 40px 72px;
    flex: 0 0 calc(100% - 320px);
    background: #ffffff;
}

.product-detail-container {
    max-width: 1180px;
    padding-right: 0;
    padding-left: 0;
}

.product-breadcrumb {
    margin-bottom: 26px;
}

.product-breadcrumb ol {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.product-breadcrumb li {
    display: flex;
    align-items: center;
    color: #8a8d92;
    font-size: 13px;
    font-weight: 500;
}

.product-breadcrumb li + li::before {
    margin-right: 8px;
    color: #c3c5c8;
    content: "/";
}

.product-breadcrumb a {
    color: #55595f;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
    color: var(--brand-primary);
}

.product-detail-hero {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 4vw, 58px);
}

.product-gallery {
    width: 100%;
    max-width: 540px;
}

.product-gallery__stage {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #eceef0;
    background: #f8f9fa;
}

.product-gallery__stage .carousel-item,
.product-gallery__stage .gallery_img {
    width: 100%;
    height: 100%;
}

.product-gallery__stage .gallery_img {
    display: block;
    cursor: zoom-in;
}

.product-gallery__stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery .product-gallery__thumbs {
    position: static;
    display: grid;
    width: 100%;
    margin: 11px 0 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.product-gallery .product-gallery__thumbs li {
    overflow: hidden;
    width: 100%;
    height: 76px;
    margin: 0;
    border: 1px solid #e1e3e6;
    background: #ffffff;
    opacity: 1;
}

.product-gallery .product-gallery__thumbs li.active {
    border: 2px solid var(--brand-primary);
}

.product-gallery .product-gallery__thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-summary__category,
.section-kicker {
    display: inline-block;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-detail-summary__line {
    width: 52px;
    height: 3px;
    margin: 15px 0 17px;
    background: var(--brand-primary);
}

.product-detail-summary__brand {
    margin-bottom: 7px;
    color: #777b81;
    font-size: 14px;
    font-weight: 600;
}

.product-detail-summary h1 {
    max-width: 560px;
    margin-bottom: 16px;
    color: #15171a;
    font-size: clamp(29px, 2.3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.product-detail-summary__lead {
    max-width: 590px;
    margin-bottom: 24px;
    color: #63676d;
    font-size: 15px;
    line-height: 1.7;
}

.product-highlights {
    display: grid;
    margin: 0 0 24px;
    padding: 16px 0;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-highlights > div {
    padding: 0 14px;
    border-right: 1px solid #e8eaed;
}

.product-highlights > div:first-child {
    padding-left: 0;
}

.product-highlights > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.product-highlights dt {
    margin-bottom: 6px;
    color: #8a8e94;
    font-size: 12px;
    font-weight: 600;
}

.product-highlights dt i {
    width: 17px;
    color: var(--brand-primary);
}

.product-highlights dd {
    margin: 0;
    color: #25282c;
    font-size: 13px;
    font-weight: 700;
}

.product-contact-box {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #f0d7d9;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff7f8 0%, #f7f8f9 100%);
    box-shadow: 0 12px 28px rgba(28, 31, 35, 0.07);
}

.product-contact-box::after {
    position: absolute;
    top: -45px;
    right: -38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(var(--brand-primary-rgb), 0.055);
    content: "";
    pointer-events: none;
}

.product-contact-box__intro {
    position: relative;
    z-index: 1;
    display: flex;
    margin-bottom: 17px;
    align-items: center;
    gap: 13px;
}

.product-contact-box__icon {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    box-shadow: 0 7px 16px rgba(var(--brand-primary-rgb), 0.22);
}

.product-contact-box__intro strong {
    display: block;
    margin-bottom: 3px;
    color: #222529;
    font-size: 15px;
}

.product-contact-box__intro p {
    margin: 0;
    color: #5e6268;
    font-size: 13px;
    line-height: 1.55;
}

.product-contact-box__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.product-contact-button {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(28, 31, 35, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.product-contact-button--whatsapp {
    background: #1f9d55;
    color: #ffffff;
}

.product-contact-button--phone {
    border-color: #d9dcdf;
    background: #ffffff;
    color: #24272b;
}

.product-contact-button:hover,
.product-contact-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 31, 35, 0.12);
}

.product-contact-button--whatsapp:hover,
.product-contact-button--whatsapp:focus-visible {
    background: #178346;
    color: #ffffff;
}

.product-contact-button--phone:hover,
.product-contact-button--phone:focus-visible {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.related-products h2 {
    margin: 7px 0 0;
    color: #17191c;
    font-size: 29px;
    line-height: 1.2;
}

.related-products {
    margin-top: 62px;
    padding-top: 48px;
    border-top: 1px solid #e6e8eb;
}

.related-products__heading {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.related-products__heading h2 {
    margin-bottom: 0;
}

.related-products__heading > a {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    align-items: center;
    border: 1px solid #dfe2e5;
    border-radius: 5px;
    background: #ffffff;
    color: #3c4045;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.related-products__heading > a:hover,
.related-products__heading > a:focus-visible {
    border-color: rgba(var(--brand-primary-rgb), 0.42);
    color: var(--brand-primary);
    box-shadow: 0 7px 18px rgba(28, 31, 35, 0.08);
}

.related-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-product {
    display: block;
    overflow: hidden;
    border: 1px solid #e5e7ea;
    border-radius: 8px;
    background: #ffffff;
    color: #202327;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.related-product:hover,
.related-product:focus-visible {
    border-color: rgba(var(--brand-primary-rgb), 0.28);
    color: #202327;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(28, 31, 35, 0.09);
}

.related-product__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
    border-bottom: 1px solid #eceef0;
    background: #f8f9fa;
}

.related-product__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 250ms ease;
}

.related-product:hover .related-product__image img,
.related-product:focus-visible .related-product__image img {
    transform: scale(1.035);
}

.related-product__content {
    display: block;
    padding: 17px 18px 18px;
}

.related-product__category {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.related-product strong {
    display: block;
    font-size: 16px;
    line-height: 1.45;
}

.related-product__more {
    display: inline-flex;
    margin-top: 12px;
    align-items: center;
    color: #777b81;
    font-size: 11px;
    font-weight: 600;
    gap: 7px;
}

.related-product__more i {
    color: var(--brand-primary);
    transition: transform 180ms ease;
}

.related-product:hover .related-product__more,
.related-product:focus-visible .related-product__more {
    color: var(--brand-primary);
}

.related-product:hover .related-product__more i,
.related-product:focus-visible .related-product__more i {
    transform: translateX(3px);
}

@media only screen and (max-width: 1199px) {
    .product-detail-hero {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        max-width: 720px;
    }

    .product-detail-summary {
        max-width: 720px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-content-wrapper .header-area {
        padding: 46px 36px;
    }

    .site-footer__container {
        padding: 58px 42px 0;
    }

    .site-footer__main {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px 65px;
    }

    .corporate-page {
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
        flex-basis: calc(100% - 280px);
        padding: 55px 32px 75px;
    }

    .corporate-hero {
        padding: 54px 42px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-map {
        height: 400px;
        min-height: 0;
    }

    .contact-form-section {
        margin-top: 70px;
        padding: 38px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-story-hero {
        padding: 48px 42px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-story-hero__visual {
        max-width: 520px;
        justify-self: center;
    }

    .about-history {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-stats,
    .about-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats article:nth-child(2) {
        border-right: 0;
    }

    .about-stats article:nth-child(-n + 2) {
        border-bottom: 1px solid #dfe2e5;
    }

    .about-work-model {
        padding: 58px 38px 50px;
    }

    .brand-card__logo {
        height: 220px;
    }

    .brand-card__content {
        padding: 21px;
    }

    .distributors-hero {
        padding-right: 42px;
    }

    .distributors-hero::before {
        display: none;
    }

    .distribution-network {
        grid-template-columns: 1fr;
    }

    .distribution-map {
        padding: 30px;
        border-right: 0;
        border-bottom: 1px solid #e1e4e7;
    }

    .distribution-focus {
        min-height: 330px;
    }

    .distribution-directory {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .corporate-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-content-wrapper .amado_product_area.shop-product-full {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 280px);
        flex: 0 0 calc(100% - 280px);
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
    }

    .main-content-wrapper .product-detail-page {
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
        padding: 42px 32px 75px;
        flex-basis: calc(100% - 280px);
    }

    .related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .site-topbar {
        position: relative;
        width: 100%;
    }

    .search-panel {
        min-height: 280px;
        padding: 30px 18px 26px;
    }

    .search-wrapper .search-close {
        top: 16px;
        right: 16px;
    }

    .search-heading {
        margin-bottom: 17px;
        padding: 0 40px;
    }

    .search-heading__kicker {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .search-heading h2 {
        font-size: 23px;
    }

    .search-heading p {
        display: none;
    }

    .search-wrapper .search-content form {
        padding: 5px;
    }

    .search-wrapper .search-content form input {
        height: 50px;
        padding-right: 10px;
        padding-left: 43px;
        font-size: 14px;
    }

    .search-field-icon {
        left: 19px;
        font-size: 15px;
    }

    .search-wrapper .search-content form button {
        min-width: 54px;
        height: 50px;
        padding: 0 17px;
    }

    .search-wrapper .search-content form button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .mobile-nav {
        position: relative;
        top: auto;
    }

    .main-content-wrapper {
        margin-top: 0;
    }

    .site-topbar__inner {
        min-height: 0;
        padding: 9px 15px 8px;
        grid-template-columns: 1fr auto;
        gap: 8px 16px;
    }

    .site-topbar__actions {
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
    }

    .site-topbar__contact {
        gap: 14px;
        grid-column: 1;
        grid-row: 1;
    }

    .site-topbar__contact-link {
        gap: 6px;
    }

    .site-topbar__contact-number {
        display: none;
    }

    .site-topbar__contact-label {
        display: inline;
    }

    .site-topbar__social {
        gap: 0;
        grid-column: 2;
        grid-row: 1;
    }

    .site-topbar__social > span {
        display: none;
    }

    .main-content-wrapper .header-area {
        top: 97px;
        height: calc(100% - 97px);
        padding: 48px 34px;
    }

    .main-content-wrapper .header-area .logo {
        margin-bottom: 32px;
    }

    .header-quick-contact {
        display: none;
    }

    .site-footer__container {
        padding: 52px 24px 0;
    }

    .site-footer__main {
        padding-bottom: 42px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer__column h2 {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .site-footer__bottom {
        padding: 22px 0;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .site-footer__developer {
        text-align: center;
    }

    .quick-contact {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        gap: 8px;
    }

    .quick-contact--mobile {
        display: flex;
    }

    .quick-contact__item {
        width: 52px;
        min-width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .quick-contact__icon {
        width: 100%;
        height: 100%;
        flex-basis: 100%;
        border-radius: 50%;
        background: transparent;
        font-size: 19px;
    }

    .quick-contact__text {
        display: none;
    }

    .corporate-page {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 45px 15px 65px;
    }

    .corporate-hero {
        padding: 44px 25px 46px;
        border-left-width: 4px;
    }

    .corporate-hero h1 {
        font-size: 34px;
    }

    .corporate-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .corporate-section {
        padding-top: 65px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-hero {
        padding: 35px 24px 31px;
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .about-story-hero h1 {
        font-size: 35px;
    }

    .about-story-hero__content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-story-hero__visual {
        max-width: 360px;
        justify-self: center;
    }

    .about-history {
        margin-top: 64px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-timeline {
        padding-left: 25px;
    }

    .about-timeline li {
        padding-bottom: 30px;
        grid-template-columns: 55px minmax(0, 1fr);
        gap: 12px;
    }

    .about-timeline li::before {
        left: -31px;
    }

    .about-timeline time {
        font-size: 14px;
    }

    .about-timeline h3 {
        font-size: 15px;
    }

    .about-timeline p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-stats {
        margin-top: 62px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats article,
    .about-stats article:first-child,
    .about-stats article:last-child {
        padding: 24px 14px;
    }

    .about-stats article:nth-child(2) {
        border-right: 0;
    }

    .about-stats article:nth-child(-n + 2) {
        border-bottom: 1px solid #dfe2e5;
    }

    .about-stats strong {
        font-size: 33px;
    }

    .about-stats h2 {
        font-size: 14px;
    }

    .about-stats p {
        font-size: 12px;
    }

    .about-work-model {
        margin-top: 64px;
        padding: 47px 20px 42px;
    }

    .about-work-model__heading {
        margin-bottom: 30px;
    }

    .about-work-model__heading h2 {
        font-size: 32px;
    }

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

    .about-work-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .about-work-grid article {
        min-height: 0;
        padding: 22px 20px;
    }

    .about-work-model__action a {
        width: 100%;
        justify-content: center;
    }

    .corporate-cta {
        margin-top: 65px;
        padding: 34px 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .corporate-cta h2 {
        font-size: 24px;
    }

    .corporate-cta__actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .brand-grid {
        padding-top: 44px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brand-card__logo {
        height: 260px;
    }

    .distributors-hero {
        padding-right: 25px;
        background: #f4f5f7;
    }

    .distributors-hero::before {
        display: none;
    }

    .distributors-hero__stats {
        margin-top: 24px;
        gap: 18px;
    }

    .distributors-hero__stats strong {
        font-size: 22px;
    }

    .distribution-network {
        margin-top: 18px;
        grid-template-columns: 1fr;
        box-shadow: 0 14px 34px rgba(24, 29, 34, .07);
    }

    .distribution-map {
        padding: 26px 18px 20px;
        border-right: 0;
        border-bottom: 1px solid #e1e4e7;
    }

    .distribution-map__heading {
        margin-bottom: 20px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .distribution-map__legend {
        align-self: flex-start;
    }

    .distribution-map__canvas,
    #distribution-world-map {
        min-height: 300px;
        height: 300px;
    }

    .distribution-focus {
        min-height: 360px;
        padding: 32px 25px;
    }

    .distribution-focus__country > h2,
    .distribution-empty h2 {
        font-size: 27px;
    }

    .distribution-directory {
        padding-top: 52px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .distribution-directory__countries {
        grid-template-columns: 1fr;
    }

    .brand-card__content {
        padding: 22px;
    }

    .contact-map {
        height: 320px;
        min-height: 0;
        margin-top: 0;
    }

    .contact-form-section {
        margin-top: 60px;
        padding: 34px 24px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px 21px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__field--full {
        grid-column: auto;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer button {
        width: 100%;
    }

    .main-content-wrapper .amado_product_area.shop-product-full {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding: 60px 15px;
    }

    .main-content-wrapper .product-detail-page {
        width: 100%;
        max-width: 100%;
        padding: 38px 15px 65px;
        flex: 0 0 100%;
    }

    .product-breadcrumb {
        overflow: hidden;
        margin-bottom: 25px;
    }

    .product-breadcrumb ol {
        overflow-x: auto;
        padding-bottom: 6px;
        flex-wrap: nowrap;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .product-breadcrumb ol::-webkit-scrollbar {
        display: none;
    }

    .product-detail-hero {
        gap: 38px;
    }

    .product-gallery .product-gallery__thumbs {
        gap: 7px;
    }

    .product-gallery .product-gallery__thumbs li {
        height: 68px;
    }

    .product-detail-summary h1 {
        font-size: 29px;
    }

    .product-detail-summary__lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .product-highlights > div,
    .product-highlights > div:first-child,
    .product-highlights > div:last-child {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid #e8eaed;
    }

    .product-highlights > div:last-child {
        border-bottom: 0;
    }

    .product-contact-box__actions {
        flex-direction: column;
    }

    .product-contact-button {
        width: 100%;
    }

    .related-products h2 {
        font-size: 27px;
    }

    .related-products {
        margin-top: 54px;
        padding-top: 43px;
    }

    .related-products__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .related-products__heading > a {
        min-height: 38px;
    }

    .related-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .related-product__content {
        padding: 13px 12px 14px;
    }

    .related-product__category {
        font-size: 9px;
    }

    .related-product strong {
        font-size: 14px;
    }

    .related-product__more {
        margin-top: 9px;
        font-size: 10px;
    }

    .shop-category-nav {
        margin-bottom: 40px;
    }

    .shop-category-nav__mobile-toggle {
        display: flex;
        width: 100%;
        min-height: 58px;
        padding: 10px 14px;
        align-items: center;
        gap: 12px;
        border: 1px solid #dfe2e5;
        border-left: 3px solid var(--brand-primary);
        border-radius: 5px;
        background: #ffffff;
        color: #25282c;
        cursor: pointer;
        font-family: inherit;
        text-align: left;
    }

    .shop-category-nav__mobile-toggle:focus {
        outline: 0;
    }

    .shop-category-nav__mobile-toggle:focus-visible {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.12);
    }

    .shop-category-nav__mobile-toggle > i:first-child {
        display: flex;
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: var(--brand-primary);
        color: var(--brand-on-primary);
        font-size: 14px;
    }

    .shop-category-nav__mobile-toggle > span {
        display: flex;
        min-width: 0;
        flex: 1;
        flex-direction: column;
        gap: 2px;
    }

    .shop-category-nav__mobile-toggle strong {
        font-size: 13px;
        font-weight: 700;
    }

    .shop-category-nav__mobile-toggle small {
        color: #85898f;
        font-size: 10px;
        font-weight: 500;
    }

    .shop-category-nav__mobile-toggle > i:last-child {
        color: #74787e;
        font-size: 10px;
        transition: transform 180ms ease;
    }

    .shop-category-nav.is-open .shop-category-nav__mobile-toggle > i:last-child {
        transform: rotate(180deg);
    }

    .shop-category-nav__list {
        display: none;
        overflow: hidden;
        margin-top: 8px;
        border: 1px solid #dfe2e5;
        border-radius: 5px;
        background: #ffffff;
    }

    .shop-category-nav.is-open .shop-category-nav__list {
        display: block;
    }

    .shop-category-nav__item + .shop-category-nav__item {
        border-top: 1px solid #eceef0;
    }

    .shop-category-nav__item-row {
        width: 100%;
    }

    a.shop-category-nav__link {
        display: flex;
        min-height: 48px;
        padding: 12px 14px;
        flex: 1;
        align-items: center;
        border: 0;
        border-radius: 0;
        font-size: 13px;
    }

    .shop-category-nav__item.has-children .shop-category-nav__link {
        border-radius: 0;
    }

    .shop-category-nav__submenu-toggle {
        width: 48px;
        border: 0;
        border-left: 1px solid #eceef0;
        border-radius: 0;
        box-shadow: none;
    }

    .shop-category-nav__item.active > .shop-category-nav__item-row .shop-category-nav__link,
    .shop-category-nav__item.active > .shop-category-nav__item-row .shop-category-nav__submenu-toggle {
        border-color: #f1c9cd;
        background: #fff0f1;
    }

    .shop-category-nav__item.is-open .shop-category-nav__submenu-toggle i {
        transform: rotate(180deg);
    }

    .shop-category-nav__submenu {
        position: static;
        display: none;
        visibility: visible;
        overflow: visible;
        width: auto;
        max-height: none;
        margin: 0;
        padding: 6px 12px 10px 25px;
        border: 0;
        border-top: 1px solid #eceef0;
        background: #f7f8f9;
        box-shadow: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .shop-category-nav__item:hover > .shop-category-nav__submenu,
    .shop-category-nav__item:focus-within > .shop-category-nav__submenu {
        display: none;
    }

    .shop-category-nav__item.is-open > .shop-category-nav__submenu {
        display: block;
    }

    .shop-category-nav__submenu li a {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .shop-category-nav__submenu li a::before {
        margin-right: 8px;
        color: #a5a9ae;
        content: "—";
    }

    .shop-product-grid {
        margin-right: -6px;
        margin-left: -6px;
    }

    .shop-product-grid > [class*="col-"] {
        max-width: 50%;
        padding-right: 6px;
        padding-left: 6px;
        flex: 0 0 50%;
    }

    .shop-product-grid .single-product-wrapper .product-description {
        margin-top: 15px;
    }

    .shop-product-grid .single-product-wrapper .product-description .product-meta-data .line {
        width: 46px;
        height: 2px;
        margin-bottom: 10px;
    }

    .shop-product-grid .single-product-wrapper .product-description .product-meta-data a h6 {
        font-size: 14px;
        line-height: 1.35;
    }

    .shop-pagination {
        margin-top: 40px;
    }

    .shop-pagination .pagination {
        gap: 8px;
    }

    .shop-pagination .page-item .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    #distribution-world-map .jvm-zoom-btn {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    #distribution-world-map,
    #distribution-world-map .jvm-region,
    #distribution-world-map .jvm-marker {
        transition: none;
    }

    #distribution-world-map .jvm-line[animation="true"] {
        animation: none;
    }
}

@media only screen and (max-width: 575px) {
    .home-product-card {
        aspect-ratio: 1 / 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-content-wrapper .header-area .header-search a,
    .main-content-wrapper .header-area .amado-nav li a,
    .main-content-wrapper .header-area .amado-nav li a i,
    .site-footer__social a,
    .site-footer__column ul a,
    .quick-contact__item,
    .header-quick-contact__item,
    .distribution-directory__countries button,
    .site-topbar__actions a,
    .site-topbar__social-links a,
    .shop-category-nav li a,
    .shop-pagination .page-item .page-link,
    .product-contact-button,
    .related-products__heading > a,
    .related-product,
    .related-product__image img,
    .about-work-model__action a {
        transition: none;
    }

    .related-product__more i {
        transition: none;
    }

    .site-topbar__actions .site-topbar__dealer-portal::after {
        animation: none;
    }
}

/* Dinamik ürün kataloğu */
.shop-page-area {
    width: calc(100% - 320px);
    padding: 70px 45px 85px;
}

.shop-page-container {
    max-width: 1480px;
    margin: 0 auto;
}

.shop-results-heading {
    display: flex;
    margin: -18px 0 32px;
    padding-bottom: 20px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eceef0;
}

.shop-results-heading span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.shop-results-heading h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.shop-results-heading > strong {
    color: #7c8187;
    font-size: 12px;
    font-weight: 600;
}

.shop-product-grid .single-product-wrapper .product-meta-data > small {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.shop-product-grid .single-product-wrapper .product-meta-data h2 {
    margin: 0;
    color: #24272b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.product-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    background: #f4f5f6;
    color: #b2b6bb;
    font-size: 34px;
}

.shop-empty,
.product-not-found,
.home-catalog-empty {
    display: flex;
    min-height: 420px;
    padding: 60px 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f7f8f9;
    text-align: center;
}

.shop-empty > i,
.product-not-found > i {
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 42px;
}

.shop-empty h2,
.product-not-found h1,
.home-catalog-empty h1 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 600;
}

.shop-empty p,
.product-not-found p,
.home-catalog-empty p {
    margin: 0 0 22px;
    color: #70757b;
}

.shop-empty a,
.product-not-found a,
.home-catalog-empty a {
    padding: 12px 18px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-size: 12px;
    font-weight: 700;
}

.product-not-found {
    width: calc(100% - 320px);
}

.home-catalog-empty {
    width: 100%;
    min-height: 70vh;
}

.home-catalog-empty > span {
    margin-bottom: 10px;
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-product-card .hover-content small {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-product-card .hover-content h2 {
    max-width: 310px;
    margin: 0;
    color: #202327;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.product-gallery__empty {
    display: flex;
    min-height: 460px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: #f4f5f6;
    color: #a1a5aa;
}

.product-gallery__empty i {
    font-size: 40px;
}

.product-description-section {
    max-width: 920px;
    margin: 60px 0 25px;
    padding-top: 42px;
    border-top: 1px solid #e4e7e9;
}

.product-description-section h2 {
    margin: 12px 0 18px;
    font-size: 27px;
    font-weight: 600;
}

.product-description-section > div {
    color: #61666c;
    font-size: 15px;
    line-height: 1.9;
}

/* Dengeli ana sayfa vitrini */
.home-page {
    width: calc(100% - 320px);
    min-width: 0;
    background: #f5f6f7;
}

.home-hero {
    position: relative;
    height: clamp(520px, 52vw, 680px);
    min-height: 520px;
    margin: 28px 32px 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecef;
    box-shadow: 0 20px 55px rgba(21, 30, 43, .1);
    isolation: isolate;
}

.home-hero__track,
.home-hero__slide {
    width: 100%;
    height: 100%;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
}

.home-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.home-hero__slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 247, 240, .97) 0%, rgba(250, 247, 240, .88) 32%, rgba(250, 247, 240, .28) 58%, rgba(250, 247, 240, 0) 75%);
}

.home-hero__slide--dark .home-hero__shade {
    background: linear-gradient(90deg, rgba(7, 18, 31, .96) 0%, rgba(7, 18, 31, .84) 35%, rgba(7, 18, 31, .2) 62%, rgba(7, 18, 31, 0) 78%);
}

.home-hero__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(34px, 5vw, 78px);
    width: min(520px, 47%);
    transform: translateY(-50%);
}

.home-hero__eyebrow {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 12px;
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.home-hero__eyebrow::before {
    width: 38px;
    height: 2px;
    background: currentColor;
    content: "";
}

.home-hero__content h1,
.home-hero__content h2 {
    margin: 0;
    color: #151b23;
    font-size: clamp(38px, 4vw, 66px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.home-hero__content p {
    max-width: 500px;
    margin: 24px 0 30px;
    color: #4f565f;
    font-size: 16px;
    line-height: 1.75;
}

.home-hero__slide--dark .home-hero__eyebrow {
    color: #8ec9d0;
}

.home-hero__slide--dark .home-hero__content h1,
.home-hero__slide--dark .home-hero__content h2,
.home-hero__slide--dark .home-hero__content p {
    color: #fff;
}

.home-hero__slide--dark .home-hero__content p {
    color: rgba(255, 255, 255, .76);
}

.home-hero__button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid var(--brand-primary);
    border-radius: 3px;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
    border-color: var(--brand-primary-dark);
    background: var(--brand-primary-dark);
    color: var(--brand-on-primary);
    transform: translateY(-2px);
}

.home-hero__controls {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 24px;
    display: flex;
    padding: 7px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(10, 18, 29, .7);
    box-shadow: 0 8px 24px rgba(7, 16, 27, .18);
    backdrop-filter: blur(8px);
}

.home-hero__arrow,
.home-hero__dot {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.home-hero__arrow {
    display: inline-flex;
    width: 34px;
    height: 34px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.home-hero__arrow:hover,
.home-hero__arrow:focus-visible {
    background: rgba(255, 255, 255, .16);
}

.home-hero__dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-hero__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    transition: width .2s ease, background-color .2s ease;
}

.home-hero__dot.is-active {
    width: 24px;
    background: #fff;
}

.home-products {
    margin: 28px 32px 70px;
    padding: 58px clamp(24px, 3vw, 48px) 64px;
    border: 1px solid #e7e9ec;
    border-radius: 8px;
    background: #fff;
}

.home-products__heading {
    display: flex;
    margin-bottom: 36px;
    padding-bottom: 25px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #e8eaed;
}

.home-products__heading > div {
    max-width: 650px;
}

.home-products__heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.home-products__heading h1,
.home-products__heading h2 {
    margin: 0;
    color: #1d232b;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.home-products__heading p {
    margin: 12px 0 0;
    color: #6a7078;
    font-size: 14px;
    line-height: 1.7;
}

.home-products__heading > a {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 11px 0 8px;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--brand-primary);
    color: #252b33;
    font-size: 12px;
    font-weight: 700;
}

.home-products__heading > a i {
    color: var(--brand-primary);
    transition: transform .2s ease;
}

.home-products__heading > a:hover,
.home-products__heading > a:focus-visible {
    color: var(--brand-primary);
}

.home-products__heading > a:hover i,
.home-products__heading > a:focus-visible i {
    transform: translateX(4px);
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 20px;
}

.home-product-tile {
    min-width: 0;
}

.home-product-tile__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #eceef0;
    border-radius: 5px;
    background: #f3f4f5;
}

.home-product-tile__image > img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    transition: transform .35s ease;
}

.home-product-tile__action {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.home-product-tile__image:hover > img,
.home-product-tile__image:focus-visible > img {
    transform: scale(1.035);
}

.home-product-tile__image:hover .home-product-tile__action,
.home-product-tile__image:focus-visible .home-product-tile__action {
    opacity: 1;
    transform: translateY(0);
}

.home-product-tile__content {
    padding: 17px 2px 0;
}

.home-product-tile__content > span {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-product-tile__content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.home-product-tile__content h3 a {
    color: #252a31;
}

.home-product-tile__content h3 a:hover,
.home-product-tile__content h3 a:focus-visible {
    color: var(--brand-primary);
}

.home-products .home-catalog-empty {
    min-height: 330px;
    border: 1px dashed #d7dbe0;
    border-radius: 5px;
    background: #f8f9fa;
}

.home-products .home-catalog-empty > i {
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 38px;
}

.home-products .home-catalog-empty h2 {
    font-size: 25px;
}

@media only screen and (max-width: 1399px) {
    .home-hero__content {
        width: min(470px, 48%);
    }

    .home-hero__content h1,
    .home-hero__content h2 {
        font-size: clamp(36px, 4vw, 54px);
    }
}

@media only screen and (max-width: 1199px) {
    .home-hero {
        height: 560px;
        margin-right: 24px;
        margin-left: 24px;
    }

    .home-hero__content {
        left: 42px;
        width: 48%;
    }

    .home-products {
        margin-right: 24px;
        margin-left: 24px;
    }

    .home-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-page {
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
        flex-basis: calc(100% - 280px);
    }

    .home-hero {
        height: 600px;
        min-height: 0;
        margin: 20px 18px 0;
    }

    .home-hero__slide > img {
        object-position: 68% center;
    }

    .home-hero__shade,
    .home-hero__slide--dark .home-hero__shade {
        background: linear-gradient(0deg, rgba(9, 17, 28, .96) 0%, rgba(9, 17, 28, .85) 44%, rgba(9, 17, 28, .08) 86%, rgba(9, 17, 28, 0) 100%);
    }

    .home-hero__content {
        top: auto;
        right: 24px;
        bottom: 84px;
        left: 24px;
        width: auto;
        transform: none;
    }

    .home-hero__eyebrow,
    .home-hero__slide--dark .home-hero__eyebrow,
    .home-hero__content h1,
    .home-hero__content h2,
    .home-hero__slide--dark .home-hero__content h1,
    .home-hero__slide--dark .home-hero__content h2 {
        color: #fff;
    }

    .home-hero__content h1,
    .home-hero__content h2 {
        font-size: clamp(31px, 4.2vw, 40px);
    }

    .home-hero__content p,
    .home-hero__slide--dark .home-hero__content p {
        margin: 16px 0 22px;
        color: rgba(255, 255, 255, .8);
        font-size: 14px;
        line-height: 1.55;
    }

    .home-hero__controls {
        right: auto;
        bottom: 22px;
        left: 24px;
    }

    .home-products {
        margin: 18px 18px 52px;
        padding: 42px 22px 48px;
    }

    .home-products__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .home-page {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        padding-top: 70px;
    }

    .home-hero {
        height: 620px;
        margin: 14px 14px 0;
        border-radius: 6px;
    }

    .home-hero__slide > img {
        object-position: 68% center;
    }

    .home-hero__slide:nth-child(2) > img {
        object-position: 72% center;
    }

    .home-hero__shade,
    .home-hero__slide--dark .home-hero__shade {
        background: linear-gradient(0deg, rgba(9, 17, 28, .96) 0%, rgba(9, 17, 28, .86) 38%, rgba(9, 17, 28, .12) 78%, rgba(9, 17, 28, 0) 100%);
    }

    .home-hero__content {
        top: auto;
        right: 24px;
        bottom: 84px;
        left: 24px;
        width: auto;
        transform: none;
    }

    .home-hero__eyebrow,
    .home-hero__slide--dark .home-hero__eyebrow {
        margin-bottom: 12px;
        color: #fff;
        font-size: 10px;
    }

    .home-hero__content h1,
    .home-hero__content h2,
    .home-hero__slide--dark .home-hero__content h1,
    .home-hero__slide--dark .home-hero__content h2 {
        color: #fff;
        font-size: clamp(31px, 9vw, 42px);
    }

    .home-hero__content p,
    .home-hero__slide--dark .home-hero__content p {
        margin: 16px 0 21px;
        color: rgba(255, 255, 255, .8);
        font-size: 14px;
        line-height: 1.55;
    }

    .home-hero__button {
        min-height: 46px;
    }

    .home-hero__controls {
        right: auto;
        bottom: 22px;
        left: 24px;
    }

    .home-products {
        margin: 14px 14px 48px;
        padding: 40px 18px 44px;
        border-radius: 6px;
    }

    .home-products__heading {
        margin-bottom: 27px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-products__heading h1,
    .home-products__heading h2 {
        font-size: 30px;
    }

    .home-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 12px;
    }

    .home-product-tile__action {
        display: none;
    }

    .home-product-tile__content {
        padding-top: 13px;
    }

    .home-product-tile__content h3 {
        font-size: 14px;
        line-height: 1.35;
    }
}

@media only screen and (max-width: 420px) {
    .home-hero {
        height: 580px;
    }

    .home-hero__content {
        right: 20px;
        left: 20px;
    }

    .home-hero__content h1,
    .home-hero__content h2,
    .home-hero__slide--dark .home-hero__content h1,
    .home-hero__slide--dark .home-hero__content h2 {
        font-size: 31px;
    }

    .home-products__heading p {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide,
    .home-hero__button,
    .home-hero__dot,
    .home-products__heading > a i,
    .home-product-tile__image > img,
    .home-product-tile__action {
        transition: none;
    }
}

@media only screen and (max-width: 991px) {
    .shop-page-area,
    .product-not-found {
        width: 100%;
        padding: 55px 24px 70px;
    }
}

@media only screen and (max-width: 767px) {
    .shop-page-area {
        padding: 38px 15px 60px;
    }

    .shop-results-heading {
        margin-top: 0;
    }

    .shop-results-heading h1 {
        font-size: 24px;
    }

    .home-product-card .hover-content h2 {
        font-size: 18px;
    }
}
