@font-face {
  font-family: playfair;
  src: url(../fonts/playfair/PlayfairDisplay-VariableFont_wght.ttf);
}
@font-face {
  font-family: inter;
  src: url(../fonts/inter/Inter-Italic-VariableFont_opsz\,wght.ttf);
}
:root {
  --primary_aqua: #109ED9;
  --Champagne :#F1E7D8;
  --Deep_Maroon :#6B1E2B;
  --Ivory : #FAF6F0;
  --black : #000000;
  --white_color : #FFFFFF;
  --playfair: playfair;
  --inter: inter;
  --Espresso : #2A211C;
  --Warm_Taupe  : #6E635A;
  --Blush  : #D9A6A0;
  --taupe  : #6E635A;
  --gold  : #B8924A;
}

@media (min-width:1024px) {
  .container , .woocommerce-cart #page {
    max-width: 1490px;
    margin: 0 auto;
    padding: 0 15px;
  }
}

/* Global settings */

  /* font  family settings */

.inter {
  font-family: var(--inter);
}
.playfair {
  font-family: var(--playfair);
}
/* font size settings */
.font-64{
  font-size: 64px;
}
/* font_color_settings */
.heading_color{
  color: var(--heading_color);
}

/* font weights */
.w-700{
  font-weight: 700;
}
.w-600{
  font-weight: 600;
}
.w-400{
  font-weight: 600;
}
/* font color */
.white_color{
  color: var(--white_color);
}
.black{
 color: var(--black); 
}

/* button animation */

/* .primary_btn {
  display:inline-block;
  position:relative;
  text-align:center;
  background-color:var(--primary_blue);
  color:white;
  border-radius:2px;
  transition: top 0.3s;
  border: 1px solid var(--Ivory);
  padding: 10px 25px;
}
.primary_btn_up:hover {
  color:var(--primary_blue);
  background-color: white;
  cursor: pointer;
  border-color: var(--primary_blue);
} */
.label-up {
  display: block;
  margin: 0px 30px;
  height: 100%;
  position: relative;
  top: 0%;
  transition: 0.3s;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 14px;
}

.primary_btn_up:hover .label-up {
  top:-100%;
}

/* global settings */

