/**
 * CockpitOS Light Theme - Shop Hours Widget Styles
 * 
 * Verantwortlichkeit: Shop Öffnungszeiten Styling
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

/* ========================================
   Container
   ======================================== */

.cockpit-shop-hours {
    background-color: #000000;
    padding: 60px 20px;
    color: #ffffff;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Background Image Overlay */
.cockpit-shop-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.cockpit-shop-hours__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ========================================
   Category
   ======================================== */

.cockpit-shop-hours__category {
    margin-bottom: 50px;
}

.cockpit-shop-hours__category:last-child {
    margin-bottom: 0;
}

.cockpit-shop-hours__category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Grid
   ======================================== */

.cockpit-shop-hours__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

/* ========================================
   Shop Item
   ======================================== */

.cockpit-shop-hours__item {
    margin-bottom: 20px;
}

.cockpit-shop-hours__item:last-child {
    margin-bottom: 0;
}

.cockpit-shop-hours__shop-name {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 4px;
}

/* ========================================
   Opening Hours
   ======================================== */

.cockpit-shop-hours__hours {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.cockpit-shop-hours__hours-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cockpit-shop-hours__hours-line:last-child {
    margin-bottom: 0;
}

.cockpit-shop-hours__days {
    flex-shrink: 0;
    margin-right: 20px;
}

.cockpit-shop-hours__time {
    text-align: right;
}

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

@media (max-width: 1024px) {
    .cockpit-shop-hours__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cockpit-shop-hours {
        padding: 40px 20px;
    }

    .cockpit-shop-hours--minimal {
        padding: 60px 20px;
    }

    .cockpit-shop-hours__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cockpit-shop-hours__category {
        margin-bottom: 40px;
    }

    .cockpit-shop-hours__category-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .cockpit-shop-hours__shop-name {
        font-size: 0.9375rem;
    }

    .cockpit-shop-hours__hours {
        font-size: 0.8125rem;
    }

    .cockpit-shop-hours__minimal-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .cockpit-shop-hours__minimal-list {
        gap: 20px;
    }

    .cockpit-shop-hours__minimal-item {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .cockpit-shop-hours {
        padding: 30px 15px;
    }

    .cockpit-shop-hours--minimal {
        padding: 40px 15px;
    }

    .cockpit-shop-hours__item {
        margin-bottom: 15px;
    }

    .cockpit-shop-hours__minimal-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .cockpit-shop-hours__minimal-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .cockpit-shop-hours__minimal-item .cockpit-shop-hours__shop-name {
        font-size: 1rem;
    }

    .cockpit-shop-hours__minimal-item .cockpit-shop-hours__hours {
        font-size: 0.875rem;
    }
}

/* ========================================
   Minimal Mode
   ======================================== */

.cockpit-shop-hours--minimal {
    text-align: center;
    padding: 80px 20px;
}

.cockpit-shop-hours__minimal-content {
    max-width: 700px;
    margin: 0 auto;
}

.cockpit-shop-hours__minimal-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cockpit-shop-hours__minimal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.cockpit-shop-hours__minimal-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cockpit-shop-hours__minimal-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cockpit-shop-hours__minimal-item:last-child {
    border-bottom: none;
}

.cockpit-shop-hours__minimal-item--center {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 24px;
    margin-bottom: 8px;
}

.cockpit-shop-hours__minimal-item .cockpit-shop-hours__shop-name {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.cockpit-shop-hours__minimal-item .cockpit-shop-hours__hours {
    font-size: 1rem;
}

/* ========================================
   Dark Theme Optimization
   ======================================== */

.cockpit-shop-hours__hours-line {
    opacity: 0.9;
}

.cockpit-shop-hours__item:hover .cockpit-shop-hours__shop-name {
    color: #ffffff;
}

.cockpit-shop-hours__item:hover .cockpit-shop-hours__hours-line {
    opacity: 1;
}

