/* Hide the booking button */
.acuity-appointment-button {
    display: none !important;
}

/* Disable clickable time slots */
.acuity-time-slot {
    pointer-events: none;
    opacity: 0.5;
    cursor: default;
}
.time-slot-blocker{
	position:absolute;
	width:100%;
	bottom:88px;
}
a.button.wc-backward {
    display: ruby-text !important;
    color: #fff !important;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    background: #DE347F !important;
    color: #fff !important;
font-family: 'Playfair Display' !important;
}
a.button.product_type_simple:hover {
    background: #000 !important;
    text-decoration: none !important;
}
a.button.product_type_variable:hover {
    background: #000 !important;
    text-decoration: none !important;
}
a.button.product_type_variable {
   background: #de347f;
    color: #fff;
font-family: 'Playfair Display' !important;
}
a.button.product_type_simple {
    background: #de347f;
    color: #fff;
font-family: 'Playfair Display' !important;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover:hover {
    background: #000 !important;
    text-decoration: none !important;
}
a.button.product_type_variable.add_to_cart_button {
    background: #de347f;
    color: #fff;
font-family: 'Playfair Display' !important;

}

a.button.product_type_variable.add_to_cart_button:hover {
    background: #000;
    text-decoration: none !important;
}
a.button.product_type_variable.add_to_cart_button:hover {
    background: #000;
    text-decoration: none !important;
}
a.checkout-button.button.alt.wc-forward:hover {
    background: #000;
    text-decoration: none !important;
}
a.checkout-button.button.alt.wc-forward {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    background: #de347f;
    color: #fff;
    padding: 0px 0px 20px 0px;
font-family: 'Playfair Display' !important;
}
/* =========================
   GLOBAL PRODUCT PAGE TWEAKS
   ========================= */

/* 1. Remove category/meta line */
.single-product .product_meta {
  display: none !important;
}

/* 2. Improve add-on checkbox readability */
.single-product input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transform: translateY(2px);
}

.single-product .product-addon label,
.single-product .woocommerce-addons-options label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.single-product .product-addon,
.single-product .woocommerce-addons-options li {
  margin-bottom: 12px;
}

/* 3. Product title font styling */
.single-product h1.product_title.entry-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* =========================
   PRODUCT PAGE FIXES (PART 2)
   ========================= */

/* A) Remove the breadcrumb trail at top left (Home / Category / Product) */
.single-product .woocommerce-breadcrumb,
.single-product nav.woocommerce-breadcrumb {
  display: none !important;
}

/* B) Make checkboxes highly visible (black outline + consistent styling) */
.single-product input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;

  /* overrides your earlier checkbox rule */
  margin-right: 10px;
  transform: translateY(2px);
}

/* Checked state */
.single-product input[type="checkbox"]:checked {
  background-color: #000;
}

/* Checkmark */
.single-product input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* Optional: align checkbox + label text nicely */
.single-product .product-addon label,
.single-product .woocommerce-addons-options label {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* =========================
   CHECKBOX VISIBILITY FIX
   ========================= */

/* Base checkbox style (always visible) */
.single-product input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 3px;

  /* THIS is the key part */
  background-color: #fff;

  cursor: pointer;
  position: relative;
}

/* Unchecked hover (gives affordance) */
.single-product input[type="checkbox"]:hover {
  background-color: #f2f2f2;
}

/* Checked state */
.single-product input[type="checkbox"]:checked {
  background-color: #000;
}

/* Checkmark */
.single-product input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
/* =========================
   FINAL CLEAN CHECKBOX STYLE
   ========================= */

.single-product input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 18px;
  height: 18px;

  /* thinner outline */
  border: 1.5px solid #000;
  border-radius: 3px;

  background-color: #fff;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}

/* Hover (so it’s obviously interactive) */
.single-product input[type="checkbox"]:hover {
  background-color: #f5f5f5;
}

/* Checked state */
.single-product input[type="checkbox"]:checked {
  background-color: #000;
}

/* Checkmark */
.single-product input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
/* =========================
   PRODUCT ADD-ONS: ALWAYS-VISIBLE CHECKBOX UI
   Works even when the real checkbox input is hidden
   ========================= */

/* Make sure each option label can hold a custom box */
.single-product .product-addon label,
.single-product .woocommerce-addons-options label,
.single-product .wc-pao-addon-wrap label {
  position: relative !important;
  padding-left: 34px !important;   /* space for the box */
  cursor: pointer;
}

/* Draw the unchecked box */
.single-product .product-addon label::before,
.single-product .woocommerce-addons-options label::before,
.single-product .wc-pao-addon-wrap label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;       /* thinner */
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}

/* When the (hidden) checkbox is checked, fill the box */
.single-product .product-addon input[type="checkbox"]:checked + label::before,
.single-product .woocommerce-addons-options input[type="checkbox"]:checked + label::before,
.single-product .wc-pao-addon-wrap input[type="checkbox"]:checked + label::before {
  background: #000;
}

