/* General */
body {
    font-family: 'Poppins', sans-serif;
}

/* Product Cards */
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    border-radius: 8px;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-image-container {
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Discount Label */
.discount-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50px;
}

/* Product Info */
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.product-price {
    font-size: 14px;
    color: #555;
}

.discounted-price {
    color: red;
    font-size: 16px;
    font-weight: bold;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: #2B2D41;
    color: white;
    border: none;
    padding: 8px 15px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: red;
}

/* Add to Cart Button */
.apply-filter-btn {
    background: #2B2D41;
    color: white;
    border: none;
    padding: 8px 15px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.apply-filter-btn:hover {
    background: red;
}

/* Sidebar Filters */
.filter-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.filter-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-options label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

/* Pagination */
.pagination ul {
    list-style: none;
    padding: 0;
}

.pagination li {
    display: inline-block;
    padding: 8px;
    border: 1px solid #ddd;
    margin: 0 2px;
    border-radius: 5px;
}

.pagination .active {
    background: #2B2D41;
    color: white;
}

/* Filtration Sidebar */
.filter-box {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.filter-title {
    font-size: 16px;
    font-weight: bold;
    color: #E63946;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-icon {
    width: 8px;
    height: 20px;
    background: #E63946;
    display: inline-block;
}

/* Filter Sections */
.filter-section {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.filter-header {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header:hover {
    color: #E63946;
}

.arrow-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filter-content {
    padding-left: 10px;
    padding-top: 5px;
    display: block;
}

.hidden {
    display: none;
}

/* Checkboxes */
.filter-content label {
    display: block;
    font-size: 13px;
    margin: 5px 0;
    color: #555;
}

input[type="checkbox"] {
    margin-right: 5px;
}



