/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* ── CSS Variables ── */
:root {
  --pink-bg: #fce8f0;
  --purple: #6b4fa0;
  --purple-lt: #9b7ec8;
  --mauve: #c48bb5;
  --text: #3a2a4d;
  --border: #d9b8d0;
  --primary-color: #696099;
  --primary-dark: #d4a5c8;
  --secondary-color: #6b4e71;
  --accent-color: #f4e4f0;
  --text-dark: #333333;
  --text-light: #666666;
  --background-light: #fff5fb;
  --border-color: rgba(107, 78, 113, 0.15);
  --success-color: #4caf50;
  --error-color: #f44336;
  --shadow-sm: 0 2px 8px rgba(107, 78, 113, 0.08);
  --shadow-md: 0 4px 16px rgba(107, 78, 113, 0.12);
  --shadow-lg: 0 8px 32px rgba(107, 78, 113, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.kch-opening-hours {
  max-width: 500px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 20px auto;
}

.kch-hours-title {
  font-size: 28px;
  font-weight: 700;
  color: #696099;
  margin: 0 0 30px 0;
  text-align: left;
}

.kch-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kch-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.kch-hours-row:last-child {
  border-bottom: none;
}

.kch-day {
  font-size: 16px;
  color: #696099;
  font-weight: 400;
}

.kch-time {
  font-size: 16px;
  color: #999;
  font-weight: 400;
}

.kch-hours-row.kch-today .kch-day {
  color: #696099;
  font-weight: 700;
}

.kch-hours-row.kch-today .kch-time {
  color: #696099;
  font-weight: 700;
}

@media (max-width: 600px) {
  .kch-opening-hours {
    padding: 20px;
  }

  .kch-hours-title {
    font-size: 24px;
  }

  .kch-day,
  .kch-time {
    font-size: 14px;
  }
}

/* ── FORM CARD ── */
.kch-contact-wrap {
  background: var(--pink-bg);
  border-radius: 18px;
  padding: 30px;
  max-width: 100%;
  width: 100%;
  box-shadow: 0 8px 40px rgba(107, 79, 160, 0.12);
}

.kch-contact-wrap h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.kch-contact-wrap p.kch-sub {
  font-size: 0.9rem;
  color: var(--mauve);
  margin: 0 0 32px;
  font-weight: 300;
}

/* ── FIELD GROUP ── */
.kch-contact-wrap .kch-field {
  margin-bottom: 22px;
}

.kch-contact-wrap .kch-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 7px;
}

.kch-contact-wrap .kch-field label span.req {
  color: var(--mauve);
  margin-left: 2px;
}

/* Target CF7 generated inputs and textareas */
.kch-contact-wrap .kch-field input[type="text"],
.kch-contact-wrap .kch-field input[type="email"],
.kch-contact-wrap .kch-field input[type="tel"],
.kch-contact-wrap .kch-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.kch-contact-wrap .kch-field input::placeholder,
.kch-contact-wrap .kch-field textarea::placeholder {
  color: #c8adc4;
}

.kch-contact-wrap .kch-field input:focus,
.kch-contact-wrap .kch-field textarea:focus {
  border-color: var(--purple-lt);
  box-shadow: 0 0 0 4px rgba(155, 126, 200, 0.15);
}

.kch-contact-wrap .kch-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── SEND BUTTON ── */
.kch-contact-wrap .kch-btn,
.kch-contact-wrap input[type="submit"].kch-btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(107, 79, 160, 0.25);
  -webkit-appearance: none;
  appearance: none;
}

.kch-contact-wrap .kch-btn:hover,
.kch-contact-wrap input[type="submit"].kch-btn:hover {
  background: var(--purple-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 79, 160, 0.3);
}

.kch-contact-wrap .kch-btn:active,
.kch-contact-wrap input[type="submit"].kch-btn:active {
  transform: translateY(0);
}

/* ── CF7 Validation & Response Messages ── */
.kch-contact-wrap .wpcf7-not-valid-tip {
  color: #c0406a;
  font-size: 0.78rem;
  margin-top: 4px;
  display: block;
}

.kch-contact-wrap .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: none !important;
}

