#data-container {
    padding-bottom: 20px;
}
.product-column {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: 160px;
}

.product-name {
    font-weight: bold;
}

.product-price {
    font-weight: bold;
}

.product-original-price {
    text-decoration: line-through;
    color: #9E9E9E;
    font-size: 14px;
}

.product-discount {
    font-size: 16px;
    font-weight: bold;
    color: #9E9E9E;
}

.product-stock {
    margin-top: 10px;

}

.discount_after {
    font-weight: bold;
}

.product-row {
    display: flex;
    flex-wrap: wrap;
   padding-left: 100px;
}


@media (max-width: 767px) {
    .product-row {
        display: block;
        padding-left: 0;
    }

    .product-column {
        margin: 10px 0;
    }
}
.mb-auto, .my-auto {
    margin-bottom: unset !important;
}
.product-description {
    min-height: 40px;
}

.product-description img {
    max-width: 100% !important;
    height: auto !important;
}

label {
    float: left;
    font-weight: bold;
}

.red {
    color: #9E9E9E;
}

.hidden {
    display: none;
}
.product-detail-container {
    padding-top:30px;
    padding-bottom: 30px;
}
.product-column {
    cursor: pointer;
}
#cart_count {
    color: #2ea235;
}

.btn-view-product {
    border: 0px !important;
    color: #fff !important;
}

.variant-container {
    max-width: 300px;
    display: block;
    margin: auto;
    margin-bottom: 30px;
}

.product-detail-container .product-price {
    font-size: 25px;
    color: #333;
}
.product-detail-container .product-original-price {
    font-size: 18px;
}
.product-detail-container .discount_after {
    font-size: 25px;
    color: #333;
}

.lable-notification {
    font-size: 12px;
    width: 100%;
    text-align: center;
    color: #333;
    font-weight: 500;
}
.quantity-container{
    max-width: 300px;
    display: block;
    margin: auto;
    margin-bottom: 30px;
}
.product-quantity{
    padding-left: 70px;
   padding-top: 9px;
    font-size: 15px;
    color: #333;
}
.input-quantity{
    width: 70px;
}

/* Category Filter Styling */
.product-filters-container {
    margin-bottom: 28px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e6ed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.filter-wrapper {
    display: flex;
    gap: 16px;
    flex: 1;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    flex: 1;
    max-width: 320px;
}

.filter-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label i {
    font-size: 0.875rem;
    color: #63AF69;
}

.filter-select {
    padding: 11px 14px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    background: white;
    color: #2c3e50;
    font-size: 0.938rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2363AF69' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.filter-select:hover {
    border-color: #63AF69;
    box-shadow: 0 2px 8px rgba(99, 175, 105, 0.15);
    transform: translateY(-1px);
}

.filter-select:focus {
    outline: none;
    border-color: #63AF69;
    box-shadow: 0 0 0 4px rgba(99, 175, 105, 0.15);
}

.filter-actions {
    display: flex;
    align-items: flex-end;
}

.clear-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #fff;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.clear-filter-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

.clear-filter-btn i {
    font-size: 1rem;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#subcategoryFilterGroup {
    animation: slideDown 0.3s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-filters-container {
        padding: 16px;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .filter-group {
        width: 100%;
        min-width: unset;
        max-width: none;
    }

    .filter-actions {
        width: 100%;
        justify-content: center;
    }

    .clear-filter-btn {
        width: 100%;
        justify-content: center;
    }
}
