@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --blue: #2e2768;
  --brown-color: #AF908C;
  --text-color: #3b3b3b;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Montserrat", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --button-font: "Montserrat", sans-serif;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
/* .container-fluid {
  padding: 0 4%;
} */
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Montserrat", sans-serif;
}
ul{
  list-style: none;
}
p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
/* my css pramesh */
.right-top {
  display: flex;
  width: 55%;
  justify-content: space-between;
  align-items: center;
}



.common-padd{
  padding:80px 0px;
}
.common-padd-big{
  padding:150px 0px 80px 0px;
}
.main-heading h2{
  font-size: 30px;
  color: var(--black-color);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: inline-block;
}
/* .main-heading p{
  font-size: 24px;
  color: var(--text-color);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
} */
.main_menu {
  display: block;
  position: relative;
  background: #fff;
  padding: 25px 0px;
  border-radius: 15px;
  z-index: 1;
}
.main_menu .navigation.navbar {
  padding: 0;
}
.container-menu {
  width: 80%;
  margin: 0 auto;
}
.logo {
  display: block;
}
.logo a {
  position: relative;
  z-index: 1;
  width: 150px;
  display: block;
}
.logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.btn_magnifing:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.right-top-div {
  display: flex;
  align-items: center;
}
.right_btm {
  display: block;
  margin-right: 50px;
}
.icon_c a {
  color: var(--blue);
  padding: 15px;
  border-radius: 15%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  font-size: 18px;
  background: transparent;
  /* background-color: var(--text-color); */
}

.banner-scroll-down .red_btn{
  padding: 25px 25px;
  background-color:#fff;
}
.banner-scroll-down{
  position: absolute;
  bottom: 105px;
  left: 12%;
}
.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
}
.banner_sec .bn-text{
  font-size: 40px;
  color: var(--white-color);
  font-weight: bold;
}
.slider,
.slide {
  height: 809px;
  background-color: #ccc;
}
.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* .slide .slide__img::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 33, 36, 0.89);
} */
.slide__img-2 {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 700px;
  height: 800px;
}
.slide__img-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.water-drop {
  position: absolute;
  left: 20px;
  top: -30px;
  width: 115px;
  height: 115px;
}
.water-drop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-btn .red_btn{
  background-color: var(--white-color);
  color: var(--blue);
  transition: .3s;
}
.main-btn .red_btn:hover{
  background-color: var(--white-color);
  /* color: var(--black-color); */
  transition: .3s;
}



@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}



.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}


.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}



.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}




@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 71%;
  text-align: center;
}

.slide .slide__content.slide__content__left {
  left: 25%;
  transform: translate(-14%, -20%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  animation: fadeInLeft 0.5s both 1.5s;
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  animation: fadeInLeft 1s both 1.5s;
  max-width: 853px;
  margin: 40px auto;
}

.slide .slide__content--headings .title {
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}


/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 8px 20px;
  border-radius: 0;
  position: relative;
  color: var(--white-color);
  background: var(--blue);
  text-decoration: none;
  overflow: hidden;
  font-size: 14px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border: 1px solid var(--blue);
}

.red_btn span {
  /* font-weight: bold; */
  position: relative;
  font-family: "Montserrat", sans-serif;
  /* letter-spacing: 2px; */
  /* text-transform: uppercase; */
}

.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--blue);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}

.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  border: 1px solid var(--white-color);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 100%);
}

.red_btn.white_bg span {
  color: var(--white-color);
}

.red_btn.white_bg:hover span {
  color: var(--main-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}



.red_btn-2 {
  background: var(--main-color);
  border-radius: 0px 40px 40px 70px;
}

.red_btn-2::before {
  background: var(--green-color);
}

/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 60px;
  color: var(--text-color);
  position: relative;
  line-height: 1;
  font-weight: 700;
}



.left_ali p,
.left_ali a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
}

.icon_map {
  margin-right: 10px;
}

.icon_map span {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

#banner-slider {
  display: none; /* Hide by default */
}

#banner-slider.active {
  display: block; /* Show only when active */
}


.add_cart_active {
    position: absolute;
    font-size: 10px;
    display: inline-flex;
    width: 13px;
    height: 13px;
    background-color: red;
    border-radius: 40px;
    right: 5px;
    top: 2px;
    color: #fff;
    align-items: center;
    justify-content: center;
}



/* ========================Opuln css============================== */


