.wcschleich-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6a1b9a; /* Morado oscuro para Schleich */
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.wcschleich-label:hover {
    transform: scale(1.1);
}

.wcschleich-notice {
    background-color: #f3e5f5; /* Fondo morado claro */
    border: 2px solid #6a1b9a; /* Borde morado oscuro */
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wcschleich-notice h3 {
    color: #6a1b9a; /* Título en morado oscuro */
    margin: 0 0 10px 0;
    font-size: 20px;
}

.wcschleich-notice p {
    color: #333;
    font-size: 16px;
    margin: 5px 0;
}

.wcschleich-promo-button {
    display: inline-block;
    background-color: #6a1b9a; /* Morado oscuro */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.wcschleich-promo-button:hover {
    background-color: #4a148c; /* Morado más oscuro al pasar el ratón */
}