/* CF7 invalid field highlight */
.kch-contact-wrap .wpcf7-not-valid {
  border-color: #c0406a !important;
}
/***** My Account Page   ****/
.tab_content nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
}

.tab_content nav.woocommerce-MyAccount-navigation ul li a {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 250px;
  text-decoration: none;
}

.tab_content nav.woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--primary-dark);
}
.tab_content nav.woocommerce-MyAccount-navigation ul li a br {
  display: none;
}

.tab_content nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 10px;
}
.tab_content .woocommerce-MyAccount-content {
  width: 75%;
  border: 1px solid var(--primary);
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}
.my_account nav.woocommerce-MyAccount-navigation {
  width: 25%;
}
.tab_content .woocommerce-info {
  border: 0;
  margin-bottom: 0;
}
.tab_content a.edit {
  float: left !important;
}
.tab_content header.woocommerce-Address-title.title h2,
.tab_content .woocommerce-MyAccount-content form h2 {
  font-size: 20px;
}
.tab_content .woocommerce-MyAccount-content form fieldset {
  margin-bottom: 10px;
}
/*** checkout page  ****/
.checkout_page .wc-block-components-main.wc-block-checkout__main {
  padding: 15px;
  background: #fff;
  border: 1px solid #e7e9e3;
  border-radius: 8px;
}
.checkout_page
  .wc-block-checkout__actions_row
  button.wc-block-components-button {
  padding: 10px 20px;
  min-height: 2em !important;
  border: none;
}
.checkout_page .wp-block-woocommerce-checkout-order-summary-block {
  background: #fff;
}
.checkout_page
  .wp-block-woocommerce-checkout-order-summary-block
  .wc-block-components-checkout-order-summary__title-text {
  color: var(--primary-color);
}
.checkout_page h3.wc-block-components-product-name {
  font-size: 16px;
  color: #000;
}

.checkout_page span.wc-block-formatted-money-amount {
  color: #000;
}
/**** Cart Page  */
.cart_page .wp-block-woocommerce-cart.alignwide {
  margin-inline: 0;
}
.cart_page span {
  color: #000;
}
.cart_page
  .wc-block-cart__submit-container
  a.wc-block-components-button.wp-element-button.wc-block-cart__submit-
  button.contained {
  background: var(--primary-color);
  color: #fff;
}
.cart_page
  .wc-block-cart__submit-container
  a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: var(--primary-color);
  border-radius: 8px !important;
}
.cart_page
  .wc-block-cart__submit-container
  a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background: var(--primary-dark);
}

/* =========================================================
   WooCommerce Booking Product Loop - Custom Styling 
   ========================================================= */

/* Hide WooCommerce default buttons just in case they duplicate */
.woocommerce
  ul.products
  li.product.product_cat-booking
  .button.add_to_cart_button {
  display: none !important;
}

/* Card Styling */
.woocommerce ul.products li.product.product_cat-booking {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  float: none;
  padding: 0;
  position: relative;
  width: 30%;
  margin: 0;
}

.woocommerce ul.products li.product.product_cat-booking:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Link wrapper stretching to keep button at bottom */
.woocommerce
  ul.products
  li.product.product_cat-booking
  > .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none !important;
  color: inherit;
  margin-bottom: 0px;
}

/* Image */
.woocommerce ul.products li.product.product_cat-booking img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  box-shadow: none !important;
}

