.products {
    background: #f7f7f7;
    padding: 20px 80px;
    text-align: center;
    margin-top: 400px;
}

.products h2 {
    font-size: 42px;
    color: #1f1f1f;
    margin-bottom: 30px;
}

.categories {
    background: #eeeeee;
    display: inline-flex;
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 70px;
}

.categories button {
    border: none;
    background: transparent;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    color: #777;
}

.categories .active {
    background: white;
    color: #1f1f1f;
}

.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.product-cards {
    display: flex;
    gap: 30px;
}

.product-card {
    width: 260px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.product-image {
    background: #fafafa;
    padding: 30px;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.category {
    font-size: 14px;
    color: #999;
}

.product-info h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #1f1f1f;
}

.stars {
    color: #f6b93b;
    margin-bottom: 20px;
    font-size: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1f1f1f;
}

.plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #0d1b3d;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.view-all {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #E58411;
    font-size: 18px;
}

.view-all span {
    font-size: 24px;
}