.underline span{
  font-family: var(--font_lora);
  position: relative;
}
.underline span::After {
  content: "";
  position: absolute;
  height: 13px;
  width: 0%;
  left: 0;
  bottom: 0px;
  BACKGROUND: var(--primary_blue);
  transition: all .3s ease-in-out;
  z-index: -1;
}
.underline.visible span::after{
  width: 100%;
}
*{
  font-family: var(--inter);
}
p , li , .paragraph , .p{
  font-size: 16px;
  font-family: var(--inter);
  font-weight: 400;
  line-height: 27.9px;
}
h1 , .h1{
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h2 , .h2{
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h3 , .h3{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h4 , .h4{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--playfair);

}
h5 , .h5{
  font-size: 17px;
   font-family: var(--playfair);
}
h6 , .h6{
  font-size: 16px;
  line-height: 1;
  font-family: var(--playfair);
}

@media (max-width:767px) {
  .font-64{
    font-size: 45px;
  }
  p , li , .paragraph , .p{
  font-size: 16px;
  font-family: var(--inter);
  font-weight: 400;
  line-height: 27.9px;
}
h1 , .h1{
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h2 , .h2{
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h3 , .h3{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--playfair);
}
h4 , .h4{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--playfair);

}
h5 , .h5{
  font-size: 17px;
   font-family: var(--playfair);
}
h6 , .h6{
  font-size: 16px;
  line-height: 1;
  font-family: var(--playfair);
}

}
strong{
  font-weight: 700;
}
body{
  overflow-x: hidden;
}
body , *{
  padding: 0 ;
  box-sizing: border-box;
  margin: 0;
}

/* Global colors variables end  */

h1,h2,h3,h4,h5,h6,a,p,ul,li,span {
  padding: 0;
  margin: 0;
}


a{
  text-decoration: none;
}
.primary_btn {
  padding: 10px 25px;
  display: flex;
  gap: 15px;
  border: 1px solid transparent;
  color: var(--white_color);
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  width: fit-content;
  background-color: var(--Ivory);
  letter-spacing: 2px;
  line-height: 1.3;
  min-width: 150px;
}
.primary_btn:hover{
  color: var(--gold);
  border-color: var(--gold);
}

/* header settings */

.header_bar{
  background-color: var(--Deep_Maroon);
}
.inner_content_bar{
  color: var(--Ivory);
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-size: 11px;

}
.main-header {
    background: var(--Ivory);
    padding-top: 15px;
}
header{
  border-bottom: .5px solid #D4C4B0;
  z-index: 99;
  position: relative;
}
.site-branding {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.sidenav {
    display: flex;
    justify-content: center;
}
header .menu {
    display: flex;
    list-style: none;
}
header .menu li a {
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 17px;
    display: inline-block;
    color: var(--taupe);
}
header .menu-item-has-children{
  position: relative;
}
header .menu-item-has-children .sub-menu {
    position: absolute;
    background-color: var(--Ivory);
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    transition: all .2s linear;
    top: calc(100% + 30px);
    opacity: 0;
    visibility: hidden;
    z-index: -2;
}
header .menu-item-has-children:hover .sub-menu{
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 9;
}
header .menu-item-has-children .sub-menu a {
    width: 100%;
    padding: 10px 0 0 15px;
}
/* footer */
footer{
  background-color: var(--Ivory);
  padding: 48px 0;
}
footer .menu a {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--gold);
}
footer .menu {
    list-style: none;
}
footer .widget-title {
    margin-bottom: 20px;
}
footer .wp-block-heading{
      font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
     margin-bottom: 20px;

}
.footer_item p , .footer_item a {
   font-size: 14px;
    margin-bottom: 10px;
    color: var(--gold);
    display: inline-block;
}
section.footer_bar {
    background: #1A1410;
    padding: 10px 0 5px 0;
}
section.footer_bar p {
    margin: 0;
    columns: var(--taupe);
    font-size: 11px;
}
.footer_bar .menu {
    display: flex;
    gap: 10px;
    justify-content: end;
    color: var(--taupe);
    list-style: none;
    font-size: 11px;
}
.footer_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
    gap: calc(10px);
}
.footer_widget_item {
    width: calc(25% - 8px);
}
/* hero section */
.banner-slider .slick-list.draggable, .banner-slider .slick-track {
    height: 100%;
}
.banner-slider {
    height: 100vh;
    position: relative;
    margin-bottom: 0 !important;
}
.hero_banner_content {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 0 200px;
    position: relative;
    z-index: 3;
}
h1.banner_heading {
    color: var(--Ivory);
    text-transform: uppercase;
    font-size: 72px;
  }
  .banner_description {
  color: var(--Ivory);
  text-align: right;

}
a.primary_btn.hero_btn {
    background: transparent;
    border: 1px solid;
}
.banner-slide {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.banner-slide::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 0;
  opacity: 0.1;
}
.banner-section  ul.slick-dots {
    position: absolute;
}
.banner-section  ul.slick-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
}
.banner-section ul.slick-dots li {
    height: 5px;
    width: 30px;
    background: var(--Ivory);
    transition: all .3s linear;
}
.banner-section ul.slick-dots li button{
  display: none;
}
.banner-section ul.slick-dots li.slick-active{
  background-color: var(--gold);
}
/* shop events */
img.s_event_img {
    width: 100%;
    height: calc(100% - 20px);
}
.shop_event_item {
    margin: 0 15px;
}
.shop_event_slider .slick-list{
  margin: 0 -15px;
  padding: 0 !important;
}
.shop_event_slider .slick-active img{
  transition: all .3s linear;
  transform: scale(0.8);
  filter: grayscale(100%);
}
.shop_event_slider .slick-active.slick-center img{
  transition: all .3s linear;
  transform: scale(1);
   filter: grayscale(0);
}
/* .event_wrapper {
    height: 680px;
} */
.sevent_content{
  height: 680px;
}
h2.s_event_name {
    text-align: center;
    text-transform: uppercase;
   color: var(--gold);
}
.shop_events{
  background-color: var(--Ivory);
  padding: 80px 0px;
}
.event_permalink{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.shop_event_item{
  position: relative;
}
h1.s_event_heading {
    text-align: center;
    margin-bottom: 40px;
}

/* banner + content */
.banner_content_wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.feature_image_wrap {
    height: 880px;
    width: 666px;
}
.feature_image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature_content_wrapp {
    width: 50%;
}
h5.sub_heading_bac{
  font-family: var(--inter);
  font-weight: 500;
  color: var(--gold);
}
h1.heading_bac {
    font-size: 75px;
    line-height: 75px;
    color: var(--Deep_Maroon);
    margin-bottom: 30px;
}
.heading_bac *{
  color: var(--Espresso);
  margin-bottom: 30px;
}
.feature_list_wrapper {
    display: flex;
    flex-basis: auto;
    justify-content: space-between;
}
.feature_list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.image_feature img {
    height: 35px;
    width: 35px;
    object-fit: cover;
    animation: spin 2s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: scale(0.8);
}
50% {
    transform: scale(1);
}
100% {
    transform: scale(0.8);
}
}
.banner_and_content{
  background-color: var(--Champagne);
  padding: 80px 0;
}
h6.feature_list_name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
}

