.shop-container-unique {
    display: flex;
    gap: 20px;
    padding: 30px;
    flex-wrap: wrap;
}

/* Filter Sidebar */
.filter-sidebar-unique {
    width: 240px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 8px;
    font-family: inherit;
}

/* Title */
.filter-title {
    font-size: 18px;
    margin-bottom: 18px;
    color: #222;
    font-weight: 600;
}

/* Group */
.filter-group {
    margin-bottom: 22px;
}
.filter-item-unique .heading{
    font-weight: bold;
}
/* Heading */
.filter-heading {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
}

/* Checkbox Option */
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    cursor: pointer;
}

/* Checkbox */
.filter-option input[type="checkbox"] {
    accent-color: #222; /* light black theme */
    cursor: pointer;
}


/* ===== Products Section ===== */
.products-section-unique {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
}

.product-card-unique {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card-unique:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-card-unique img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-card-unique:hover img {
    transform: scale(1.05);
}

.product-title-unique {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* ===== Star Ratings ===== */
.product-stars-unique {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 14px;
}

/* ===== Price ===== */
.product-price-unique {
    color: #009688;
    font-weight: 700;
    margin-bottom: 12px;
}
.button-group-unique {
    display: flex;
    justify-content: center;
    gap: 10px; /* space between buttons */
    margin-top: 12px;
}

/* Common button style */
.btn-cart-unique,
.btn-buy-unique {
    flex: 1; /* make both buttons equal width */
    padding: 10px 0;
    border: none;
    border-radius: 8px; /* moderate rounding so two buttons fit side by side */
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* spacing between icon and text */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #fff;
}

/* Add to Cart */
.btn-cart-unique {
    background: #1f2d2b; /* dark color */
}

.btn-cart-unique:hover {
    background: #333c38;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
/* ===== View Icon on Hover ===== */
.product-view-icon-unique {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0, 150, 136, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.product-view-icon-unique i {
    color: #fff;
    font-size: 18px;
}

/* Show icon on hover */
.product-card-unique:hover .product-view-icon-unique {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Optional hover effect */
.product-view-icon-unique:hover {
    background: #555;
}

/* Buy Now */
.btn-buy-unique {
    background: #009688; /* green accent */
}

.btn-buy-unique:hover {
    background: #00bfa5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Icon size */
.btn-cart-unique i,
.btn-buy-unique i {
    font-size: 16px;
}

@media (max-width: 1400px) {
    .products-section-unique {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-section-unique {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-container-unique {
        flex-direction: column;
        padding: 20px;
    }
    .filter-sidebar-unique {
        max-width: 100%;
    }
    .products-section-unique {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-section-unique {
        grid-template-columns: 1fr;
    }
}
/* ===== Products Section ===== */
.products-section-unique {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* responsive */
    gap: 20px;
}

/* ===== Product Card ===== */
.product-card-unique {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Slight hover effect */
.product-card-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Product Image */
.product-card-unique img {
    width: 100%;
    max-height: 180px; /* smaller image height */
    object-fit: cover; /* maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Product Title */
.product-title-unique {
    font-size: 15px; /* smaller font */
    font-weight: 600;
    margin-bottom: 6px;
}

/* Star Rating */
.product-stars-unique {
    color: #FFD700;
    margin-bottom: 6px;
    font-size: 13px; /* smaller stars */
}

/* Price */
.product-price-unique {
    color: #009688;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Buttons */
.button-group-unique {
    display: flex;
    justify-content: center;
    gap: 10px; /* space between buttons */
    margin-top: 12px;
}

.btn-cart-unique,
.btn-buy-unique {
    flex: 1;                  /* equal width */
    padding: 12px;          /* taller buttons */
    font-size: 12px;          /* bigger text */
    border-radius: 8px;       /* smooth corners */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;                 /* space between icon and text if used */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;    /* remove underline */
    color: #fff;
}

/* Add to Cart */
.btn-cart-unique {
    background: #1f2d2b;
}
.btn-cart-unique:hover {
    background: #333c38;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Buy Now */
.btn-buy-unique {
    background: #009688;
}
.btn-buy-unique:hover {
    background: #00bfa5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Icon size (optional) */
.btn-cart-unique i,
.btn-buy-unique i {
    font-size: 18px;
}

.button-group-unique a,
.button-group-unique a:hover,
.button-group-unique a:focus {
    text-decoration: none;
}

