.woocommerce .site-content,
.woocommerce-page .site-content {
  padding-top: 36px;
}

.shop-hero {
  padding: 24px 0 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.65));
  border-bottom: 1px solid var(--est-border);
}

.shop-hero .woocommerce-breadcrumb {
  margin: 0 0 14px;
  color: var(--est-muted);
  font-size: 0.92rem;
}

.shop-hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.shop-hero__description {
  margin: 10px 0 0;
  color: var(--est-muted);
  font-size: 1rem;
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.shop-active-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--est-border);
  border-radius: 999px;
  background: #fff;
  color: var(--est-primary);
  font-size: 0.9rem;
}

.shop-active-filters__chip strong {
  font-weight: 800;
}

.shop-active-filters__reset {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--est-accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.shop-toolbar {
  padding: 18px 0;
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--est-border);
}

.shop-toolbar__inner,
.shop-main__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-toolbar__chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--est-border);
  border-radius: 12px;
  background: var(--est-surface);
  color: var(--est-text);
  font: inherit;
}

.shop-toolbar__ordering {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--est-muted);
}

.shop-toolbar .woocommerce-ordering {
  margin: 0;
}

.shop-toolbar .orderby {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--est-border);
  border-radius: 12px;
  background: var(--est-surface);
}

.shop-layout {
  padding: 28px 0 72px;
}

.shop-layout__grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.shop-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 102px;
}

.shop-sidebar__card,
.woocommerce div.product,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce {
  background: var(--est-surface);
  border: 1px solid var(--est-border);
  border-radius: 20px;
  box-shadow: var(--est-shadow);
}

.shop-sidebar__card {
  padding: 20px 18px;
}

.shop-sidebar__title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.shop-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.shop-sidebar__list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--est-muted);
  padding: 6px 0;
}

.shop-sidebar__list a.is-active,
.shop-sidebar__list a:hover {
  color: var(--est-primary);
  font-weight: 700;
}

.shop-sidebar__range {
  display: grid;
  gap: 12px;
  color: var(--est-muted);
}

.shop-sidebar__track {
  height: 6px;
  border-radius: 999px;
  background: #f0e6da;
  position: relative;
}

.shop-sidebar__track span {
  position: absolute;
  left: 18%;
  right: 22%;
  top: -4px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7f66, #ff5f6d);
}

.shop-sidebar__card--help {
  border-style: dashed;
}

.shop-sidebar__card--help p {
  margin: 0 0 12px;
  color: var(--est-muted);
}

.shop-sidebar__card--help a {
  color: var(--est-accent);
  font-weight: 700;
}

.shop-main__top {
  margin-bottom: 18px;
  color: var(--est-muted);
}

.shop-main .woocommerce-result-count {
  margin: 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
  padding: 0;
  list-style: none;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--est-surface);
  border: 1px solid var(--est-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--est-shadow);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.15;
  overflow: hidden;
  background: #f4efe7;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.product-card__inner:hover .product-card__media img {
  transform: scale(1.03);
}

.product-card__tag,
.product-card__badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card__tag {
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--est-muted);
}

.product-card__badge {
  right: 12px;
  background: #ff786d;
  color: #fff;
}

.product-card__body {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
}

.product-card__title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.product-card__title a {
  color: var(--est-text);
}

.product-card__rating {
  color: #e1ab00;
  font-size: 0.92rem;
}

.product-card__rating .star-rating {
  float: none;
}

.product-card__location {
  margin: 0;
  color: var(--est-muted);
  font-size: 0.95rem;
}

.product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.product-card__price-prefix {
  display: block;
  color: var(--est-muted);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.product-card__price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--est-primary);
}

.product-card__price del {
  color: #8c8181;
  font-size: 0.92rem;
  margin-right: 6px;
}

.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--est-primary);
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 26px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 8px;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  min-width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--est-border);
  border-radius: 12px;
  background: var(--est-surface);
}

