/*
Theme Name: The Khatu Mart
Description: E-commerce theme for The Khatu Mart
Version: 1.0
*/

/* Your existing CSS styles from style.css, responsive.css, custom.css */



/* global css start here */
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');


body {
    font-weight: 400;
    color: #000;
}


.woocommerce-account {
  background: #f9fafb;
}
.cartflows-checkout-main-wrapper .main-header--site-logo{
    height: auto !important;
}

.woocommerce-account {
  background: #f9fafb;
}

.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
}

.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  box-sizing: border-box;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid #eee;
}

.woocommerce-MyAccount-navigation li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.woocommerce-MyAccount-navigation a:hover {
  background: #fff5f6;
  border-left: 3px solid #960113;
  color: #960113;
}

.woocommerce-MyAccount-navigation .is-active a {
  background: #fff0f2;
  border-left: 3px solid #960113;
  color: #960113;
}

/* Content Area */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  min-height: 400px;
  box-sizing: border-box;
  overflow-x: auto;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  color: #111827;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* Tables inside My Account */
.woocommerce table.my_account_orders {
  border-collapse: collapse;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce table.my_account_orders th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.woocommerce table.my_account_orders td {
  color: #4b5563;
  word-break: break-word;
}

/* Buttons */
.woocommerce .button {
  background: #960113;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
}

.woocommerce .button:hover {
  background: #7c0010;
  transform: translateY(-2px);
}

/* Messages / Alerts */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  border-left: 4px solid #960113;
}

/* Inner Tabs & Forms */
.woocommerce-MyAccount-content form {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 25px;
}

.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  border-left: 4px solid #960113;
  padding-left: 10px;
  margin-bottom: 18px;
}

/* Form Fields */
.woocommerce form .form-row {
  margin-bottom: 18px;
}

.woocommerce form .form-row label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  color: #111827;
  background: #f9fafb;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  outline: none;
  border-color: #960113;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(150, 1, 19, 0.15);
}

/* Address Section */
.woocommerce-Address {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.woocommerce-Address-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.woocommerce-Address address {
  font-style: normal;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-top: 10px;
}

.woocommerce-Address a.edit {
  display: inline-block;
  margin-top: 10px;
  background: #960113;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.woocommerce-Address a.edit:hover {
  background: #7c0010;
  transform: translateY(-2px);
}

/* Orders Table Improvements */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow-x: auto;
  display: block;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce table.shop_table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
}

.woocommerce table.shop_table td {
  color: #4b5563;
  word-break: break-word;
}

/* Hover Borders */
input.input-text:hover,
select:hover,
textarea:hover {
  border-color: #d9777f;
}

/* ========== Responsive Fixes ========== */
@media (max-width: 992px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
    gap: 20px;
  }

  .woocommerce-MyAccount-navigation {
    flex: 1 1 100%;
  }

  .woocommerce-MyAccount-content {
    flex: 1 1 100%;
    padding: 20px;
  }
  #menu-main-menu{
      gap: 20px;
  }
}

@media (max-width: 768px) {
  .woocommerce-account {
    padding: 25px 10px;
  }

  .woocommerce-MyAccount-navigation {
    display: flex;
    overflow-x: auto;
    border-radius: 10px;
    padding: 0;
  }

  .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .woocommerce-MyAccount-navigation li {
    border: none;
    flex: 1 1 auto;
  }

  .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
    padding: 10px 14px;
    text-align: center;
    font-size: 14px;
  }

  .woocommerce-MyAccount-content {
    padding: 18px;
    box-shadow: none;
  }

  .woocommerce-MyAccount-content form {
    padding: 15px;
  }

  .woocommerce form .form-row input,
  .woocommerce form .form-row select,
  .woocommerce form .form-row textarea {
    font-size: 14px;
  }

  .woocommerce form .button {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}




h1,h2,h3,h4,h5,h6{
  /* font-family: 'Cormorant Garamond', serif; */
  /* font-family: 'HvDTrial Brandon Grotesque'; */
  font-family: "Momo Trust Display", sans-serif;
    /* font-weight: 600; */
    font-weight: 400;
    line-height: 1;
}
p, span, li, a, input{
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}


h1 {
    font-size: 75px;
}

h2 {
    font-size: 75px;
}

h3 {
    font-size: 57px;
}

h4 {
    font-size: 37px;
}

h4 {
    font-size: 25px;
}

h6 {
    font-size: 24px;
}
p{
    margin: 0px;
}




/* ==========================================================
   Contact Form 7 - Custom Styling (matches WooCommerce My Account)
   Primary Color: #960113
   ========================================================== */

/* Form Container */
.wpcf7 form {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 35px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.wpcf7-form p {
  margin-bottom: 18px;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  font-size: 15px;
}

/* Text Fields, Selects, and Textareas */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  color: #111827;
  background: #f9fafb;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #960113;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(150, 1, 19, 0.15);
}

/* Placeholder Styling */
.wpcf7-form ::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
  background: #960113;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.wpcf7-form input[type="submit"]:hover {
  background: #7c0010;
  transform: translateY(-2px);
}

/* Checkbox & Radio Buttons */
.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.wpcf7-list-item-label {
  margin-left: 8px;
  color: #374151;
}

/* Success and Error Messages */
.wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.wpcf7-not-valid-tip {
  color: #b91c1c;
  font-size: 14px;
  margin-top: 4px;
}

/* Add Subtle Field Hover Effect */
.wpcf7-form input:hover,
.wpcf7-form textarea:hover,
.wpcf7-form select:hover {
  border-color: #d9777f;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .wpcf7 form {
    padding: 20px;
    border-radius: 12px;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px;
  }
}

.feature-slider{
    background-color: #396026;
}
.feature-slider p{
    color: #fff;
    text-align: center;
}


.tnm-font {
    font-family: Times New Roman;
}

.bg-font {
    font-family: Brandon Grotesque;
}

.p_200 {
    padding: 200px 0;
}

.p_160 {
    padding: 160px 0;
}

.p_120 {
    padding: 120px 30px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}
.mt-60 {
    margin-top: 60px;
}
.custom-logo-link img{
    width: 100px !important;
}
.xoo-ml-login-otp-btn, .woocommerce-Button{
    margin-top: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.woocommerce-product-search button{
    display: inline-flex !important;
}
.cta, .cta-2, .single_add_to_cart_button, .wc-block-components-button, .woocommerce-form-register__submit, .xoo-ml-login-otp-btn, .woocommerce-form-login__submit, .woocommerce-Button {
    position: relative;
    overflow: hidden;
    z-index: 9;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 13px 36px;
    transition: 0.3s ease-in-out;
}
.wc-block-components-checkout-place-order-button{
    width: 100% !important;
}
.quantity.wqpmb_quantity{
    width: 80px !important;
}
.quantity.wqpmb_quantity input{
   font-size: 16px !important;
}
.gt_switcher_wrapper{
    position: absolute !important;
    top: 0;
    right: 0 !important;
}
.gt_container--w4xy2r .gt_switcher a img{
    width: 15px !important;
    height: 15px !important;
}
.gt_container--w4xy2r .gt_switcher a{
    font-size: 12px !important;
}
.gt_option{
    height: 20px !important;
}
.cta, .single_add_to_cart_button, .wc-block-components-button, .woocommerce-form-register__submit, .xoo-ml-login-otp-btn, .woocommerce-form-login__submit, .wpcf7-submit, .woocommerce-Button{
    background: #E6C788;
    color: #000;
    border: none !important;
    border-radius: 10px !important;
   
}

.cta-2{
    background: #fff;
    color: #000;
    border: none !important;
    border-radius: 10px !important;
}
.cta:before, .cta-2:before, .single_add_to_cart_button:before, .wc-block-components-button:before, .woocommerce-form-register__submit:before, .xoo-ml-login-otp-btn:before, .woocommerce-form-login__submit:before, .wpcf7-submit:before, .woocommerce-Button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
    z-index: -1;
}
.cta:before, .single_add_to_cart_button:before, .wc-block-components-button:before, .woocommerce-form-register__submit:before, .xoo-ml-login-otp-btn:before, .woocommerce-form-login__submit:before, .wpcf7-submit:before, .woocommerce-Button:before{
    background-color: #960113;
    color: #fff !important;
}
.cta-2:before {
    background-color: #E6C788;
    color: #000 !important;
}
.cta:hover:before, .cta-2:hover:before , .single_add_to_cart_button:hover:before, .wc-block-components-button:hover:before, .woocommerce-form-register__submit:hover:before, .xoo-ml-login-otp-btn:hover:before, .woocommerce-form-login__submit:hover:before, .wpcf7-submit:hover:before, .woocommerce-Button:hover:before {
    left: 0;
}
.cta:hover, .single_add_to_cart_button:hover, .wc-block-components-button:hover, .woocommerce-form-register__submit:hover, .xoo-ml-login-otp-btn:hover, .woocommerce-form-login__submit:hover, .wpcf7-submit:hover {
    color: #fff;
}
.cta-2:hover {
    color: #000;
}
.reset_variations{
    display: none !important;
}
section.home-category-wrapper {
    padding: 80px 30px;
}
.woocommerce-variation-add-to-cart{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.product-category-slider{
    display: flex !important;
    align-items: center;
    flex-direction: column;
}
.wp-block-woocommerce-product-filter-taxonomy, .wp-block-woocommerce-product-filter-price{
    padding: 0 !important;
}
.wc-block-product-filter-checkbox-list__item {
    margin-bottom: 7px !important;
}
.woocommerce-error{
    list-style-type: none !important;
}
.single-product .woocommerce-Price-amount.amount{
    font-size: 30px !important;
    /* display: inline-block !important; */
    margin: 0px 0px 20px !important; 
}
.single-product .related.products .woocommerce-Price-amount.amount{
    font-size: 22px !important;
    /* display: inline-block !important; */
    margin: 0px 0px 10px !important;
}
.single-product .xoo-wsc-container .woocommerce-Price-amount.amount{
    font-size: 22px !important;
}
.woocommerce-ordering select{
    padding: 5px;
}
.product-category-slider a{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.qty{
    height: 100% !important;
    width: 100% !important;
    padding: 7px;
    text-align: center;
}
.p_140 {
    padding: 140px 0px;
}

.p_120 {
    padding: 120px 30px;
}
.custom-logo-link, .navbar-brand{
    width: 90px;
}
a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}
.slider-categoty-title {
    font-size: 17px;
    text-align: center;
    width: 130px;
    line-height: 1.4;
}
#menu-main-menu{
    align-items: center;
    gap: 20px;   
}
#menu-main-menu .nav-link{
    color: #000 !important;
}
.contact-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.contact-wrapper input, .contact-wrapper textarea{
     border: 1px solid #ddd !important;
    padding: 10px !important;
    margin-bottom: 10px;
    width: 100%;
}
.contact-wrapper-inner1, .contact-wrapper-inner2{
    flex: 1 1 50%;
}
.mobile-search-bar{
    display: none;
}
.desktop-search-bar{
    display: inline-block;
}
.post-type-archive-product .quantity{
    display: none !important;
}
.post-type-archive-product .variations .label{
    display: none !important;
}
/* Auth Container Styles */
.khatu-mart-auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.categorywise-product-slider{
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
}
.categorywise-product-slider-wrapper .woocommerce-Price-amount.amount{
    margin-bottom: 10px;
    font-size: 18px !important;
    /* display: inline-block; */
}
.categorywise-product-slider-title-wrapper{
    margin-bottom: 10px !important;
}
.categorywise-product-slider-wrapper .products{
    padding: 0 !important;
}
.categorywise-product-slider-wrapper .slick-slide>div{
    padding: 0 10px !important;
    height: 100%;
}
.categorywise-product-slider-wrapper .slick-slide>div>div{
    height: 100%;
    padding: 0 !important;
}
.categorywise-product-slider-wrapper-main{
    padding-top: 0 !important;
}
.categorywise-product-slider-wrapper .slick-track{
    display: flex;
}
.categorywise-product-slider-wrapper .slick-slide{
    height: auto !important;
}
/* Tab Styles */
.auth-tabs {
    border: none;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 0;
}
.xoo-ml-low-back.button.btn{
    background: none !important;
}
.about-features-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
     gap: 10px;
}
.about-features-inner img{
    width: 100px;
    height: 100px;
}
.about-features-inner p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    max-width: 190px;
    text-align: center;
}
.about-features{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.about-features-wrapper{
    padding: 50px;
}
.about-features-wrapper h3{
    text-align: center;
    color: #960113;
    margin-bottom: 40px;
}
.about-sec2, .about-sec1{
    padding: 50px;
}
.about-sec1 img, .about-sec2 img{
    width: 350px;
    max-width: 100%;
}
.about-sec2 h3, .about-sec1 h3{
    color: #960113;
    font-size: 30px !important;
    line-height: 40px;
}
.about-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-cta-wrapper{
    background: linear-gradient(45deg, #FAD181, #E66E20);
}
.about-cta img{
    margin-top: -10px;
    margin-bottom: -10px;
}
.about-cta-img-warpper{
    width: 200px;
}
.about-cta-inner h3{
    color: #960113;
    font-size: 30px;
    line-height: 40px;
    max-width: 600px;
}
.about-cta-inner p{
    color: #960113;
    font-size: 20px;
    line-height: 30px;
}
#customer_login{
    display: flex;
    flex-direction: column;
    max-width: 1100px !important;
    margin: auto !important;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
#customer_login .woocommerce-form.woocommerce-form-register.register{
    display: block !important;
}
#customer_login .u-column1, #customer_login .u-column2{
    width: 50% !important;
}
.woocommerce-Address{
   width: 100% !important; 
}
#customer_login input{
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
}
.woocommerce-ResetPassword input{
     border: 1px solid #ddd;
    padding: 10px;
}
#customer_login input:focus-visible {
    border: 1px solid #000 !important;
    outline: none !important;
}
#customer_login button.button.btn.xoo-ml-low-back{
    color: #000;
    padding: 0;
    margin: 0;
    display: block;
    margin-top: 50px;
}
#customer_login .select2-container--default .select2-selection--single{
     border: 1px solid #ddd !important;
}
#customer_login .woocommerce-privacy-policy-text p, #customer_login .woocommerce-privacy-policy-text a{
    font-size: 14px;
    margin: 20px 0px;
    color: darkgray;
}
 #customer_login .woocommerce-privacy-policy-text a{
     text-decoration: underline;
 }
