/* Container til flere badges */
.nordthy-badges-container {
    position: absolute;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 5px;
    top: 10px;
    left: 10px;
}

/* Basisstil for badges */
.nordthy-badge {
    display: inline-block;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.2;
}

/* Stilarter for badges på arkivsider vs. enkeltprodukt */
.nordthy-badge-loop {
    font-size: 11px;
    padding: 4px 8px;
}

.nordthy-badge-single {
    font-size: 13px;
    padding: 6px 12px;
}

/* Animation på badges */
.nordthy-badge {
    transition: transform 0.2s ease;
}

.nordthy-badge:hover {
    transform: scale(1.05);
}

/* Sikring af korrekt visning på forskellige sider */
.woocommerce ul.products li.product .nordthy-badges-container,
.woocommerce-page ul.products li.product .nordthy-badges-container,
.woocommerce div.product .nordthy-badges-container,
.woocommerce-page div.product .nordthy-badges-container,
.related .product .nordthy-badges-container,
.upsells .product .nordthy-badges-container,
.cross-sells .product .nordthy-badges-container {
    top: 10px !important;
    left: 10px !important;
}

/* Sikre at parent-elementer kan indeholde positionerede badges */
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product,
.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image,
.product,
.products .product,
.woocommerce-loop-product__link,
.woocommerce-LoopProduct-link {
    position: relative !important;
}

/* Responsive tilpasninger */
@media (max-width: 768px) {
    .nordthy-badge-loop {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .nordthy-badge-single {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .nordthy-badges-container {
        gap: 3px;
    }
}

/* Små enheder */
@media (max-width: 480px) {
    .nordthy-badges-container {
        top: 5px;
        left: 5px;
    }
}