/* =========================================
   HERO WIDGETS
   ========================================= */

.base-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0 3rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Änderungsprotokoll: 2026-06-23 | composer | @skill-css-rules | Small-Desktop: Text neben Bild, kein Wrap */
@media (min-width: 1024px) {
    .base-hero {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        text-align: left;
        padding: 2px 0 5rem;
        gap: 2rem;
    }
}

@media (min-width: 1440px) {
    .base-hero {
        gap: 50px;
    }
}

.base-hero-content {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
    padding: 3px;
    overflow: visible;
}

@media (min-width: 1024px) {
    .base-hero-content {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }
}

/* 011-ui-mobile.mdc: Kein horizontales Scrollen – min-width 320px würde mit Content-Padding schmaler Viewports sprengen */
@media (max-width: 575px) {
    .base-hero-content {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
}

.base-hero-visual {
    flex: 0 0 auto;
    position: relative;
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .base-hero-visual {
        flex: 0 1 46%;
        width: auto;
        min-width: 0;
        max-width: 46%;
    }
}

@media (min-width: 1440px) {
    .base-hero-visual {
        flex: 0 0 auto;
        max-width: none;
    }
}

/* Seller Central: border-radius 4px, dezente Schatten */
.base-hero-image-wrapper {
    position: relative;
    transition: border-color 0.2s ease;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: inline-block;
}

.base-hero-image-wrapper:hover {
    border-color: var(--color-border-highlight);
}

.base-hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

@media (min-width: 1024px) {
    .base-hero-image {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
    }
}

@media (min-width: 1440px) {
    .base-hero-image {
        width: auto;
        max-height: 420px;
    }
}

.base-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .base-hero-actions {
        justify-content: flex-start;
    }
}

/* Badge - Amazon Orange Akzent */
.base-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.05rem;
    background: color-mix(in srgb, var(--color-header-bg) 92%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-primary) 55%, transparent);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-header-text);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    box-shadow: none;
}

.base-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: none;
}