.home-categories-hero {
    padding: 35px 0;
    background: var(--color-bg);
}

.home-categories-hero__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 280px 160px;
    gap: 8px;
}

.home-hero-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(0, 130, 203, 0.10);
    background-color: #dfe6eb;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-decoration: none;
    color: var(--color-white);
    isolation: isolate;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.home-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 24, 36, 0.78) 0%,
            rgba(10, 24, 36, 0.62) 26%,
            rgba(10, 24, 36, 0.28) 52%,
            rgba(10, 24, 36, 0.08) 75%,
            rgba(10, 24, 36, 0.02) 100%
        );
    transition: opacity 0.28s ease;
}

.home-hero-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            115deg,
            rgba(0, 199, 255, 0.10) 0%,
            rgba(0, 130, 203, 0.10) 30%,
            rgba(255, 196, 120, 0.10) 68%,
            rgba(255, 170, 80, 0.08) 100%
        );
    opacity: 1;
    transition: opacity 0.28s ease;
}

.home-hero-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 199, 255, 0.35);
    box-shadow: 0 14px 36px rgba(0, 46, 78, 0.16);
}

.home-hero-card:hover::before {
    opacity: 0.94;
}

.home-hero-card:hover .home-hero-card__overlay {
    opacity: 1;
}

.home-hero-card--lg {
    grid-column: span 3;
}

.home-hero-card--sm {
    grid-column: span 2;
}

.home-hero-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    padding: 26px 24px 22px;
}

.home-hero-card__title {
    display: block;
    max-width: 56%;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.home-hero-card--lg .home-hero-card__title {
    max-width: 52%;
    font-size: 31px;
    line-height: 1.15;
}

.home-hero-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-white);
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.home-hero-card__link::after {
    content: "⟶";
    font-size: 14px;
    line-height: 1;
    transition: transform 0.22s ease;
    margin-top: -4px;
}

.home-hero-card:hover .home-hero-card__link {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateX(2px);
}

.home-hero-card:hover .home-hero-card__link::after {
    transform: translateX(3px);
}

/* Щоб у великих картках фон трохи більше відкривався справа */
.home-hero-card--lg {
    background-position: center right;
}

/* У малих картках краще теж зсунути вправо, бо текст зліва */
.home-hero-card--sm {
    background-position: center right;
}

@media (max-width: 1199px) {
    .home-categories-hero__grid {
        grid-template-rows: 220px 130px;
    }

    .home-hero-card__content {
        padding: 20px 18px 18px;
    }

    .home-hero-card--lg .home-hero-card__title {
        font-size: 24px;
        max-width: 58%;
    }

    .home-hero-card__title {
        font-size: 17px;
        max-width: 60%;
    }

    .home-hero-card__link {
        margin-top: 12px;
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .home-categories-hero__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 190px 190px 130px 130px;
        gap: 10px;
    }

    .home-hero-card--lg,
    .home-hero-card--sm {
        grid-column: span 1;
    }

    .home-hero-card__title,
    .home-hero-card--lg .home-hero-card__title {
        max-width: 62%;
        font-size: 20px;
    }

    .home-hero-card::before {
        background:
            linear-gradient(
                90deg,
                rgba(10, 24, 36, 0.80) 0%,
                rgba(10, 24, 36, 0.64) 32%,
                rgba(10, 24, 36, 0.26) 62%,
                rgba(10, 24, 36, 0.06) 100%
            );
    }
}

@media (max-width: 767px) {
    .home-categories-hero {
        padding: 12px 0 20px;
    }

    .home-categories-hero__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
        gap: 10px;
    }

    .home-hero-card__content {
        padding: 16px;
    }

    .home-hero-card__title,
    .home-hero-card--lg .home-hero-card__title {
        max-width: 70%;
        font-size: 18px;
        line-height: 1.2;
    }

    .home-hero-card__link {
        margin-top: 10px;
        padding: 8px 11px;
        font-size: 12px;
    }

    .home-hero-card::before {
        background:
            linear-gradient(
                90deg,
                rgba(10, 24, 36, 0.82) 0%,
                rgba(10, 24, 36, 0.66) 42%,
                rgba(10, 24, 36, 0.24) 74%,
                rgba(10, 24, 36, 0.05) 100%
            );
    }
}


/* Секція під Банером */

.home-benefits-strip {
    position: relative;
    padding: 56px 0 44px;
    background: linear-gradient(180deg, #0082cb 0%, #0a74b2 100%);
}

.home-benefits-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12) 0, rgba(255,255,255,0) 22%),
        radial-gradient(circle at 85% 30%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0) 20%);
    pointer-events: none;
}

.home-benefits-strip .container {
    position: relative;
    z-index: 1;
}

.home-benefits-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -14px;
}

.home-benefits-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 20px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 14px 26px rgba(7, 46, 73, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-benefits-strip__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(7, 46, 73, 0.16);
    border-color: rgba(0,130,203,0.18);
}

