/* ARCHIVE PAGES (SHOP/CATEGORY) */
/* Image wrapper - required for positioning */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    position: relative;
    display: block;
}

/* Badge container */
.wc-badge-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* SINGLE PRODUCT PAGE */
/* Position badges in product gallery */
.woocommerce-product-gallery {
    position: relative;
}

.wc-single-badge-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Base badge styles */
.wc-badge {
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: black;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.wc-badge:hover {
    opacity: 1;
}

/* Badge colors */
.wc-novin-badge {
    /* background: #00a651; */
    background: linear-gradient(45deg, #89f7fe, #66a6ff);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    /* Archive pages */
    .wc-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    /* Single product page */
    .wc-single-badge-container {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .wc-single-badge-container .wc-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}

.single-novin-product {
    padding: 10px 15px;
    margin-top: 10px;
    background: linear-gradient(45deg, #89f7fe, #66a6ff);
    color: black;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: bold;
}

span.ast-on-card-button.ast-onsale-card.circle {
  display: none;
}