/* icons list */
.features_icons_list .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #F78FB3;
    margin: 0 auto 10px auto;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}
.features_icons_list .feature-icon svg {
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 9;
}
.feature-box .feature-icon #waveanimation {
    top: 90%;
    transition: 2s;
}
.features_icons_list .feature-box p {
    font-size: 18px;
    text-align: center;
}
.features_icons_list .feature-box p {
    font-size: 18px;
    text-align: center;
}
.features_icons_list .feature-box span {
    transition: 0.5s;
    font-size: 14px;
    width: 90%;
    display: block;
    text-align: center;
    margin: auto;
    opacity: 0;
}
.feature-box:hover .feature-icon #waveanimation {
    top: 0%;
}
.features_icons_list {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 70%;
    margin: auto;
}
.feature-box #waveanimation {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.feature-box .wave-01 {
    position: absolute;
    width: 300%;
    height: 300%;
    left: -100%;
    top: 55%;
    background-color: rgba(247, 143, 179, 0.4);
    border-radius: 45%;
    animation: rotate 10s linear infinite;
}
.feature-box .wave-02 {
    position: absolute;
    width: 300%;
    height: 300%;
    left: -100%;
    top: 65%;
    background-color: rgba(247, 143, 179, 0.8);
    border-radius: 43%;
    animation: rotate 7s linear infinite;
}
.feature-box .wave-03 {
    position: absolute;
    width: 300%;
    height: 300%;
    left: -100%;
    top: 60%;
    background-color: rgba(247, 143, 179, 0.5);
    border-radius: 40%;
    animation: rotate 5s linear infinite;
}
.features_icons_list .feature-box:hover span {
    opacity: 1;
}
.icons_list {
  padding: 80px 0;
}
.feature-box:hover svg , .feature-box:hover svg{
  fill: var(--white_color);
}
.feature-box:hover .feature-icon svg.full path {
    fill: #fff;
}
@keyframes rotate{
  100% {
    transform: rotate(360deg);
}
}

