/**
 * Älvestad Produktbadgar - Stylesheet
 * Version: 1.0.0
 */

/* Badge grundläggande styling */
.alvestad-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    line-height: 1.2;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Badge position i produktlistor */
.alvestad-badge-loop {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
}

/* Badge position på enskild produktsida */
.alvestad-badge-single {
    position: absolute;
    top: 15px;
    left: 15px;
    margin: 0;
    font-size: 13px;
    padding: 8px 16px;
}

/* Badge via shortcode */
.alvestad-badge-shortcode {
    margin: 0 5px 5px 0;
}

/* Hover-effekt */
.alvestad-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* WooCommerce produktbild-container behöver relative positioning */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    position: relative;
}

/* Responsiv design */
@media (max-width: 768px) {
    .alvestad-badge-loop {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 5px 10px;
    }

    .alvestad-badge-single {
        top: 12px;
        left: 12px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .alvestad-badge-loop {
        top: 5px;
        left: 5px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .alvestad-badge-single {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Animationer */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.alvestad-badge-new,
.alvestad-badge-sale {
    animation: badgePulse 2s ease-in-out infinite;
}

/* Specifika badge-typer - visuella förbättringar med WCAG AA kontrast */
.alvestad-badge-new {
    background: linear-gradient(135deg, #1e7a4d 0%, #166038 100%);
}

.alvestad-badge-sale {
    background: linear-gradient(135deg, #d64479 0%, #c2306a 100%);
}

.alvestad-badge-limited {
    background: linear-gradient(135deg, #d94e2a 0%, #c23616 100%);
}

.alvestad-badge-popular {
    background: linear-gradient(135deg, #2a8f9d 0%, #1f6b77 100%);
}

.alvestad-badge-recommended {
    background: linear-gradient(135deg, #a063a0 0%, #8a4d8a 100%);
}

.alvestad-badge-custom {
    background: linear-gradient(135deg, #c9a000 0%, #b08d00 100%);
}

/* Tillgänglighet */
.alvestad-badge:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Print-styling */
@media print {
    .alvestad-badge {
        border: 2px solid currentColor;
        box-shadow: none;
    }
}