.woocommerce nav.woocommerce-pagination ul li .current {
  background: #ff786d;
  border-color: #ff786d;
  color: #fff;
}

.product-page {
  padding: 26px 0 72px;
}

.product-page .woocommerce-breadcrumb {
  margin: 0 0 18px;
  color: var(--est-muted);
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 26px;
  align-items: start;
}

.product-page__media,
.product-page__summary,
.product-page__after > * {
  background: var(--est-surface);
  border: 1px solid var(--est-border);
  border-radius: 22px;
  box-shadow: var(--est-shadow);
}

.product-page__media {
  padding: 22px;
  overflow: hidden;
}

.product-page__summary {
  padding: 24px;
}

.product-page__tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-page__tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--est-accent-soft);
  color: var(--est-accent);
  font-size: .8rem;
  font-weight: 700;
}

.product-page__location {
  color: var(--est-muted);
  font-size: .95rem;
}

.product-page__summary .product_title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .98;
}

.product-page__summary .woocommerce-product-rating {
  margin: 0 0 14px;
}

.product-page__summary .price {
  display: block;
  margin: 0 0 18px;
  color: var(--est-primary);
  font-size: 2rem;
  font-weight: 800;
}

.product-page__summary .price del {
  color: #8c8181;
  font-size: 1rem;
  margin-right: 8px;
}

.product-page__summary .woocommerce-product-details__short-description {
  color: var(--est-muted);
  margin-bottom: 18px;
}

.product-page__summary form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.product-page__summary .quantity .qty {
  min-height: 46px;
  border: 1px solid var(--est-border);
  border-radius: 12px;
  padding: 0 12px;
}

.product-page__summary .single_add_to_cart_button.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--est-primary);
  color: #fff;
}

.product-page__summary .product_meta {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--est-border);
  color: var(--est-muted);
}

.product-page__summary .product_meta a {
  color: var(--est-text);
}