/* video section */
.video-controls {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    z-index: 9;
}
.featured-video-wrapper {
    position: relative;
    width: 220px;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
}
button.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all .3s linear;
}
.video-controls button {
    background: transparent;
    border: 1px solid var(--gold);
    height: 80px;
    width: 80px;
    border-radius: 100%;
    padding: 0;
}
.featured-video-wrapper video , .left_content video.featured-video {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.featured-videos-slider .featured-video-slide {
    margin: 0 15px;
}
.featured-videos-slider .slick-list {
    /* margin: 0 -15px; */
}
.video-controls button svg path {
    color: var(--gold);
}
.featured-videos {
    padding: 80px 0;
}
.featured_reels_heading{
  color: var(--Deep_Maroon);
  margin-bottom: 20px;
}
 ul.products.columns-4::before , .product_tax_wrapper ul.products.columns-4::after{
  display: none;
}
header.woocommerce-products-header {
    max-width: unset;
    margin: 0;
    padding: 0;
    border: unset;
    padding: 160px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.woocommerce-products-header h1.page-title {
    font-size: 60px;
    color: var(--Ivory);
    padding-left: 80px;
}
.product_tax_wrapper {
    padding: 80px 0;
}
/* product category page */

 ul.products.columns-4 .product {
    width: calc(25% - 8px);
    border: 1px solid var(--Blush);
    border-radius: 24px;
    overflow: hidden;
}
 ul.products.columns-4 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-basis: auto;
}
 ul.products.columns-4 .product img {
    width: 100%;
    max-height: 484px;
    border-radius: 24px;
}

.woocommerce-loop-product__link {
	display: block;
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
	margin-bottom: 0;
	aspect-ratio: 3 / 4;
}

.woocommerce-loop-product__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.4s ease;
	display: block;
}

/* Gallery image hover effect */
.woocommerce-loop-product__link img + img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.product:hover .woocommerce-loop-product__link img:first-of-type {
	opacity: 0;
}

.product:hover .woocommerce-loop-product__link img:last-of-type {
	opacity: 1;
}
.woocommerce-loop-item {
    padding: 25px 20px;
}
h2.woocommerce-loop-product__title {
    font-size: 15px;
    text-align: center;
}
.woocommerce-loop-item * {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.woocommerce-loop-item .price {
    display: block;
    margin: 0 auto;
    text-align: center;
}
body .woocommerce-loop-item .add_to_cart_button , body .woocommerce-loop-item .product_type_variable ,
body .woocommerce-loop-item .add_to_cart_button:hover , body .woocommerce-loop-item .product_type_variable:hover  {
       display: block;
    margin: 0 auto;
    padding: 10px 40px;
    width: fit-content;
    background: var(--Deep_Maroon);
    font-weight: 400;
    margin-top: 5px;
    font-size: 15px;
    border-radius: 10px;
    line-height: 14px;
    color: var(--Ivory);
}
.product_tax_wrapper .filter-content {
    position: absolute;
    top: calc(100% + 10px);
    background: white;
    z-index: 99999;
    left: 0;
    opacity: 0;
    width: 310px;
    transform: translateX(-50%);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--Blush);
}
.product_tax_wrapper .yith-wcan-filter {
    position: relative;
}
.product_tax_wrapper span.irs span {
    visibility: visible !important;
}
.product_tax_wrapper .filter-title.collapsable.opened + .filter-content{
  opacity: 1;
}
.product_tax_wrapper .yith-wcan-filter {
    margin: 0;
    
}
.product_tax_wrapper .filters-container form {
    display: flex;
    gap: 30px;
    justify-self: center;
    padding: 10px 40px 10px 30px;
    /* background: linear-gradient(90deg, var(--Blush) , var(--Deep_Maroon) ); */
    background-size: 200% 50%;
    border-radius: 50px;
    border: 2px solid var(--Blush);
}
.product_tax_wrapper .yith-wcan-filters .yith-wcan-filter .filter-title.collapsable:after {
    right: -15px;
    height: 10px;
    width: 10px;
    background-repeat: no-repeat;
}
.product_tax_wrapper .filter-title {
    font-size: 15px !important;
    /* color: var(--Ivory) !important; */
    font-weight: 400!important;
}
.filter_cat_wraper_custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.woocommerce .filter_cat_wraper_custom  .woocommerce-ordering select {
    vertical-align: top;
    border-radius: 50px;
    border: 2px solid var(--Blush);
    padding: 10px 15px;
    margin: 0;
   background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30.727 30.727' xml:space='preserve'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
       background-repeat: no-repeat;
    background-size: 12px 12px;
    appearance: none;
    background-position-x: calc(100% - 20px);
    background-position-y: center;
}
.woocommerce .filter_cat_wraper_custom .woocommerce-ordering{
  margin: 0;
}
 .filter_cat_wraper_custom .yith-wcan-filters , .filter_cat_wraper_custom p.woocommerce-result-count{
  margin-bottom: 0;
 }

