.sec-one {
    padding: 10px 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.categorySwiper {
    padding: 0 50px;
}

@media (max-width: 768px) {
    .categorySwiper {
        padding: 0 20px;
    }
}

.img-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

.img-box:hover {
    transform: translateY(-5px);
}

.image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-box:hover .image img {
    transform: scale(1.05);
}

.img-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.category-next,
.category-prev {
    background: white;
    color: black;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 40% !important;
    z-index: 10;
}

.category-next {
    right: 30px !important;
}

.category-prev {
    left: 30px !important;
}

@media (max-width: 768px) {

    .category-next,
    .category-prev {
        width: 35px;
        height: 35px;
    }

    .category-next {
        right: 15px !important;
    }

    .category-prev {
        left: 15px !important;
    }
}

.category-next::after,
.category-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.sec-two-title {
    margin: 60px 0 30px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .sec-two-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
    }
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    opacity: 0.6;
    pointer-events: none;
}

.filter-btn:hover {
    opacity: 0.6;
}

.filter-btn i {
    font-size: 18px;
}

.sec-two-title h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sec-two-title p {
    color: #555;
    font-size: 16px;
}

.products {
    margin-bottom: 50px;
}

.product-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: auto;
}

.productSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 0 0 25px;
}

@media (max-width: 768px) {
    .products {
        margin-bottom: 30px;
    }

    .product-content {
        padding: 0 0 20px;
    }

    .product-info-top .title,
    .product-info-top .price {
        font-size: 14px;
    }

    .product-content p {
        font-size: 12px;
    }
}

.product-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.product-info-top .title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    flex: 1;
    margin-right: 20px;
    line-height: 1.3;
}

.product-info-top .price {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

.product-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
    max-width: 90%;
}

.product-swatches {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.swatch.black {
    background: #111;
}

.swatch.navy {
    background: #1a237e;
}

.swatch.grey {
    background: #9e9e9e;
}

.swatch.beige {
    background: #d7ccc8;
}

.swatch.blue {
    background: #1e88e5;
}

.swatch.orange {
    background: #fb8c00;
}

.swatch.white {
    background: #fff;
    border: 1px solid #ddd;
}

.swatch-more {
    font-size: 11px;
    color: #777;
    margin-left: 2px;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 0;
    transition: all 0.3s ease;
}

.productSwiper:hover .swiper-button-next,
.productSwiper:hover .swiper-button-prev {
    opacity: 1;
}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after {
    font-size: 14px;
}