.product-image {
    width: 100%;
    /*height: 300px;*/
    /*object-fit: cover;*/
    /*object-position: center;*/
}

/*@media (max-width: 768px) {*/
/*    .hot-deal-product-image {*/
/*        object-fit: cover;*/
/*    }*/
/*}*/
.new-product-image {
    width: 100%;
    height: 80px;
    /*height: 130px;*/
    object-fit: cover;
    object-position: center;
}

.color-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 2px;
    border: 1px solid #ddd;
}

.color-categories {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.hot-deal-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.hot-deal-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will cover the area without stretching the image */
}

/* Hot Deals Section Specific Styles */
.hot-deals .product-name {
    font-size: 0.9rem; /* Smaller font size for the title */
}

.hot-deals .product-name a {
    color: #4a4a4a; /* Dark grey color for the title */
}

.hot-deals .price-box {
    font-size: 1rem; /* Smaller font size for the price */
}

/* Featured Products Section Specific Styles */
.feature-product .product-name {
    font-size: 0.9rem;
}

.feature-product .product-name a {
    color: #4a4a4a;
}

.feature-product .price-box {
    font-size: 1rem;
}

/* New Products Section Specific Styles */
.group-product-area .group-product-name {
    font-size: 0.9rem;
}

.group-product-area .group-product-name a {
    color: #4a4a4a;
}

.group-product-area .price-box {
    font-size: 1rem;
}

.discount-badge-new {
    background-color: var(--green-500) !important; /* Green */
    color: white;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 5px; /* Spacing from the title */
    vertical-align: middle; /* Align with the title */
}

/* Discount Badge Customizations */
.hot-deals .product-label.discount {
    background-color: var(--secondary-500) !important; /* Red */
}

.feature-product .product-label.discount {
    justify-content: center;
    background-color: var(--green-500) !important; /* Green */
    padding: 2px 8px;
    padding-top: 5px;
    border-radius: 20px;
}

.product-label.discount span {
    font-size: 0.85rem !important; /* Smaller font size for all discount badges */
} 