.home-benefits-strip__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eaf7ff 0%, #d8f2ff 100%);
    color: #0082cb;
    box-shadow: inset 0 0 0 1px rgba(0,130,203,0.10);
}

.home-benefits-strip__icon svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.home-benefits-strip__content {
    min-width: 0;
}

.home-benefits-strip__title {
    margin-bottom: 6px;
    color: #1f2b36;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.home-benefits-strip__text {
    color: #5f6d78;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    .home-benefits-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .home-benefits-strip {
        padding: 25px 0px 20px;
    }

    .home-benefits-strip__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: -8px;
    }

    .home-benefits-strip__item {
        padding: 16px 14px;
    }

    .home-benefits-strip__icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .home-benefits-strip__icon svg {
        width: 24px;
        height: 24px;
    }

    .home-benefits-strip__title {
        font-size: 16px;
    }

    .home-benefits-strip__text {
        font-size: 13px;
    }
}


/* =========================================
   HOME CATEGORY STRIP
========================================= */
.home-category-strip {
    padding: 56px 0 56px;
    background: #fff;
    overflow: hidden;
}

.home-category-strip__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7ebef;
}

.home-category-strip__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-category-strip__title {
    margin: 0;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.home-category-strip__nav {
    display: flex;
    gap: 8px;
}

.home-category-strip__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #d8e2ec;
    background: #fff;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.home-category-strip__arrow:hover {
    border-color: var(--color-secondary);
    background: #eef9fd;
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.home-category-strip__slider {
    overflow: hidden;
    position: relative;
    padding-top: 4px;
}

.home-category-strip__track {
    display: flex;
    gap: 14px;
    will-change: transform;
}

.home-category-card {
    flex: 0 0 150px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 12px 16px;
    border: 1px solid #dfe7ee;
    background: #ecedef;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
	box-shadow: 0 4px 14px rgba(15, 41, 61, 0.04);
}

.home-category-card:hover {
    border-color: rgba(0,130,203,.22);
    box-shadow: 0 10px 24px rgba(0,130,203,.08);
    transform: translateY(-2px);
}

.home-category-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px;
    padding: 10px;
    background: #ecedef;
    overflow: hidden;
}

.home-category-card__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-category-card__placeholder {
    display: block;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #eef4f8 0%, #e3ebf1 100%);
}

.home-category-card__title {
    display: -webkit-box;
    min-height: calc(1.35em * 2);
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-category-card:hover .home-category-card__title {
    color: var(--color-secondary);
}

@media (max-width: 1199px) {
    .home-category-strip__title {
        font-size: 26px;
    }

    .home-category-card {
        flex: 0 0 136px;
        min-width: 136px;
    }
}

@media (max-width: 767px) {
    .home-category-strip {
        padding: 16px 0 34px;
    }

    .home-category-strip__title {
        font-size: 20px;
    }

    .home-category-strip__track {
        gap: 12px;
    }

    .home-category-card {
        flex: 0 0 120px;
        min-width: 120px;
        padding: 12px 10px 14px;
    }

    .home-category-card__title {
        font-size: 13px;
    }
}


/* Section Products */

.home-most-bought {
    padding: 0px 0 56px;
    background: #fff;
}

.home-most-bought__grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.home-most-bought__aside,
.home-most-bought__main {
    min-width: 0;
}

/* left promo */
.home-products-promo {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    height: 100%;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #00c7ff;
    background: linear-gradient(180deg, #f8fcfe 0%, #f1f8fc 100%);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-products-promo:hover {
    border-color: #00c7ff;
    box-shadow: 0 12px 28px rgba(0, 130, 203, 0.08);
    transform: translateY(-2px);
}

.home-products-promo__content {
    position: relative;
    z-index: 3;
}

.home-products-promo__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #0082cb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-products-promo__title {
    margin: 0 0 12px;
    color: #1f2b36;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.home-products-promo__text {
    margin: 0 0 18px;
    color: #64717b;
    font-size: 14px;
    line-height: 1.6;
}

.home-products-promo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    background: #00c7ff;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-products-promo:hover .home-products-promo__button {
    background: #0082cb;
}

.home-products-promo__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-products-promo__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.home-products-promo__item.is-active {
    opacity: 1;
}

.home-products-promo__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248, 252, 254, 0.96) 0%, rgba(248, 252, 254, 0.92) 32%, rgba(248, 252, 254, 0.24) 72%, rgba(248, 252, 254, 0.08) 100%);
}

.home-products-promo__item-media {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.home-products-promo__item-media img,
.home-products-promo__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
}

.home-products-promo__item-title {
    position: absolute;
    bottom: 70px;
    z-index: 2;
    max-width: 55%;
    text-align: left;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    padding: 22px;
}

/* right block */
.home-most-bought__main {
    padding: 22px;
    border: 1px solid #00c7ff;
    background: linear-gradient(180deg, #fbfdfe 0%, #f7fafc 100%);
}

.home-most-bought__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7ebef;
}

