/* =======================================================
   BOX INTERIORS - CONTACT TIMES WIDGET
   ======================================================= */

.box-contact-times-wrapper {
    font-family: var(--e-global-typography-primary-font-family), "AeonikPro", sans-serif;
    max-width: 100%;
}

/* --- Description & Info --- */
.box-contact-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
}

.box-contact-details {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #000;
}

.box-contact-details a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.box-contact-details a:hover {
    opacity: 0.7;
}

/* --- Shop Hours Table --- */
.shop-hours-container {
    width: 100%;
}

.shop-hours-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
}

.shop-hours-table {
    width: 100%;
    max-width: 400px; /* Keeps the table neat and readable */
    border-collapse: collapse;
    background: transparent;
    border: none;
}

/* Designer's specific Odd-Row Background Logic */
.shop-hours-table tbody > tr:nth-child(odd) > td {
    background-color: #F4F4F4; /* Elementor Widget control will override this if changed */
}

.shop-hours-table td {
    padding: 0;
    border: none;
    font-size: 16px;
    vertical-align: middle;
}

.shop-hours-table .day {
    font-weight: 600;
    width: 80px; /* Fixed width for consistent alignment */
}

.shop-hours-table .hours {
    text-align: left;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .shop-hours-title {
        font-size: 32px;
    }
    .shop-hours-table td {
        padding: 10px 0;
    }
}