dl.variation {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  color: var(--wp--preset--color--secondary)
}

dl.variation dt {
  font-weight: bold;
  grid-column: 1;
}

dl.variation dd {
  grid-column: 2;
  margin: 0;
}

/* Style the vendor and market details in the cart drawer */
.wc-block-components-product-details__market .wc-block-components-product-details__name,
.wc-block-components-product-details__vendor .wc-block-components-product-details__name {
  font-weight: 700;
  color: var(--wp--preset--color--secondary) !important;
}

.wc-block-components-product-details__market .wc-block-components-product-details__value,
.wc-block-components-product-details__vendor .wc-block-components-product-details__value {
  color: var(--wp--preset--color--secondary) !important;
}

form.checkout #order_review #place_order {
  margin-top: 0px !important;
}

.pgf-continue-shopping-button {
  background-color: var(--wp--preset--color--secondary) !important;
  border-radius: 6px;
  margin-top: 5px;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 8.5px 0px !important;
  font-size: 18px;
  font-weight: 600;
}

.market-header {
  display: flex;
  align-items: center;
}
.market-header-name {
    margin-left: 20px;
}

.market-header {
    display: flex;
    align-items: center;
}

.market-header-address {
    margin-left: 20px;
    font-size: 14px;
    color: #666;
}


.delivery-radius-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 95%;
}

.delivery-radius-wrapper input[type="number"] {
  flex: 1;
  min-width: 150px;
  max-width: 100%;
  padding: 5px;
}

.delivery-radius-wrapper select {
  flex: 0 0 auto;
  min-width: 100px;
  padding: 5px;
}

.market_delivery_radius_unit {
  border-radius: 4px;
}

.wp-block-column.is-vertically-aligned-bottom, .wp-block-column.is-vertically-aligned-center, .wp-block-column.is-vertically-aligned-top {
  align-self: stretch;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
}

.market-item {
  border: 2px solid #000000;
  border-radius: 9px;
  padding: 10px;
  display: flex;
  align-items: center;
  height: 100%;
}

.market-item img {
    object-fit: cover;
}

.market-item h3 {
    color: #424242;
    font-size: clamp(16.293px, 1.018rem + ((1vw - 3.2px) * 0.806), 25px);
}

.market-item p {
    color: #38ba40;
    font-size: 13px;
}

.market-comming-soon {
    padding-top: 5px;
    padding-bottom: 5px;
    align-items: center;
    vertical-align: middle;
    height: auto;
}

.market-comming-soon div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.market-hours-container {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 0;
}

.market-hours-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.market-hours-days {
  font-weight: bold;
  color: #000;
}

.market-hours-time {
  margin-left: auto;
  text-align: right;
  color: #424242;
}

@media (max-width: 768px) {
  .markets-grid {
    grid-template-columns: 1fr;
  }
}