.slide .slide__content--headings .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #C9A13B, #A67C1F);
    border-radius: 2px;
}
.banner-img{
  width:200px;
  height: auto;
  margin: 0 auto 20px auto;
}
.banner-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #C9A13B, #A67C1F);
    border-radius: 2px;
}
.sl-card{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  background-color: #fff;
}
.suooprt-section{
  background-color: #f4f5f7;
}
.suooprt-section .owl-stage-outer{
  padding: 20px 0px;
}
.support-category{
  margin-top: 30px;
}
.support-category .sl-card{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-card .img-box{
  width: 25px;
  height: 50px;
}
.sl-card .img-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-heading.heading-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-heading.heading-btn a{
  color: var(--black-color);
  font-weight: 600;
}
.sl-card-one{
  width: 100%;
  height: auto;
  background-color: var(--white-color);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
      --tw-shadow: 0 10px 30px rgba(46, 39, 104, 0.12);
    --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 20px;
}
.support-category-one .owl-stage-outer{
  padding: 30px 0px;
}
.sl-card-one .img-box{
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 10px;
}
.sl-card-one .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-box a{
  color: #000;
  font-size: 16px;
}
.coft-text{
  text-align: center;
}
.comfirt{
  border-top: 1px solid #ccc;
}
.coft-text h6{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}
.coft-text p{
  font-size: 14px;
  color: #838383;
  font-weight: 400;
} 
footer{
  width: 100%;
  height: auto;
  background-color: #2e2768;
  padding: 50px 0px 20px 0px;
}
.fl-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.fl-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.f-text p{
  color: #fff;
  font-size: 14px;
}
.q-links p{
  color: var(--white-color);
  font-size: 14px;
}
.q-links ul li a{
  color: var(--white-color);
  text-decoration: none;
  font-size: 14px;
}
.q-links ul li a:hover{
  color: #c9a13b;
}
.desclemer{
  margin-top: 50px;
}
.desclemer h6{
  color: #fff;
  font-size: 14px;
}
.desclemer p{
  color: #fff;
  font-size: 12px;
}
.text-about{
  text-align: center;
  margin-top: 30px;
}
.products-wrepper{
  margin-top: 30px;
}
.products-wrepper .sl-card-one{
  margin-bottom: 25px;
}

.products-wrepper .sl-card-one .img-box{
  width: 100%;
  height: 150px;
}
.products-wrepper .sl-card-one p{
  font-size: 14px;
  color: #838383;
  margin-bottom: 0px;
}
.viewl-all{
  width: 100%;
  display: inline-block;
  text-align: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.main_menu_hdr{
  box-shadow: 0 0 2px;
}
.text-about p a{
  text-decoration: none;
  color: var(--black-color);

}


.add_cart_active {
    position: absolute;
    font-size: 10px;
    display: inline-flex;
    width: 13px;
    height: 13px;
    background-color: red;
    border-radius: 40px;
    right: 5px;
    top: 2px;
    color: #fff;
    align-items: center;
    justify-content: center;
}



/* =================================================== */
/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
    background: #005177;
    transform: translateY(-3px);
}

/* Fade-in animation */
#scrollTopBtn.show {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Footer Wrapper */
.custom-footer {
    background: #f5f5f5;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

/* Newsletter */
.newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
}

.newsletter input {
    border: none;
    outline: none;
    background: transparent;
    width: 220px;
}

.newsletter button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #f3d9e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e6b8d0;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

/* Copyright */
.copyright {
    font-size: 14px;
    color: #555;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icons img {
    height: 22px !important;
    object-fit: contain;
    width: 100% !important;
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #c94b8c;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .newsletter input {
        width: 150px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}







/* =============================woocommerce css====================================== */
/* Only affects WooCommerce My Account page */
.woocommerce-account .woocommerce {
    max-width: 100%;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* Form boxes */
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Headings */
.woocommerce-account .woocommerce h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Input fields */
.woocommerce-account .woocommerce input.input-text {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
}

.woocommerce-account .woocommerce input.input-text:focus {
    border-color: #0073aa;
    outline: none;
}

/* Buttons */
.woocommerce-account .woocommerce button.button {
    width: 100%;
    background: #2e2768 !important;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

.woocommerce-account .woocommerce button.button:hover {
    background: #2e2768 !important;
	color:#fff;
}

/* Lost password */
.woocommerce-account .woocommerce .lost_password {
    text-align: right;
    margin-top: 10px;
}

.woocommerce-account .woocommerce .lost_password a {
    color: #0073aa;
    font-size: 14px;
}

/* Two-column layout */
.woocommerce-account .woocommerce .u-columns {
    display: flex;
    gap: 20px;
}

.woocommerce-account .woocommerce .u-column1,
.woocommerce-account .woocommerce .u-column2 {
    width: 50%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce .u-columns {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce .u-column1,
    .woocommerce-account .woocommerce .u-column2 {
        width: 100%;
    }
}

/* =============================cart page css=================================== */
/* ONLY Cart Page */
.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 40px auto;
}

/* Table Style */
.woocommerce-cart table.shop_table {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    border-collapse: collapse;
}

/* Header */
.woocommerce-cart table.shop_table thead th {
    background: #f7f7f7;
    padding: 15px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

/* Rows */
.woocommerce-cart table.shop_table td {
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid #eee;
    vertical-align: middle;
}

/* Product Image */
.woocommerce-cart .product-thumbnail img {
    width: 80px;
    border: 1px solid #eee;
    padding: 5px;
}

/* Remove Button (Red X) */
.woocommerce-cart .product-remove a {
    color: red;
    font-size: 20px;
}

/* Product Name */
.woocommerce-cart .product-name a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

/* Price + Subtotal (Green) */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    color: #2e2768;
    font-weight: 600;
}

/* Quantity Box */
.woocommerce-cart .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Quantity Input */
.woocommerce-cart .quantity input.qty {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
}

/* Custom +/- Buttons */
.woocommerce-cart .quantity button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.woocommerce-cart .quantity button:hover {
    background: #f0f0f0;
}

/* Coupon Section */
.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
}

.woocommerce-cart .coupon input {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Buttons */
.woocommerce-cart .button {
    background: #eaeaea;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* Update cart button (disabled look) */
.woocommerce-cart button[name="update_cart"] {
    background: #ddd;
    color: #888;
}

/* Apply Coupon Button */
.woocommerce-cart button[name="apply_coupon"] {
    background: #dcdcdc;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.shop_table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        padding: 10px;
    }

    .woocommerce-cart table.shop_table td {
        display: flex;
        justify-content: space-between;
        text-align: right;
    }
}
/* =====================================blue webcss woocommerce================================================= */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    padding: 20px !important;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    border: 1px solid #ccc;
    border-radius: 20px;
    position: relative;
}
.yith-add-to-wishlist-button-block{
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
}
.single_glass_item .yith-add-to-wishlist-button-block{
    position: absolute !important;
    top: 35px !important;
    right: 0px !important;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor{
        width: 35px !important;
    height: 35px!important;
    border-radius: 50%!important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
/*   height: 65px; */
	display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Sirf 2 line show karega */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000 !important;
	 padding: 0 !important;
    margin: 4px 0 !important;
}

.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 7px;
    border-radius: 0px;
    border: 1px solid rgb(0 0 0 / 26%);
}
.woocommerce ul.products li.product .button {
    display: inline-block;
    margin-top: 0.4em !important;
    background-color: #2e2768 !important;
    color:#fff !important;
	font-size:16px;
}
.wpfMainWrapper{
    border:1px solid #ccc;
    border-radius: 20px;
    padding: 20px;
}
.wpfFilterWrapper .wfpDescription {
    font-size: 22px !important;
}
.ui-slider.ui-widget-content .ui-slider-handle{
    background: #fff;
    border: px solid #000 !important;
    border-radius: 50px !important;
    background-color:#2e2768 !important;
}
.wpfFilterButton.wpfButton, .wpfClearButton.wpfButton{
    background-color:#2e2768 !important;
    color:#fff !important;
}
.wpfFilterWrapper[data-filter-type="wpfPrice"] .wpfFilterContent{
    padding-left: 0px;
}
.wpfFilterWrapper ul:not(.wpfButtonsFilter) li{
    padding: 5px 0px !important;
}
/*.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{*/
/*        margin: 0 3.8% 2.092em 0 !important;*/
/*}*/
.added_to_cart.wc-forward{
    display: none !important;
}
.woocommerce-product-gallery.images.wpgs-wrapper{
    border:1px solid #ccc;
}
.woocommerce div.product .product_title{
    color: #000;
    font-size:24px !important;
}
form.cart button[type='submit']:not(#qib_id):not(#qib_id):not(_):not(_){
    background-color:#2e2768 !important;
}
.reset_variations{
    color: #000 !important;
}
.product_meta a{
    color:#000 !important;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor{
    justify-content: center !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2{
    color: #000 !important;
}
.woocommerce div.product .woocommerce-tabs .panel p{
    color: #000 !important;
}

.related.products h2{
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
        margin: 0 0px !important;
}

.woocommerce-cart table.cart img{
    width: 100px !important;
    border: 1px solid #ccc !important;
    flex-shrink: 0;
}
.product-name a{
    color: #000 !important;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
    width:200px !important;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button{
    color: #000 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
    background-color:#2e2768 !important;
}

.select2-selection__rendered{
        padding: 1.2em !important;
}
.wc-block-components-sidebar-layout .wc-block-components-main{
    border: 1px solid #ccc;
    padding: 50px;
    border-radius: 5px;
}

.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    display: inline-block;
    box-sizing: border-box;
    padding: 14px 35px;
    border-radius: 6px;
    position: relative;
    color: #fff;
    background: #2e2768 !important;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    border: none !important;
	font-size:16px;
}
.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained{
        display: inline-block;
    box-sizing: border-box;
    padding: 14px 35px;
    border-radius: 6px;
    position: relative;
    color: #fff;
    background: #2e2768 !important;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    border: none !important;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 2.6em !important;
}
.wc-block-components-totals-item span{
    color:#000!important;
}
.wc-block-components-product-metadata__description p{
    font-size: 16px;
}
.wishlist_table .product-add-to-cart a{
    background-color: #2e2768 !important;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}
/*=========================my account css==================================*/
/* ===== My Account Page Layout ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    /*max-width: 1200px;*/
    /*margin: 40px auto;*/
}

/* ===== Sidebar Menu ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 15px;
    background: #f5f7fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #2e2768;
    color: #fff;
}

/* Active Menu */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #2e2768;
    color: #fff;
}

/* ===== Content Area ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== Buttons ===== */
.woocommerce-account .button,
.woocommerce-account button {
    background: #0073ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.woocommerce-account .button:hover,
.woocommerce-account button:hover {
    background: #0056cc;
}

/* ===== Forms ===== */
.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

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

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}
/* Address Page Wrapper */
.woocommerce-account .woocommerce-Addresses {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Individual Address Box */
.woocommerce-account .woocommerce-Address {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    position: relative;
}

/* Hover Effect */
.woocommerce-account .woocommerce-Address:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Heading Style */
.woocommerce-account .woocommerce-Address h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #111;
}

/* Address Text */
.woocommerce-account .woocommerce-Address address {
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

/* Edit Link Button Style */
.woocommerce-account .woocommerce-Address a.edit {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2e2768;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-Address a.edit:hover {
    background: #0056cc;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-Addresses {
        flex-direction: column;
    }
	.slide .slide__img:before{
		background: #000000;
		background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	}
}
.woocommerce-Button.button{
    background-color:#2e2768 !important;
    color:#fff !important;
}
.woocommerce-form__input.woocommerce-form__input-checkbox{
    width:auto !important;
}

.woocommerce-LostPassword.lost_password a{
    color:#000 !important;
}
.woocommerce-privacy-policy-text a{
    color: #000 !important;
}

.u-column1 .form-row{
    display: flex;
    flex-direction: column;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    width: 130px !important;
    background-color: #2e2768 !important;
    color: #fff !important;
}

.product_meta{
    color: #000;
}

.qib-button:not(#qib_id):not(#qib_id){
    height: 35px;
    width: 35px !important;
    border-radius: 50px !important;
    background-color:#fff !important;
}
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
    background-color:#fff !important;
    margin: 0px 5px !important;
    border: 1px solid #ccc !important;
}
.woocommerce-page div.product div.summary{
    border: 1px solid #ccc !important;
	padding: 20px;
    border-radius: 5px;
}
/*======================why choose mobile css==============================*/
.mobile-view-why-choose .mobile-why-choose{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0px;
}
.mobile-why-choose .icon-box-m{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #000;
  padding: 15px;
  box-shadow: 0 0 15px #00A098;
}
.mobile-why-choose .icon-box-m img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-box-m h3{
  font-size: 24px;
  color: #000;
  font-weight: 600;
}
.text-box-m p{
  margin-bottom: 0px;
}
.mobile-view-why-choose{
  display: none;
}
.pv-link ul{
    display: flex;
    align-content: center;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    gap: 15px;
}
.pv-link ul li{
    list-style: none;
    position: relative;
}
.pv-link ul li a{
    color: #fff;
}
.pv-link ul li::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 5px;
    width: 1px;
    height: 15px;
    background-color: #fff; /* line color */
}
.pv-link ul li:first-child::before {
    display: none;
}
.woocommerce table.my_account_orders .button{
    background-color:#2e2768;
    color:#fff !important;
}
.woocommerce table.shop_table tbody th a{
    color: #000 !important;
}
.woocommerce-Address-title.title h2{
    font-size: 20px !important;
}
.wpcf7-spinner{
    position: absolute !important;
}
.woocommerce-MyAccount-content a{
    color:#000;
}

.product_meta{
    display: flex;
    flex-direction: column;
}

.ypb-coa-btn{
    background-color: #2e2768 !important;
    color:#fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.woocommerce div.product form.cart .variations select{
    min-width: 40% !important;
    font-size:16px !important;
}
.wc-block-components-product-price{
    margin: 10px 0px;
}




/* Product Image Zoom Container */
.woocommerce-product-gallery__image {
    position: relative;
    overflow: hidden;
}

.woocommerce-product-gallery__image img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{
        border: 1px solid #ccc !important;
}

/*.woocommerce div.product div.images,*/
/*.woocommerce-page div.product div.images{*/
/*        width: 40% !important;*/
/*}*/
/*.woocommerce div.product div.summary,*/
/*.woocommerce-page div.product div.summary{*/
/*    width: 56% !important;*/
/*}*/

.woocommerce-review-link{
	color:#000 !important;
}

.woocommerce .star-rating span{
	color:#ffc200 !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color:#000 !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name{
	font-size:14px !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price{
	font-size:14px;
}
.wc-block-components-formatted-money-amount{
	font-size:14px !important;
}

.woocommerce p.stars a{
	color:#ffc200 !important;
}

.support-category .item a .t-box{
	color:#000 !important;
}
.support-category-one a .item .t-box{
	color:#000 !important;
}















/* ===== FAQ SECTION START ===== */

.faq-section {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.faq-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 0;
}

.faq-icon {
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}



/* ===== FAQ SECTION END ===== */




/* ===== REVIEW SECTION START===== */
.rice-review-section {
  margin-top: 60px;
}

.rice-review-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.rice-review-left { width: 30%; }
.rice-review-right { width: 70%; }

.rice-single-review {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
}

.rice-review-btn {
  background: #8e2a8a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* ===== MODAL ===== */
.rice-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.6);

  align-items: center;
  justify-content: center;
}

.rice-modal-content {
  background: #fff;
  width: 92%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.rice-close {
  position: absolute;
  right: 12px;
  top: 10px;
  cursor: pointer;
}

/* FORM */
.rice-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rice-modal-content input,
.rice-modal-content textarea,
.rice-modal-content select {
  width: 100%;
  padding: 8px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.rice-modal-content textarea {
  min-height: 70px;
}

.rice-modal-content input[type="submit"] {
  background: #8e2a8a;
  color: #fff;
  border: none;
  padding: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .rice-review-wrapper {
    flex-direction: column;
  }
  .rice-review-left,
  .rice-review-right {
    width: 100%;
  }
}


.rice-pagination {
  margin-top: 20px;
  text-align: center;
}

.rice-pagination a,
.rice-pagination span {
  display: inline-block;
  padding: 6px 12px;
  margin: 3px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

.rice-pagination .current {
  background: #8e2a8a;
  color: #fff;
}

/* ===== REVIEW SECTION END ===== */


/* MAIN BOX */
.rice-fbt {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
}

/* TITLE */
.rice-fbt h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* FLEX ROW */
.rice-fbt-items {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* EACH PRODUCT */
.fbt-item {
  text-align: center;
  width: 140px;
}

/* IMAGE */
.fbt-item img {
  width: 100%;
  max-width: 110px;
  margin-bottom: 8px;
}

/* TITLE */
.fbt-item p {
  font-size: 14px;
  margin: 5px 0;
}

/* PRICE */
.fbt-price {
  display: block;
  font-weight: 600;
  color: #8e2a8a;
  margin-bottom: 5px;
}

/* PLUS ICON */
.fbt-plus {
  font-size: 22px;
  font-weight: bold;
}

/* BUTTON */
.fbt-btn {
  margin-top: 20px;
  background: #8e2a8a;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* DETAILS */
.show-details {
  font-size: 13px;
  color: #8e2a8a;
  display: block;
  margin-top: 5px;
}

.fbt-details {
  margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px){
  .rice-fbt-items {
    justify-content: center;
  }
}


.rice-fbt {
    margin-top: 20px;
}

.rice-fbt-items {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fbt-item {
    text-align: center;
    width: 120px;
}

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

.fbt-plus {
    font-size: 22px;
    font-weight: bold;
}

#fbt-add-all {
    margin-top: 15px;
    padding: 10px 20px;
    background: #7a1f5c;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
.rice-fbt-items{
flex-direction: column;
}
}



/* MAIN BOX */
.rice-fbt {
    display: grid;
    grid-template-columns: 3fr 1fr; /* 👉 9:3 ratio */
    gap: 30px;
    align-items: center;
}

/* HEADING */
.rice-fbt h3 {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

/* SLIDER */
.rice-fbt .fbt-slider {
    width: 100%;
    min-width: 0;
}

/* SUMMARY (RIGHT SIDE) */
.rice-fbt .fbt-summary {
    text-align: left;
}

/* TOTAL TEXT */
.rice-fbt .fbt-summary p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* BUTTON FIX */
.rice-fbt #fbt-add-all {
    padding: 10px 20px;
    background: #7a1f5c;
    color: #fff;
    border: none;
    display: inline-block;
    white-space: nowrap; /* 👈 button ভাঙবে না */
}

/* MOBILE */
@media (max-width: 768px) {
    .rice-fbt {
        grid-template-columns: 1fr;
    }

    .rice-fbt .fbt-summary {
        text-align: center;
    }
}























.rice-fbt .fbt-item {
    position: relative;
    text-align: center;
}

.fbt-plus {
    position: absolute;
    right: -8px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    padding: 2px 5px;
    z-index: 5;
}

/* slider ঠিক রাখবে */
.fbt-slider .swiper-slide {
    width: calc(50% - 10px) !important;
}






.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
}






.woocommerce #reviews #comments ol.commentlist {
    margin: 0;
    width: 100%;
    background: 0 0;
    list-style: none;
    display: none !important;
}

.woocommerce #review_form #respond {
    position: static;
    margin: 0;
    width: auto;
    padding: 0;
    background: transparent none;
    border: 0;
     display: none !important;
}

.best-seller-tag {
    position: absolute;
    top: 4px;
    right: 12px;
    left: auto;

    background: #e53935;
    color: #fff;

    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;

    border-radius: 4px;
    text-transform: uppercase;
    z-index: 9;
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .best-seller-tag {
        top: 3px;
        right: 8px;
        padding: 3px 8px;
        font-size: 9px;
    }
}





/* =========================
   TOP OFFER BAR
========================= */
.top_offer_bar {
    width: 100%;
    background: #2e2768; /* Blue Background */
    overflow: hidden;
    position: relative;
    z-index: 9999;
    padding: 10px 0;
}

.offer_marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.offer_marquee span {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding-left: 100%;
    animation: smoothMarquee 22s linear infinite;
    will-change: transform;
}

/* Smooth Animation */
@keyframes smoothMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .top_offer_bar {
        padding: 8px 0;
    }

    .offer_marquee span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .offer_marquee span {
        font-size: 12px;
    }
}













/* =================================================== */
/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
    background: #005177;
    transform: translateY(-3px);
}

/* Fade-in animation */
#scrollTopBtn.show {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Footer Wrapper */
.custom-footer {
    background: #f5f5f5;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

/* Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

/* Newsletter */
.newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
}

.newsletter input {
    border: none;
    outline: none;
    background: transparent;
    width: 220px;
}

.newsletter button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #f3d9e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e6b8d0;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

/* Copyright */
.copyright {
    font-size: 14px;
    color: #555;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icons img {
    height: 22px;
    object-fit: contain;
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #c94b8c;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .newsletter input {
        width: 150px;
    }

    .payment-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}





.rice-fbt .swiper-wrapper{
	background-color:#fff !important;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name{
	color:#2e2768;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link){
	background-color:#2e2768 !important;
	color:#fff !important;
}