.title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.shop-gallery {
    margin-bottom: 2rem;
    height: 80%;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.gallery-list-itm:nth-child(1) {
    grid-row: span 2; /* take both rows */
}

.gallery-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.shop-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.shop-calendar {
    background-color: var(--bg-yellow);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

/* .calendar-quinconce {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
} */

.calendar-row {
    display: flex;
    flex-wrap: wrap;
}
.row-top {
    justify-content: space-between;
}

.row-bottom {
    justify-content: center;
    gap: 2rem;
}