.kano-products-slider-section {
    position: relative;
    padding: 40px 0;
   
    overflow: hidden;
}

.kano-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
}

.kano-new-arrivals__slider-wrapper {
    position: relative;
}

.kano-new-arrivals__slider {
    display: flex;
    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    padding-bottom: 10px;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.kano-new-arrivals__slider::-webkit-scrollbar {
    display: none;
}

.kano-product-card {
    display: flex;
    flex-direction: column;

    width: 320px;
    min-width: 320px;
    flex-shrink: 0;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(201, 165, 107, 0.35);
    border-radius: 10px;

    overflow: hidden;

    transition: 0.35s ease;
}

.kano-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
}

.kano-product-card__image {
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
}

.kano-product-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: 0.5s ease;
}

.kano-product-card:hover img {
    transform: scale(1.05);
}

.kano-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    z-index: 2;

    background: #c8a46b;
    color: #fff;

    padding: 7px 16px;

    border-radius: 50px;

    font-size: 12px;
    letter-spacing: 1px;
}

.kano-product-card__content {
    padding: 20px;

    display: flex;
    flex: 1;
    flex-direction: column;

    gap: 14px;
}

.kano-product-card__category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b18b54;
}

.kano-product-card__category a {
    color: #b18b54;
    text-decoration: none;
    transition: 0.3s ease;
}

.kano-product-card__category a:hover {
    opacity: 0.7;
}

.kano-product-card__title {
    font-size: 21px;
    line-height: 1.35;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
font-weight: 400;
    min-height: 60px;
}

.kano-product-card__title a {
    color: #232323;
    text-decoration: none;
}

.kano-product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: auto;
}

.kano-product-card__price {
    font-size: 24px;

    color: #1f241f;
    margin: 0;
}

.kano-product-card__price * {
    margin: 0;
    line-height: 1;
}

.kano-add-to-cart {
    width: 48px;
    height: 48px;
    min-width: 48px;

    border-radius: 50%;
    border: 1px solid #c8a46b;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b18b54;
    background: rgba(255,255,255,0.75);

    transition: 0.3s ease;

    text-decoration: none;
    padding: 0;
}

.kano-add-to-cart:hover {
    background: #c8a46b;
    color: #fff;

    transform: translateY(-2px);
}

.kano-slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border-radius: 50%;
    border: 1px solid rgba(201,165,107,0.4);

    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);

    cursor: pointer;

    z-index: 5;

    font-size: 22px;
    color: #b18b54;

    transition: 0.3s ease;
}

.kano-slider-arrow:hover {
    background: #c8a46b;
    color: #fff;
}

.kano-slider-arrow.prev {
    left: -20px;
}

.kano-slider-arrow.next {
    right: -20px;
}

/* MOBILE */

@media (max-width: 768px) {

    .kano-products-slider-section {
        padding: 80px 0;
    }

    .kano-new-arrivals__heading h2 {
        font-size: 34px;
    }

    .kano-new-arrivals__slider {

        gap: 14px;

        scroll-snap-type: x mandatory;

        padding-inline: 20px;
    }

    .kano-product-card {

        width: 280px;
        min-width: 280px;

        scroll-snap-align: center;
    }

    .kano-product-card__title {
        font-size: 18px;
        min-height: 72px;
    }

    .kano-slider-arrow {
        display: none;
    }

}

.kano-product-card__price del,
.kano-product-card__price del * {
    opacity: 0.85;
    font-weight: 400;
}

.kano-product-card__price ins,
.kano-product-card__price ins * {
    text-decoration: none !important;
}



.kano-section-heading {
    text-align: center;

    margin-bottom: 60px;
}

.kano-section-label {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 12px;
    letter-spacing: 4px;

    text-transform: uppercase;

    color: #b18b54;
}

.kano-section-heading h2 {
    margin: 0 0 18px;

    font-size: 74px;
    line-height: 1;
    font-weight: 500;

    color: #2a2622;
}

.kano-section-heading p {
    max-width: 760px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.8;

    color: #6f655c;
}

@media (max-width: 768px) {

    .kano-section-heading {
        margin-bottom: 40px;
    }

    .kano-section-heading h2 {
        font-size: 44px;
    }

    .kano-section-heading p {
        font-size: 16px;
    }

}