/* Title */
.woocommerce
  ul.products
  li.product.product_cat-booking
  .woocommerce-loop-product__title {
  padding: 0 20px;
  color: #8d84c7; /* Purple Title */
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

/* Short Description */
.woocommerce ul.products li.product.product_cat-booking .custom-booking-desc {
  /*     padding: 0 20px;
    color: #6B7280; 
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; 
    text-align: left;*/
  height: 90px;
  /*     margin-bottom: 15px; */
  padding: 0 20px;
  color: #6b7280; /* Gray Description */
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Automatically pushes the price & button to the bottom */
  text-align: left;

  /* NEW: Line Clamp to exactly 4 lines with "..." */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default WooCommerce Price (Styled for the card) */
.woocommerce ul.products li.product.product_cat-booking .price {
  padding: 0 20px;
  font-size: 20px;
  font-weight: 800;
  color: #4b4561; /* Dark Color for Price */
  margin-bottom: 20px;
  text-align: left;
}

.woocommerce ul.products li.product.product_cat-booking .price del {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 500;
  margin-right: 5px;
}

.woocommerce ul.products li.product.product_cat-booking .price ins {
  text-decoration: none;
  background: transparent;
}

/* Learn More Button */
.woocommerce ul.products li.product.product_cat-booking .custom-booking-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #7a69a5; /* Purple Button color matches mockup */
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin: 0 20px 15px;
  transition: background-color 0.3s ease;
  width: calc(100% - 40px);
}

.woocommerce
  ul.products
  li.product.product_cat-booking
  .custom-booking-btn:hover {
  background-color: #5d4a88;
  color: #ffffff;
}
.booking_page ul.products.columns-4 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.booking_page .woocommerce ul.products::before,
.booking_page .woocommerce .products ul::after,
.booking_page .woocommerce ul.products::after {
  display: none !important;
}
/* =========================================================
   WooCommerce Single Product Page - UI Design 
   ========================================================= */

/* 1. Main Padding (80px Desktop) */
.single-product div.product {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* 2. Product Image Gallery Styling */
.single-product .woocommerce-product-gallery {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08); /* Soft elegant shadow */
  border: 1px solid #f0f0f0;
}
.single-product .woocommerce-product-gallery img {
  border-radius: 16px;
  width: 100%;
  display: block;
}

/* 3. Title and Typography */
.single-product h1.product_title {
  color: #8d84c7; /* Beautiful Light Purple */
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 0;
}
.single-product div.product p.price {
  color: #4b4561; /* Darker Purple-Black */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* 4. The Booking Form Container */
.single-product div.product form.cart {
  background-color: #fdfbff; /* Extremely soft purple-tinted white */
  padding: 20px;
  border-radius: 16px;
  margin-top: 25px;
  margin-bottom: 40px;
  border: 2px solid #f0edf5;
}

/* Booking Date Text/Labels */
.single-product div.product form.cart label,
.single-product div.product form.cart .booking-date-label {
  font-size: 15px;
  font-weight: 600;
  color: #4b4561;
  margin-bottom: 10px;
  display: inline-block;
}

/* Booking Data Input Field */
.single-product div.product form.cart input[type="text"],
.single-product div.product form.cart input[type="date"] {
  width: 100%; /* Full modern width */
  max-width: 400px;
  padding: 14px 20px;
  border: 2px solid #e5e0ef;
  border-radius: 10px;
  font-size: 16px;
  color: #4b4561;
  background-color: #ffffff;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}
.single-product div.product form.cart input[type="text"]:focus,
.single-product div.product form.cart input[type="date"]:focus {
  border-color: #8d84c7;
  outline: none;
  box-shadow: 0 0 0 4px rgba(141, 132, 199, 0.15);
}

/* Quantity Box alignment */
.single-product div.product form.cart .quantity {
  display: inline-block;
  margin-right: 15px;
  vertical-align: top;
}
.single-product div.product form.cart .quantity input.qty {
  width: 70px;
  height: 52px;
  border: 2px solid #e5e0ef;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #4b4561;
}

/* Beautiful "Book Now" Button */
.single-product div.product form.cart button.single_add_to_cart_button {
  height: 52px;
  padding: 0 35px;
  background-color: #7a69a5;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: top;
  margin-top: 0;
}
.single-product div.product form.cart button.single_add_to_cart_button:hover {
  background-color: #5d4a88; /* Darkens on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 8px 15px rgba(122, 105, 165, 0.25);
}

/* 5. Meta Data (Categories) */
.single-product div.product .product_meta {
  padding-top: 20px;
  border-top: 1px dashed #e5e0ef;
  color: #6b7280;
  font-size: 14px;
}
.single-product div.product .product_meta a {
  color: #8d84c7;
  font-weight: 600;
  text-decoration: none;
}

/* 6. Description & Review Tabs Layout */
.single-product .woocommerce-tabs {
  margin-top: 60px;
  padding-top: 40px;
}
.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #e5e0ef;
}
.single-product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.single-product .woocommerce-tabs ul.tabs li a {
  color: #9ca3af;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0 15px 0;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  top: 2px; /* Pulls it over the border slightly */
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: #7a69a5;
  border-bottom: 2px solid #7a69a5; /* Purple underline for active tab */
}
.single-product .woocommerce-Tabs-panel {
  color: #4b4561;
  font-size: 16px;
  line-height: 1.8;
}
.single-product .woocommerce-Tabs-panel h2 {
  color: #8d84c7;
  font-size: 26px;
  margin-bottom: 20px;
}

/* 7. Related Products Title */
.single-product section.related.products {
  margin-top: 80px;
}
.single-product section.related.products > h2 {
  color: #8d84c7;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}
.mbfw-date-picker-section {
  max-width: 180px;
}
.mwb-mbfw-total-area {
  margin-bottom: 20px;
}
/* =========================================================
   1. Breadcrumbs UI Design
   ========================================================= */
.woocommerce-breadcrumb {
  padding: 15px 0;
  margin-bottom: 40px;
  font-size: 15px;
  color: #9ca3af;
  border-bottom: 1px solid #f0edf5;
}
.woocommerce-breadcrumb a {
  color: #8d84c7; /* Purple */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.woocommerce-breadcrumb a:hover {
  color: #7a69a5;
}

/* =========================================================
   2. Related Products Grid Fix 
   ========================================================= */
/* Forces Related Products into a perfect, evenly spaced modern grid */
/* .single-product section.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important;
}
.single-product section.related.products ul.products li.product {
    width: 100% !important; /* Overrides default Woo layout issues */
/*     margin: 0 !important;   /* Relies on Grid gap instead */
/* } */
/* =========================================================
   3. Booking Calendar & Time slot UI Improvements
   ========================================================= */
/* Change Bright Blue highlight to Theme Purple (Targets modern pickers like Flatpickr & standard UI) */
.flatpickr-day.selected,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover,
.ui-datepicker td.ui-datepicker-current-day a,
.ui-datepicker td.ui-state-active,
.ui-datepicker-current-day .ui-state-active,
.picker__day--selected,
.picker__day--highlighted {
  background-color: #7a69a5 !important;
  border-color: #7a69a5 !important;
  color: #ffffff !important;
}

/* Style the calendar popup wrapper to look softer */
.flatpickr-calendar,
.ui-datepicker,
.picker__holder {
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #f0edf5 !important;
  padding: 15px !important;
  font-family: inherit !important;
}

/* Time Slot Buttons (Makes them look like nice modern clickable pills instead of clunky blocks) */
.block-picker li a,
.wc-bookings-time-picker li a,
.time-picker li,
.picker__list-item {
  border-radius: 8px !important;
  border: 2px solid #e5e0ef !important;
  color: #4b4561 !important;
  background: #ffffff !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  text-align: center !important;
  display: block !important;
  margin-bottom: 8px !important;
  text-decoration: none !important;
}

/* Time Slot Hover/Selected state */
.block-picker li a:hover,
.wc-bookings-time-picker li a:hover,
.time-picker li:hover,
.picker__list-item:hover,
.block-picker li a.selected,
.wc-bookings-time-picker li a.selected,
.picker__list-item--selected {
  background-color: #7a69a5 !important;
  color: #ffffff !important;
  border-color: #7a69a5 !important;
  box-shadow: 0 4px 10px rgba(122, 105, 165, 0.2) !important;
}
.woocommerce .woocommerce-breadcrumb {
  padding: 15px 0;
}

/* =========================================================
   Related Products Owl Carousel Styling (Safely Isolated)
   ========================================================= */

/* Ensure the products fill the slider items properly without WooCommerce defaults breaking it */
ul.custom-related-owl-slider li.product {
  width: 100% !important;
  margin: 0 !important;
  display: flex; /* Keeps inner card height matching */
}

/* Beautiful Custom Arrows */
ul.custom-related-owl-slider .owl-nav {
  text-align: center;
  margin-top: 30px;
}
ul.custom-related-owl-slider .owl-nav button.owl-prev,
ul.custom-related-owl-slider .owl-nav button.owl-next {
  background-color: #7a69a5 !important;
  color: #ffffff !important;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  font-size: 18px !important;
  margin: 0 10px;
  transition: all 0.3s ease;
  border: none !important;
}
ul.custom-related-owl-slider .owl-nav button.owl-prev:hover,
ul.custom-related-owl-slider .owl-nav button.owl-next:hover {
  background-color: #5d4a88 !important;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(122, 105, 165, 0.3);
}

/* Beautiful Carousel Navigation Dots */
ul.custom-related-owl-slider .owl-dots {
  text-align: center;
  margin-top: 15px;
}
ul.custom-related-owl-slider .owl-dots .owl-dot.active span {
  background-color: #7a69a5 !important;
  transform: scale(1.2);
}
ul.custom-related-owl-slider .owl-dots .owl-dot span {
  background-color: #e5e0ef !important;
  transition: all 0.3s ease;
  width: 10px;
  height: 10px;
}
.shop_page_content .woocommerce-products-header,
.shop_page_content .elementor-section.shop-header {
  background-color: #45365e; /* Deep purple background */
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Semi-circles mimicking the header in image 2 */
.shop_page_content .woocommerce-products-header::before,
.shop_page_content .elementor-section.shop-header::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.shop_page_content .woocommerce-products-header::after,
.shop_page_content .elementor-section.shop-header::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -250px;
  right: -150px;
}

/* Header Title */
.shop_page_content .woocommerce-products-header__title,
.shop_page_content .elementor-heading-title {
  color: #ffffff !important;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

/* Shop Product Cards */
.shop_page_content ul.products li.product {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
  text-align: left;
}

.shop_page_content ul.products li.product:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.shop_page_content ul.products li.product img {
  border-radius: 12px;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}

/* Product details */
.shop_page_content ul.products li.product .woocommerce-loop-product__title {
  font-size: 18px;
  color: #45365e;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Pricing */
.shop_page_content ul.products li.product .price {
  color: #8c992e; /* Golden/olive green from image */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.shop_page_content ul.products li.product .price del {
  color: #a0a0a0;
  font-weight: 400;
  margin-right: 8px;
  font-size: 14px;
}
.shop_page_content ul.products li.product .price ins {
  text-decoration: none;
  color: #8c992e;
}

/* Add to Cart button format mimicking Image 3 */
.shop_page_content ul.products li.product .button {
  background-color: #efeaf4 !important;
  color: #45365e !important;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  transition: all 0.3s ease;
  font-size: 14px;
  border: none;
}
.shop_page_content ul.products li.product .button:hover {
  background-color: #45365e !important;
  color: #ffffff !important;
}

/* Add checkmark to "Add to cart" like in Image 3 if it's the added state or styled */
.shop_page_content ul.products li.product .button.added::after {
  content: " ✓";
  margin-left: 5px;
  font-weight: bold;
}

/* View Cart link style exact match to Add To Cart button */
.shop_page_content ul.products li.product .added_to_cart {
  background-color: #efeaf4 !important;
  color: #45365e !important;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-left: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
  border: none;
}
.shop_page_content ul.products li.product .added_to_cart:hover {
  background-color: #45365e !important;
  color: #ffffff !important;
  text-decoration: none;
}

/* Footer padding adjustments */
.site-footer,
footer.elementor-location-footer {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Shop Grid Bottom Padding */
.shop_page_content {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .site-footer,
  footer.elementor-location-footer {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .shop_page_content {
    padding-bottom: 50px;
  }
}

/* Sale Badge */
.shop_page_content ul.products li.product .onsale {
  background-color: #8c992e !important; /* Olive green badge */
  color: #fff !important;
  border-radius: 50% !important;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  top: 15px;
  right: 15px;
  line-height: 1;
  min-width: 45px;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(140, 153, 46, 0.3);
}

/* Grid layout polish for beautiful shop */
.shop_page_content ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.shop_page_content ul.products::before,
.shop_page_content ul.products::after {
  display: none;
}
.shop_page_content ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
/* Make sure WP Swings booking form is visible */
.mwb-mbfw-booking-form,
.mbfw-booking-form,
[class*="mwb"][class*="booking"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Duration + Price row on booking cards */
.kch-booking-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid #f0edf5;
    margin-top: auto;
}
.kch-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
.kch-duration svg {
    color: #8d84c7;
    flex-shrink: 0;
}
.kch-booking-meta .kch-price {
    font-size: 18px;
    font-weight: 800;
    color: #4b4561;
    padding: 0;
    margin: 0;
}
/* Hide the default WooCommerce price since we show our own */
.woocommerce ul.products li.product.product_cat-booking > .woocommerce-LoopProduct-link .price {
    display: none;
}
/* ── Mini Cart ── */
.kch-cart-wrapper {
    position: relative;
    display: inline-block;
}
.kch-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--purple);
    cursor: pointer;
    text-decoration: none;
}
.kch-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--purple);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Dropdown — hidden by default, shown on .kch-open */
.kch-cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #f0edf5;
    z-index: 99999;
    padding: 16px;
    animation: kchFadeIn 0.2s ease;
}
.kch-cart-dropdown.kch-open {
    display: block;
}
@keyframes kchFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0);   }
}