.filter_cat_wraper_custom{
  margin-bottom: 20px;
}

.collection-section h2 {
    font-size: 20px;
    color: #222;
    border-left: 4px solid var(--gold);
    padding-left: 10px;
}
.collection-section p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}
.collection-section ul {
    margin-top: 10px;
    padding-left: 20px;
    list-style: none;
}
.collection-section ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}
.collection-section {
    margin: 30px auto;
    padding: 40px;
    background: var(--white_color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.acc_tax_content {
    display: none;
}
.faq_tax{
  width: 100%;
  max-width: 1000px;
  
}
.acc_tax_wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    background: var(--white_color);
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.acc_cat_heading {
    padding: 12px 30px;
    font-size: 20px;
    color: var(--Espresso);
    font-family: var(--playfair);
    transition: all .3s linear;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.active_acc .acc_cat_heading{
  background-color: var(--Deep_Maroon);
  color: var(--Ivory);
}
.active_acc .acc_cat_heading svg path{
  fill: var(--Ivory);
}
.active_acc .acc_cat_heading svg {
  transform: rotate(180deg);
}
.acc_cat_heading:hover{
  cursor: pointer;
}
.acc_cat_heading svg {
    height: 15px;
    width: 15px;
}
.acc_tax_content {
    padding: 20px 40px;
  }
  .acc_tax_content p{
  font-size: 14px;

}
section.faq_section_category_woo {
    padding: 30px 0 80px;
}

/* single product page */
.single_product_custom_wrapper nav.woocommerce-breadcrumb {
    display: none;
}
body.woocommerce .single_product_custom_wrapper .woocommerce-product-gallery {
    display: flex;
    gap: 10px;
    float: unset !important;
    width: 60% !important;
    max-height: 930px;
}
body.woocommerce .single_product_galler_section_wrapper .summary.entry-summary {
    width: 40%;
}
.woocommerce div.product .single_product_custom_wrapper div.images.woocommerce-product-gallery{
  float: unset;
}
.single_product_custom_wrapper ol.flex-control-nav.flex-control-thumbs {
    width: 20%;
    /* height: 400px; */
    position: relative;
    overflow: visible !important;
    /* display: flex;
    flex-direction: column;
    gap: 10px; */
}
body.woocommerce .single_product_custom_wrapper ol.flex-control-nav.flex-control-thumbs li {
    width: 150px !important;
    max-height: 200px;
    height: 200px;
}

.single_product_custom_wrapper button.slick-next.slick-arrow {
    transform: rotate(-90deg);
}
.single_product_custom_wrapper button.slick-prev.slick-arrow {
    transform: rotate(-90deg);
}
.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
    min-height: 900px;
}
body.woocommerce .single_product_custom_wrapper .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image > a img {
    height: 930px !important;
    object-fit: cover;
}
body.woocommerce .single_product_custom_wrapper .woocommerce-product-gallery .flex-viewport {
    width: calc(100%);
}
.single_product_galler_section_wrapper {
    display: flex;
    gap: 30px;
}
body.woocommerce .single_product_custom_wrapper ol.flex-control-nav.flex-control-thumbs li img {
    height: 100%;
    object-fit: cover;
}
.single_product_custom_wrapper {
    padding: 20px 0;
}
.single_product_custom_wrapper h1.product_title.entry-title {
    font-size: 18px;
    margin-bottom: 15px;
}
body.woocommerce.single-product .single_product_custom_wrapper .price {
    font-size: 16px ;
    color: var(--black) ;
    margin-bottom: 10px;
}
body.woocommerce.single-product .single_product_custom_wrapper .woocommerce-product-details__short-description p {
    font-size: 14px ;
    list-style: 114px;
    font-family: var(--inter);
    margin-bottom: 20px;
}
.product_meta {
    font-size: 13px;
    color: var(--black);
}
a.primary_btn.whatsapp_btn {
    background: #4DC247;
    margin-top: 15px;
    transition: all .3s linear;
}
a.primary_btn.whatsapp_btn svg {
    height: 20px;
    width: 20px;
}
a.primary_btn.whatsapp_btn svg path {
    fill: white;
}
.whatsapp_btn:hover{
  transform: scale(1.1);
  color: var(--white_color);
}
section.related.products .products.columns-4 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
section.related.products .products.columns-4::before ,
section.related.products .products.columns-4::after{
  display: none;
}
section.related.products .products.columns-4 .product {
    width: calc( 25% - 8px );
}
section.related.products h2 {
    margin-bottom: 15px;
}
.single_product_page_faqs .acc_cat_heading svg {
    width: 10px;
    height: 10px;
}
.single_product_page_faqs .acc_cat_heading {
    font-size: 15px;
    padding: 8px;
}
.single_product_page_faqs .acc_tax_content p {
    font-size: 13px;
    line-height: 19px;
}
.single_product_page_faqs .acc_tax_content {
    padding: 15px 20px;
}
.single_product_custom_wrapper ol.flex-control-nav.flex-control-thumbs .slick-list {
    height: 100% !important;
}
.flex-control-nav .slick-next:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30.727 30.727' xml:space='preserve'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 10px 10px;
    transform: rotate(90deg);
}
.flex-control-nav .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 30.727 30.727' xml:space='preserve'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M29.994,10.183L15.363,24.812L0.733,10.184c-0.977-0.978-0.977-2.561,0-3.536c0.977-0.977,2.559-0.976,3.536,0 l11.095,11.093L26.461,6.647c0.977-0.976,2.559-0.976,3.535,0C30.971,7.624,30.971,9.206,29.994,10.183z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 10px 10px;
    transform: rotate(-90deg);
}
.single_product_custom_wrapper button.slick-arrow {
    top: calc(100% - 40px );
    background: var(--Ivory);
    z-index: 7;
    width: 40px;
    height: 40px;
}
.single_product_custom_wrapper .slick-prev:before, .single_product_custom_wrapper .slick-next:before {
    height: 12px;
    width: 12px;
}
.single_product_custom_wrapper .slick-next {
    right: 0;
    left: calc(50%);
}
.single_product_custom_wrapper .slick-prev {
    left: calc(50% - 40px);
}
/* feature coomon banner */
.feature_commob_banner_heading h1 {
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 70px;
    font-style: italic;
}
.feature_commoon_banner {
    padding: 170px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.video_cpv {
    position: relative;
    max-width: 550px;
    margin-left: auto;
    height: 770px;
}
.content_video_wrappper {
    display: flex;
    flex-basis: auto;
    gap: 60px;
}
.left_content , .right_content {
    width: 50%;
}
.content_plus_video {
    padding: 60px 0;
}
.content_vide_section h2 , .content_vide_section h1, .content_vide_section h3 , .content_vide_section h4 , .content_vide_section h5
, .content_vide_section h6 {
    color: var(--Blush);
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 600;
}
.content_vide_section p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 20px;
    display: inline-block;
    font-style: italic;
}
.right_image_cpv img {
    height: 707px;
    margin-bottom: 20px;
    width: 100%;
}
/* ajax blog posts */

