/**
 * SMG Hero Widget (Neu) - PROFESSIONAL ARCHITECTURE
 * Verwendet das neue CSS-Architektur-System für konsistente Styles
 * Migriert am: 2025-06-30
 */

/* ========================================
   WIDGET BASE CLASS (Spezifität: 0,0,2,0)
   ======================================== */
.smg-widget.smg-hero-new {
    position: relative;
    min-height: 80vh;
    background: var(--smg-gray-50);
    overflow: hidden;
    padding: 60px 0;
}

/* Legacy Support für bestehende Templates */
.smg-hero-new {
    position: relative;
    min-height: 80vh;
    background: var(--smg-gray-50);
    overflow: hidden;
    padding: 60px 0;
}

/* ========================================
   MOOD HERO LAYOUT (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new.has-mood-slide,
.smg-hero-new.has-mood-slide {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* ========================================
   CONTAINER SYSTEM (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-container,
.smg-hero-new .hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    height: 100%;
}

.smg-widget.smg-hero-new.has-mood-slide .hero-container,
.smg-hero-new.has-mood-slide .hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   SLIDE INDICATORS (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-indicators,
.smg-hero-new .hero-indicators {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    z-index: 10;
}

.smg-widget.smg-hero-new .hero-indicator,
.smg-hero-new .hero-indicator {
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.smg-widget.smg-hero-new .indicator-dot,
.smg-hero-new .indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.smg-widget.smg-hero-new .hero-indicator.active .indicator-dot,
.smg-hero-new .hero-indicator.active .indicator-dot {
    background: var(--smg-600);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
}

.smg-widget.smg-hero-new .hero-indicator:hover .indicator-dot,
.smg-hero-new .hero-indicator:hover .indicator-dot {
    background: var(--smg-600);
    opacity: 0.7;
}

/* ========================================
   CONTENT GRID (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-content-grid,
.smg-hero-new .hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    min-height: 60vh;
    margin-left: 80px; /* Platz für Indicators */
}