.home-most-bought__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #0082cb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-most-bought__title {
    margin: 0;
    color: #1f2b36;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.home-most-bought__nav {
    display: flex;
    gap: 8px;
}

.home-most-bought__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #d8e2ec;
    background: #fff;
    color: #1f2b36;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-most-bought__arrow:hover {
    border-color: #00c7ff;
    background: #eef9fd;
    color: #0082cb;
    transform: translateY(-1px);
}


.home-most-bought__slider{
    overflow: hidden;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: -4px;
    margin-bottom: -4px;
}

.home-most-bought__track{
    display: flex;
    gap: 14px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.most-bought-card{
    flex: 0 0 calc(25% - 10.5px);
    min-width: 0;
}

.most-bought-card__inner{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 430px;
    padding: 14px;
    border: 1px solid #e3e8ee;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.most-bought-card__inner:hover{
    border-color: rgba(0,130,203,.22);
    box-shadow: 0 10px 24px rgba(0, 130, 203, 0.08);
    transform: translateY(-2px);
}

.most-bought-card__top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 10px;
}

.most-bought-card__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.most-bought-card__image-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    min-height: 132px;
    margin-bottom: 12px;
    padding: 8px;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
}

.most-bought-card__image-link img,
.most-bought-card__image{
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100px !important;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

.most-bought-card__content{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.most-bought-card__title{
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 3);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.most-bought-card__title:hover{
    color: var(--color-secondary);
}

.most-bought-card__sku-row{
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    color: #7a8791;
    font-size: 12px;
    line-height: 1.4;
}

.most-bought-card__sku-label{
    color: #8a97a3;
    flex-shrink: 0;
}

.most-bought-card__sku{
    color: #55636f;
    min-width: 0;
    overflow-wrap: anywhere;
}

.most-bought-card__stock{
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.most-bought-card__stock.is-in-stock{
    color: #20b26b;
}

.most-bought-card__stock.is-out-of-stock{
    color: #9aa5ae;
}

.most-bought-card__prices{
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.most-bought-card__price{
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
}

.most-bought-card__price--sale{
    color: #df1c41;
}

.most-bought-card__price--empty{
    color: #7d8a95;
    font-size: 15px;
    font-weight: 600;
}

.most-bought-card__price .woocommerce-Price-amount,
.most-bought-card__old-price .woocommerce-Price-amount{
    white-space: nowrap;
}

.most-bought-card__old-price{
    color: #8b97a1;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: line-through;
}

.most-bought-card__bottom{
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e7ebef;
}

.most-bought-card__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: 100%;
    padding: 0 14px;
    background: #00c7ff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.most-bought-card__button:hover{
    background: #0082cb;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1199px){
    .most-bought-card{
        flex: 0 0 calc(33.333333% - 9.5px);
    }

    .most-bought-card__inner{
        min-height: 410px;
    }
}

@media (max-width: 991px){
    .most-bought-card{
        flex: 0 0 calc(50% - 7px);
    }

    .home-most-bought {
        padding: 0 0 40px;
    }

    .home-most-bought__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-most-bought__aside,
    .home-most-bought__main {
        width: 100%;
    }

    /* left promo */
    .home-products-promo {
        min-height: auto;
        padding: 20px;
    }

    .home-products-promo__content {
        position: relative;
        z-index: 3;
        max-width: 58%;
    }

    .home-products-promo__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .home-products-promo__text {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .home-products-promo__item::after {
        background: linear-gradient(
            90deg,
            rgba(248, 252, 254, 0.97) 0%,
            rgba(248, 252, 254, 0.95) 45%,
            rgba(248, 252, 254, 0.55) 72%,
            rgba(248, 252, 254, 0.14) 100%
        );
    }

    .home-products-promo__item-media {
        right: 16px;
        bottom: 16px;
        width: 38%;
        height: 46%;
    }

    .home-products-promo__item-title {
        bottom: 18px;
        right: 16px;
        left: auto;
        max-width: 34%;
        padding: 0;
        font-size: 12px;
        line-height: 1.35;
        text-align: right;
    }

    /* right block */
    .home-most-bought__main {
        padding: 18px;
    }

    .home-most-bought__header {
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .home-most-bought__title {
        font-size: 24px;
        line-height: 1.15;
    }

    .home-most-bought__nav {
        flex-shrink: 0;
    }

    .home-most-bought__arrow {
        width: 38px;
        height: 38px;
    }

    .home-most-bought__track {
        gap: 12px;
    }

    .most-bought-card {
        flex: 0 0 calc(50% - 6px);
    }

    .most-bought-card__inner {
        min-height: 390px;
        padding: 12px;
    }

    .most-bought-card__image-link {
        height: 118px;
        min-height: 118px;
        margin-bottom: 10px;
    }

    .most-bought-card__image-link img,
    .most-bought-card__image {
        max-height: 88px !important;
    }

    .most-bought-card__title {
        min-height: calc(1.35em * 3);
        font-size: 13px;
    }

    .most-bought-card__sku-row {
        font-size: 11px;
    }

    .most-bought-card__stock {
        font-size: 12px;
    }

    .most-bought-card__price {
        font-size: 20px;
    }

    .most-bought-card__old-price {
        font-size: 14px;
    }

    .most-bought-card__button {
        min-height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .home-most-bought {
        padding: 0 0 20px;
    }

    .home-most-bought__grid {
        gap: 14px;
    }

    /* left promo becomes stacked and safer */
    .home-products-promo {
        padding: 18px 16px;
    }

    .home-products-promo__content {
        max-width: 100%;
        padding-right: 0;
    }

    .home-products-promo__eyebrow {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .home-products-promo__title {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .home-products-promo__text {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.55;
    }

    .home-products-promo__button {
        min-height: 32px;
        padding: 0 14px;
        font-size: 12px;
    }

    .home-products-promo__visual {
        position: relative;
        inset: auto;
        margin-top: 18px;
        min-height: 180px;
    }

    .home-products-promo__item {
        position: absolute;
        inset: 0;
    }

    .home-products-promo__item::after {
        background: linear-gradient(
            180deg,
            rgba(248, 252, 254, 0.08) 0%,
            rgba(248, 252, 254, 0.18) 100%
        );
    }

    .home-products-promo__item-media {
        position: absolute;
        right: 12px;
        bottom: 38px;
        width: calc(100% - 24px);
        height: 120px;
        justify-content: center;
        align-items: center;
    }

    .home-products-promo__item-media img,
    .home-products-promo__image {
        max-width: 100%;
        max-height: 100%;
        object-position: center center;
    }

    .home-products-promo__item-title {
        right: 12px;
        left: 12px;
        bottom: 8px;
        max-width: none;
        font-size: 12px;
        line-height: 1.35;
        text-align: center;
    }

    /* right block */
    .home-most-bought__main {
        padding: 16px 14px;
    }

    .home-most-bought__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .home-most-bought__heading {
        width: 100%;
    }

    .home-most-bought__title {
        font-size: 22px;
    }

    .home-most-bought__nav {
        width: 100%;
        justify-content: flex-end;
    }

    .home-most-bought__slider {
        overflow: hidden;
    }

    .home-most-bought__track {
        gap: 10px;
    }

    .most-bought-card {
        flex: 0 0 calc(100% - 0px);
    }

    .most-bought-card__inner {
        min-height: auto;
        padding: 12px;
    }

    .most-bought-card__top {
        margin-bottom: 8px;
    }

    .most-bought-card__badge {
        min-height: 22px;
        font-size: 9px;
        padding: 0 7px;
    }

    .most-bought-card__image-link {
        height: 150px;
        min-height: 150px;
        margin-bottom: 10px;
    }

    .most-bought-card__image-link img,
    .most-bought-card__image {
        max-height: 120px !important;
    }

    .most-bought-card__title {
        margin-bottom: 8px;
        min-height: auto;
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .most-bought-card__sku-row {
        margin-bottom: 6px;
    }

    .most-bought-card__stock {
        margin-bottom: 8px;
    }

    .most-bought-card__prices {
        margin-bottom: 12px;
    }

    .most-bought-card__price {
        font-size: 22px;
    }

    .most-bought-card__old-price {
        font-size: 14px;
    }

    .most-bought-card__bottom {
        padding-top: 12px;
    }
}

@media (max-width: 479px) {
    .home-products-promo {
        padding: 16px 14px;
    }

    .home-products-promo__title {
        font-size: 20px;
    }

    .home-products-promo__text {
        font-size: 12px;
    }

    .home-products-promo__visual {
        min-height: 160px;
    }

    .home-products-promo__item-media {
        height: 105px;
    }

    .home-most-bought__main {
        padding: 14px 12px;
    }

    .home-most-bought__title {
        font-size: 20px;
    }

    .home-most-bought__arrow {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .most-bought-card__inner {
        padding: 10px;
    }

    .most-bought-card__image-link {
        height: 138px;
        min-height: 138px;
    }

    .most-bought-card__image-link img,
    .most-bought-card__image {
        max-height: 108px !important;
    }

    .most-bought-card__price {
        font-size: 20px;
    }

    .most-bought-card__button {
        font-size: 12px;
    }
}


/* Секція Нові товари */


.home-new-products{
    padding: 0 0 56px;
    background: #fff;
}

.home-new-products__header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7ebef;
}

.home-new-products__eyebrow{
    display: inline-block;
    margin-bottom: 6px;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-new-products__title{
    margin: 0;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.home-new-products__nav{
    display: flex;
    gap: 8px;
}

.home-new-products__arrow{
    width: 40px;
    height: 40px;
    border: 1px solid #d8e2ec;
    background: #fff;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.home-new-products__arrow:hover{
    border-color: var(--color-secondary);
    background: #eef9fd;
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.home-new-products__slider{
    overflow: hidden;
}

.home-new-products__track{
    display: flex;
    gap: 14px;
    transition: transform .45s ease;
    will-change: transform;
}

.new-product-card{
    flex: 0 0 calc(20% - 11.2px);
    min-width: 0;
    margin-top: 2px;
}

.new-product-card__inner{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 430px;
    padding: 14px;
    border: 1px solid #e3e8ee;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.new-product-card__inner:hover{
    border-color: rgba(0,130,203,.22);
    box-shadow: 0 10px 24px rgba(0, 130, 203, 0.08);
    transform: translateY(-1px);
}

.new-product-card__top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 10px;
}

.new-product-card__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.new-product-card__image-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    min-height: 132px;
    margin-bottom: 12px;
    padding: 8px;
    text-decoration: none;
    overflow: hidden;
    box-sizing: border-box;
}

.new-product-card__image-link img,
.new-product-card__image{
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100px !important;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

.new-product-card__content{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.new-product-card__title{
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 3);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.new-product-card__title:hover{
    color: var(--color-secondary);
}

.new-product-card__sku-row{
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    color: #7a8791;
    font-size: 12px;
    line-height: 1.4;
}

.new-product-card__sku-label{
    color: #8a97a3;
    flex-shrink: 0;
}

.new-product-card__sku{
    color: #55636f;
    min-width: 0;
    overflow-wrap: anywhere;
}

.new-product-card__stock{
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.new-product-card__stock.is-in-stock{
    color: #20b26b;
}

.new-product-card__stock.is-out-of-stock{
    color: #9aa5ae;
}

.new-product-card__prices{
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.new-product-card__price{
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
}

.new-product-card__price--sale{
    color: #df1c41;
}

.new-product-card__price--empty{
    color: #7d8a95;
    font-size: 15px;
    font-weight: 600;
}

.new-product-card__price .woocommerce-Price-amount,
.new-product-card__old-price .woocommerce-Price-amount{
    white-space: nowrap;
}

.new-product-card__old-price{
    color: #8b97a1;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: line-through;
}

.new-product-card__bottom{
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e7ebef;
}

.new-product-card__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: 100%;
    padding: 0 14px;
    background: #00c7ff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.new-product-card__button:hover{
    background: #0082cb;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1399px){
    .new-product-card{
        flex: 0 0 calc(25% - 10.5px);
    }
}

@media (max-width: 1199px){
    .home-new-products__title{
        font-size: 26px;
    }

    .new-product-card{
        flex: 0 0 calc(33.333333% - 9.5px);
    }

    .new-product-card__inner{
        min-height: 410px;
    }
}

@media (max-width: 991px){
    .new-product-card{
        flex: 0 0 calc(50% - 7px);
    }
}

@media (max-width: 767px){
    .home-new-products{
        padding: 0px 0 20px;
    }

    .home-new-products__title{
        font-size: 20px;
    }

    .home-new-products__track{
        gap: 12px;
    }

    .new-product-card{
        flex: 0 0 100%;
    }

    .new-product-card__inner{
        min-height: 0;
    }

    .new-product-card__image-link{
        height: 150px;
        min-height: 150px;
    }

    .new-product-card__title{
        min-height: 0;
    }

    .new-product-card__price{
        font-size: 20px;
    }
}


/* Секція Акційних Товарів */


.home-sale-compact{
    padding: 56px 0 56px;
    background: #0082cb;
}

.home-sale-compact__head{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px 24px;
    margin-bottom: 18px;
}

.home-sale-compact__intro{
    max-width: 560px;
}

.home-sale-compact__eyebrow{
    display: inline-block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-sale-compact__title{
	margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.home-sale-compact__text{
    max-width: 500px;
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.home-sale-compact__text p{
    margin: 0;
}

.home-sale-compact__actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    align-self: center;
}

.home-sale-compact__button{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    background: #fff;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

.home-sale-compact__button:hover{
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: #f7fbff;
    transform: translateY(-1px);
}

.home-sale-compact__nav{
    display: flex;
    gap: 8px;
}

.home-sale-compact__arrow{
	width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.home-sale-compact__arrow:hover{
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: #f7fbff;
    transform: translateY(-1px);
}

.home-sale-compact__slider{
    overflow: hidden;
}

.home-sale-compact__track{
    display: flex;
    gap: 18px;
    transition: transform .45s ease;
    will-change: transform;
}

.sale-compact-card{
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
}

.sale-compact-card__inner{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    align-items: center;
    gap: 14px;
    min-height: 136px;
    height: 170px;
    padding: 16px 16px 16px 18px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #e6edf3;
    box-shadow: 0 10px 24px rgba(15, 28, 45, 0.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sale-compact-card:hover .sale-compact-card__inner{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 28, 45, 0.08);
    border-color: rgba(0,130,203,.18);
}

/* calmer tones, closer to site UI */
.sale-compact-card--tone-1 .sale-compact-card__inner{
    background: linear-gradient(135deg, #eef6fb 0%, #e5f0f7 100%);
}

.sale-compact-card--tone-2 .sale-compact-card__inner{
    background: linear-gradient(135deg, #eef8f2 0%, #e5f2ea 100%);
}

.sale-compact-card--tone-3 .sale-compact-card__inner{
    background: linear-gradient(135deg, #fff6e8 0%, #fdf0dc 100%);
}

.sale-compact-card__content{
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sale-compact-card__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    margin-bottom: 10px;
    background: #0082cb;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.sale-compact-card__title{
    margin: 0 0 10px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.28em * 2);
    max-height: calc(1.28em * 2);
}

.sale-compact-card__prices{
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.sale-compact-card__new-price{
    color: #df1c41;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.sale-compact-card__old-price{
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.2;
    text-decoration: line-through;
    white-space: nowrap;
}

.sale-compact-card__media{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
}

.sale-compact-card__media img,
.sale-compact-card__image{
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 92px !important;
    object-fit: contain;
    object-position: center;
}

/* responsive */

@media (max-width: 1199px){
    .home-sale-compact__head{
        grid-template-columns: 1fr;
        align-items: start;
    }

    .home-sale-compact__actions{
        justify-content: flex-start;
    }

    .sale-compact-card{
        flex: 0 0 calc((100% - 18px) / 2);
    }
}

@media (max-width: 767px){
    .home-sale-compact{
        padding: 22px 0 34px;
    }

    .home-sale-compact__title{
        font-size: 20px;
    }

    .home-sale-compact__text{
        font-size: 14px;
    }

    .home-sale-compact__actions{
        flex-wrap: wrap;
    }

    .home-sale-compact__button{
        min-height: 42px;
        padding: 0 16px;
        font-size: 12px;
    }

    .home-sale-compact__arrow{
        width: 42px;
        height: 42px;
    }

    .sale-compact-card{
        flex: 0 0 100%;
    }

    .sale-compact-card__inner{
        grid-template-columns: minmax(0, 1fr) 78px;
        min-height: 122px;
        height: 122px;
        padding: 14px;
    }

    .sale-compact-card__badge{
        min-height: 24px;
        padding: 0 9px;
        margin-bottom: 8px;
        font-size: 11px;
    }

    .sale-compact-card__title{
        margin-bottom: 8px;
        font-size: 15px;
    }

    .sale-compact-card__new-price{
        font-size: 17px;
    }

    .sale-compact-card__old-price{
        font-size: 13px;
    }

    .sale-compact-card__media{
        width: 78px;
        height: 78px;
    }

    .sale-compact-card__media img,
    .sale-compact-card__image{
        max-height: 78px !important;
    }
}


/* =========================================
   HOME DUAL PRODUCTS
========================================= */

.home-dual-products {
    padding: 56px 0 56px;
    background: #fff;
    position: relative;
    z-index: 1;
}

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

.home-dual-products__column {
    min-width: 0;
    padding: 18px;
    border: 1px solid #e7ebef;
    background: #fff;
}

.home-dual-products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7ebef;
}

.home-dual-products__intro {
    min-width: 0;
}

.home-dual-products__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-dual-products__title {
    margin: 0 0 6px;
    color: var(--color-text);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
}

.home-dual-products__text {
    color: #6f7a83;
    font-size: 14px;
    line-height: 1.5;
}

.home-dual-products__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex-shrink: 0;
}

.home-dual-products__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.home-dual-products__link::after {
    content: "⟶";
    font-size: 14px;
    line-height: 1;
    transition: transform .2s ease;
}

.home-dual-products__link:hover {
    color: var(--color-secondary);
}

.home-dual-products__link:hover::after {
    transform: translateX(3px);
}

.home-dual-products__nav {
    display: flex;
    gap: 8px;
}

.home-dual-products__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #d8e2ec;
    background: #fff;
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.home-dual-products__arrow:hover {
    border-color: var(--color-secondary);
    background: #eef9fd;
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.home-dual-products__arrow.is-disabled {
    opacity: .45;
    cursor: default;
    pointer-events: none;
}

.home-dual-products__viewport {
    overflow: hidden;
}

.home-dual-products__track {
    display: flex;
    gap: 14px;
    transition: transform .45s ease;
    will-change: transform;
}

.dual-product-card {
    flex: 0 0 calc(33.333333% - 9.5px);
    min-width: 0;
    margin-top: 2px;
    border: 1px solid #e3e8ee;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dual-product-card:hover {
    border-color: rgba(0,130,203,.22);
    box-shadow: 0 10px 24px rgba(0, 130, 203, 0.08);
    transform: translateY(-1px);
}

.dual-product-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    min-height: 132px;
    padding: 10px;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 1px solid #eef3f7;
    box-sizing: border-box;
}

.dual-product-card__image-link img,
.dual-product-card__image {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100px !important;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
}

.dual-product-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 280px;
    padding: 14px;
    box-sizing: border-box;
}

.dual-product-card__title {
    display: -webkit-box;
    margin-bottom: 10px;
    min-height: calc(1.35em * 3);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.dual-product-card__title:hover {
    color: var(--color-secondary);
}

.dual-product-card__sku-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    color: #7a8791;
    font-size: 12px;
    line-height: 1.4;
}

.dual-product-card__sku-label {
    color: #8a97a3;
    flex-shrink: 0;
}

.dual-product-card__sku {
    color: #55636f;
    min-width: 0;
    overflow-wrap: anywhere;
}

.dual-product-card__stock {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.dual-product-card__stock.is-in-stock {
    color: #20b26b;
}

.dual-product-card__stock.is-out-of-stock {
    color: #9aa5ae;
}

.dual-product-card__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 14px;
}

.dual-product-card__price {
    color: var(--color-text);
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
}

.dual-product-card__price--sale {
    color: #df1c41;
}

.dual-product-card__price--empty {
    color: #7d8a95;
    font-size: 15px;
    font-weight: 600;
}

.dual-product-card__price .woocommerce-Price-amount,
.dual-product-card__old-price .woocommerce-Price-amount {
    white-space: nowrap;
}

.dual-product-card__old-price {
    color: #8b97a1;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: line-through;
}

.dual-product-card__bottom {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e7ebef;
}

.dual-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: 100%;
    padding: 0 14px;
    background: #00c7ff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.dual-product-card__button:hover {
    background: #0082cb;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .home-dual-products__grid {
        grid-template-columns: 1fr;
    }

    .home-dual-products__title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .dual-product-card {
        flex: 0 0 calc(50% - 7px);
    }
}

@media (max-width: 767px) {
    .home-dual-products {
        padding: 20px 0 20px;
    }

    .home-dual-products__column {
        padding: 14px;
    }

    .home-dual-products__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

	.home-dual-products__actions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .home-dual-products__title {
        font-size: 20px;
    }

    .dual-product-card {
        flex: 0 0 100%;
    }

    .dual-product-card__content {
        min-height: 0;
    }

    .dual-product-card__image-link {
        height: 150px;
        min-height: 150px;
    }

    .dual-product-card__title {
        min-height: 0;
    }

    .dual-product-card__price {
        font-size: 20px;
    }
}



/* =========================================
   HOME ABOUT
========================================= */

.home-about {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-about__grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0;
    width: 100%;
    align-items: stretch;
}

/* LEFT: MAP */
.home-about__map {
    min-width: 0;
}

.home-about__map-frame {
    position: relative;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    background: #d9e1e7;
}

.home-about__map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-about__content-side {
    background: #ecedef;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.home-about__content-inner {
    width: 100%;
    max-width: 720px;
    padding: 56px 48px 56px 48px;
    box-sizing: border-box;
}

.home-about__title {
    margin: 0 0 20px;
    color: #1f2b36;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.home-about__text {
    color: #495762;
    font-size: 16px;
    line-height: 1.8;
}

.home-about__text p {
    margin: 0 0 16px;
}

.home-about__text p:last-child {
    margin-bottom: 0;
}

/* FEATURES */
.home-about__features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #0f6fb0 0%, #0082cb 100%);
}

.home-about__feature-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.14);
}

.home-about__feature-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.home-about__feature-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
}

/* DESKTOP WIDE */
@media (min-width: 1440px) {
    .home-about__content-inner {
        max-width: 760px;
        padding: 64px 56px 64px 56px;
    }
}

/* TABLET */
@media (max-width: 1199px) {
    .home-about__grid {
        grid-template-columns: 42% 58%;
    }

    .home-about__map-frame {
        min-height: 500px;
    }

    .home-about__content-inner {
        max-width: 100%;
        padding: 40px 32px;
    }

    .home-about__title {
        font-size: 28px;
    }

    .home-about__features {
        grid-template-columns: 1fr;
    }
}

/* SMALL TABLET / MOBILE */
@media (max-width: 991px) {
    .home-about__grid {
        grid-template-columns: 1fr;
    }

    .home-about__map-frame {
        min-height: 360px;
    }

    .home-about__content-inner {
        max-width: 100%;
        padding: 30px 20px;
    }

    .home-about__title {
        font-size: 24px;
    }

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

/* MOBILE */
@media (max-width: 767px) {
    .home-about__map-frame {
        min-height: 300px;
    }

    .home-about__content-inner {
        padding: 24px 16px;
    }

    .home-about__title {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .home-about__text {
        font-size: 14px;
        line-height: 1.75;
    }

    .home-about__features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-about__feature {
        padding: 12px;
    }
}


/* Наші партнери */

.home-partners {
    padding: 26px 0 56px;
    background: #0082cb;
    overflow: hidden;
}

.home-partners__header {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 18px 28px;
    align-items: end;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e7ebef;
}

.home-partners__heading {
    min-width: 0;
}

.home-partners__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #0082cb;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-partners__title {
	margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-partners__text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.home-partners__slider {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
}

.home-partners__track {
    display: flex;
    align-items: center;
    gap: 40px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.home-partners__item {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
    opacity: 0.35;
}

.home-partners__logo {
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border: 1px solid #0f6fb0;
    background: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.home-partners__logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.home-partners__item.is-active {
    transform: scale(1.35);
    opacity: 1;
    z-index: 3;
}

.home-partners__item.is-active .home-partners__logo {
    background: #fff;
    border-color: #dbe8f2;
    box-shadow: 0 10px 28px rgba(15, 41, 61, 0.08);
}

.home-partners__item.is-active img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* сусідні */
.home-partners__item.is-side {
    transform: scale(1);
    opacity: 0.65;
    z-index: 2;
}

.home-partners__item.is-side img {
    filter: grayscale(60%);
}

/* дальні */
.home-partners__item.is-far {
    transform: scale(0.82);
    opacity: 0.28;
    z-index: 1;
}

.home-partners__item.is-far img {
    filter: grayscale(100%) blur(0.6px);
}

@media (max-width: 991px) {
    .home-partners__header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-partners__title {
        font-size: 26px;
    }

    .home-partners__track {
        gap: 24px;
    }

    .home-partners__item {
        flex-basis: 150px;
    }

    .home-partners__logo {
        width: 140px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .home-partners {
        padding: 0px 0 20px;
    }

    .home-partners__header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .home-partners__title {
        font-size: 20px;
    }

    .home-partners__text {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-partners__track {
        gap: 16px;
    }

    .home-partners__item {
        flex-basis: 120px;
    }

    .home-partners__logo {
        width: 116px;
        height: 68px;
        padding: 10px 12px;
    }

    .home-partners__item.is-active {
        transform: scale(1.18);
    }

    .home-partners__item.is-side {
        transform: scale(0.92);
    }

    .home-partners__item.is-far {
        transform: scale(0.76);
    }
}



/* =========================
   HOME BLOG PREVIEW
========================= */

.home-blog-preview{
    padding: 56px 0 56px;
    background: #fff;
}

.home-blog-preview__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-blog-preview__head-main{
    max-width: 760px;
}

.home-blog-preview__eyebrow{
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-secondary);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.home-blog-preview__title{
    margin: 0 0 10px;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.02em;
}

.home-blog-preview__subtitle{
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.7;
}

.home-blog-preview__all{
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

.home-blog-preview__all:hover{
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: #f7fbff;
    transform: translateY(-1px);
}

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

.blog-teaser-card{
    min-width: 0;
}

.blog-teaser-card__inner{
    position: relative;
    display: flex;
    min-height: 240px;
    height: 100%;
    padding: 24px;
    border: 1px solid var(--color-border);
    background: #f8fafc;
    text-decoration: none;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.blog-teaser-card:hover .blog-teaser-card__inner{
    transform: translateY(-3px);
    border-color: rgba(0,130,203,.22);
    box-shadow: 0 16px 30px rgba(17, 37, 55, 0.08);
    background: #fbfdff;
}

.blog-teaser-card__content{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.blog-teaser-card__title{
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -.02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .22s ease;
}

.blog-teaser-card__excerpt{
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .22s ease;
}

.blog-teaser-card__link{
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    transition: color .22s ease;
}

.blog-teaser-card__link::after{
    content: "→";
    color: var(--color-secondary);
    transition: transform .2s ease, color .22s ease;
}

.blog-teaser-card:hover .blog-teaser-card__link{
    color: var(--color-secondary);
}

.blog-teaser-card:hover .blog-teaser-card__link::after{
    transform: translateX(3px);
}

/* hover image only for 2nd card */
.blog-teaser-card__hover-media{
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.blog-teaser-card__hover-image{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-teaser-card__hover-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,24,32,.18) 0%, rgba(16,24,32,.68) 100%);
}

.blog-teaser-card--hover-image:hover .blog-teaser-card__hover-media{
    opacity: 1;
    visibility: visible;
}

.blog-teaser-card--hover-image:hover .blog-teaser-card__title,
.blog-teaser-card--hover-image:hover .blog-teaser-card__excerpt,
.blog-teaser-card--hover-image:hover .blog-teaser-card__link{
    color: #fff;
}

.blog-teaser-card--hover-image:hover .blog-teaser-card__link::after{
    color: #fff;
}

/* responsive */
@media (max-width: 1399px){
    .home-blog-preview__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px){
    .home-blog-preview{
        padding: 48px 0;
    }

    .home-blog-preview__head{
        flex-direction: column;
        align-items: flex-start;
    }

    .home-blog-preview__title{
        font-size: 26px;
    }
}

@media (max-width: 767px){
    .home-blog-preview{
        padding: 20px 0;
    }

    .home-blog-preview__title{
        font-size: 20px;
    }

    .home-blog-preview__subtitle{
        font-size: 14px;
    }

    .home-blog-preview__grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-teaser-card__inner{
        min-height: 210px;
        padding: 18px;
    }

    .blog-teaser-card__title{
        font-size: 18px;
    }

    .blog-teaser-card__excerpt{
        font-size: 13px;
    }
}

