/*
Theme Name: Shilpcare Natural
Template: astra
Author: Your Name
Description: Custom child theme for our premium soaps.
Version: 1.0.0
*/
/* ===== OUT OF STOCK MINIMAL STYLE ===== */
p.stock.out-of-stock {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #F44336 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 15px 0 !important;
    padding: 8px 0 !important;
    position: relative !important;
    font-family: 'Jost', sans-serif !important;
    border-bottom: 2px dashed #F44336 !important;
    width: fit-content !important;
}

/* Icon */
p.stock.out-of-stock::before {
    content: "⏳" !important;
    font-size: 1.3rem !important;
    animation: blink 1.5s infinite !important;
}

/* Blink animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    p.stock.out-of-stock {
        width: 100% !important;
        justify-content: center !important;
        font-size: 1rem !important;
    }
}