/* ========================================
   TEXT SECTION (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-text-section,
.smg-hero-new .hero-text-section {
    position: relative;
}

.smg-widget.smg-hero-new .hero-slide-content,
.smg-hero-new .hero-slide-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.smg-widget.smg-hero-new .hero-slide-content.active,
.smg-hero-new .hero-slide-content.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.smg-widget.smg-hero-new .hero-subtitle,
.smg-hero-new .hero-subtitle {
    font-size: var(--text-sm);
    color: var(--smg-600);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.smg-widget.smg-hero-new .hero-title,
.smg-hero-new .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-6);
    color: var(--smg-900);
}

.smg-widget.smg-hero-new .hero-title .highlight,
.smg-hero-new .hero-title .highlight {
    color: var(--smg-600);
}

.smg-widget.smg-hero-new .hero-description,
.smg-hero-new .hero-description {
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
    color: var(--smg-700);
    margin-bottom: var(--space-10);
    max-width: 500px;
}

/* ========================================
   BUTTONS (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-buttons,
.smg-hero-new .hero-buttons {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.smg-widget.smg-hero-new .hero-btn,
.smg-hero-new .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--space-2);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: var(--text-base);
    border: none;
    cursor: pointer;
}

.smg-widget.smg-hero-new .hero-btn-primary,
.smg-hero-new .hero-btn-primary {
    background: var(--smg-600);
    color: white;
}

.smg-widget.smg-hero-new .hero-btn-primary:hover,
.smg-hero-new .hero-btn-primary:hover {
    background: var(--smg-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.smg-widget.smg-hero-new .hero-btn-secondary,
.smg-hero-new .hero-btn-secondary {
    background: transparent;
    color: var(--smg-900);
    border: 2px solid var(--smg-100);
}

.smg-widget.smg-hero-new .hero-btn-secondary:hover,
.smg-hero-new .hero-btn-secondary:hover {
    border-color: var(--smg-600);
    color: var(--smg-600);
    background: rgba(227, 30, 36, 0.05);
}

/* ========================================
   IMAGE SECTION (Spezifität: 0,0,3,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-image-section,
.smg-hero-new .hero-image-section {
    position: relative;
    height: 550px;
}

.smg-widget.smg-hero-new .hero-slide-image,
.smg-hero-new .hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: var(--space-4);
}

.smg-widget.smg-hero-new .hero-slide-image.active,
.smg-hero-new .hero-slide-image.active {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   HIGHLIGHT OVERLAYS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-highlight-overlay,
.smg-hero-new .hero-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.smg-widget.smg-hero-new .hero-stats-overlay,
.smg-hero-new .hero-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   STAT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-stat-card,
.smg-hero-new .hero-stat-card {
    position: absolute;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--space-3);
    text-align: center;
    box-shadow: var(--card-shadow);
    min-width: 100px;
    max-width: 120px;
    width: clamp(100px, 8vw, 120px);
    height: auto;
    aspect-ratio: 1.1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: elegantFloat 6s ease-in-out infinite;
    cursor: pointer;
    z-index: 14;
}

.smg-widget.smg-hero-new .hero-stat-card:hover,
.smg-hero-new .hero-stat-card:hover {
    transform: translateY(-12px) scale(1.1) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .stat-number,
.smg-hero-new .stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--smg-600);
    margin-bottom: var(--space-1);
}

.smg-widget.smg-hero-new .stat-label,
.smg-hero-new .stat-label {
    font-size: var(--text-xs);
    color: var(--smg-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SHOP HIGHLIGHT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-shop-card,
.smg-hero-new .hero-shop-card {
    position: absolute;
    top: 15%;
    right: 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--space-4);
    padding: var(--space-5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 280px;
    min-width: 240px;
    pointer-events: auto;
    animation: elegantFloat 8s ease-in-out infinite;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 15;
}

.smg-widget.smg-hero-new .hero-shop-card:hover,
.smg-hero-new .hero-shop-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .shop-badge,
.smg-hero-new .shop-badge {
    background: linear-gradient(135deg, var(--smg-600), var(--smg-700));
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.smg-widget.smg-hero-new .shop-logo,
.smg-hero-new .shop-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--space-3);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.smg-widget.smg-hero-new .shop-logo img,
.smg-hero-new .shop-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.smg-widget.smg-hero-new .shop-name,
.smg-hero-new .shop-name {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-bold);
    color: var(--smg-900);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.2;
}

.smg-widget.smg-hero-new .shop-promo,
.smg-hero-new .shop-promo {
    font-size: var(--text-sm);
    color: var(--smg-600);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.4;
    font-weight: var(--font-weight-semibold);
    font-style: italic;
}

.smg-widget.smg-hero-new .shop-description,
.smg-hero-new .shop-description {
    font-size: var(--text-sm);
    color: var(--smg-700);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.4;
}

.smg-widget.smg-hero-new .shop-meta,
.smg-hero-new .shop-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-1-5);
    margin-bottom: var(--space-2);
}

.smg-widget.smg-hero-new .shop-category,
.smg-widget.smg-hero-new .shop-floor,
.smg-widget.smg-hero-new .shop-hours,
.smg-hero-new .shop-category,
.smg-hero-new .shop-floor,
.smg-hero-new .shop-hours {
    display: flex;
    align-items: center;
    gap: var(--space-1-5);
    font-size: var(--text-xs);
    color: var(--smg-600);
}

/* ========================================
   EVENT HIGHLIGHT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-event-card,
.smg-hero-new .hero-event-card {
    position: absolute;
    top: 20%;
    right: 10%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--space-4);
    padding: var(--space-4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 260px;
    min-width: 220px;
    pointer-events: auto;
    animation: elegantFloat 7s ease-in-out infinite;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 16;
}

.smg-widget.smg-hero-new .hero-event-card:hover,
.smg-hero-new .hero-event-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .event-badge,
.smg-hero-new .event-badge {
    background: linear-gradient(135deg, var(--smg-700), var(--smg-800));
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.smg-widget.smg-hero-new .event-image,
.smg-hero-new .event-image {
    width: 100%;
    height: 80px;
    border-radius: var(--space-2);
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.smg-widget.smg-hero-new .event-image img,
.smg-hero-new .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-widget.smg-hero-new .event-title,
.smg-hero-new .event-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--smg-900);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.smg-widget.smg-hero-new .event-date,
.smg-widget.smg-hero-new .event-time,
.smg-widget.smg-hero-new .event-store,
.smg-widget.smg-hero-new .event-location,
.smg-hero-new .event-date,
.smg-hero-new .event-time,
.smg-hero-new .event-store,
.smg-hero-new .event-location {
    display: flex;
    align-items: center;
    gap: var(--space-1-5);
    font-size: var(--text-xs);
    color: var(--smg-600);
    margin-bottom: var(--space-1);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   OFFER HIGHLIGHT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-offer-card,
.smg-hero-new .hero-offer-card {
    position: absolute;
    top: 25%;
    right: 12%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--space-4);
    padding: var(--space-4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 260px;
    min-width: 220px;
    pointer-events: auto;
    animation: elegantFloat 6.5s ease-in-out infinite;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 17;
}

.smg-widget.smg-hero-new .hero-offer-card:hover,
.smg-hero-new .hero-offer-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .offer-badge,
.smg-hero-new .offer-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.smg-widget.smg-hero-new .offer-image,
.smg-hero-new .offer-image {
    width: 100%;
    height: 80px;
    border-radius: var(--space-2);
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.smg-widget.smg-hero-new .offer-image img,
.smg-hero-new .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-widget.smg-hero-new .offer-title,
.smg-hero-new .offer-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--smg-900);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.smg-widget.smg-hero-new .offer-shop,
.smg-widget.smg-hero-new .offer-description,
.smg-widget.smg-hero-new .offer-discount,
.smg-widget.smg-hero-new .offer-period,
.smg-widget.smg-hero-new .offer-end-date,
.smg-hero-new .offer-shop,
.smg-hero-new .offer-description,
.smg-hero-new .offer-discount,
.smg-hero-new .offer-period,
.smg-hero-new .offer-end-date {
    font-size: var(--text-xs);
    color: var(--smg-600);
    margin-bottom: var(--space-1);
}

.smg-widget.smg-hero-new .offer-discount,
.smg-hero-new .offer-discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-3);
    font-weight: var(--font-weight-bold);
    display: inline-block;
    text-align: center;
}

/* ========================================
   NEWS HIGHLIGHT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-news-card,
.smg-hero-new .hero-news-card {
    position: absolute;
    top: 30%;
    right: 14%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--space-4);
    padding: var(--space-4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 280px;
    min-width: 240px;
    pointer-events: auto;
    animation: elegantFloat 7.5s ease-in-out infinite;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 18;
}

.smg-widget.smg-hero-new .hero-news-card:hover,
.smg-hero-new .hero-news-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .news-badge,
.smg-hero-new .news-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.smg-widget.smg-hero-new .news-image,
.smg-hero-new .news-image {
    width: 100%;
    height: 80px;
    border-radius: var(--space-2);
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.smg-widget.smg-hero-new .news-image img,
.smg-hero-new .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-widget.smg-hero-new .news-title,
.smg-hero-new .news-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--smg-900);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.smg-widget.smg-hero-new .news-excerpt,
.smg-widget.smg-hero-new .news-date,
.smg-widget.smg-hero-new .news-author,
.smg-hero-new .news-excerpt,
.smg-hero-new .news-date,
.smg-hero-new .news-author {
    font-size: var(--text-xs);
    color: var(--smg-600);
    margin-bottom: var(--space-1);
    line-height: 1.4;
}

/* ========================================
   SERVICE HIGHLIGHT CARDS (Spezifität: 0,0,4,0)
   ======================================== */