.blog_posts_ajax {
    padding: 40px 0;
}

.blog_posts_ajax .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.blog_posts_ajax__card {
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog_posts_ajax__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog_posts_ajax__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
}

.blog_posts_ajax__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog_posts_ajax__img--placeholder {
    background: #e6e6e6;
}

.blog_posts_ajax__title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
}

.blog_posts_ajax__body {
    padding: 22px 26px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.blog_posts_ajax__excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.blog_posts_ajax__btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #333;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog_posts_ajax__btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.blog_posts_ajax__footer {
    margin-top: 48px;
    text-align: center;
}

.blog_posts_ajax__footer.is-complete .blog_posts_ajax__load-more {
    display: none;
}

.blog_posts_ajax__counter {
    margin: 0 0 14px;
    font-size: 14px;
    color: #555;
}

.blog_posts_ajax__progress {
    max-width: 260px;
    height: 2px;
    margin: 0 auto 28px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.blog_posts_ajax__progress-bar {
    display: block;
    height: 100%;
    background: #1a1a1a;
    transition: width 0.4s ease;
}

.blog_posts_ajax__load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 18px 36px;
    border: 0;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.blog_posts_ajax__load-more:hover {
    opacity: 0.88;
}

.blog_posts_ajax__load-more.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

/* --- Shimmer / skeleton --- */
.blog_posts_ajax__skeleton {
    background: #f7f7f7;
    padding-bottom: 30px;
    pointer-events: none;
}

.blog_posts_ajax__skeleton-thumb,
.blog_posts_ajax__skeleton-line,
.blog_posts_ajax__skeleton-btn {
    position: relative;
    display: block;
    background: #e9e9e9;
    overflow: hidden;
}

.blog_posts_ajax__skeleton-thumb::after,
.blog_posts_ajax__skeleton-line::after,
.blog_posts_ajax__skeleton-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    animation: blog_posts_ajax_shimmer 1.3s infinite;
}