#customer_login .xoo-ml-inline-verify{
     color: #960113 !important;
 }
#customer_login .woocommerce-form-row{
     margin-bottom: 15px !important;
 }
#customer_login label{
     min-width: 120px;
     font-size: 15px !important;
     margin-bottom: 5px;
 }
#customer_login .select2.select2-container{
     min-width: 100px !important;
     height: 40px !important;
     line-height: 40px !important;
 }
#customer_login .woocommerce-form-login__rememberme{
     width: 100% !important;
    margin-bottom: 20px !important;
 }
.show-password-input:before{
     content: "";
     height: 20px;
     width: 20px;
     display: inline-block;
     background: url(https://thekhatumart.com/wp-content/uploads/2025/10/eye.png);
     background-size: contain;
     background-repeat: no-repeat;
 }
.show-password-input{
     background: none !important;
    padding: 0 !important;
    border: 0 !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
 }
.password-input{
     display: block !important;
     position: relative;
 }
#customer_login .woocommerce-form__input.woocommerce-form__input-checkbox{
     width: auto !important;
 }
 .header-search-bar{
     padding: 0px 30px;
 }
 .header-search-bar input {
    border: 1px solid #000 !important;
    border-radius: 20px !important;
    color: #000 !important;
    padding: 10px;
    min-width: 230px;
}
.header-search-bar button {
    font-size: 0px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}
.header-search-bar .woocommerce-product-search{
    display: flex;
    gap: 7px;
    align-items: center;
}
.header-search-bar button:after {
    content: "";
    background-image: url(https://thekhatumart.com/wp-content/uploads/2025/10/search-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    display: inline-block;
}
.header-search-bar input:focus-visible {
   outline: none !important;
}
.woocommerce-LostPassword.lost_password{
     margin-top: 20px !important;
 }

 .privacy-container{
     max-width: 1000px;
     padding: 0px 20px;
     margin: auto;
 }
 .privacy-container p{
     margin-bottom: 10px;
     font-weight: 400;
     font-family: 'Poppins', sans-serif;
 }
 .privacy-container li{
     margin-bottom: 10px;
 }
 .privacy-container h1{
     text-align: center;
     margin-bottom: 50px;
 }
 .privacy-container ul, .privacy-container ol{
     margin-top: 30px;
 }
  .privacy-container a{
     color: #960113;
 }
.auth-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.auth-tabs .nav-link {
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.2rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
}

.auth-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.auth-tabs .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    position: relative;
}

.auth-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Tab Content */
.auth-tab-content {
    padding: 2.5rem;
}

.auth-form {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Styles */
.method-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.input-group-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

.country-code {
    min-width: 100px;
}

.form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: #f8f9fa;
}

.form-control:focus {
    background: white;
    box-shadow: none;
}

/* Buttons */
.btn {
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(86, 171, 47, 0.4);
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}
.archive .cfvsw-swatches-container{
        padding: 10px 10px 0px !important;
    }
.btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Divider */
.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}
.home-category-slider img {
    display: block;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.home-category-wrapper h2 {
    font-size: 35px;
    line-height: 45px;
    color: #960113;
    text-align: center;
    margin-bottom: 40px;
}
.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Form Check */
.form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.form-check-label {
    color: #555;
    font-weight: 500;
}

/* Links */
.forgot-password-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Privacy Notice */
.privacy-notice {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .khatu-mart-auth-container {
        padding: 1rem;
    }
    
    .auth-tab-content {
        padding: 1.5rem;
    }
    
    .auth-tabs .nav-link {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
}

/* Loading Animation */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* hedaer css start here */

.site-header {
    background-color: #fff;
    padding: 8px 50px;
}
.glo-cta-section{
    margin-bottom: 80px;
}
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin-bottom: 0;
    padding: 0px;
}

.nav-left a,
.nav-right a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -40px;
    background-color: #fff;
    display: none;
    list-style: none;
    padding: 10px 0;
    z-index: 999;
    min-width: 100%;
    width: 230px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
/* Custom Login/Signup Styles */
.khatu-mart-login-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.login-signup-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-tabs .nav-tabs {
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    padding: 0;
}

.auth-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 20px 30px;
    font-weight: 600;
    color: #6c757d;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.auth-tabs .nav-tabs .nav-link i {
    margin-right: 8px;
}

.auth-tabs .nav-tabs .nav-link.active {
    color: #007cba;
    background: #fff;
    border-bottom: 3px solid #007cba;
}

.auth-tabs .nav-tabs .nav-link:hover {
    color: #007cba;
    border-bottom: 3px solid #007cba;
}

.tab-content {
    padding: 40px;
}

.auth-form h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 30px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.auth-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 0.2rem rgba(0, 124, 186, 0.25);
}

.auth-form .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-form .remember-me {
    margin-bottom: 0;
}

.auth-form .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.auth-form .woocommerce-form__input-checkbox {
    margin-right: 8px;
}

.auth-form .lost-password a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
}

.auth-form .lost-password a:hover {
    text-decoration: underline;
}

.auth-form .btn-primary {
    background: #007cba;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.auth-form .btn-primary:hover {
    background: #005a87;
    transform: translateY(-2px);
}

.auth-form .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

/* Social Login Styles */
.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.social-login .divider::before,
.social-login .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.social-login .divider span {
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}


/* Firebase Auth Styles */
.phone-verification-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #e1e1e1;
}

.verification-message {
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    display: none;
}

.verification-message.message-info {
    background: #e7f3ff;
    color: #0073aa;
    border: 1px solid #b3d7ff;
}

.verification-message.message-success {
    background: #f0fff2;
    color: #46b450;
    border: 1px solid #b8e6bf;
}

.verification-message.message-error {
    background: #ffe7e7;
    color: #dc3232;
    border: 1px solid #ffb3b3;
}

.phone-login-option {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e1e1e1;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

.otp-input-group input {
    flex: 1;
}

.otp-input-group button {
    white-space: nowrap;
}

/* Responsive design */
@media (max-width: 768px) {
    .otp-input-group {
        flex-direction: column;
    }
    
    .otp-input-group button {
        width: 100%;
    }
}


.social-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-btn:hover {
    border-color: #007cba;
    color: #007cba;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .khatu-mart-login-wrapper {
        padding: 40px 0;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .auth-tabs .nav-tabs .nav-link {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .auth-form .form-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .social-buttons {
        flex-direction: column;
    }
}

/* Error and Success Messages */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid;
}

.woocommerce-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.woocommerce-message {
    background: #d1ecf1;
    border-color: #007cba;
    color: #0c5460;
}

.woocommerce-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}
.dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    color: #000;
}

/* Book Now Button */
.book-now {
    background-color: #D6B16A;
    color: #000;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 600;
    text-decoration: none;
}
/* Pagination Styles */
.woocommerce-pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination-wrapper .pagination {
    justify-content: center;
    flex-wrap: wrap;
}

.pagination-wrapper .page-item {
    margin: 0 5px;
}

.pagination-wrapper .page-link {
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background-color: #E6C788;
    color: white;
    border-color: #E6C788;
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #E6C788;
    border-color: #E6C788;
    color: white;
}

.pagination-wrapper .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pagination-wrapper .page-item {
        margin: 2px;
    }
    
    .pagination-wrapper .page-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}
.dropdown>a {
    position: relative;
}

.dropdown>a:after {
    position: absolute;
    margin-left: 4px;
    content: "";
    background-image: url("../img/down-arrow.png");
    width: 14px;
    height: 8px;
    top: 50%;
    transform: translateY(-32%);
}

nav.nav-bar li a {
    font-weight: 330;
    font-size: 20px;
    line-height: 100%;
}

nav.nav-bar li a:hover {
    color: #aa8d6b;
}

/* banner sec start here */

.banner-sec .banner-content {
    color: #fff;
    margin: auto !important;
        display: block !important;
}

.banner-sec .banner-content p {
    max-width: 500px;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
}

/* welocome section start here */

.welcome-sec {
    position: relative;
    overflow-x: hidden;
}


.welcome-right-content.zoom-in-up.hidden.piller_sikn p {
    font-size: 22px;
    line-height: 31px;
}
.welcome-sec .row {
    align-items: center;
}

.welcome-sec .row .welcome-right-content {
    max-width: 592px;
    margin-left: auto;
}


/* services-sec start here */

.grn-bg {
    background: #17253B;
    color: #fff;
}
.season_point {
    padding: 40px 35px;
    border: 1px solid #1621321C;
    height: 100%;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.services-box .service-type {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 0 15px;
}

.services-box .service-type .service-dis {
    max-width: 335px;
}

.services-box .service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.our-services-head {
    text-align: center;
}

.services-right.service-list {
    padding-top: 67px;
}

.services-btn {
    text-align: center;
    margin-top: 50px;
}

.services-btn a:hover {
    background-color: #E6C788;
    color: #000;
}

.our-services-sec .row {
    --bs-gutter-x: 111px;
}

.glo-moment-section {
    padding: 80px 0 110px;
}
.error-404-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: center;
    padding: 50px 20px;
}

.error-content h1 {
    font-size: 120px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1;
}

.error-content h2 {
    font-size: 32px;
    color: #666;
    margin: 20px 0;
}

.error-content p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.error-actions {
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #007cba;
    color: white;
}

.btn-primary:hover {
    background: #005a87;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.search-form {
    margin: 40px 0;
}

.search-form p {
    margin-bottom: 15px;
}

.recent-posts {
    margin-top: 40px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.recent-posts h3 {
    text-align: center;
    margin-bottom: 15px;
}
/* OTP Login/Signup Styles */
.khatu-mart-login-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 60px 0;
}

.login-signup-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-tabs .nav-tabs {
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.auth-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    color: #6c757d;
    font-weight: 500;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.auth-tabs .nav-tabs .nav-link.active {
    background: white;
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.auth-tabs .nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.8);
    color: #0056b3;
}

.auth-form {
    padding: 40px;
}

.auth-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.input-group-text {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    color: #6c757d;
}

.form-control {
    border: 1px solid #ced4da;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.btn-block {
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.alert {
    border-radius: 8px;
    border: none;
    padding: 12px 15px;
}

.alert-danger {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: rgba(40,167,69,0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
}

#login-timer, #register-timer {
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

#login-resend-otp, #register-resend-otp {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

#login-resend-otp:hover, #register-resend-otp:hover {
    text-decoration: underline;
}

.switch-to-password {
    color: #6c757d !important;
    text-decoration: none;
}

.switch-to-password:hover {
    color: #007bff !important;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-form {
        padding: 30px 20px;
    }
    
    .auth-tabs .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Animation for OTP section */
#login-otp-section, #register-otp-section {
    transition: all 0.3s ease-in-out;
}

