/*
Theme Name: Creativo Child
Theme URI: https://themeforest.net/item/creativo-responsive-multipurpose-theme/4716204
Description: Child theme for Creativo
Author: Usman Malick
Template: creativo
Version: 1.0
*/



.custom-product-card {
    border: 1px solid #eee;
    padding: 5px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    border-radius: 4px;
}

.custom-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.custom-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #D37643;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.custom-product-card .product-title {
    font-size: 16px important;
    margin: 10px 0;
	font-weight: bold;
}


.custom-product-card .product-price {
    margin: 5px 0;
}

.custom-product-card .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.custom-product-card .sale-price {
    color: #D37643;
    font-weight: bold;
}

.custom-product-card .product-unit {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.custom-product-card .product-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.custom-product-card .product-unit {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* Filter sidebar container */
.wc-auto-filter {
    background: #F2F4C8;
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 10px;
}

/* Each filter group */
.wc-auto-filter h4 {
    font-size: 18px;
    margin: 10px 0 10px;
    border-bottom: 1px solid #eee;
}

/* Checkbox list */
.wc-auto-filter .filter-option {
    display: flex;
    margin-bottom: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Checkbox */
.wc-auto-filter input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #D37643;
    cursor: pointer;
}

/* Text */
.wc-auto-filter .filter-option span {
    font-size: 14px;
    color: #333;
}

/* Selected state */
.wc-auto-filter input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #D37643;
}


