.products-section {
    width: 100%;

    padding-top: 140px;
    padding-bottom: 140px;

    background: #ffffff;

    overflow: hidden;
}

.products-header {
    text-align: center;

    margin-bottom: 90px;
}

.products-subtitle {
    display: inline-block;

    font-size: 13px;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--color-primary);

    margin-bottom: 24px;
}

.products-title {
    font-size: 72px;
    line-height: .95;

    color: #2f2f2f;
}

.products-slider-wrapper {
    position: relative;

    overflow: hidden;
}

.products-slider {
    display: flex;

    gap: 32px;

    transition: transform .7s ease;
}

.product-slide {
    min-width: calc(33.333% - 22px);

    background: #f8f4f1;

    border-radius: 30px;

    overflow: hidden;

    flex-shrink: 0;

    transition: all .4s ease;
}

.product-slide:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 420px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.product-slide:hover .product-image img {
    transform: scale(1.04);
}

.product-content {
    padding: 36px;
}

.product-category {
    display: inline-block;

    font-size: 12px;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--color-primary);

    margin-bottom: 18px;
}

.product-content h3 {
    font-size: 34px;

    color: #2f2f2f;

    margin-bottom: 16px;
}

.product-content p {
    font-size: 15px;
    line-height: 1.9;

    color: #6f6f6f;

    margin-bottom: 28px;
}

.product-link {
    font-size: 13px;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--color-primary);
}

.products-navigation {
    width: 100%;

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

    gap: 14px;

    margin-top: 55px;
}

.products-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(0,0,0,0.12);

    transition: all .3s ease;

    cursor: pointer;
}

.products-dot.active {
    width: 34px;

    border-radius: 999px;

    background: var(--color-primary);
}

.products-cta {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 70px;
}