.blog_posts_ajax__skeleton-thumb {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.blog_posts_ajax__skeleton-line {
    height: 12px;
    margin: 22px 40px 0;
    border-radius: 4px;
}

.blog_posts_ajax__skeleton-line--short {
    margin: 12px auto 0;
    width: 60%;
}

.blog_posts_ajax__skeleton-btn {
    height: 42px;
    width: 150px;
    margin: 24px auto 0;
    border-radius: 999px;
}

@keyframes blog_posts_ajax_shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ---------- Single post ---------- */
.single-post article .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Title bar */
.single-post__titlebar {
    background: #6d6d6d;
    padding: 34px 0;
    text-align: center;
    margin-bottom: 46px;
}
.single-post__title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
}
.single-post__date {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

/* Featured image */
.single-post__featured {
    margin: 0 0 44px;
}
.single-post__featured-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Content */
.single-post__content {
    color: #444;
}
.single-post__content > *:first-child {
    margin-top: 0;
}
.single-post__content p {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0 0 22px;
}
.single-post__content h2 {
    font-size: 22px;
    color: #1f1f1f;
    letter-spacing: 0.02em;
    margin: 48px 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e4e4;
}
.single-post__content h3 {
    font-size: 18px;
    color: #2a2a2a;
    margin: 36px 0 16px;
}
.single-post__content h4 {
    font-size: 15px;
    color: #2a2a2a;
    margin: 26px 0 8px;
}
.single-post__content a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.single-post__content ul,
.single-post__content ol {
    margin: 0 0 22px;
    padding-left: 22px;
}
.single-post__content li {
    font-size: 15px;
    line-height: 1.85;
    color: #4a4a4a;
    margin-bottom: 8px;
}
.single-post__content blockquote {
    margin: 30px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid #cfa15a;
    color: #333;
}

/* FAQ block (paste content uses .faq) */
.single-post__content .faq {
    margin-top: 20px;
}
.single-post__content .faq__item {
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}
.single-post__content .faq__item:first-child {
    border-top: 1px solid #ececec;
}
.single-post__content .faq__q {
    margin: 0 0 6px;
    font-size: 15px;
    color: #1f1f1f;
}
.single-post__content .faq__a {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* Tags */
.single-post__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 46px 0 28px;
    color: #666;
}
.single-post__tag-icon {
    color: #888;
}
.single-post__tags a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
}
.single-post__tags a:hover {
    color: #1a1a1a;
}

/* Social share */
.single-post__share {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 26px 0 8px;
}
.single-post__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    color: #555;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.single-post__share-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* ---------- Related articles ---------- */
.single-related {
    padding: 60px 0 20px;
}
.single-related .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.single-related__heading {
    text-align: center;
    font-size: 22px;
    color: #1f1f1f;
    margin: 0 0 36px;
}
.single-related__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.single-related__track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.single-related__track::-webkit-scrollbar {
    display: none;
}
.single-related__card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    text-decoration: none;
    text-align: center;
}
.single-related__thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}
.single-related__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.single-related__card:hover .single-related__thumb img {
    transform: scale(1.04);
}
.single-related__card-title {
    display: block;
    margin: 16px 0 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #1f1f1f;
}
.single-related__card-date {
    display: block;
    font-size: 12px;
    color: #999;
}
.single-related__nav {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.single-related__nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .single-related__card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}
@media (max-width: 600px) {
    .single-post__title {
        font-size: 20px;
    }
    .single-post__content h2 {
        font-size: 20px;
    }
    .single-related__card {
        flex: 0 0 82%;
    }
}
/* ============ Contact Us block ============ */
.contact_us_form {
    padding: 60px 0;
}
.contact_us_form .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Centred title */
.contact_us_form__title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 34px;
    color: #1a1a1a;
    margin: 0 0 50px;
}

