/* Opening Hours Section - Matching Figma Design */
.hours-section {
    position: relative;
}

.hours-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Hours Info Card */
.hours-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hours-card-title {
    font-family: "Din", Helvetica;
    font-size: 35.7px;
    font-weight: 600;
    color: #0c9444;
    text-align: center;
    line-height: 1.2;
}

.hours-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.hours-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.hours-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 4px;
}

.hours-text {
    font-family: "Din", Helvetica;
    font-size: 22px;
    font-weight: 500;
    color: #464646;
    line-height: 1.6;
    flex: 1;
}

/* Hours Image */
.hours-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hours-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hours-info-card {
        padding: 36px;
        gap: 28px;
    }

    .hours-card-title {
        font-size: 28px;
    }

    .hours-details {
        gap: 20px;
    }

    .hours-icon {
        width: 28px;
        height: 28px;
    }

    .hours-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hours-content-wrapper {
        gap: 36px;
    }

    .hours-info-card {
        padding: 28px;
        gap: 24px;
        border-radius: 16px;
    }

    .hours-card-title {
        font-size: 24px;
    }

    .hours-details {
        gap: 18px;
    }

    .hours-detail-item {
        gap: 16px;
    }

    .hours-icon {
        width: 24px;
        height: 24px;
        margin-top: 2px;
    }

    .hours-text {
        font-size: 16px;
    }

    .hours-image {
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    .hours-content-wrapper {
        gap: 28px;
    }

    .hours-info-card {
        padding: 20px;
        gap: 20px;
    }

    .hours-card-title {
        font-size: 20px;
    }

    .hours-details {
        gap: 16px;
    }

    .hours-detail-item {
        gap: 12px;
    }

    .hours-icon {
        width: 20px;
        height: 20px;
    }

    .hours-text {
        font-size: 14px;
    }
}
