/* .product-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    outline: none;
    margin: 5px;
    transition: 0.3s ease-in-out;
    display: inline-block;
    box-sizing: border-box;
}

.product-color:hover {
    transform: scale(1.2);
    border: 2px solid #000;
}

.product-color.active {
    border: 2px solid #000;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper {
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
}

.product-main-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.costom_price {
    margin-bottom: 1px !important;
    font-size: 15px !important;
} */

/* Product color options */
.product-color {
    width: 16px; /* Slightly bigger for better visibility */
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    outline: none;
    margin: 5px;
    transition: 0.3s ease-in-out;
    display: inline-block;
    box-sizing: border-box;
}

.product-color:hover {
    transform: scale(1.3); /* Slightly larger hover effect */
    border: 2px solid #000;
}

.product-color.active {
    border: 1px solid #000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* Stronger box shadow for active color */
}

/* Styling for the product image container */
.product-image-wrapper {
    height: 285px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
}

/* Product image styling */
.product-main-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover; /* Or use 'contain' if you prefer images not to crop */
    transition: transform 0.3s ease;
}

/* Product card style */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); /* Added shadow on hover for a raised effect */
}

/* Price styling */
.costom_price {
    margin-bottom: 1px !important;
    font-size: 15px !important;
    color: #333; /* A little dark color for price text */
}

/* Optional: Styling for the price and image transition */
.product-main-image:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}


/* Offer Css */
.offer-badge {
    background-color: #00adff;
    color: #fff;
    font-weight: 600;
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 13px;
    right: 10px;
}
