


/* Allgemeine Stile für die Banderole */
.premium-ribbon {
    position: absolute !important;
    width: 150px !important;
    height: 150px !important;
    overflow: hidden !important;
    z-index: 10 !important;
    background: transparent !important;
}

.premium-ribbon::before {
    content: attr(data-content);
    position: absolute !important;
    display: block !important;
    background-color: var(--banderole-color, #c9a959) !important;
    color: white !important;
    text-align: center !important;
    font-weight: bold !important;
    transform: rotate(-45deg) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
    pointer-events: none !important;
}

/* Übersichtsseite (Produktliste) */
.archive .premium-ribbon,
.hw-post-product .premium-ribbon {
    top: -11px !important;
    left: -25px !important;
}

.archive .premium-ribbon::before,
.hw-post-product .premium-ribbon::before {
    width: 225px !important;
    font-size: 13px !important;
    line-height: 25px !important;
    top: 35px !important;
    left: -50px !important;
}

/* Detailseite */
.single-product .premium-ribbon,
.product-type-simple .premium-ribbon {
    top: 0 !important;
    left: 0 !important;
}

.single-product .premium-ribbon::before,
.product-type-simple .premium-ribbon::before {
    width: 180px !important;
    font-size: 12px !important;
    line-height: 28px !important;
    top: 30px !important;
    left: -40px !important;
}

/* Safari-spezifische Anpassungen */
@supports (-webkit-touch-callout: none) {
    /* Übersichtsseite im Safari */
    .archive .premium-ribbon,
    .hw-post-product .premium-ribbon {
        top: -15px !important;
        left: -25px !important;
    }
    
    .archive .premium-ribbon::before,
    .hw-post-product .premium-ribbon::before {
        left: -45px !important;
        line-height: 25px !important;
    }
    
    /* Detailseite im Safari */
    .single-product .premium-ribbon::before,
    .product-type-simple .premium-ribbon::before {
        line-height: 25px !important;
    }
}