/* Add the checkmark when checked */
.single-product .product-addon input[type="checkbox"]:checked + label::after,
.single-product .woocommerce-addons-options input[type="checkbox"]:checked + label::after,
.single-product .wc-pao-addon-wrap input[type="checkbox"]:checked + label::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-58%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* Hide the real checkbox if it's showing (prevents double boxes) */
.single-product .product-addon input[type="checkbox"],
.single-product .woocommerce-addons-options input[type="checkbox"],
.single-product .wc-pao-addon-wrap input[type="checkbox"] {
  opacity: 0 !important;
  position: absolute !important;
  left: 0 !important;
}
/* =========================
   RELATED / RECOMMENDED PRODUCTS TYPOGRAPHY
   ========================= */

/* 1) Section heading (ex: "You may also like…") */
.single-product .related.products h1,
.single-product .related.products h2,
.single-product .related.products h3,
.single-product section.related h1,
.single-product section.related h2,
.single-product section.related h3,
.single-product .up-sells h1,
.single-product .up-sells h2,
.single-product .up-sells h3,
.single-product .cross-sells h1,
.single-product .cross-sells h2,
.single-product .cross-sells h3 {
  font-family: "Playfair Display", serif !important; /* or swap to Lato below */
  font-weight: 700 !important;
}

/* 2) Product titles under the images */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3,
.woocommerce .products .product .woocommerce-loop-product__title,
.woocommerce .products .product h2,
.woocommerce .products .product h3 {
  font-family: "Playfair Display", sans-serif !important; /* change to Playfair if you want */
  font-weight: 700 !important;
}

/* Optional: price text stays body font */
.woocommerce ul.products li.product .price {
  font-family: "Playfair Display", sans-serif !important;
}
/* =========================
   CART PAGE DESKTOP LAYOUT + TITLE
   ========================= */

/* Capitalize the cart page title */
.woocommerce-cart .entry-title {
  text-transform: capitalize !important;
}

/* Make the cart page layout clean on desktop */
@media (min-width: 992px) {
  /* Constrain overall content so it doesn't float weirdly */
  .woocommerce-cart .entry-content,
  .woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Two-column layout: cart table left, totals right */
  .woocommerce-cart form.woocommerce-cart-form {
    float: left;
    width: 62%;
  }

  .woocommerce-cart .cart-collaterals {
    float: right;
    width: 34%;
  }

  /* Clear floats so following sections don’t get wonky */
  .woocommerce-cart .woocommerce::after,
  .woocommerce-cart .entry-content::after {
    content: "";
    display: block;
    clear: both;
  }

  /* Keep the totals box aligned and not drifting */
  .woocommerce-cart .cart-collaterals .cart_totals {
    float: none !important;
    width: 100% !important;
  }
}
/* Capitalize Cart page title */
.woocommerce-cart .entry-title {
  text-transform: capitalize !important;
}
.woocommerce-cart h1,
.woocommerce-cart h2 {
  text-transform: capitalize !important;
}
.single-product .woocommerce-Tabs-panel--description h2,
.single-product .woocommerce-Tabs-panel--description h3 {
  text-align: left !important;
}
/* Checkout headings: force Playfair Display */
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout .woocommerce-additional-fields > h3 {
  font-family: "Playfair Display", serif !important;
}
/* WooCommerce product description (including tabs): left-align headings */
.single-product .woocommerce-Tabs-panel--description h1,
.single-product .woocommerce-Tabs-panel--description h2,
.single-product .woocommerce-Tabs-panel--description h3,
.single-product .woocommerce-Tabs-panel--description h4,
.single-product .woocommerce-Tabs-panel--description h5,
.single-product .woocommerce-Tabs-panel--description h6,
.single-product .woocommerce-product-details__short-description h1,
.single-product .woocommerce-product-details__short-description h2,
.single-product .woocommerce-product-details__short-description h3,
.single-product .woocommerce-product-details__short-description h4,
.single-product .woocommerce-product-details__short-description h5,
.single-product .woocommerce-product-details__short-description h6,
.woocommerce-page .entry-content h1,
.woocommerce-page .entry-content h2,
.woocommerce-page .entry-content h3,
.woocommerce-page .entry-content h4,
.woocommerce-page .entry-content h5,
.woocommerce-page .entry-content h6 {
  text-align: left !important;
}
.has-text-align-center {
  text-align: left !important;
}
/* ✅ Force LEFT alignment for ALL text inside product descriptions (tabs + short description) */
.single-product div.product .woocommerce-Tabs-panel--description,
.single-product div.product .woocommerce-Tabs-panel--description * ,
.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .woocommerce-product-details__short-description * {
  text-align: left !important;
}

/* ✅ Neutralize Gutenberg "center" utility classes inside product descriptions */
.single-product div.product .woocommerce-Tabs-panel--description .has-text-align-center,
.single-product div.product .woocommerce-product-details__short-description .has-text-align-center {
  text-align: left !important;
}
.single-product div.product .woocommerce-Tabs-panel--description *[style*="text-align:center"] {
  text-align: left !important;
}
/* Product description tab: force left alignment and undo layout-centering */
.single-product #tab-description,
.single-product #tab-description * {
  text-align: left !important;
}

/* If the theme centers headings via margins/display/width, undo that */
.single-product #tab-description h1,
.single-product #tab-description h2,
.single-product #tab-description h3,
.single-product #tab-description h4,
.single-product #tab-description h5,
.single-product #tab-description h6 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block !important;
  width: auto !important;
}

/* Gutenberg center helpers inside the tab */
.single-product #tab-description .has-text-align-center,
.single-product #tab-description .wp-block-heading.has-text-align-center {
  text-align: left !important;
}

