/* ==================== Öffnungszeiten Widget ==================== */

.skm-opening-hours-widget {
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
}

/* Status Indicator */
.skm-opening-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.skm-status-open {
    background: #d4edda;
    color: #155724;
}

.skm-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: skm-pulse 2s ease-in-out infinite;
}

.skm-status-open .skm-status-indicator {
    background: #00a32a;
    box-shadow: 0 0 0 3px rgba(0, 163, 42, 0.2);
}

.skm-status-closed .skm-status-indicator {
    background: #d63638;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.2);
}

@keyframes skm-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Hours List */
.skm-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skm-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid;
}

.skm-hours-row:last-child {
    border-bottom: none;
}

.skm-hours-today {
    background: linear-gradient(90deg, rgba(34, 113, 177, 0.08) 0%, transparent 100%);
    padding: 12px 15px;
    margin: 0 -15px;
    border-radius: 6px;
    border-bottom: none !important;
}

.skm-hours-day {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skm-today-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.skm-hours-time {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.skm-time-slot {
    white-space: nowrap;
}

.skm-time-separator {
    font-weight: 600;
}

.skm-closed-text {
    color: #d63638;
    font-weight: 500;
}

/* Compact View */
.skm-hours-compact .skm-hours-row {
    padding: 8px 0;
}

.skm-hours-compact .skm-hours-day,
.skm-hours-compact .skm-hours-time {
    font-size: 14px;
}

/* Note */
.skm-hours-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(255, 243, 205, 0.3);
    border-left: 5px solid;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skm-hours-note .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-top: 0;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ==================== Responsive ==================== */

@media (max-width: 480px) {
    .skm-opening-hours-widget {
        padding: 20px 15px;
    }
    
    .skm-hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .skm-hours-today {
        margin: 0 -10px;
        padding: 12px 10px;
    }
    
    .skm-hours-time {
        padding-left: 0;
    }
    
    .skm-hours-note {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .skm-hours-note .dashicons {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }
}
