.view-cart-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #ff9800, #ffc107);
    /* bright gradient */
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    /* rounded pill */
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.view-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.view-cart-btn i {
    font-size: 1.5rem;
}

.cart-text {
    margin-left: 8px;
}

.cartCount {
    font-weight: 700;
}

/* Product Card Styling */
.product-item {
    border: 2px solid #ff9800;
    /* bright orange border to attract attention */
    border-radius: 15px;
    /* rounded corners */
    padding: 15px;
    background-color: #fff;
    /* white background for contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* Hover Effect */
.product-item:hover {
    transform: translateY(-5px);
    /* lift card slightly */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* stronger shadow on hover */
    border-color: #ff5722;
    /* darker orange border on hover */
}

/* Badge styling */
.product-item .badge {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Wishlist heart icon positioning */
.product-item .btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.product-item .btn-wishlist:hover {
    transform: scale(1.2);
}

/* Image styling */
.product-item figure img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Info */
.product-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0 5px;
}

.product-item .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff5722;
    /* eye-catching color */
}

/* Rating styling */
.product-item .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbc02d;
    /* gold stars */
}

/* Add button styling */
.add-initial-btn {
    background: linear-gradient(90deg, #ff9800, #ffc107);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.add-initial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.category-heading {
    font-size: 2rem;
    /* slightly smaller on mobile */
    font-weight: 700;
    color: #ff5722;
    /* bright, eye-catching color */
    text-align: center;
    /* center aligned for mobile */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    /* subtle shadow for depth */
    display: block;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff9800, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .category-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

/* Container for the categories */
aside {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title styling */
h5 {
    color: #444;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Category radio buttons */
.form-check {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.form-check-input {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hover effects for radio buttons */
.form-check:hover .form-check-input {
    border-color: #0056b3;
    background-color: #cce5ff;
}

/* Category labels */
.form-check-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Hover effects for labels */
.form-check:hover .form-check-label {
    color: #007bff;
}

/* Active radio buttons */
.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

/* Optional border for the form */
.category-list {
    border-top: 2px solid #007bff;
    padding-top: 15px;
}

@media (max-width: 576px) {
    .category-heading {
        font-size: 16px;
        font-weight: 600;
        color: #d08500;
        margin-bottom: 0.5rem;
    }

    .view-cart-btn {
        background: linear-gradient(135deg, #ff9900, #ffcc00);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .view-cart-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

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

    .view-cart-btn .small {
        font-size: 12px;
    }
}

.product-item figure {
    width: 100%;
    height: 200px;
    /* fixed height for all images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* prevents image overflow */
    border-radius: 10px;
    /* optional: smooth corners */
}

.product-item figure img.tab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crops image to fill box */
    border-radius: 10px;
}