/* Product Flags CSS */

.product-flags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-flag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.product-flags-detail {
    margin-bottom: 15px;
}

.product-flags-detail .product-flag {
    padding: 5px 12px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-flags {
        top: 5px;
        left: 5px;
    }
    
    .product-flag {
        font-size: 10px;
        padding: 3px 8px;
    }
}