.product-page__after {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.product-page__after .woocommerce-tabs,
.product-page__after .related,
.product-page__after .up-sells,
.product-page__after .woocommerce-Reviews {
  padding: 24px;
}

.product-page__after h2,
.product-page__after h3 {
  margin-top: 0;
}

.product-page__after ul.products {
  margin-top: 18px;
}

.product-page__media .woocommerce-product-gallery {
  margin: 0;
}

.product-page__media .woocommerce-product-gallery__wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.product-page__media .woocommerce-product-gallery__image img {
  border-radius: 18px;
}

.product-page__media .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-page__media .flex-control-thumbs li {
  list-style: none;
}

.product-page__media .flex-control-thumbs img {
  border-radius: 12px;
  border: 1px solid var(--est-border);
}

@media (max-width: 1100px) {
  .shop-layout__grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shop-toolbar__inner,
  .shop-main__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-page__media,
  .product-page__summary,
  .product-page__after .woocommerce-tabs,
  .product-page__after .related,
  .product-page__after .up-sells,
  .product-page__after .woocommerce-Reviews {
    padding: 18px;
  }
}

.estourei-has-woocommerce .site-main {
  padding-bottom: 0;
}

.shop-hero--venues {
  padding: 24px 0;
  background: #fff;
}

.shop-hero--venues .woocommerce-breadcrumb {
  display: none;
}

.shop-hero--venues .shop-hero__title {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
  letter-spacing: 0;
}

.shop-hero--venues .shop-hero__description {
  color: #6d6671;
  font-size: 1rem;
}

.shop-toolbar--venues {
  padding: 24px 0;
  background: #fff;
}

.shop-toolbar--venues .shop-toolbar__chip {
  min-height: 37px;
  border-radius: 8px;
  background: #fff;
  border-color: #ded9d2;
  color: #342c34;
  font-size: .92rem;
}

.shop-toolbar--venues .shop-toolbar__chip::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.shop-toolbar--venues .shop-toolbar__ordering {
  color: #5f5861;
  font-size: .94rem;
}

.shop-toolbar--venues .orderby {
  min-height: 37px;
  border-radius: 0;
  border-width: 0 0 1px;
  background: transparent;
  font-weight: 700;
}

.shop-toolbar__view {
  display: inline-grid;
  grid-template-columns: repeat(2, 40px);
  gap: 8px;
  margin-left: 8px;
}

.shop-toolbar__view span {
  width: 40px;
  height: 40px;
  border: 1px solid #ded9d2;
  border-radius: 8px;
  background:
    linear-gradient(#a7a0a9 0 0) 12px 12px / 6px 6px no-repeat,
    linear-gradient(#a7a0a9 0 0) 22px 12px / 6px 6px no-repeat,
    linear-gradient(#a7a0a9 0 0) 12px 22px / 6px 6px no-repeat,
    linear-gradient(#a7a0a9 0 0) 22px 22px / 6px 6px no-repeat;
}

.shop-toolbar__view span + span {
  background:
    linear-gradient(#a7a0a9 0 0) 12px 13px / 16px 2px no-repeat,
    linear-gradient(#a7a0a9 0 0) 12px 20px / 16px 2px no-repeat,
    linear-gradient(#a7a0a9 0 0) 12px 27px / 16px 2px no-repeat;
}

.shop-toolbar__view span.is-active {
  border-color: #231a2c;
}

.shop-layout--catalog-venues {
  padding: 40px 0 80px;
  background: #f6f6f4;
}

.shop-layout--catalog-venues .shop-layout__grid {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
}

.shop-sidebar--venues {
  gap: 32px;
}

.shop-sidebar--venues .shop-sidebar__group {
  display: grid;
  gap: 12px;
}

.shop-sidebar--venues .shop-sidebar__title {
  margin: 0 0 4px;
  color: #221a24;
  font-size: 1.18rem;
  line-height: 1.25;
}

.shop-filter-option {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 17px;
  color: #534b54;
  font-size: .95rem;
}

.shop-filter-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #ef6d5b;
}

.shop-filter-option small,
.shop-sidebar--venues .shop-sidebar__list small {
  color: #8c858e;
  font-size: .8rem;
}

.shop-sidebar--venues .shop-sidebar__list {
  gap: 8px;
}

.shop-sidebar--venues .shop-sidebar__list a {
  align-items: center;
  color: #534b54;
  padding: 0;
}

.shop-sidebar__range-values {
  display: flex;
  justify-content: space-between;
  color: #6d6671;
  font-size: .88rem;
}

.shop-sidebar--venues .shop-sidebar__track {
  height: 4px;
  margin: 8px 0 6px;
  background: #ded9d2;
}

.shop-sidebar--venues .shop-sidebar__track span {
  left: 15%;
  right: 24%;
  top: 0;
  height: 4px;
  background: #ef6d5b;
}

.shop-sidebar__help {
  padding: 20px;
  border-radius: 8px;
  background: #231a2c;
  color: #fff;
}

.shop-sidebar__help h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.shop-sidebar__help p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.shop-sidebar__help a {
  color: #fff;
  font-weight: 800;
}

.shop-main--venues .shop-main__top {
  margin-bottom: 16px;
  min-height: 24px;
}

.shop-layout--catalog-venues .woocommerce ul.products,
.shop-layout--catalog-venues .woocommerce-page ul.products,
.shop-layout--catalog-venues ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card--card-venue .product-card__inner {
  border-radius: 8px;
  border-color: #ebe7e1;
  box-shadow: 0 10px 28px rgba(35,26,44,.06);
}

.product-card--card-venue .product-card__media {
  aspect-ratio: 283 / 184;
  background: #ebe7e1;
}

.product-card--card-venue .product-card__tag {
  min-height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  color: #231a2c;
  font-size: .72rem;
}

.product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #231a2c;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.product-card--card-venue .product-card__body {
  gap: 8px;
  padding: 16px;
}

.product-card--card-venue .product-card__title {
  min-height: 24px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.product-card--card-venue .product-card__rating--text {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #3f3741;
  font-size: .86rem;
}

.product-card--card-venue .product-card__star {
  color: #efb600;
}

.product-card--card-venue .product-card__rating small {
  color: #827b84;
}

.product-card--card-venue .product-card__location,
.product-card--card-venue .product-card__capacity {
  margin: 0;
  color: #655d66;
  font-size: .88rem;
}

.product-card--card-venue .product-card__footer {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid #ebe7e1;
}

.product-card--card-venue .product-card__price-prefix {
  font-size: .76rem;
}

.product-card--card-venue .product-card__price {
  color: #231a2c;
  font-size: 1.06rem;
}

.product-card--card-venue .product-card__button {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: #ef6d5b;
  font-size: .86rem;
}

.venue-page {
  padding: 24px 0 0;
  background: #fff;
}

.venue-page .woocommerce-breadcrumb {
  margin: 0 0 24px;
  color: #6d6671;
  font-size: .92rem;
}

.venue-gallery {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 472px);
  gap: 8px;
  min-height: 520px;
  margin-bottom: 40px;
}

.venue-gallery__main,
.venue-gallery__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ebe7e1;
}

.venue-gallery__main {
  border-radius: 8px 0 0 8px;
}

.venue-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.venue-gallery__thumb:nth-child(2) {
  border-radius: 0 8px 0 0;
}

.venue-gallery__thumb:last-child {
  border-radius: 0 0 8px 0;
}

.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-gallery__thumb span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  font-size: .88rem;
  font-weight: 800;
}

.woocommerce div.product.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 380px;
  gap: 40px;
  align-items: start;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.venue-content {
  min-width: 0;
}

.venue-title {
  padding-bottom: 42px;
}

.venue-title__meta,
.venue-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.venue-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3d3540;
  font-size: .94rem;
}

.venue-rating > span {
  color: #efb600;
}

.venue-rating small {
  color: #786f7a;
}

.venue-title h1 {
  margin: 16px 0 12px;
  max-width: 780px;
  color: #211922;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  line-height: 1;
}

.venue-facts {
  color: #5e5660;
  font-size: .95rem;
}

.venue-tabs {
  display: flex;
  gap: 32px;
  min-height: 51px;
  margin-bottom: 48px;
  border-bottom: 1px solid #e7e2dc;
}

.venue-tabs a {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #5e5660;
  font-weight: 800;
}

.venue-tabs a:first-child {
  border-color: #ef6d5b;
  color: #211922;
}

.venue-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #e7e2dc;
}

.venue-section h2 {
  margin: 0 0 20px;
  color: #211922;
  font-size: 1.65rem;
  line-height: 1.2;
}

.venue-copy,
.venue-section p {
  color: #5e5660;
  font-size: 1rem;
}

.venue-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.venue-amenities span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #e7e2dc;
  border-radius: 8px;
  background: #fbfaf8;
  color: #3d3540;
  font-size: .9rem;
}

.venue-price-table {
  overflow: hidden;
  border: 1px solid #e7e2dc;
  border-radius: 8px;
}

.venue-price-table > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.venue-price-table strong,
.venue-price-table span {
  padding: 16px;
  border-right: 1px solid #e7e2dc;
}

.venue-price-table strong:last-child,
.venue-price-table span:last-child {
  border-right: 0;
}

.venue-price-table > div:first-child {
  background: #fbfaf8;
}

.venue-section__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.venue-section__heading a {
  color: #ef6d5b;
  font-weight: 800;
}

.venue-review-summary {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 32px;
}

.venue-review-summary strong {
  display: block;
  font-size: 3.8rem;
  line-height: 1;
}

.venue-review-summary span {
  color: #6d6671;
}

.venue-review-bars {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.venue-review-bars span {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef6d5b var(--value), #ece7e1 var(--value));
}

.venue-reviews {
  display: grid;
  gap: 16px;
}

.venue-review {
  padding: 20px;
  border: 1px solid #e7e2dc;
  border-radius: 8px;
}

.venue-review header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.venue-review header span {
  color: #827b84;
  font-size: .88rem;
}

.venue-review p {
  margin: 0;
}

.venue-map {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    #e8e4dd;
  background-size: 32px 32px;
  color: #4c444e;
  font-weight: 800;
}

.venue-address {
  margin: 16px 0 0;
}

.venue-booking {
  position: sticky;
  top: 112px;
}

.venue-booking__card,
.venue-trust {
  border: 1px solid #e7e2dc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35,26,44,.08);
}

.venue-booking__card {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.venue-booking__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.venue-booking__price span,
.venue-booking__price small,
.venue-booking__card p {
  color: #6d6671;
}

.venue-booking__price strong {
  color: #211922;
  font-size: 1.8rem;
  line-height: 1;
}

.venue-booking label {
  display: grid;
  gap: 7px;
  color: #4c444e;
  font-size: .88rem;
  font-weight: 800;
}

.venue-booking input,
.venue-booking select {
  min-height: 56px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #ded9d2;
  border-radius: 8px;
  background: #fff;
  color: #211922;
  font: inherit;
}

.venue-booking__actions {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.venue-booking__actions form.cart {
  display: grid;
  gap: 10px;
  margin: 0;
}

.venue-booking__actions .quantity {
  display: none;
}

.venue-booking__actions .single_add_to_cart_button.button,
.venue-booking__actions .button {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  background: #ef6d5b;
  color: #fff;
  font-weight: 800;
}

.venue-booking__actions > a {
  text-align: center;
  color: #231a2c;
  font-weight: 800;
}

.venue-booking__contact {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #e7e2dc;
  color: #6d6671;
  font-size: .92rem;
}

.venue-booking__contact strong {
  color: #211922;
}

.venue-trust {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 20px;
}

.venue-trust span {
  color: #6d6671;
  font-size: .9rem;
}

.venue-similar {
  padding: 80px 0;
  margin-top: 0;
  border-top: 1px solid #e7e2dc;
}

.venue-similar__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.venue-similar__heading h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
}

.venue-similar__heading p {
  margin: 8px 0 0;
  color: #6d6671;
}

.venue-similar__heading a {
  color: #ef6d5b;
  font-weight: 800;
}

.venue-similar .related > h2 {
  display: none;
}

@media (max-width: 1100px) {
  .shop-layout--catalog-venues .shop-layout__grid,
  .woocommerce div.product.venue-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar--venues,
  .venue-booking {
    position: static;
  }

  .shop-layout--catalog-venues .woocommerce ul.products,
  .shop-layout--catalog-venues .woocommerce-page ul.products,
  .shop-layout--catalog-venues ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-gallery {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .venue-gallery__main {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .venue-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .venue-gallery__thumb {
    aspect-ratio: 1.2;
    border-radius: 8px;
  }
}

@media (max-width: 720px) {
  .shop-toolbar--venues .shop-toolbar__ordering {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .shop-layout--catalog-venues .woocommerce ul.products,
  .shop-layout--catalog-venues .woocommerce-page ul.products,
  .shop-layout--catalog-venues ul.products {
    grid-template-columns: 1fr;
  }

  .venue-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-tabs {
    gap: 20px;
    overflow-x: auto;
  }

  .venue-review-summary,
  .venue-price-table > div {
    grid-template-columns: 1fr;
  }

  .venue-price-table strong,
  .venue-price-table span {
    border-right: 0;
    border-bottom: 1px solid #e7e2dc;
  }

  .venue-section__heading,
  .venue-similar__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .venue-booking__card {
    padding: 22px;
  }
}
