/* 60-woocommerce.css — WooCommerce layout polish (single product + checkout)
   NOTE: Compiled into assets/main.css via tools/build-css.sh
*/

/* ==========================================================
   SINGLE PRODUCT — Image left / Options right
   ========================================================== */

body.woocommerce.single-product div.product{ margin-top: 18px; }

/* --- 2-column layout (desktop) --- */
@media (min-width: 920px){
  body.woocommerce.single-product div.product{
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
    gap: 26px !important;
    align-items: start !important;
  }

  body.woocommerce.single-product div.product .woocommerce-product-gallery{
    grid-column: 1 !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce.single-product div.product .summary{
    grid-column: 2 !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  body.woocommerce.single-product div.product > .woocommerce-tabs,
  body.woocommerce.single-product div.product > .related,
  body.woocommerce.single-product div.product > .up-sells,
  body.woocommerce.single-product div.product > .upsells{
    grid-column: 1 / -1 !important;
  }
}

/* --- Gallery polish --- */
body.woocommerce.single-product .woocommerce-product-gallery{
  position: relative;
  width: 100% !important;
  margin: 0 !important;
}

body.woocommerce.single-product .woocommerce-product-gallery__wrapper{
  border-radius: 26px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 45px rgba(10,20,30,.10);
}

body.woocommerce.single-product .woocommerce-product-gallery__wrapper img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* --- Thumbnails: 5 across, full width, wrap --- */
body.woocommerce.single-product .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs,
body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs{
  margin: 12px 0 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  list-style: none !important;
}

body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs li{
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  display: block !important;
}

body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs li img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: .92 !important;
  transition: transform .15s ease, opacity .15s ease, filter .15s ease;
}

body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs li:hover img{
  transform: scale(1.03);
  opacity: 1 !important;
}

body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active{
  opacity: 1 !important;
  filter: none !important;
}

@media (max-width: 720px){
  body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px){
  body.woocommerce.single-product .woocommerce-product-gallery .flex-control-thumbs{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* --- Summary typography --- */
body.woocommerce.single-product div.product .summary{ padding: 0 !important; }

body.woocommerce.single-product div.product .summary .product_title{
  margin: 2px 0 6px !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 32px !important;
  color: var(--ze-ink, #103532);
}

body.woocommerce.single-product div.product .summary .price{
  margin: 0 0 14px !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  color: rgba(16,53,50,.82);
}

/* --- Ticket options card --- */
body.woocommerce.single-product div.product form.cart,
body.woocommerce.single-product div.product .variations_form.cart{
  background: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 26px !important;
  padding: 14px 14px 16px !important;
  box-shadow: 0 18px 45px rgba(10,20,30,.10) !important;
  margin: 0 0 14px !important;
}

/* --- Variations table --- */
body.woocommerce.single-product div.product table.variations{
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  margin: 0 0 10px !important;
  table-layout: fixed !important;
}

body.woocommerce.single-product div.product table.variations th,
body.woocommerce.single-product div.product table.variations td{
  padding: 0 !important;
  border: 0 !important;
  vertical-align: top !important;
}

body.woocommerce.single-product div.product table.variations th{
  width: 160px !important;
  padding-right: 14px !important;
}

body.woocommerce.single-product div.product table.variations label{
  display: block !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .78;
  margin: 0 0 6px !important;
}

body.woocommerce.single-product div.product table.variations select{
  width: 100% !important;
  height: 46px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  background: rgba(255,255,255,.85) !important;
  padding: 10px 12px !important;
  font-weight: 800 !important;
  color: var(--ze-ink, #103532) !important;
}

/* ==========================================================
   HOLIDAY DATES — Arrive + Leave INLINE (clean + stable)
   Requires the wrapper markup in the plugin template.
   ========================================================== */

body.woocommerce.single-product .andy-holiday-dates{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px 14px !important;
  align-items: start !important;
  margin: 0 !important;
}

body.woocommerce.single-product .andy-holiday-dates .andy-hd-field{
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  min-width: 0 !important;
}

body.woocommerce.single-product .andy-holiday-dates .andy-hd-field label{
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  opacity: .82 !important;
  margin: 0 !important;
}

body.woocommerce.single-product .andy-holiday-dates input[type="date"]{
  width: 100% !important;
  height: 46px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  background: rgba(255,255,255,.85) !important;
  padding: 10px 12px !important;
  font-weight: 800 !important;
  color: var(--ze-ink, #103532) !important;
}

body.woocommerce.single-product .andy-holiday-dates .andy-holiday-help{
  grid-column: 1 / -1 !important;
  margin: 2px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  color: rgba(16,53,50,.78) !important;
}

@media (max-width: 560px){
  body.woocommerce.single-product .andy-holiday-dates{
    grid-template-columns: 1fr !important;
  }
}

/* --- Quantity --- */
body.woocommerce.single-product div.product .cart .quantity{ margin: 10px 0 12px !important; }

body.woocommerce.single-product div.product .cart .quantity input.qty{
  width: 96px !important;
  height: 46px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  background: rgba(255,255,255,.85) !important;
  text-align: center !important;
  font-weight: 900 !important;
}

/* --- Add to cart button --- */
body.woocommerce.single-product div.product .single_add_to_cart_button,
body.woocommerce.single-product div.product button.single_add_to_cart_button{
  width: 100% !important;
  border-radius: 999px !important;
  padding: 14px 18px !important;
  font-weight: 900 !important;
  border: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--ze-accent2, #7C4DFF), var(--ze-accent, #17C3CE)) !important;
  box-shadow: 0 14px 34px rgba(10,20,30,.14) !important;
}

/* --- Tabs --- */
body.woocommerce.single-product .woocommerce-tabs{ margin-top: 18px !important; }

body.woocommerce.single-product .woocommerce-tabs ul.tabs{
  padding: 0 !important;
  margin: 0 0 12px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  border: 0 !important;
}

body.woocommerce.single-product .woocommerce-tabs ul.tabs li{
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.70) !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce.single-product .woocommerce-tabs ul.tabs li a{
  display: inline-block !important;
  padding: 10px 16px !important;
  font-weight: 900 !important;
  color: var(--ze-ink, #103532) !important;
}

body.woocommerce.single-product .woocommerce-tabs ul.tabs li.active{
  background: rgba(23,195,206,.12) !important;
  border-color: rgba(23,195,206,.35) !important;
}

body.woocommerce.single-product .woocommerce-tabs .panel{
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 26px !important;
  padding: 16px !important;
  box-shadow: 0 18px 45px rgba(10,20,30,.08) !important;
}

/* --- Mobile stack --- */
@media (max-width: 919px){
  body.woocommerce.single-product div.product{ display: block !important; }
  body.woocommerce.single-product div.product .summary .product_title{ font-size: 26px !important; }
  body.woocommerce.single-product .woocommerce-product-gallery__wrapper{ border-radius: 22px !important; }
}

/* ==========================================================
   CHECKOUT — Order box TOP RIGHT (next to form)
   ========================================================== */

body.woocommerce-checkout .woocommerce{
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 16px 44px;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) !important;
  gap: 22px 26px !important;
  grid-template-areas: "details order" !important;
  align-items: start !important;
}

/* Remove floats */
body.woocommerce-checkout .col2-set,
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2,
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review{
  float: none !important;
  width: auto !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #customer_details{
  grid-area: details !important;
  margin: 0 !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review_heading{
  display: none !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review{
  grid-area: order !important;
  margin: 0 !important;
  padding: 14px !important;
  clear: none !important;
  border-radius: 22px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: 0 18px 45px rgba(10,20,30,.10) !important;
  align-self: start !important;
  position: sticky !important;
  top: 110px !important;
}

body.woocommerce-checkout #order_review::before{
  content: "Your order";
  display: block;
  font-weight: 900;
  margin: 2px 0 12px;
  color: var(--ze-ink, #103532);
}

body.woocommerce-checkout #order_review table{
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

body.woocommerce-checkout #order_review th,
body.woocommerce-checkout #order_review td{
  padding: 10px 8px !important;
  border: 0 !important;
  font-size: 14px !important;
}

body.woocommerce-checkout #order_review tr + tr td,
body.woocommerce-checkout #order_review tr + tr th{
  border-top: 1px solid rgba(0,0,0,.08) !important;
}

body.woocommerce-checkout #payment{
  background: transparent !important;
  border: 0 !important;
  margin-top: 12px !important;
}

body.woocommerce-checkout #payment .payment_box{
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  background: rgba(255,255,255,.62) !important;
  margin: 10px 0 0 !important;
}

body.woocommerce-checkout #place_order{
  width: 100% !important;
  border-radius: 18px !important;
  padding: 14px 16px !important;
  font-weight: 900 !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--ze-accent2, #7C4DFF), var(--ze-accent, #17C3CE)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(10,20,30,.14) !important;
}

/* Checkout fields */
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3{
  font-weight: 900;
  margin: 0 0 10px;
}

body.woocommerce-checkout form .form-row{ margin: 0 0 12px !important; }

body.woocommerce-checkout form .form-row label{
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
}

body.woocommerce-checkout form input.input-text,
body.woocommerce-checkout form textarea,
body.woocommerce-checkout form select{
  width: 100% !important;
  border-radius: 16px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

body.woocommerce-checkout form textarea{
  min-height: 120px;
  resize: vertical;
}

@media (min-width: 980px){
  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }
  body.woocommerce-checkout .form-row-wide{ grid-column: 1 / -1; }
}

@media (max-width: 980px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout{
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "details"
      "order" !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout #order_review{
    position: static !important;
    top: auto !important; 
  }
}
/* =========================================================
   THANK YOU: keep existing styles, only change placement
   ========================================================= */

@media (min-width: 980px){

  /* Use grid just to position blocks */
  .woocommerce .woocommerce-order{
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-areas:
      "received received"
      "overview customer"
      "details  details";
    gap: 22px;
    align-items: start;
  }

  .woocommerce .woocommerce-thankyou-order-received{ grid-area: received; }
  .woocommerce ul.woocommerce-order-overview{ grid-area: overview; }
  .woocommerce .woocommerce-customer-details{ grid-area: customer; margin-top: 0; }
  .woocommerce .woocommerce-order-details{ grid-area: details; margin-top: 0; }
}
/* =========================================================
   Order received (thank you) — keep it premium + address top
   Scoped so it won't affect other Woo pages
   ========================================================= */

@media (min-width: 980px){
  body.woocommerce-order-received .woocommerce .woocommerce-order{
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-areas:
      "received received"
      "overview customer"
      "details  details";
    gap: 22px;
    align-items:start;
  }

  body.woocommerce-order-received .woocommerce .woocommerce-thankyou-order-received{ grid-area: received; }
  body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview{ grid-area: overview; }
  body.woocommerce-order-received .woocommerce .woocommerce-customer-details{ grid-area: customer; }
  body.woocommerce-order-received .woocommerce .woocommerce-order-details{ grid-area: details; }
}

/* Overview card (kills bullets + makes the nice boxed layout) */
body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview{
  list-style: none !important;
  margin: 0 0 18px 0 !important;
  padding: 18px !important;

  display: grid !important;
  gap: 12px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview li{
  float: none !important;
  width: auto !important;
  margin: 0 !important;

  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px 14px;
}

body.woocommerce-order-received .woocommerce ul.woocommerce-order-overview li strong{
  display:block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.15;
}

/* Billing address card (top-right) */
body.woocommerce-order-received .woocommerce .woocommerce-customer-details{
  margin: 0 !important;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

body.woocommerce-order-received .woocommerce .woocommerce-customer-details address{
  font-style: normal;
  line-height: 1.65;
}

/* Order details big card */
body.woocommerce-order-received .woocommerce .woocommerce-order-details{
  margin: 0 !important;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table{
  border: 0;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
}

body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table th,
body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table td{
  border: 0;
  padding: 12px 10px;
}

body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table thead th{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table tbody tr td,
body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table tbody tr th{
  border-top: 1px solid rgba(0,0,0,.06);
}
/* ===== Thank you page: make order item row feel aligned (price top + tidy meta grid) ===== */

body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table td,
body.woocommerce-order-received .woocommerce .woocommerce-order-details table.shop_table th{
  vertical-align: top;
}

/* Keep TOTAL (right column) aligned with the product name row, not the meta chips */
body.woocommerce-order-received .woocommerce .woocommerce-order-details td.product-total{
  white-space: nowrap;
  padding-top: 18px; /* aligns with the product title */
  font-weight: 800;
  font-size: 16px;
}

/* Slightly tighter spacing under the product title */
body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta{
  margin-top: 10px !important;
}

/* Make it a neat 3-column details grid (perfect for Type/Arrive/Leave) */
@media (min-width: 860px){
  body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Make each chip look like a clean "label + value" row */
body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta li{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);

  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
}

/* label */
body.woocommerce-order-received .woocommerce .woocommerce-order-details .wc-item-meta-label{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .70;
  font-weight: 900;
}

/* value (kill the huge date look + keep consistent sizing) */
body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta li p,
body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta li span,
body.woocommerce-order-received .woocommerce .woocommerce-order-details ul.wc-item-meta li strong{
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: right;
}

/* Don’t let the meta grid squeeze the layout */
body.woocommerce-order-received .woocommerce .woocommerce-order-details td.product-name{
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Totals area: stop it feeling so “floaty” */
body.woocommerce-order-received .woocommerce .woocommerce-order-details tfoot th{
  opacity: .80;
  font-weight: 800;
}
/* ============================
   THANK YOU (Order received) – tidy order details
   ============================ */
.woocommerce-order-received .woocommerce-order-details{
  margin-top: 26px;
}

/* Make the order details table fill the card properly */
.woocommerce-order-received table.woocommerce-table--order-details{
  width: 100% !important;
  table-layout: fixed;
}

/* Product row spacing */
.woocommerce-order-received table.woocommerce-table--order-details td,
.woocommerce-order-received table.woocommerce-table--order-details th{
  padding: 18px 20px;
  vertical-align: top;
}

/* Product name line + qty pill */
.woocommerce-order-received .woocommerce-table__product-name{
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-order-received .woocommerce-table__product-name .product-quantity{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(16,53,50,.08);
  color: #103532;
  font-weight: 800;
  font-size: 12px;
}

/* TOTAL column */
.woocommerce-order-received table.woocommerce-table--order-details td.product-total{
  text-align: right;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

/* Reset any previous "pill cards" styling on item meta */
.woocommerce-order-received ul.wc-item-meta,
.woocommerce-order-received ul.wc-item-meta li{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Clean meta rows under the product */
.woocommerce-order-received ul.wc-item-meta{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  max-width: 520px;          /* keeps it from sprawling */
}
.woocommerce-order-received ul.wc-item-meta li{
  margin: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 14px;
  align-items: baseline;
  border-top: 1px solid rgba(16,53,50,.10);
}
.woocommerce-order-received ul.wc-item-meta li:first-child{
  border-top: 0;
  padding-top: 0;
}

.woocommerce-order-received ul.wc-item-meta li strong.wc-item-meta-label{
  margin: 0;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .65;
  font-weight: 800;
}
.woocommerce-order-received ul.wc-item-meta li p,
.woocommerce-order-received ul.wc-item-meta li span{
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

/* Totals: align properly (stop the “floating” feel) */
.woocommerce-order-received table.woocommerce-table--order-details tfoot th{
  text-align: right;
  font-weight: 800;
}
.woocommerce-order-received table.woocommerce-table--order-details tfoot td{
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}

/* Mobile: stack label/value */
@media (max-width: 640px){
  .woocommerce-order-received ul.wc-item-meta li{
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
}
/* Disable sticky billing/shipping address cards */
.woocommerce .woocommerce-customer-details .woocommerce-column,
.woocommerce .woocommerce-customer-details .woocommerce-column--billing-address,
.woocommerce .woocommerce-customer-details .woocommerce-column--shipping-address{
  position: static !important;
  top: auto !important;
}
/* If a wrapper is made sticky */
.woocommerce .woocommerce-customer-details{
  position: static !important;
  top: auto !important;
}
