/* Product Badges */
.chaaya-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-new {
    background-color: #27ae60; /* Green */
}

.badge-bestseller {
    background-color: #f39c12; /* Orange */
}

.badge-mustread {
    background-color: #8e44ad; /* Purple */
}

.badge-award {
    background-color: #c0392b; /* Red */
}

/* Ensure product item has relative positioning */
.products .product {
    position: relative;
}
