.tc-titles{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.tc-page-title{
    font-family: var(--font-main);
    color: var(--pink-color);
    font-size: 60px;
    font-weight: 900;
}
.tc-page-subtitle{
    font-family: var(--font-main);
    font-size: 30px;
    font-weight: 900;
    color: var(--black-color);
}
.tc_steps_image{
    width: 80%;
    height: 200px;
}
.tc_places_btn_section{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}
.tc_places_btn{
    padding: 10px 20px;
    border: 1px solid var(--red-color);
    background-color: var(--red-color);
    color: var(--white-color);
    font-family: var(--font-main);
    font-size: 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    height: 50px;
    align-items: center;
    justify-items: center;
    display: flex;
}
.tc_places_btn.clickable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btc_places_btn.clickable:hover {
  background-color: rgba(0,0,0,0.05);
}
.details-section-tc{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.details-section-action-tc-calendar-left{
    flex: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.details-section-action-tc-calendar-right{
    flex: 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction:column;
    color: var(--gray-2-color);
}
.change-action-button-style-tc-calendar{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    color: var(--black-color);
    background-color: var(--background-color);
    border: 1px solid var(--black-color);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-main);
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}
.change-action-button-style-tc-calendar.clickable {
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.change-action-button-style-tc-calendar.clickable:hover {
  background-color: rgba(0,0,0,0.05);
}
.form-group-whatsapp-tc-calendar{
    height: 100px;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: end;
    justify-content: end;
}
.form-group-whatsapp-text-tc{
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--gray-2-color);
    font-weight: bold;
}
.tasting-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  height: 400px;
  max-height: 400px;
}
.tasting-row-1,
.tasting-row-2,
.tasting-row-6,
.tasting-row-7 {
  grid-template-columns: 1fr;  /* single item */
}

.tasting-row-3,
.tasting-row-4,
.tasting-row-5 {
  grid-template-columns: 1fr 1fr;  /* two items */
}