.smg-widget.smg-hero-new .hero-service-card,
.smg-hero-new .hero-service-card {
    position: absolute;
    top: 35%;
    right: 16%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--space-4);
    padding: var(--space-4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 260px;
    min-width: 220px;
    pointer-events: auto;
    animation: elegantFloat 8s ease-in-out infinite;
    transition: var(--transition-normal);
    cursor: pointer;
    z-index: 19;
}

.smg-widget.smg-hero-new .hero-service-card:hover,
.smg-hero-new .hero-service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.smg-widget.smg-hero-new .service-badge,
.smg-hero-new .service-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: var(--space-1-5) var(--space-3);
    border-radius: var(--space-5);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.smg-widget.smg-hero-new .service-icon,
.smg-hero-new .service-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--space-3);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.smg-widget.smg-hero-new .service-icon img,
.smg-hero-new .service-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.smg-widget.smg-hero-new .service-title,
.smg-hero-new .service-title {
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    color: var(--smg-900);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.smg-widget.smg-hero-new .service-description,
.smg-widget.smg-hero-new .service-location,
.smg-widget.smg-hero-new .service-hours,
.smg-hero-new .service-description,
.smg-hero-new .service-location,
.smg-hero-new .service-hours {
    font-size: var(--text-xs);
    color: var(--smg-600);
    margin-bottom: var(--space-1);
    line-height: 1.4;
}

/* ========================================
   MOOD HIGHLIGHT - BEREITS KORREKT GESTYLED
   Das Mood Video Highlight war bereits perfekt implementiert
   ======================================== */

/* ========================================
   FLOATING ANIMATIONS
   ======================================== */
@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) translateX(3px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-4px) translateX(-2px) rotate(-0.3deg);
    }
    75% {
        transform: translateY(-12px) translateX(1px) rotate(0.2deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Tablet */
@media (max-width: 1024px) {
    .smg-widget.smg-hero-new,
    .smg-hero-new {
        min-height: 70vh;
    }

    .smg-widget.smg-hero-new .hero-content-grid,
    .smg-hero-new .hero-content-grid {
        gap: var(--space-12);
        margin-left: 60px;
        min-height: 50vh;
    }

    .smg-widget.smg-hero-new .hero-indicators,
    .smg-hero-new .hero-indicators {
        left: var(--space-5);
    }

    .smg-widget.smg-hero-new .hero-image-section,
    .smg-hero-new .hero-image-section {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .smg-widget.smg-hero-new,
    .smg-hero-new {
        padding: var(--space-5) 0;
        min-height: auto;
    }

    .smg-widget.smg-hero-new .hero-content-grid,
    .smg-hero-new .hero-content-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        margin-left: 0;
    }

    /* Highlight Cards Mobile Positioning */
    .smg-widget.smg-hero-new .hero-shop-card,
    .smg-widget.smg-hero-new .hero-event-card,
    .smg-widget.smg-hero-new .hero-offer-card,
    .smg-widget.smg-hero-new .hero-news-card,
    .smg-widget.smg-hero-new .hero-service-card,
    .smg-hero-new .hero-shop-card,
    .smg-hero-new .hero-event-card,
    .smg-hero-new .hero-offer-card,
    .smg-hero-new .hero-news-card,
    .smg-hero-new .hero-service-card {
        position: relative;
        top: auto;
        right: auto;
        margin: var(--space-4) auto;
        max-width: 100%;
        min-width: auto;
        width: 100%;
        animation: none;
    }

    .smg-widget.smg-hero-new .hero-indicators,
    .smg-hero-new .hero-indicators {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: var(--space-8);
        flex-direction: row;
        gap: var(--space-3);
        z-index: 15;
    }

    .smg-widget.smg-hero-new .hero-image-section,
    .smg-hero-new .hero-image-section {
        height: 220px;
        order: -1;
        margin-bottom: var(--space-5);
    }

    .smg-widget.smg-hero-new .hero-text-section,
    .smg-hero-new .hero-text-section {
        text-align: center;
        padding: 0 var(--space-5);
        order: 1;
    }

    .smg-widget.smg-hero-new .hero-title,
    .smg-hero-new .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: var(--space-3);
    }

    .smg-widget.smg-hero-new .hero-subtitle,
    .smg-hero-new .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-4);
    }

    .smg-widget.smg-hero-new .hero-description,
    .smg-hero-new .hero-description {
        font-size: 1rem;
        margin-bottom: var(--space-6);
        line-height: 1.5;
    }

    .smg-widget.smg-hero-new .hero-buttons,
    .smg-hero-new .hero-buttons {
        justify-content: center;
        margin-top: var(--space-8);
    }

    .smg-widget.smg-hero-new .hero-btn,
    .smg-hero-new .hero-btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .smg-widget.smg-hero-new .hero-image-section,
    .smg-hero-new .hero-image-section {
        height: 250px;
    }

    .smg-widget.smg-hero-new .hero-title,
    .smg-hero-new .hero-title {
        font-size: 1.9rem;
        text-align: center;
        line-height: 1.2;
    }

    .smg-widget.smg-hero-new .hero-description,
    .smg-hero-new .hero-description {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.4;
    }

    .smg-widget.smg-hero-new .hero-subtitle,
    .smg-hero-new .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .smg-widget.smg-hero-new .hero-buttons,
    .smg-hero-new .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: var(--space-6);
    }

    .smg-widget.smg-hero-new .hero-btn,
    .smg-hero-new .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Accessibility - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .smg-widget.smg-hero-new .hero-stat-card,
    .smg-hero-new .hero-stat-card {
        animation: none;
    }

    .smg-widget.smg-hero-new .hero-stat-card:hover,
    .smg-hero-new .hero-stat-card:hover {
        transform: translateY(-4px) scale(1.02);
        transition: all 0.2s ease;
    }
}
