.schedule {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px; 
}

.schedules__summary {
    margin-bottom: 16px;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
  }

summary::after {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M10%2016L14%2012L10%208%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    transition: transform 0.3s;
    vertical-align: middle;
}

details[open] > summary::after {
    transform: rotate(90deg); 
}

.schedules__status {
    font-weight: 600;
}

.schedules__time {
    font-weight: 600;
}

.schedule__row {
    display: flex; 
    font-size: 14px;
    justify-content: space-between;
}

.schedule__day {
    text-transform: capitalize;
    min-width: 100px;
}

.schedule__day.schedule__day--active {
    font-weight: 600;
}

.schedule__hours {
    font-weight: 400;
}

.schedule__hours.schedule__hours--active {
    font-weight: 600;
}

@media only screen and (min-width: 767px) {
    .schedule__hours {
        display: flex;
        flex-direction: row;
    }
}

.offerShop {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.offerShop__image {
    width: 30%
}

.offerShop__content {
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.offerShop__name {
    font-weight: 600;
    color: var( --e-global-color-primary );
}
.offerShop__offer {
    color: var( --e-global-color-primary );
}