/* THE key row: side text (left) + box (right) */
.contact_us_form__layout {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

/* Vertical CONTACT US */
.contact_us_form__side {
    flex: 0 0 auto;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    font-size: 92px;
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    text-align: center;
    padding: 0 10px;
}

/* Grey box with background image on the right */
.contact_us_form__box {
    flex: 1 1 auto;
    background-color: #f2f2f2;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.contact_us_form__inner {
    width: 100%;
    /* max-width: 720px; */
    padding: 50px 60px;
}
.contact_us_form__subtitle {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 34px;
}

/* ============ Generic CF7 layout ============ */
.contact_us_form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 32px;
    align-items: end;
}
.contact_us_form .wpcf7-form > p {
    margin: 0;
}

/* Full-width rows decided by field type */
.contact_us_form .wpcf7-form > p:has(textarea),
.contact_us_form .wpcf7-form > p:has(input[type="submit"]),
.contact_us_form .wpcf7-form > .wpcf7-response-output {
    grid-column: 1 / -1;
}

.contact_us_form .wpcf7-form label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.contact_us_form .wpcf7-form br {
    display: none;
}
.contact_us_form .wpcf7-form-control-wrap {
    display: block;
}

.contact_us_form input[type="text"],
.contact_us_form input[type="email"],
.contact_us_form input[type="tel"],
.contact_us_form input[type="url"],
.contact_us_form select,
.contact_us_form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b9b9b9;
    background: transparent;
    padding: 6px 0;
    font-size: 15px;
    color: #333;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.contact_us_form input::placeholder,
.contact_us_form textarea::placeholder {
    color: #9a9a9a;
}
.contact_us_form input:focus,
.contact_us_form select:focus,
.contact_us_form textarea:focus {
    border-bottom-color: #1a1a1a;
}
.contact_us_form textarea {
    resize: vertical;
    min-height: 60px;
}

/* Submit — full row, right aligned */
.contact_us_form .wpcf7-form > p:has(input[type="submit"]) {
    text-align: right;
    margin-top: 10px;
}
.contact_us_form input[type="submit"] {
    display: inline-block;
    min-width: 170px;
    padding: 16px 40px;
    border: 0;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.contact_us_form input[type="submit"]:hover {
    opacity: 0.85;
}

.contact_us_form .wpcf7-not-valid-tip {
    font-size: 12px; color: #d33; margin-top: 6px;
}
.contact_us_form .wpcf7-response-output {
    margin: 20px 0 0 !important; font-size: 14px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .contact_us_form__side { font-size: 60px; }
    .contact_us_form__box { background-size: cover; }
    .contact_us_form__inner { max-width: 560px; }
}
@media (max-width: 767px) {
    .contact_us_form__title { font-size: 26px; margin-bottom: 30px; }
    .contact_us_form__layout { flex-direction: column; }
    .contact_us_form__side {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 40px;
        text-align: left;
        padding: 0 0 14px;
    }
    .contact_us_form__box {
        min-height: 0;
        background-image: none !important;
    }
    .contact_us_form__inner { max-width: 100%; padding: 34px 24px; }
    .contact_us_form .wpcf7-form { grid-template-columns: 1fr; row-gap: 26px; }
    .contact_us_form .wpcf7-form > p:has(input[type="submit"]) { text-align: left; }
    .contact_us_form input[type="submit"] { width: 100%; }
}
.contact_us_form__box {
    background-size: cover;
    background-blend-mode: soft-light;
}