/* Empty message */
.kch-cart-dropdown .woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #9ca3af;
    padding: 15px 0;
    font-size: 14px;
    margin: 0;
}

/* Cart items list */
.kch-cart-dropdown ul.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    max-height: 250px;
    overflow-y: auto;
}
.kch-cart-dropdown .mini_cart_item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0edf5;
    font-size: 13px;
    color: #4b4561;
    align-items: center;
}
.kch-cart-dropdown .mini_cart_item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

/* Total row */
.kch-cart-dropdown .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #4b4561;
    padding: 10px 0;
    border-top: 1px solid #f0edf5;
    font-size: 15px;
}

/* Buttons */
.kch-cart-dropdown .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.kch-cart-dropdown .woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.kch-cart-dropdown .button.wc-forward {
    background: #f0edf5;
    color: var(--purple) !important;
}
.kch-cart-dropdown .button.wc-forward:hover {
    background: var(--purple);
    color: #fff !important;
}
.kch-cart-dropdown .button.checkout {
    background: var(--purple);
    color: #fff !important;
}
.kch-cart-dropdown .button.checkout:hover {
    background: var(--purple-lt);
}
.kch-account-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.kch-account-link svg {
    display: block;
    flex-shrink: 0;
    position: relative;
    top: 0;
}
.kch-login-text {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.kch-right-panel {
    position: absolute;
    right: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  .kch-right-panel::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, #1a0f1e 0%, transparent 50%);
    z-index: 2;
  }

  .kch-stat {
    position: absolute;
    background: rgba(26,15,30,0.72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(212,165,200,0.22);
    border-radius: 14px;
    padding: 18px 24px;
    z-index: 5;
    animation: kch-fadeUp 1.4s cubic-bezier(.22,1,.36,1) both;
  }
  .kch-stat-1 { bottom: 65px; right: 44px; animation-delay: 0.65s; }
  .kch-stat-2 { top: 65px; right: 170px; animation-delay: 0.85s; }
  .kch-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: #d4a5c8;
    line-height: 1;
    margin-bottom: 5px;
  }
  .kch-stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,228,240,0.38);
  }
.home_banner_left .e-con-inner {
    margin: 0 0 0 auto;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .woocommerce ul.products li.product.product_cat-booking {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .single-product div.product {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .single-product h1.product_title {
    font-size: 28px;
    margin-top: 20px;
  }

  /* Make button full width on mobile so it's easy to tap */
  .single-product div.product form.cart button.single_add_to_cart_button {
    width: 100%;
    margin-top: 15px;
  }

  .single-product div.product form.cart input[type="text"] {
    max-width: 100%;
  }

  .single-product .woocommerce-tabs ul.tabs {
    flex-direction: column;
    gap: 10px;
    border-bottom: none;
  }
  .single-product .woocommerce-tabs ul.tabs li.active a,
  .single-product .woocommerce-tabs ul.tabs li a:hover {
    border-bottom: none;
    color: #7a69a5;
  }
}
@media (max-width: 767px) {
  .woocommerce ul.products li.product.product_cat-booking {
    width: 100%;
  }
     .kch-stat{
          display: none;
      }
}
@media (max-width: 520px) {
  .kch-contact-wrap {
    padding: 36px 24px;
  }
}