/* Input focus effects */
.input-group:focus-within .input-group-text {
    border-color: #007bff;
    background: #e3f2fd;
    color: #007bff;
}

.recent-posts ul {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.recent-posts a {
    text-decoration: none;
    color: #333;
}

.recent-posts a:hover {
    color: #007cba;
}

/* Responsive */
@media (max-width: 768px) {
    .error-content h1 {
        font-size: 80px;
    }
    
    .error-content h2 {
        font-size: 24px;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}
.moment-text {
    max-width: 474px;
}

.moment-text b {
    font-weight: 400;
}

.moment-btn {
    text-align: right;
    padding-right: 60px;
}

.woodstock-image {
    text-align: right;
    width: 90%;
    margin-left: auto;
}

.experience-box h6 {
    font-family: 'HvDTrial Brandon Grotesque';
    font-weight: 420;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

.experience-box {
    max-width: 427px;
    background: #BB8487;
    text-align: center;
    padding: 21px 50px;
}

.experience-box p {
    font-weight: 330;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
    margin: 0;
}


.button-group a {
    display: inline-block;
    background: #15181D;
    width: 100%;
    max-width: 427px;
    margin-top: 30px;
    color: #fff;
    font-weight: 420;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    padding: 20px;
    border: 0;
    outline: unset;
    transition: background-color 0.3s ease;
    text-align: center;
}

.woodstock-wrapper {
    padding-top: 40px;
}

.button-group a:hover {
    background-color: #bb8487;
}

.reviews-section h3 {
    color: #fff;
    max-width: 420px;
    line-height: initial;
}

.image-slider {
    display: flex;
}

.slider-section {
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 100px;
}

.slider-section h4 {
    text-align: center;
    margin-bottom: 16px;
}

.image-slider .slick-list.draggable {
    padding: 0px 12%;
}

.Toggle-mobile {
    display: none;
}

.image-box img {
    width: 100%;
    object-fit: cover;
}

.slider-section .slick-arrow {
    left: 170px;
    right: 0;
    z-index: 999;
    background-color: #e6c788;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-section .slick-arrow:before {
    display: none;
}

.slider-section button.slick-next.slick-arrow {
    right: 170px;
    left: auto;
}

.reviews-section p {
    color: #fff;
}

.reviews-content p {
    max-width: 370px;
    font-weight: 400;
}

.reviews-content a.cta {
    margin-top: 35px;
}

.section-bg {
    padding: 110px 123px;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding-left {
    padding-left: 40px;
}

.reviews-box {
    background: #FFFFFF;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-star {
    margin-top: auto;
}

.reviews-box p {
    color: #000;
    font-weight: 330;
    line-height: 30px;
}

.story-content {
    max-width: 474px;
    margin: auto;
}

.our-story .row {
    align-items: center;
}

.story-content b {
    font-weight: 400;
}

.story-content p {
    line-height: 1.4;
}

.our-story {
    position: relative;
}
.season_point img {
    animation: blink 1s infinite alternate, changeImage 0s 3s forwards;
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
}
@keyframes blink {
    from { opacity: 1; scale: 1; }
    to   { opacity: 0.8; scale: .9; }
  }
.readyup_btn .cta:hover:nth-child(2) {
    border: 1px solid #00000000;
}

.our-space-txt h2 {
    color: #F9F3ED;
    text-align: center;
}

.our-space-txt p {
    color: #F9F3ED;
    text-align: center;
    font-weight: 330;
    font-size: 26px;
    line-height: 36px;

}

.our-space-txt {
    max-width: 774px;
    margin: auto;
}

.our-space {
    background-repeat: no-repeat;
    background-size: cover;
}

.digital-lavender {
    height: 764px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.team-section {
    padding: 100px 0;
}

.team-heading {
    max-width: 720px;
    text-align: center;
    margin: auto;
    padding-bottom: 50px;
}

.team-details {
    text-align: center;
    padding-top: 20px;
}

.team-details p {
    color: #A57C59;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}

.team-details h4 {
    margin-bottom: 3px;
}

.join-inner-circle {
    padding-bottom: 110px;
    text-align: center;
    padding-top: 60px;
}

.inner-circle-text {
    max-width: 800px;
    margin: auto;
}

.inner-circle-text b {
    font-weight: 400;
    margin-top: 30px;
    display: block;
}

.inner-circle-text .cta {
    margin-top: 30px;
}

.bg-image {
    padding: 87px 100px;
    color: #fff;
    background-color: #BB8487;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.glo-cta-section h2 {
    max-width: 390px;
    line-height: initial;
}

.glo-cta-content {
    max-width: 515px;
}

.glo-cta-content strong {
    padding-top: 30px;
    display: block;
}

.glo-cta-content a.cta {
    margin-top: 30px;
}

footer {
    padding-top: 97px
}

.copy-right p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    text-align: center;
}

.copy-right {
    border-top: 1px solid #FFFFFF1C;
    padding: 25px 0;
    margin-top: 80px;
}

.location-data p {
    margin-bottom: 35px;
}

.location-data li {
    line-height: 1.6;
}

.footer-content p {
    font-weight: 500;
    font-size: 22px;
    line-height: 31px;
    color: #fff;
}

.footer-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-content a {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

footer .row {
    justify-content: space-between;
}

.location-data p {
    font-weight: 330;
    font-size: 18px !important;
    line-height: 28px;
    max-width: 230px;
    margin-bottom: 35px !important;
}

.location-data a {
    text-decoration: underline;
}

.banner-sec {
    background-repeat: no-repeat;
    background-size: cover;
}

.star-img {
    margin-bottom: 9px;
    display: flex;
}

.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: all 0.6s ease;
}

.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ----------------------   2nd page css start  --------------------- */

.inner-banner .banner-content {
    max-width: 780px;
    margin: auto;
}
.inner-banner {
    padding: 167px 0;
}

.inner-banner h3 {
    margin: 0;
}
.skin-matter p {
    max-width: 895px;
    font-weight: 400;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}
.piller_service {
    max-width: 499px !important;
}
.piller_season {
    max-width: 596px !important;
}
.piller_sesonpara {
    max-width: 413px;
}
.piller_sesonpara p {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 34px;
}
.piller_sesonalsikll {
    padding: 120px 0px;
}
.sesonal_main {
    margin-top: 60px;
}
.season_point h4 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 400;
}
.wp-block-woocommerce-checkout{
    padding-top: 0 !important;
}
.wc-block-components-checkout-order-summary__title{
    margin-top: 10px !important;
}
.season_point p {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    font-weight: 330;
    max-width: 262px;
}
.golden_color h4 {
    color: #A57C59;
}
.glo_methodmian p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
}
.golden_color {
    margin-top: 35px;
    margin-bottom: 30px;
}
.glo_methodmian {
    max-width: 930px;
    margin: auto;
}
img.eshapeimg {
    z-index: 1;
    position: relative;
}
.shapeafter{
    position: relative;
}
.piller_glostock {
    padding-bottom: 140px;
}
.blueoverlay_sect{
    background-image: url("../img/bluroverlay.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
}
.blueoverlay_sect {
    padding: 120px 0px;
}
.blueoverlay_title {
    color: #fff;
    font-size: 26px;
    line-height: 36px;
}
.mythtruthmain {
    display: flex;
    justify-content: center;
    border: 1px solid #E6C78838;
    padding: 0px;
}
.myth {
    flex: 50%;
    border-right: 1px solid #ffffff47;
}
.headermyth {
    display: flex;
    align-items: center;
    gap: 9px;
}
.headermyth h4 {
    font-size: 30px;
    line-height: 100%;
}
.headermyth img {
    width: 31px;
}
.truthlogo {
    background: #E6C788;
    padding: 15px;
    text-align: center;
    margin-right: .4px;
}
.headermyth {
    background: #fff;
    padding: 25px 36px;
}
.bodymth p {
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}
.bodymth {
    padding: 25px 36px;
    background: #29303ad9;
    border-bottom: 1px solid #ffffff47;
    min-height: 103px;
    display: flex;
    align-items: center;
}
.bodymth:last-child {
    border-bottom: 0px solid #E6C78838;
}
.mythtruthmain p {
    margin: 0px;
}

.col-md-6.pading_0px {
    padding: 0px;
    top: 2px;
    position: relative;
}
.truthmain {
    flex: 50%;
}
.marginbottongrt {
    margin-bottom: 55px;
}
.onlybedimage_sect{
    background-image: url("../img/doublebad.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}
.faq_pillerpage {
    padding: 120px 0px;
}
a.cta.faq_cta img {
    margin-right: 7px;
}
.woodstock-image.shapeafter {
    padding-left: 80px;
}

.faq-container {
    max-width: 1100px;
    margin: 50px auto;
  }
  .faq-item {
    border: 1px solid #4C3F3E1C;
    padding: 30px 32px;
    margin-bottom: 27px;
    border-radius: 5px;
}
.service-arrow img:hover {
    cursor: pointer;
    padding-left: 10px;
    transform: translate(4px, 0px);
}
  .faq-item.active {
    border-color: #e6c788;
    border-width: 2px solid;
  }
.faq-item:last-child {
    margin-bottom: 0px;
}
.faq-answer {
    font-size: 20px;
    color: #000000c9;
    font-weight: 400;
}
  .faq_custommain .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
  .faq_custommain .faq-answer {
    display: none;
    padding-top: 10px;
}
.onhoverzoom:hover {
    transform: scale(1.1);
}
  .faq_custommain .icon {
    width: 20px;
    height: 20px;
}
.faq_custommain .faq-question {
    gap: 10px;
}
  .readytoup_inner{
    background-image: url("../img/ready-to-glo-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 75px 103px;
    background-color: #BB8487;
}
  .innerp-readtup b {
    font-size: 28x;
}
.readyup_btn .cta:nth-child(2) {
    background: transparent;
    border: 1px solid #000;
}
.readyup_btn {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}


/* -----community connection css------- */
.community_para p:nth-child(2) {
    margin-bottom: 50px;
}
.community_bannerb-btn.text-center {
    padding-bottom: 120px;
    border-bottom: 1px solid #4C3F3E1C;
    margin-bottom: 100px;
}
.why_inner_glo_main {
    background: #15181D;
    padding: 34px 42px;
}
.why_inner_glo_main {
    display: flex;
    align-items: center;
    gap: 40px;
}
.profileheatc_content h4 {
    font-size: 30px;
    line-height: 100%;
}
.profileheatc_content p {
    font-size: 18px;
    line-height: 25px;
}
.why_iner_glow p {
    font-size: 22px;
}
.why_iner_glow {
    max-width: 425px;
    margin-left: 0px;
}
.welcome-left-content.client_love {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why_iner_glow {
    padding-top: 45px;
}
.client_storycenter {
    align-items: center;
    display: flex;
}
section.meet_owner_sect .container {
    max-width: 1450px;
}
.community_team_sect {
    background: #BB8487;
    margin-top: 140px;
}
.teamdetails_gkoteam p {
    color: #EFEBCE;
}
.bool_party h6 {
    color: #BB8487;
}
.bool_party{
   margin-top: 45px;
}
.vibes_content p {
    font-size: 18px;
}
.vibes_content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    margin-top: 20px;
}
.party_btn {
    margin-top: 70px;
}
.girlfriend_main {
    padding-left: 60px;
}
section.girl_saloon_sect .container {
    max-width: 1320px;
}
.button-group.partner_grp a {
    background: #D7CE93;
    color: #000;
}
.button-group.partner_grp a:hover {
    background: #BB8487;
    color: #fff;
}
.blueoverlay_title.comm_conn_main {
    max-width: 1000px;
    margin: auto;
}
.woodstock-image.commconnectin_main {
    padding-left: 70px;
}
.innerp-readtup p {
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
}
.communitypagereview {
    position: relative;
}
/* ------------about page------------ */
.about_title h6 {
    letter-spacing: -.2px;
    color: #D8A48F;
    font-weight: 400;
}
.about_title {
    max-width: 770px;
    margin: auto;
    margin-bottom: 120px;
}
.meet_owner_sect {
    padding: 120px 0px;
    background: #17253B;
}
.meet_Titles h6 {
    transform: rotate(271deg);
    min-width: 260px;
    text-align: center;
    color: #fff;
}
.meet_Titles {
  display: flex;
  align-items: center;
}
.meet_Titles_main {
    display: flex;
     align-items: center;
    justify-content: right;
}
.meet_owner_image img {
    width: 100%;
}
.about_owner_cnt h5 {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}
.meet_owner_btn {
    margin-top: 60px;
    text-align: center;
}
.meet_owner_image {
    padding: 0px 55px;
}
.meet_owner_image::before {
    position: absolute;
    content: "MEET THE OWNER";
    font-size: 24px;
    color: #fff;
    line-height: 34px;
    font-weight: 500;
    transform: rotate(270deg);
    top: 0;
    bottom: 0;
    margin: auto;
    left: 90px;
}
.meet_owner_image{
    position: relative;
}
.readytoup_sect.about_readyup {
    padding-top: 120px;
}
.blo_spa_bg{
    background-image: url("../img/glo_spa.png");
    height: 100vh;
}
.glo_bannner_bg{
    background-image: url("../img/glo-banner-bg.png");
    height: 100vh;
}
.glospa_about{
    background-image: url("../img/glospaaboutbg.png");
    height: 100vh;
}






.welcome-right-content p {
  font-size: 16px;
  line-height: 26px;
}
.our-services-head p {
  font-weight: 400;
}
.service-list {
  gap: 80px;
}
.service-dis p {
  font-weight: 400;
}
.service-dis h4 {
  font-weight: 500;
}
.glo-features {
  background-color: #15181d;
  color: #fff;
}
.glo-features-2 {
  background-color: #d7ce93;
  color: #000;
}
.feature-toggle.active {
  background-color: #bb8487;
  color: #fff;
}
.feature-toggle:hover {
  background-color: #bb8487;
  color: #fff;
}
.feature-toggle {
  padding: 14px 30px;
  transition: all 0.5s ease;
  cursor: pointer;
  margin-bottom: 40px;
  text-align: center;
}
.feature-toggle:hover {
  transition: all 0.5s ease;
}
.feature-toggle:last-child {
  margin-bottom: 0px;
}
.feature-toggle h6 {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
}
.feature-toggle p {
  max-height: 0;
  padding-top: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding-top 0.5s ease;
  opacity: 0;
}
.feature-toggle.active p {
  max-height: 200px;
  opacity: 1;
  padding-top: 10px;
}
.glo-cta-content p:first-child {
  font-weight: 400;
}
.footer-content ul {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.footer-logo img {
  width: 100px;
}
.footer-content .location-data {
  gap: 10px !important;
}
.review-slider {
  display: flex;
}
.reviews-box {
  height: 100%;
}
.box-review-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.banner-sec .banner-slider {
  max-width: 1074px;
  margin: auto;
}
.banner-sec .slick-dots li button:before {
  font-size: 14px !important;
  color: #fff !important;
  opacity: 0.5 !important;
}
.banner-sec .slick-dots {
  bottom: -170px;
}
.banner-sec .slick-dots li.slick-active button:before {
  opacity: 1 !important;
}
.reviews-section .review-slider,
.reviews-section .slick-track,
.reviews-section .slick-list,
.reviews-section .slick-slide {
  height: 100% !important;
}
.reviews-section .slick-slide > div {
  height: 100%;
}
.reviews-section .slick-slide > div {
  padding: 0 10px;
}
.reviews-section .slick-arrow:before {
  display: none;
}
.reviews-section .slick-arrow {
  background: #000;
  padding: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-item h6 {
  margin: 0;
}
.why_inner_glo_main img {
  width: 60px;
}
.custom-bullet {
  list-style: none;
  padding-left: 1.2em;
  line-height: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.custom-bullet li::before {
  content: "•";
  font-weight: 300;
  display: inline-block;
  width: 1em;
  margin-left: -1.2em;
}
.aging-sec p {
  max-width: 750px;
  margin: auto;
  margin-top: 10px;
}
.treatment-que {
  color: #fff;
}
.treatment-que-sub {
  background-color: #e6c78817;
  border: 1px solid #e6c78838;
  padding: 40px 20px;
  height: 100%;
}
.treatment-que-sub img {
  min-width: 60px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 40px;
}
.spa-service-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.spa-service-right {
  padding-top: 100px;
}
.spa-service-type h4 {
  font-weight: 700;
}
.spa-service-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.spa-service-left {
  margin-right: 25px;
}
.spa-service-right {
  margin-left: 25px;
}
.spa-services .container {
  max-width: 1200px;
}
.facial-details-inner {
  border: 1px solid #4c3f3e1c;
  padding: 35px 20px;
  height: 100%;
}
.facial-details-img {
  background-color: #e6c78840;
  border-radius: 50%;
  padding: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.facial-details-img img {
  max-width: 35px;
  max-height: 35px;
  object-fit: contain;
}
.fd-price {
  color: #bb8487;
  font-weight: 500;
  font-size: 18px;
}
.facial-details-inner h6 {
  font-weight: 700;
}
.fd-desc {
  font-size: 18px;
  line-height: 26px;
}
.wx-info p {
  max-width: 500px;
}
.wd-pricing-column {
  background: #e6c7880f;
  padding: 20px;
  height: 100%;
}
.wd-pricing-column h6 {
  font-weight: 600;
  margin-bottom: 15px;
}
.wd-pricing-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wd-pricing-column li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 18px;
  margin-left: 25px;
}
.wd-pricing-column li span:last-child {
  font-weight: 400;
}
.wd-pricing-column li::before {
  content: "";
  background-image: url("../img/wd-tick.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin-left: -25px;
  margin-top: 5px;
}

.boot-intro-text {
  text-align: center;
  max-width: 700px;
  margin: 0px auto 40px;
}
.bootcamp-service-card {
  border: 1px solid #4C3F3E1C;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bootcamp-service-card h6 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.glo-bt-bundles {
  background-color: #1a2735;
  color: white;
  text-align: center;
}
.glo-bt-bundles h3{
  font-size: 50px;
  line-height: 60px;
}
.glo-bt-bundles h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  line-height: 1.4;
}
.bt-bundle-card {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  background-color: #fff;
  color: #000;
  padding: 30px 25px;
  border: 1px solid #000;
  text-align: left;
  height: 100%;
}
.bt-bundle-card h4 {
  font-size: 22px;
  line-height: 29px;
  font-weight: 600;
  margin-bottom: 15px;
}
.bt-bundle-card .bt-amount {
  font-size: 27px;
  color: #BB8487;
  font-weight: 500;
  margin-bottom: 10px;
}
.bt-bundle-card .desc {
  font-size: 19px;
  font-weight: 300;
}
.bt-program-info p{
  padding-left: 30px;
  text-align: left;
}
.product-div{
  border: 1px solid #4C3F3E1C;
}
.spa-services-box-last{
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 500px;
}
.spa-services-box-last img{
  max-width: 100%;
  width: 300px;
}


/* product styling */
.spa-product-view-details a{
  display: block;
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  border-top: 1px solid #4C3F3E1C;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
.spa-product-div{
  transition: 0.5s;
  border: 1px solid #4C3F3E1C;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
}
.spa-product-div:hover{
  box-shadow: 5px 12px 22px 0px rgba(0, 0, 0, 0.09);
  z-index: 2;
  transition: 0.5s;
  border-color: #E6C788;
}
.spa-product-div:hover .spa-product-view-details a{
  background-color: #E6C788;
  transition: 0.5s;
  border-top: 1px solid #E6C788;
}
.spa-product-view-details{
  width: 100%;
}
.spa-product-img{
  max-height: 220px;
  max-width: 220px;
  object-fit: contain;
}
.spa-product-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.spa-product-div-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  position: relative;
}
.spa-product-title{
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
}
.spa-product-title a{
  font-family: 'Cormorant Garamond', serif;
    font-weight: 800;
    font-size: 18px;
}
.spa-product-price{
  color: #BB8487;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
}
.product-count{
  font-weight: 300;
  font-size: 16px;
}
.product-sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.spa-product-grid-title h2{
  font-size: 50px;
  line-height: 60px;
}
.filter-items {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}
.cat-filter.filter-active .filter-items {
  max-height: 600px;
  opacity: 1;
  padding: 20px;
}
.filter-inner:first-child{
  margin-top: 0;
}
.filter-inner{
  border: 1px solid #4C3F3E1C;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.filter-title{
  background-color: #BB848712;
  padding: 10px 20px;
  cursor: pointer;
}
.filter-title h6{
  margin: 0;
  font-size: 22px;
}
.filter-items{
  list-style-type: none;
}
.filter-items label{
  font-size: 17px;
  line-height: 29px;
}
.filter-items label input{
  margin-right: 5px;
}
.filter-items li{
  margin-bottom: 5px;
}
.sort-drop{
  border: 1px solid #4C3F3E1C !important;
  background: none !important;
  border-radius: 0 !important;
  color: #000 !important;
}
.sort-drop button:focus-visible, .sort-drop button:focus{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.sort-drop .dropdown-menu{
  right: 0 !important;
  left: unset !important;
}
.sort-drop .dropdown-item:active{
  background-color: transparent !important;
  color: #000 !important;
}
.navbar{
 width: 100%;   
 padding: 0 !important;
}

/* Product Detail Page */
.pd-share-tab{
  margin: 20px 0px;
}
.pd-share-tab img{
  min-width: 15px;
  max-height: 15px;
  object-fit: contain;
}
.prdct-add-to-cart{
  border: none;
  background: #E6C788;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  width: 300px;
  max-width: 100%;
}
.prdct-quantity-inner{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.prdct-like{
  border: 2px solid #E6C788;
  padding: 5px;
  border-radius: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.prdct-like:hover{
  background-color: #E6C788;
  transition: 0.3s;
}
.prdct-live-detail>div{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.prdct-live-detail>div img{
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}
.prdct-quantity-btn{
  display: flex;
  align-items: center;
  border: 1px solid #4C3F3E1C;
  height: 100%;
  width: fit-content;
}
.prdct-quantity-btn button, .prdct-quantity-btn input{
  border: none;
  background: none;
  padding: 8px 10px;
  width: 50px;
  text-align: center;
  height: 100%;
}
.prdct-quantity-btn input{
  width: 70px !important;
}
.prdct-quantity-btn input:focus-visible{
  outline: none !important;
  border: none !important
}
.prdct-live-detail p{
  font-size: 16px;
  line-height: 30px;
}
.pd-share-text{
  font-weight: 500;
  font-size: 20px;
}
.pd-share-text-inner{
  display: inline-flex;
  gap: 20px;
  margin-left: 20px;
}
.pd-price{
  margin: 30px 0 20px;
  font-weight: 600;
  font-size: 35px;
}
.single-product .variations {
    margin: 20px 0px !important;
}

.pd-title {
  font-size: 60px;
  line-height: 70px;
}
.pd-desc{
  font-size: 24px;
  line-height: 32px;
}
.pd-img{
  background-color: #4C3F3E08;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 50px;
}
.pd-info{
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  margin-left: 30px;
}
.prdct-quantity>span{
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 20px;
}
.prdct-detail-tabs .nav-link{
  font-weight: 500 !important;
  color: #000000 !important;
  text-decoration: none !important;
  padding: 15px 25px !important;
}
.prdct-detail-tabs .nav-link.active{
  color: #E6C788 !important;
  text-decoration: underline !important;
  padding: 15px 25px !important;
  border-radius: 0 !important;
}
.prdct-detail-tabs .nav-link:hover{
  padding: 15px 25px !important;
  border-color: #4C3F3E1C !important;
  border-radius: 0 !important;
}
.prdct-detail-tabs .nav-tabs{
  border-color: #4C3F3E1C !important
}
.prdct-detail-tabs .nav-tabs .nav-item.show .nav-link, .prdct-detail-tabs .nav-tabs .nav-link.active{
  border-color: #4C3F3E1C #4C3F3E1C #fff !important;
  border-radius: 0 !important;
}
.prdct-detail-tabs .tab-content{
  font-size: 20px;
}
.prdct-detail-tabs .tab-content>div{
  margin-top: 10px;
}
.related-prdct h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.spa-breadcrumb{
  padding: 20px 50px 0px;
  font-size: 20px;
  line-height: 30px;
}
.spa-breadcrumb .crnt{
  font-weight: 500;
}
.pd-img img{
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
}
.mobile-filter-button{
  background: none;
  border: none;
}
.mobile-filter-button img{
  width: 30px;
}
.mobile-filter-sidebar{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 300px;
  background-color: #fff;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(300px);
  transition: 0.5s;
}

.mobile-filter-sec{
  display: none;
  position: relative;
}
.desk-filter-sec{
  display: block;
  position: sticky;
    top: 50px;
}
.wp-block-woocommerce-product-filter-taxonomy,.wp-block-woocommerce-product-filter-price{
    padding: 0px 20px 20px;
}
body a{
    color: #000;
}
.spa-product-content .price{
    color: #BB8487;
    font-size: 20px;
}
.cfvsw_variations_form{
    margin-bottom: 10px;
}

body.filter-sidebar-open{
  overflow: hidden;
  touch-action: none;
}
.spa-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
}
.spa-pagination-inner{
  display: flex;
  gap: 10px;
  align-items: center;
}
.spa-pagination-inner li{
  list-style-type: none;
}
.spa-page-item a{
  border-radius: 50%;
  color: #000;
  border: 1px solid #4C3F3E1C;
  transition: 0.3s;
  font-size: 17px;
  padding: 5px;
  height: 45px;
  width: 45px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spa-page-item a:hover, .spa-page-item a.active{
  transition: 0.3s;
  background-color: #E6C788;
  border: none;
  color: #fff;
}
.spa-page-item a.prev-page, .spa-page-item a.next-page{
  font-size: 30px;
}
.spa-page-item a.prev-page span, .spa-page-item a.next-page span{
  height: 30px;
}

/* Cart Page */
.spa-cart-header {
      font-size: 18px;
    }
    .spa-cart-header h1 {
      font-size: 45px;
      font-weight: 400;
      text-align: center;
    }
    .spa-cart-header a{
      text-align: right;
      display: block;
      font-size: 16px;
      color: #000;
    }
    .spa-cart-table{
      border-top: 1px solid #4C3F3E1C;
      border-bottom: 1px solid #4C3F3E1C;
    }
    .spa-cart-table,
    .spa-summary-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
    }
    .spa-cart-table td{
      padding: 20px 0px;
      font-size: 20px;
      line-height: 30px;
    }
    .spa-summary-table td {
      padding: 5px 0px;
      font-size: 20px;
      line-height: 30px;
    }
    .spa-remove {
      text-align: center;
      cursor: pointer;
    }
    .spa-remove img{
      width: 20px;
    }

    .spa-discount {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .spa-discount input {
      padding: 10px;
      border: 1px solid #4C3F3E1C;
      flex: 1;
      min-width: 200px;
      font-size: 20px;
    }

    .spa-discount button {
      background: #e6c788;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      font-size: 20px;
      font-weight: 500;
    }

    .spa-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .spa-actions button {
      padding: 8px 25px;
      background: none;
      border: 1px solid #000;
      cursor: pointer;
      font-size: 18px;
      font-weight: 500;
    }

    .spa-actions a {
      color: #e6c788;
      text-decoration: underline;
      font-size: 18px;
      font-weight: 500;
    }

    .spa-summary-wrapper {
      border: 1px solid #4C3F3E1C;
      padding: 25px;
    }

    .spa-summary-table td {
      border: none;
    }

    .spa-summary-label {
      font-weight: 500;
      width: 65%;
      vertical-align: baseline;
    }

    .spa-total-row {
      font-weight: bold;
      font-size: 18px;
      border-top: 1px solid #4C3F3E1C;
    }

    .spa-shipping-options label {
      display: block;
      margin-bottom: 5px;
    }

    .spa-checkout-btn {
      background: #e6c788;
      padding: 12px 15px;
      text-align: center;
      font-weight: 500;
      margin-top: 15px;
      font-size: 20px;
      cursor: pointer;
    }
    .spa-summary-table td.spa-summary-val{
      font-size: 17px;
      line-height: 25px;
    }
   .spa-shipping-options a{
      color: #E6C788 !important;
    }
    .spa-total-row td{
      padding: 10px 0px !important;
    }
    .spa-cart-table .prdct-quantity-btn{
      border: none !important;
      background-color: #4C3F3E08 !important;
    }
    .cart-product-image{
      background-color: #4C3F3E08;
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100px;
      height: 100px;
    }
    .cart-product-image img{
      max-width: 80px;
      max-height: 80px;
      object-fit: contain;
    }
    .row-w1{
      width: 55%;
    }
    .row-w2{
      width: 45%;
    }
    .cart-col-1{
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .cart-col-2{
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
      justify-content: space-between;
    }
    .cart-prod-name{
      font-size: 20px;
      font-weight: 400;
    }
    .cart-prod-price{
      font-size: 18px;
    }
    .cart-prod-total{
      font-size: 18px;
    }






.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
}

.continue-browsing {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.continue-browsing:hover {
    color: #333;
}

.express-payment {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.shop-pay-btn {
    flex: 1;
    background: #5a31f4;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.gpay-btn {
    flex: 1;
    background: #000;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #666;
    font-size: 14px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.login-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.email-input,
.country-select,
.name-input,
.address-input,
.apartment-input,
.city-input,
.postal-input,
.shipping-select,
.card-number,
.card-name,
.expiry,
.cvv {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.email-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
}

.name-row,
.city-row {
    display: flex;
    gap: 15px;
}

.name-input,
.city-input,
.postal-input {
    flex: 1;
}

.delivery-section,
.shipping-section,
.payment-section {
    margin-bottom: 30px;
}

.delivery-section h2,
.shipping-section h2,
.payment-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.payment-method {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.payment-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.payment-header input[type="radio"] {
    margin-right: 10px;
}

.payment-header label {
    flex: 1;
    font-weight: 500;
}

.card-icons {
    display: flex;
    gap: 5px;
}

.card-icon {
    width: 30px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 2px;
}

.card-form {
    padding: 15px;
}

.card-details {
    display: flex;
    gap: 15px;
}

.expiry,
.cvv {
    flex: 1;
}

.remember-section {
    margin-bottom: 30px;
}

.remember-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.pay-now-btn {
    width: 100%;
    background: #f4c430;
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
}

.terms {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.edit-cart {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-image {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 4px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-details p {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.product-price {
    font-weight: 600;
    font-size: 14px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-line.total {
    font-weight: 600;
    font-size: 16px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.shipping-info {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.shipping-line {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.proceed-btn {
    width: 100%;
    background: #f4c430;
    color: #333;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.proct-grid-container .products.columns-4{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px !important;
}
.prdct-grid{
    max-width: 1920px;
}
.prdct-grid .products.columns-4{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    padding: 0px;
}
.proct-grid-container .products.columns-4>div{
   width: 100%;
   padding: 0 !important;
}
.related.products .products.columns-4{
   padding: 0 !important;
}
.related.products .products.columns-4>div{
    width: 100%;
   padding: 0 !important;
}
.related.products .products{
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}
.wc-block-product-filter-checkbox-list__input-wrapper:before{
    background: white !important;
}
input[type=checkbox].wc-block-product-filter-checkbox-list__input{
    border: 1px solid #000 !important;
}
.filter-col .wp-block-heading{
    font-size: 25px;
}
.wp-block-heading.filter-heading{
    background: #BB848712;
    font-size: 30px;
    padding: 5px 10px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
    
    .checkout-form,
    .order-summary {
        padding: 20px;
    }
    
    .express-payment {
        flex-direction: column;
    }
    
    .name-row,
    .city-row {
        flex-direction: column;
        gap: 0;
    }
    
    .card-details {
        flex-direction: column;
        gap: 0;
    }
}



@media only screen and (min-width: 1500px) {
    .glo-moment-section .container {
        max-width: 1440px;
    }

    .reviews-section .container {
        max-width: 1440px;
    }

    section.our-story .container {
        max-width: 1450px;
    }

    .team-section .container {
        max-width: 1450px;
    }

    footer .container {
        max-width: 1464px;
    }

    .glo-cta-section .container {
        max-width: 1384px;
    }
}

@media only screen and (max-width: 1599px) {
    .logo img {
        max-width: 100px;
    }
    .meet_owner_image::before {
        left: 100px;
    }
    section.meet_owner_sect .container {
        max-width: 1320px;
    }
    section.our-story .container {
        max-width: 1320px;
    }
    section.girl_saloon_sect .container {
        max-width: 1320px;
    }
    .our-services-sec .row {
        --bs-gutter-x: 81px;
    }
    nav.nav-bar li a {
        font-size: 18px;
    }

    h1 {
        font-size: 65px;
    }

    .banner-sec .banner-content h1 {
        max-width: 500px;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 50px;
    }

    h2 {
        font-size: 65px;
    }

    .our-space-txt p {
        font-size: 24px;
        line-height: normal;
    }

    .digital-lavender {
        height: 670px;
    }

    h4 {
        font-size: 28px;
    }

    .slider-section .slick-arrow {
        left: 30px;
    }

    .slider-section button.slick-next.slick-arrow {
        right: 30px;
    }

    .section-bg {
        padding: 90px 60px;
    }

    .reviews-box {
        padding: 30px;
    }

    ul.dropdown-menu {
        width: 200px;
    }

    .p_200 {
        padding: 140px 0;
    }

    .p_160 {
        padding: 120px 0;
    }

    .glo-cta-section h2 {
        max-width: 370px;
    }

    .footer-content p {
        font-size: 20px;
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 1399px) {

    .site-header {
        padding: 8px 50px;
    }
    .piller_sesonalsikll {
        padding: 100px 0px;
    }
    .piller_glostock {
        padding-bottom: 100px;
    }
    section.girl_saloon_sect .container {
        max-width: 1140px;
    }
    section.our-story .container {
        max-width: 1140px;
    }
    .meet_owner_image::before {
        left: 40px;
    }
    .readytoup_inner {
        padding: 75px 55px;
    }
    section.meet_owner_sect .container {
        max-width: 1140px;
    }

    .nav-left,
    .nav-right {
        gap: 35px;
    }

    nav.nav-bar li a {
        font-size: 16px;
    }
    .blueoverlay_sect {
        padding: 100px 0px;
    }

    h1 {
        font-size: 55px;
    }

    .banner-sec .banner-content h1 {
        max-width: 670px;
    }

    .banner-sec .banner-content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 44px;
    }

    body {
        font-size: 20px;
    }

    .p_120 {
        padding: 100px 30px;
    }

    .our-services-sec .row {
        --bs-gutter-x: 51px;
    }

    .padding-left {
        padding-left: 0;
    }

    .button-group a {
        margin-top: 14px;
        font-size: 16px;
    }

    .section-bg {
        padding: 80px 50px;
    }
    .girlfriend_main {
        padding-left: 50px;
    }
    .community_bannerb-btn.text-center {
        padding-bottom: 100px;
        margin-bottom: 80px;
    }

    .our-space-txt p {
        font-size: 20px;
        line-height: normal;
    }

    .digital-lavender {
        height: 600px;
    }

    .team-section {
        padding: 80px 0;
    }

    h2 {
        font-size: 55px;
    }

    .bg-image {
        padding: 87px 60px;
        color: #fff;
    }

    .image-slider .slick-list.draggable {
        padding: 0px 8%;
    }

    .slider-section .slick-arrow {
        height: 40px;
        width: 40px;
    }

    .slider-section .slick-arrow img {
        max-width: 7px;
    }

    .copy-right {
        margin-top: 60px;
    }

}

@media only screen and (max-width: 1199px) {

    .nav-left,
    .nav-right {
        gap: 25px;
    }
    .season_point {
        padding: 15px 15px;
        border: 1px solid #1621321C;
    }
    .readytoup_sect.about_readyup {
        padding-top: 80px;
    }
    .faq-container {
        margin-bottom: 0px;
    }
    section.girl_saloon_sect .container {
        max-width: 960px;
    }
    .meet_owner_image::before {
        left: 26px;
    }
    section.meet_owner_sect .container {
        max-width: 960px;
    }
    section.our-story .container {
        max-width: 960px;
    }
    .about_owner_cnt h5 {
        font-size: 24px;
        line-height: 32px;
    }
    .onlybedimage_sect {
        height: 40vh;
    }
    .about_title {
        margin-bottom: 80px;
    }
    .readytoup_sect.about_readyup {
        padding-top: 100px;
    }
    .meet_owner_sect {
        padding: 100px 0px;
    }
    .why_inner_glo_main {
        padding: 30px 38px;
    }
    .community_bannerb-btn.text-center {
        padding-bottom: 90px;
        margin-bottom: 80px;
    }
    .girlfriend_main {
        padding-left: 40px;
    }
    .party_btn {
        margin-top: 50px;
    }
    .woodstock-image.commconnectin_main {
        padding-left: 50px;
    }
    .bool_party {
        margin-top: 35px;
    }
    .community_team_sect {
        margin-top: 100px;
    }
    .skin-matter p {
        margin-bottom: 50px;
    }
    h3 {
        font-size: 36px;
    }
    .piller_sesonalsikll {
        padding: 60px 0px;
    }
    .piller_glostock {
        padding-bottom: 80px;
    }
    .blueoverlay_sect {
        padding: 80px 0px;
    }
    .readytoup_inner {
        padding: 40px 40px;
    }
    .readyup_btn .cta {
        padding: 18px;
    }
    .nav-bar a.cta {
        padding: 10px 20px;
    }

    .dropdown>a:after {
        width: 9px;
        height: 6px;
        background-size: 100% 100%;
    }
.prdct-grid .products.columns-4{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    padding: 0px;
}
    ul.dropdown-menu {
        width: 170px;
    }

    .digital-lavender {
        height: 500px;
    }

    .p_140 {
        padding: 100px 0px;
    }

    .reviews-box {
        padding: 20px;
    }

    .section-bg {
        padding: 50px 20px;
    }

    .reviews-box p {
        font-size: 18px;
    }

    h6 {
        font-size: 20px;
    }

    .experience-box {
        padding: 20px;
    }

    .button-group a {
        margin-top: 10px;
        font-size: 14px;
    }

    .banner-sec .banner-content {
        max-width: 800px;
    }

    .p_200 {
        padding: 100px 0;
    }
    .faq_pillerpage {
        padding: 80px 0px;
    }
}

@media only screen and (max-width: 991px) {

    .navbar-toggler {
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        z-index: 1001;
        padding: 0;
        border: unset;
    }
    .header-search-bar input{
        min-width: 180px;
    }
    .about_title {
        margin-bottom: 20px;
    }
    .related.products .products{
        grid-template-columns: repeat(2, 1fr);
    }
    .readytoup_sect.about_readyup {
        padding-top: 50px;
    }
    section.meet_owner_sect .container {
        max-width: 720px;
    }
    section.our-story .container {
        max-width: 720px;
    }
   
    .meet_owner_image::before {
        left: 9px;
        font-size: 18px;
    }
    .about_owner_cnt h5 {
        font-size: 18px;
        line-height: 26px;
    }
    .meet_owner_sect {
        padding: 50px 0px;
    }
    .blueoverlay_sect {
        padding: 50px 0px;
    }
    .faq-container {
        margin-bottom: 0px;
    }
    .faq_pillerpage {
        padding: 50px 0px;
    }
    section.girl_saloon_sect .container {
        max-width: 720px;
    }
    .meet_owner_btn {
        margin-top: 20px;
    }
    .meet_owner_image {
        padding-right: 20px;
    }
    .community_bannerb-btn.text-center {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .why_inner_glo_main {
        gap: 20px;
    }
    .why_inner_glo_main {
        padding: 20px 20px;
    }
    .community_team_sect {
        margin-top: 50px;
    }
    .faq-item {
        padding: 25px 22px;
        margin-bottom: 20px;
    }
    .service-type.mt-50 {
        margin-top: 30px;
    }
    .prdct-grid .products.columns-4{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        padding: 0px;
    }
    .p_140 {
        padding: 50px 0px;
    }
    .woodstock-image.commconnectin_main {
        padding-left: 10px;
    }
    .join-inner-circle {
        padding-bottom: 50px;
    }
    .marginbottongrt {
        margin-bottom: 35px;
    }
    .vibes_content {
        margin-bottom: 15px;
        margin-top: 10px;
    }
    .party_btn {
        margin-top: 40px;
    }
    .girlfriend_main {
        padding-left: 20px;
    }
    .bool_party {
        margin-top: 25px;
    }
    .bodymth {
        padding: 15px 20px;
        min-height: 81px;
    }
    .onlybedimage_sect {
        height: 330px;
    }
    .Toggle-mobile {
        display: block;
    }
    .bodymth P br {
        display: none;
    }

    .navbar-toggler .bar {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #000;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    header.site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 8px 30px;
    }

    .navbar-collapse {
        position: absolute;
        background-color: #fff;
        top: 100%;
        z-index: 9999;
        left: 0;
        right: 0;
    }

    .navbar-collapse ul.nav-left {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 16px;
    }

    .navbar-collapse .nav-right {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .responsive-menu {
        padding-bottom: 30px;
        height: 100vh;
    }

    .nav-left a,
    .nav-right a {
        font-size: 16px;
    }

    .dropdown-menu li a {
        padding-top: 0;
    }

    .navbar-toggler.active .bar-1 {
        transform: rotate(45deg) translate(1px, 1px);
    }

    .navbar-toggler.active .bar-2 {
        opacity: 0;
    }

    .navbar-toggler.active .bar-3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-none ul.nav-left {
        display: none;
    }

    .mobile-none ul.nav-right {
        display: none;
    }

    nav.nav-bar.mobile-none {
        width: 100%;
        padding-right: 20px;
    }

    .nav-right {
        gap: 15px;
    }

    .navbar-toggler:focus {
        box-shadow: unset !important;
    }

    h1 {
        font-size: 45px;
    }

    .p_160 {
        padding: 90px 0;
    }

    .our-services-sec .row {
        --bs-gutter-x: 20px;
    }

    .p_120 {
        padding: 50px 30px;
    }

    .copy-right {
        margin-top: 20px;
    }

    .footer-content {
        padding-bottom: 50px;
    }

    .bg-image {
        padding: 37px 30px;
        color: #fff;
    }

    h2 {
        font-size: 42px;
    }

    .glo-cta-content strong {
        padding-top: 0;
    }

    .glo-cta-content a.cta {
        margin-top: 11px;
    }

    .slider-section {
        padding-bottom: 40px;
        padding-top: 50px;
    }

    .inner-circle-text .cta {
        margin-top: 10px;
    }

    .innerp-readtup p {
        margin-bottom: 30px !important;
    }

    .team-section {
        padding: 50px 0;
    }
    .innerp-readtup p {
        font-size: 18px;
        line-height: 26px;
    }

    h4 {
        font-size: 21px;
    }

    .team-details {
        padding-top: 10px;
    }
    .readyup_btn {
        margin-top: 20px;
        flex-direction: column;
    }

    .team-details h4 {
        margin-bottom: 0;
    }

    .digital-lavender {
        height: 400px;
    }

    .story-content {
        max-width: 100%;
        padding-top: 30px;
    }

    .reviews-content {
        padding-bottom: 20px;
    }

    .reviews-content a.cta {
        margin-top: 8px;
    }

    .experience-box {
        max-width: 100%;
    }

    .woodstock-image {
        padding-top: 10px;
    }

    .welcome-sec .row .welcome-right-content {
        max-width: 100%;
        padding-top: 20px;
    }

    .moment-btn {
        padding-right: 0;
    }

    .button-group a {
        max-width: 100%;
    }
    .spa-service-img img {
        height: 400px !important;
    }
    .spa-service-right {
        margin-left: 10px !important;
    }
    .spa-service-left {
        margin-right: 10px !important;
    }
    .spa-services {
        padding: 40px !important;
    }
    .spa-services-box-last{
        height: 300px !important;
    }
}

@media only screen and (max-width: 767px) {

    h1 {
        font-size: 35px;
    }
    section.home-category-wrapper {
        padding: 80px 10px;
    }
    .banner-content h1{
        font-size: 35px !important;
    }
    .readytoup_sect.about_readyup {
        padding-top: 30px;
    }
    .slider-categoty-title {
        font-size: 14px;
    }
    .desktop-search-bar{
        display: none;
    }
    .mobile-search-bar{
        display: inline-block;
    }
    .categorywise-product-slider{
        font-size: 20px !important;
        /* width: 200px; */
    }
    .cfvsw-selected-swatch{
        padding: 3px 5px !important;
    }
    .spa-services-box-last{
        height: 200px !important;
    }
    #customer_login{
        display: flex;
        flex-direction: column;
    }
    .meet_owner_image {
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .menu-item-has-children ul{
        border: none !important;
    }
    .menu-item-has-children .nav-link.dropdown-toggle{
        text-align: center !important;
    }
    .menu-item-has-children .menu-item{
        text-align: center !important;
        font-size: 14px !important;
    }
    .menu-item-has-children .menu-item a{
       padding: 10px !important;
    }
    .menu-item.dropdown{
        width: 100% !important;
    }
    #menu-main-menu{
        padding: 10px 10px 20px;
        box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
        gap: 20px;
    }
    .our-story .row{
        gap: 40px;
    }
    .single-product .related.products .woocommerce-Price-amount.amount{
        font-size: 17px !important;
    }
    .spa-product-view-details a{
      font-size: 15px;
    }
    .banner-sec .banner-content {
        padding: 30px;
    }
    .meet_owner_image::before {
        left: 27px;
        font-size: 16px;
    }
    .about_owner_cnt h5 {
        font-size: 17px;
        line-height: 24px;
        text-align: center;
    }
    .qty{
       width: 100px !important;
    }
    .prdct-grid .products.columns-4{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        padding: 0px;
    }
    .meet_owner_btn {
        margin-top: 20px;
        text-align: center;
    }
    .about_title {
        margin-bottom: 0px;
    }
    .meet_owner_sect {
        padding: 30px 0px;
    }
    p{
        font-size: 16px;
        line-height: 22px;
    }

    h3 {
        font-size: 34px;
    }

    .section-bg .row:last-child {
        gap: 15px 0;
    }
    .skin-matter p{
        margin-bottom: 20px;
    }
    .footer-content {
        padding-bottom: 20px;
    }

    footer {
        padding-top: 67px;
    }

    .footer-logo {
        padding-bottom: 30px;
    }

    .team-section {
        padding: 30px 0;
    }

    .copy-right {
        padding: 20px;
    }
    .service-list {
        gap: 40px !important;
    }
    .footer-content p {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: normal;
    }

    .footer-content a {
        line-height: 35px;
    }

    .our-services-sec .row {
        margin-top: 20px;
    }

    .team-heading {
        padding-bottom: 20px;
    }

    .team-img img {
        width: 100%;
    }

    h2 {
        font-size: 40px;
    }

    .location-data p {
        margin-bottom: 20px !important;
    }

    .footer-logo {
        padding-bottom: 40px;
    }
    .mobile-filter-sec{
        display: block !important;
        text-align: right;
    }
    .desk-filter-sec{
        display: none;
    }
    .filter-sidebar-open .desk-filter-sec {
        display: block !important;
        position: absolute !important;
        background: #fff;
        top: 60px !important;
        right: 0px;
        padding: 20px;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    }
    .spa-product-grid-title{
        /*position: sticky;*/
        /*top: 20px;*/
        background: #fff;
        padding: 10px 0px;
        border-bottom: 1px solid #4C3F3E1C;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:767px){
    .our-services-head {
        text-align: left;
    }
    .about-features{
        justify-content: center;
        gap: 30px
    }
    .about-sec2, .about-sec1{
        padding: 50px 15px;
    }
    .about-cta-inner{
        padding: 20px;
    }
    .about-cta-inner h3{
        font-size: 25px;
        line-height: 35px;
        text-align: center;
    }
    .about-cta-inner p {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }
    .about-cta-img-warpper{
        display: none;
    }
    .header-search-bar input{
        width: 100%;
    }
    .header-search-bar{
        width: 100%;
    }
    .welcome-right-content.zoom-in-up.hidden.piller_sikn p {
        font-size: 18px;
        line-height: 28px;
    }
    .faq-container {
        margin-bottom: 0px;
    }
    .woocommerce-ordering select {
        width: 160px !important;
    }
    .community_bannerb-btn.text-center {
        padding-bottom: 40px;
        border-bottom: 1px solid #4c3f3e61;
        margin-bottom: 0px;
    }
    .why_iner_glow p {
        font-size: 18px;
    }
    #customer_login .u-column1, #customer_login .u-column2{
    width: 100% !important;
    padding: 0px 10px;
}
.xoo-ml-login-otp-btn {
    font-size: 15px !important;
}

#customer_login button.button.btn.xoo-ml-low-back {
    font-size: 14px;
    width: 100%;
}
    .faq-answer {
        font-size: 16px;
        line-height: 24px;
    }
    .why_inner_glo_main {
        gap: 20px;
    }.profileheatc_content h4 {
        font-size: 26px;
        line-height: 100%;
    }
    .why_inner_glo_main {
        padding: 15px 15px;
    }
.client_love {
        margin-top: 20px;
    }
    .season_point p {
        max-width: 100%;
    }
    .season_point {
        text-align: center;
        margin-bottom: 30px;
    }
.piller_sesonalsikll {
        text-align: center;
    }
    .community_team_sect {
        margin-top: 30px;
    }
    .team-box {
        margin-bottom: 20px;
    }
    .girlfriend_main {
        padding-left: 12px;
        margin-top: 30px;
        text-align: center;
    }
    .bool_party {
        margin-top: 35px;
    }
    .party_btn {
        margin-top: 30px;
    }
    .onlybedimage_sect {
        height: 150px;
    }
    .vibes_content {
        margin-bottom: 15px;
        margin-top: 10px;
    }
    .blueoverlay_title h3 br {
        display: none;
    }
    .blueoverlay_title {
        font-size: 20px;
        line-height: 30px;
    }
    .woodstock-image.commconnectin_main {
        padding-left: 0px;
        margin-top: 30px;
    }
    .profileheatc_content p {
        font-size: 16px;
        line-height: 22px;
    }
    .welcome-right-content {
        text-align: center;
    }
    .mythtruthmain {
        flex-direction: column;
    }
    .services-right.service-list{
        padding-top: 40px;
    }   
    .blueoverlay_sect {
        padding: 30px 0px;
    }
    .marginbottongrt {
        margin-bottom: 20px;
    }
    .piller_sesonalsikll {
        padding: 30px 0px;
    }
    .faq-item {
        padding: 15px 14px;
        margin-bottom: 17px;
    }
    section.welcome-sec {
        text-align: center;
    }
    .woodstock-image.shapeafter {
        padding-left: 0;
    }
    .welcome-sec .row{
        gap: 40px;
    }
    .glo-features , .glo-features-2{
        margin-bottom: 20px !important;
    }
    .spa-service-img img{
        height: 400px !important;
    }
    .spa-service-left{
        margin-right: 0px !important;
    }
    .spa-service-right{
        margin-left: 0px !important;
    }
    .spa-service-list{
        gap: 50px !important;
    }
    .spa-service-right{
        padding-top: 50px !important;
    }
    .spa-services{
        padding: 20px !important;
    }
    .glo-bt-bundles h3{
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .bt-bundle-card h4 {
        font-size: 19px !important;
        line-height: 27px !important;
    }
    .bt-bundle-card .bt-amount{
        font-size: 24px !important;
    }
    .bt-program-info p{
        text-align: center !important;
        padding-left: 0px !important;
    }
    .join-inner-circle{
        padding-top: 30px;
    }
    .faq_pillerpage {
        padding: 30px 0px;
    }
    section.glo-moment-section {
        text-align: center;
    }
    .moment-btn {
        text-align: center;
    }
    .story-content {
        text-align: center;
        padding-top: 0;
    }
    .community_para p:nth-child(2){
        margin-bottom: 0 !important;
    }
    .footer-content ul{
        gap: 2px !important;
        margin-top: 10px !important;
    }
    .woodstock-image {
        width: 100%;
    }
    .footer-content .location-data{
        gap: 10px !important;
    }
    footer .row{
        gap: 10px;
    }
    .piller_glostock {
        padding-bottom: 30px;
    }
    .faq_button {
        text-align: center;
    }
    .faqtitle {
        text-align: center;
        margin-bottom: 20px;
    }
    body {
        font-size: 16px;
        line-height: 24px;
    }
    .readytoup_inner {
        padding: 20px 20px;
    }
    .readytoup_inner {
        text-align: center;
    }
    .pd-info{
        margin-left: 0 !important;
    }
    .spa-breadcrumb {
        padding: 15px 15px 0px !important;
    }
    .pd-img img{
        max-width: 270px !important;
        max-height: 270px !important;
    }
    .pd-title {
        font-size: 35px !important;
        line-height: 45px !important;
    }
    .pd-desc {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    .prdct-live-detail p {
        font-size: 15px !important;
        line-height: 22px !important;
    }
    .spa-breadcrumb {
        font-size: 16px !important;
        line-height: 26px !important;
    }
    .pd-price {
        font-size: 30px !important;
    }
    .prdct-add-to-cart{
        width: 250px !important;
    }
    .spa-product-grid-title h2 {
        font-size: 35px !important;
        line-height: 45px !important;
    }
    .spa-summary-label{
        width: 50% !important;
    }
    .spa-summary-wrapper{
        padding: 20px 15px !important;
    }
    .spa-discount input{
        min-width: 50px !important;
        width: 100% !important;
    }
    .spa-discount button{
        padding: 10px !important;
        font-size: 16px !important;
    }
    .spa-actions button{
        padding: 10px !important;
        font-size: 16px !important;
    }
    .spa-discount input{
        font-size: 16px !important;
    }
    .spa-cart-table .prdct-quantity-btn button, .spa-cart-table .prdct-quantity-btn input{
        padding: 6px 5px !important;
    }
    .spa-cart-table .prdct-quantity-btn button, .spa-cart-table .prdct-quantity-btn input{
        width: 30px !important;
        font-size: 14px;
    }
    .spa-cart-table .prdct-quantity-btn input{
        width: 50px !important;
        font-size: 14px;
    }
    .row-w1{
      width: 60% !important;
      padding-right: 15px !important;
    }
    .row-w2{
      width: 40% !important;
      padding-left: 15px !important;
    }
    .cart-prod-name{
      font-size: 17px !important;
    }
    .cart-prod-price{
      font-size: 15px !important;
    }
    .cart-prod-total{
      font-size: 16px !important;
    }
    .spa-cart-header h1{
        margin-bottom: 15px !important;
    }
}

@media only screen and (max-width: 575px) {
    .site-header {
        padding: 0px 15px;
    }
    .p_200 {
        padding: 50px 0;
    }

    h1 {
        font-size: 28px;
    }
    .banner-content h1{
        font-size: 35px !important;
    }
    .banner-sec .banner-content {
        padding: 20px;
    }

    .banner-sec a.cta.mt-30 {
        margin-top: 10px;
    }

    .p_160 {
        padding: 30px 0;
    }

    h3 {
        font-size: 30px;
    }

    .p_120 {
        padding: 30px 20px;
    }

    .welcom-btn.mt-50 {
        margin-top: 20px;
    }

    .service-arrow img {
        max-width: 27px;
    }

    .services-box .service-type {
        margin-top: 20px;
        padding: 0px;
    }

    .our-space-txt p {
        font-size: 18px;
        line-height: 1.2;
    }

    .digital-lavender {
        height: 340px;
    }

    h2 {
        font-size: 32px;
    }

    .moment-btn {
        text-align: center;
        margin-top: 20px;
    }

    .glo-moment-section {
        padding: 30px 0;
    }

    .woodstock-wrapper {
        padding-top: 30px;
    }

    .copy-right {
        padding: 20px 0;
    }

    .inner-circle-text b {
        margin-top: 0;
    }

    .p_140 {
        padding: 50px 0px;
    }

    .services-btn {
        margin-top: 30px;
    }

    .copy-right p {
        font-size: 16px;
    }

    .footer-content p {
        font-size: 16px;
    }

    .location-data p {
        font-size: 16px !important;
    }

    .location-data a {
        font-size: 16px;
    }
    .footer-logo img {
        max-width: 180px;
    }
    .slider-section button.slick-next.slick-arrow {
        right: 10px;
    }
    .slider-section .slick-arrow {
        left: 10px;
    }
    .slider-section .slick-arrow {
        height: 30px;
        width: 30px;
    }
    .slider-section {
        padding-top: 30px;
    }
    .join-inner-circle {
        padding-bottom: 60px;
    }

}

/* Custom css */
/* ===== Quick View Modal Styles ===== */
.qv-modal-content {
    font-family: 'Marcellus', serif;
}

.qv-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.qv-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* ===== Form Layout ===== */
.qv-body form {
    width: 100%;
}

.qv-body form table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.qv-body form table th,
.qv-body form table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 0;
}

.qv-body form table th label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    display: inline-block;
    margin-bottom: 6px;
}

.qv-body form table select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.qv-body form table select:focus {
    border-color: #000;
    outline: none;
}

/* ===== Price and Add to Cart Section ===== */
.qv-body form .single_variation_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qv-body form .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

.qv-body form .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qv-body form .quantity {
    display: flex;
    align-items: center;
}

.qv-body form .quantity input {
    width: 70px;
    text-align: center;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.qv-body form .qib-button {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qv-body form .qib-button:hover {
    background: #e0e0e0;
}



/* ===== Responsive Adjustments ===== */
@media (max-width: 600px) {
    .qv-content {
        width: 95%;
        padding: 15px;
    }

    .qv-title {
        font-size: 1.25rem;
    }

    .qv-body form .woocommerce-variation-add-to-cart {
        flex-direction: column;
        align-items: stretch;
    }

    .qv-body form .single_add_to_cart_button {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .cta, .cta-2, .single_add_to_cart_button, .wc-block-components-button, .woocommerce-form-register__submit, .xoo-ml-login-otp-btn, .woocommerce-form-login__submit, .woocommerce-Button {
        position: relative;
        overflow: hidden;
        z-index: 9;
        display: inline-block;
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        text-align: center;
        vertical-align: middle;
        padding: 10px 24px;
        transition: 0.3s ease-in-out;
    }
    .product-section .categorywise-product-slider-title-wrapper {
        flex-direction: column !important;
    }
}

.spa-product-div{
  position: relative;
}

.spa-product-div a.cta{
  padding: 15px;
}
.woocommerce .button {
    background: #E6C788;
}

.product-section .categorywise-product-slider-title-wrapper {
    flex-direction: row;
}
.qv-body form .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-direction: column;
    align-items: start;
    font-size: 14px;
}
.post-type-archive-product .quantity {
    display: block !important;
}
.woocommerce-orders-table__cell-order-actions {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.woocommerce-orders-table__cell-order-actions a{
    padding: 10px;
    font-size: 14px;
     padding: 10px !important;
}
@media screen and (max-width: 767px) {
    .woocommerce-orders-table__cell-order-actions {
        flex-direction: column;
        align-items: start;
            padding: 10px !important;
    font-size: 14px;
    text-wrap: nowrap;
    }
}

/* quantity btns */
.spa-quantity-controls {
    display: flex;
    float: left;
    flex-wrap: nowrap;
    margin-right: 5px;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 3px 0;
    white-space: nowrap;
}

.spa-quantity-controls .qty-plus ,
.spa-quantity-controls .qty-minus {
    padding: 6px 12px 8px;
    height: 41px;
    background: #ffffff;
    border: 1px solid #efefef;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
    width: 41px;
    color: black;
    height: 41px;
    background: #a19f9f14;
}
.qty-wrap {
    display: flex;
    align-items: center;
    float: none !important;
    height: 41px;
}
.qty-wrap input {
    height: 41px;
    padding: 6px 12px 8px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #efefef;
    font-size: 20px;
    line-height: 20px;
    box-shadow: none;
    margin: 0 !important;
    max-width: 120px;
}

/* New Css card design */

.category-slide-item-wrapper {
    background-color: #EEF0EF;
    margin-right: 20px;
    margin-left: 0px;
    border-radius: 12px 12px 48px 12px;
    padding-top: 24px;
    padding-right: 12px;
    padding-bottom: 24px;
    padding-left: 12px;
    align-content: flex-start;
    width: 100%;
}

.product-categories-slider .slick-slide {
  margin: 0 10px; /* Adjust the value for your desired gap */
}

.product-categories-slider .slick-list {
  margin: 0 -10px; /* Negative margin = same as half of the gap to align edges */
}
.slider-item-content span{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #E6C788;
    display: flex;
    place-content: center;
    place-items: center;
}
.slider-item-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.category-slide-item-wrapper a.items-slider-wrap{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.store-name {
     font-family: 'Poppins', sans-serif;
     text-transform: uppercase;
     font-size: 15px;
     font-weight: 500;
     text-align: center;
}
.item-link {
    font-family: 'Poppins', sans-serif;
}
.spa-product-title a {
    /* font-family: 'HvDTrial Brandon Grotesque', serif; */
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    line-height: 1;
    font-size: 20px;
}
.categorywise-product-slider{
    font-size: 30px !important;
    line-height: 25px;
    color: #960113;
    text-align: center;
}
.section-header.categorywise-product-slider-title-wrapper a {
    font-family: 'Poppins', sans-serif;
}
.spa-product-div .spa-product-div-inner img {
    mix-blend-mode: multiply;
}
.spa-product-div{
    /* background: #EEF0EF;
    border: none !important; */
}
.spa-product-div-inner a {
    border: 1px solid #4C3F3E1C;
    border-radius: 18px;
}
.spa-product-div:hover{
  box-shadow: none !important;
  z-index: 2;
  transition: 0.5s;
  border-color: none !important;
}

.mcb-background-overlay{
    width: 100%;
    height: 100%;
    background-color: #2C313F;
    border-radius: 16px 16px 48px 16px;
    padding-top: 50px;
    padding-right: 38px;
    padding-bottom: 50px;
    padding-left: 38px;
    align-content: space-between;
}
.mcb-background-overlay.mcb-col-1{
        background-color: #2C313F;
    padding: 20px;
    border-radius: 16px 16px 48px 16px;
}
.mcb-wrap-inner {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    align-self: stretch;
}
.wrap.mcb-wrap-one-second {
    display: flex;
    flex-wrap: wrap;
}
.mcb-wrap-inner-one-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.mcb-wrap-inner h2.title{
    font-size: 40px;
    line-height: 44px;
    /* font-weight: 600; */
    font-weight: 400;
    letter-spacing: -1px;
    color: #fff;
}
.mcb-wrap.mcb-wrap-one-second.column_button {
    height: 70px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.mcb-column-inner.mcb-item-button-inner{
    padding: 8px 32px;
    background: #E6C788;
    border-radius: 38px;
    color: #fff;
}
.mcb-item-image-inner {
    width: 50%;
}
.advertise-banner-wrapper {
    padding: 40px 5px;
}

@media screen and (max-width: 767px) {
    .mcb-wrap-inner h2.title {
        font-size: 30px;
    }
    .mcb-item-image-inner {
        width: 100%;
    }
    .wrap.mcb-wrap-one-second {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .mcb-wrap-inner-one-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mcb-wrap.column_button {
        margin-top: 25px;
    }
    .advertise-banner-wrapper .col-md-6.col-sm-6 {
        margin-bottom: 20px;
    }
}
.mcb-column-inner .image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.advertise-banner-wrapper p,
.advertise-banner-wrapper h2{
    color: #fff !important;
}

@media screen and (max-width: 928px) {
    .mcb-wrap-inner h2.title {
        font-size: 30px;
    }
    .mcb-item-image-inner {
        width: 100%;
    }
    .wrap.mcb-wrap-one-second {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .mcb-wrap-inner-one-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mcb-wrap.column_button {
        margin-top: 25px;
    }
    .advertise-banner-wrapper .col-md-6.col-sm-6 {
        margin-bottom: 20px;
    }
}
/* checkout order received  */

.woocommerce-order-received .woocommerce-order {
    display: flex;
    flex-direction: column;
}
.woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details{
    margin: 0px 0px 0px 0px;
    flex-direction: column;
    padding: 10px 0px 0px 0px;
    width: 100%;
}


.woocommerce-order-received .woocommerce-order-overview li {
    display: block;
    margin-bottom: 10px;
}
.woocommerce-order-received .woocommerce-customer-details {
        border-bottom: 1px solid;
    padding-bottom: 48px;
}
.woocommerce-order-received .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received{
    font-size: 18px;
    font-family: 'Poppins';
}
.woocommerce-order-received .woocommerce-order-details {
    border-top: 1px solid;
    padding-top: 24px;
    margin-top: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}
.woocommerce-order-received .woocommerce-order-details h2{
    font-size: 40px;
}
.woocommerce-order-received .woocommerce-customer-details {
    margin-top: 25px;
}
.woocommerce-order-received address {
    font-size: 17px;
    font-family: 'Poppins';
}
.woocommerce-order-received .woocommerce-customer-details--phone ,
.woocommerce-order-received .woocommerce-customer-details--email {
    font-size: 17px;
    font-family: 'Poppins';
    margin-top: 10px;
}
.woocommerce-order-received p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    content: 'Thank You';
    display: block;
    font-size: 55px;
    font-family: 'HvDTrial Brandon Grotesque';
    font-weight: 700;
}
@media screen and ( max-width: 767px ) {
    .woocommerce-order-received p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .woocommerce-order-received .woocommerce-order-details h2{
        font-size: 25px;
    }
}
/* Responsive header */
@media only screen and (max-width: 767px) {
    .header-search-bar {
        width: max-content !important;
    }
    
}

@media screen and (max-width: 448px) {
    .woocommerce-product-search-field-1{
        display: none;
    }
    .mobile-search-bar button {
        position: absolute;
        right: 45px;
    }
    .custom-logo-link {
        width: 80px;
    }
    .header-search-bar {
        padding: 0px 15px;
    }
    .header-search-bar input {
        width: 150px;
    }
}
@media screen and ( max-width: 400px ) {
     .mobile-search-bar button {
        position: absolute;
        right: 25px;
    }
    .custom-logo-link {
        width: 65px;
    }
    .header-search-bar input {
        width: 110px;
    }
    .header-search-bar {
        padding: 0px;
    }
}
.mobile-search-bar.header-search-bar{
    position: relative;
}

/* my account page */
.woocommerce-MyAccount-content {
    font-family: 'Poppins', sans-serif !important;
}
.woocommerce table.shop_table td{
    word-break: auto-phrase;
    white-space: nowrap;
}
.woocommerce-Price-amount ,
.woocommerce-Price-amount span {
    font-family: 'Poppins', sans-serif;
}
.woocommerce-orders-table__cell-order-actions,
.woocommerce-orders-table__cell-order-actions a {
    font-family: 'Poppins', sans-serif;
}
.account-page .woocommerce .button {
    background: black;
    min-width: 80px;
}
@media screen and (max-width: 767px) {
    .account-page .woocommerce nav.woocommerce-MyAccount-navigation {
        width: 100%;
    }
    .account-page .woocommerce .woocommerce-MyAccount-content{
        width: 100%;
    }

}
@media screen and (max-width: 520px) {
    .woocommerce-MyAccount-content {
        padding: 10px;
    }
    .woocommerce-MyAccount-content table tr, 
    .woocommerce-MyAccount-content table th, 
    .woocommerce-MyAccount-content table td,
    .woocommerce-MyAccount-content table th span,
    .woocommerce-MyAccount-content table th a{
        font-size: 13px !important;
    }
    .woocommerce table.shop_table th, .woocommerce table.shop_table td {
        padding: 10px;
    }
}
@media screen and (max-width: 767px) {
    header {
        margin-top: 25px;
    }
}
.spa-product-content {
    padding-bottom: 15px;
}
.contact-item span a {
    color: #fff;
}
/* responsive mobile under 575 */
@media only screen and (max-width: 575px) {
    .p_120 {
        padding: 30px 10px;
    }
    .prdct-grid .products.columns-4 {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
        padding: 0px;
    }
    .spa-product-div-inner {
        padding: 0px;
    }
    .spa-product-content {
        padding-bottom: 0px;
    }
    .spa-product-title a {
        font-size: 18px;
    }
    .spa-product-div a.cta {
        padding: 12px;
    }
    .spa-product-div {
        border-radius: 5px;
    }
    .spa-product-div .cta {
        padding: 12px;
    }
}
.home-category-slider {
    display: none;
}
/* single product page  */
.custom-add-to-cart-wrapper form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 13px;
    margin: 10px 0px;
    font-family: 'Poppins', sans-serif;
}

/* in stock badge */
.stock-badge{
    position: absolute;
    top: 18px;
    right: 18px;
    background: #960113;
    padding: 3px 10px;
    border-radius: 25px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

@media only screen and (max-width: 448px) {
    .qty {
        width: 45px !important;
    }
    .quantity.wqpmb_quantity {
        width: 50px !important;
    }
    .spa-product-div {
        height: 100%;
        border-radius: 18px;
    }
    .cta.single_add_to_cart_button{
        font-size: 20px !important;
    }
    .spa-product-content {
        padding: 5px;
    }
    .spa-product-title {
        margin: 0;
        line-height: 17px;
    }
    .spa-product-title a {
        font-size: 15px;
        line-height: 0;
    }
    .spa-product-div img {
        border-top-left-radius: 18px;   /* round top-left corner */
        border-top-right-radius: 18px;  /* round top-right corner */
        border-bottom-left-radius: 18px;/* round bottom-left corner */
        border-bottom-right-radius: 18px;/
    }
    .categorywise-product-slider-wrapper .slick-slide>div{
        padding: 0 5px !important;
    }
    section {
        margin: 20px 0px !important;
    }
    section.banner-sec.p_200{
        margin: 0px !important;
    }
    section.feature-slider{
        margin: 0px !important;
    }


}
span.onsale {
    position: absolute;
    bottom: 18px;
    right: 19px;
    background: #960113;
    padding: 3px 10px;
    border-radius: 25px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
ins {
    text-decoration: none;
}
span.amount{
    color: #960113;
}
.wc-block-components-shipping-rates-control .wc-block-components-formatted-money-amount{
    color: red !important;
}
#delivery_option_msg{
    font-family: 'Marcellus';
    font-weight: normal;
    color: #960113;
    padding: 0px 0px 24px;
}
.wc-block-components-checkout-return-to-cart-button{
    width: 35%;
}
@media screen and (max-width: 767px) {
    .wc-block-components-checkout-return-to-cart-button{
        width: 50%;
    }
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding-top: 20px !important;
}

.woocommerce-view-order .woocommerce-customer-details {
    margin-top: 40px;
}

.woocommerce-view-order .woocommerce-order-details {
    margin-top: 40px;
}
.woocommerce-view-order h2.woocommerce-column__title{
    font-size: 35px;
}
.woocommerce-view-order .woocommerce-column__title {
    margin-bottom: 10px;
}
.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses{
    display: flex;
    justify-content: space-between;
}
.woocommerce-view-order .woocommerce-columns--addresses .woocommerce-column{
    width: 48%;
}
@media screen and (max-width: 680px) {
    .woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .woocommerce-view-order .woocommerce-columns--addresses .woocommerce-column{
        width: 100%;
    }
    .woocommerce-view-order h2.woocommerce-column__title{
        font-size: 25px;
    }
    .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2,
    .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1{
        width: 100%;
    }
    .woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 h2,
    .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 h2{
        font-size: 25px;
    }
}
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1{
    width: 48%;
}
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 h2,
.woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 h2{
    font-size: 40px;
}

.search-suggestions.suggestions{
    position: absolute;
    top: 50px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid black;
    padding: 5px;
    width: calc(100% + 40px);
    display: none;
    z-index: 999;
}

.search-suggestions.suggestions ul {
    list-style: none;
    padding: 5px 10px;
    margin: 0;
}

.search-suggestions.suggestions ul li {
    padding: 5px 2px;
    font-family: 'Poppins', sans-serif;
}

.header-search-bar {
    position: relative;
}

 form .quantity {
    margin: 10px 0px;
}

 form .quantity button {
    border: 1px solid #4C3F3E1C;
    min-height: 35px;
    min-width: 35px;
}
 form .quantity input {
    /* width: auto !important; */
    max-width: 100px;
     border: 1px solid #4C3F3E1C;
}
.quantity input[type=number]::-webkit-inner-spin-button, 
.quantity input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.xoo-wsc-psavings .single-product .woocommerce-Price-amount.amount {
    margin: 0px !important;
}

.single-product .woocommerce-Price-amount.amount {
    margin: 0px !important;
}
.sin,gle-product .xoo-wsc-psavings .woocommerce-Price-amount.amount
.single-product .xoo-wsc-priceBox .woocommerce-Price-amount.amount {
    font-size: 13px !important;
}
.stock.out-of-stock{
    background: #960113;
    padding: 3px 10px;
    border-radius: 25px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}
.eshopbox-track-order h2{
    font-size: 35px;
}
.eshopbox-track-order h3{
    font-size: 30px;
}

.checkout-page .wc-block-components-checkbox.wc-block-checkout__use-address-for-billing{
    display: none;
}
#shipping-option.wc-block-checkout__shipping-option.wp-block-woocommerce-checkout-shipping-methods-block.wc-block-components-checkout-step {
    margin-bottom: 0px;
}
.wp-block-fee-block {
    margin-bottom: 40px;
}
/* Hide submit btn */
.add-to-cart-custom .cta.add-to-cart-btn{
    display: none !important;
}