* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}

ul {

  padding: 0px;

  margin: 0px;

}



body {

  font-weight: 400;

  font-style: normal;

  font-size: 14px;

  color: #000;

}



:root {

  /* Brand colors */

  --color-primary: #f87895; /* blue */

  --color-primary-hover: #1d4ed8;

  --color-secondary: #f0f0f0; /* purple */



  /* Neutral colors */

  --color-white: #ffffff;

  --color-black: #000000;

  --color-light-black: #323232;

  --text-light-black: #686868;



  /* Status colors */

  --color-success: #16a34a;

  --color-warning: #f59e0b;

  --color-error: #dc2626;

  --color-info: #0ea5e9;

}



p {

  color: var(--text-light-black);

  font-size: 16px;

  font-weight: 600;

}



a {

  text-decoration: none;

}



.topbar {

  padding: 10px 0px;

  background: #fcc9d5;

}



.topbar p {

  text-align: center;

  margin: 0px;

  color: var(--color-light-black);

  font-weight: 600;
      font-size: 14px;

}



.fa-phone {

  transform: rotate(90deg);

}



.topbar ul {

  justify-content: end;

  margin-bottom: 0px;

  display: flex;

  gap: 15px;

  padding: 0px;

  line-height: normal;

  color: #fff;

}



.topbar ul li i {

  margin-right: 10px;

}



.topbar ul li a {

  color: #fff;

}



.topbar ul li {

  list-style: none;

}



.logo img {

  max-width: 250px;

}

/* animation menu hamburger */

.menu-btn {

  position: relative;

  display: none;

  justify-content: center;

  align-items: center;

  width: 1.5rem;

  height: 1.5rem;

  cursor: pointer;

  z-index: 2;

}

@media (max-width: 1023px) {





  .menu-btn {

    display: flex;

    position: absolute;

    left: 15px;

  }

}

.menu-btn .menu-btn__lines,

.menu-btn .menu-btn__lines::before,

.menu-btn .menu-btn__lines::after {

  width: 1.5rem;

  height: 0.1rem;

  background: #000;

  transition: all 0.4s ease-in-out;

}

.menu-btn .menu-btn__lines::before,

.menu-btn .menu-btn__lines::after {

  content: "";

  position: absolute;

}

.menu-btn .menu-btn__lines::before {

  transform: translateY(-0.5rem);

}

.menu-btn .menu-btn__lines::after {

  transform: translateY(0.5rem);

}

.menu-btn.open .menu-btn__lines {

  transform: translateX(1rem);

  background: transparent;

}

.menu-btn.open .menu-btn__lines::before {

  transform: rotate(45deg) translate(-0.5rem, 0.5rem);

  background: #fff;

}

.menu-btn.open .menu-btn__lines::after {

  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);

  background: #fff;

}

.expand-btn::after {

  position: absolute;

  top: 52%;

  font-size: 16px;

  right: -1px;

  content: "\f107";

  font-family: "Font Awesome 7 Free";

  font-weight: 900;

  opacity: 0.75;

  transform: translateY(-50%) rotate(0);

  transition: transform 0.25s ease;

}

.expand-btn.open {

  color: #f87895;

}

.expand-btn.open:after {

  transform: translateY(-50%) rotate(180deg);

}

/* navbar */

.navbar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  background: #fcf6f8;

  padding: 0px 20px;

}

@media (max-width: 1023px) {

  .navbar {

    padding: 10px 2px;

  }

}

.navbar.sticky {

  position: sticky;

  z-index: 9999;

  top: 0;

}

.navbar .logo {

  color: #fff;

  font-size: 20px;

  font-weight: 700;

  text-transform: uppercase;

  text-decoration: none;

}

.navbar .menu-items {

  display: flex;

  align-items: center;

  gap: 5px;

}

.navbar .menu-items::-webkit-scrollbar-track {

  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);

  border-radius: 10px;

  background-color: #222;

}

.navbar .menu-items::-webkit-scrollbar {

  width: 6px;

  background-color: #222;

}

.navbar .menu-items::-webkit-scrollbar-thumb {

  border-radius: 10px;

  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);

  background-color: #fff;

}

@media (max-width: 1023px) {

  .navbar .menu-items {

    scrollbar-gutter: stable;

    position: fixed;

    top: 0px;

    left: 0;

    display: block;

    width: 350px;

    z-index: 9;

    height: 100%;

    padding-top: 30px;

    padding-bottom: 100px;

    padding-right: 10px;

    padding-left: 10px;

    background: #fcc9d5;

    overflow-y: auto;

    transform: translateX(-100vh);

    transition: 0.3s ease-out;

  }

  .navbar .menu-items.open {

    transform: translateY(0);

  }

}

.navbar .menu-items > li > .menu-item {

  padding: 1.5rem 1rem;

}

@media (max-width: 1023px) {

  .navbar .menu-items > li > .menu-item {

    padding: 1rem 0rem;

  }

}

.navbar .menu-items li:hover .mega-menu {

  opacity: 1;

  visibility: visible;

}

@media (max-width: 1023px) {

  .navbar .menu-items li a {

    padding: 10px 1rem;

  }

}

.navbar .dropdown {

  position: relative;

}

@media (min-width: 1024px) {

  .navbar .dropdown:hover > .dropdown-menu {

    opacity: 1;

    visibility: visible;

  }

  .navbar .dropdown:hover > .expand-btn:after {

    transform: translateY(-50%) rotate(180deg);

  }

}

@media (min-width: 1024px) {

  .navbar .dropdown .dropdown-right .expand-btn:after,

  .navbar .dropdown .dropdown-left .expand-btn:after {

    right: 0.625rem;

  }

}

@media (min-width: 1024px) {

  .navbar .dropdown-menu li a:hover {

    color: #a5d5ff;

  }

  .navbar .dropdown-menu li a {

    color: #fff;

  }

  .navbar .dropdown-menu {

    position: absolute;

    top: 65px;

    right: 0;

    display: block;

    left: 0;

    width: 190px;

    padding: 5px 0;

    background: #004a89;

    border-radius: 0 0 5px 5px;

    opacity: 0;

    box-shadow: 0 20px 50px 0 #000;

    visibility: hidden;

    transition: all 0.4s ease;

  }

}

@media (max-width: 1023px) {

  .navbar .dropdown-menu {

    display: none;

    position: relative;

    top: 0;

    width: 100%;

    overflow: hidden;

    padding: 0px;

    border-radius: 15px;

    border: none;

  }

}

.navbar .menu-right {

  top: 0;

  left: 100%;

}

@media (max-width: 1023px) {

  .navbar .menu-right {

    top: 0;

    left: 0;

    right: auto;

    width: 100%;

    padding-left: 1.5rem;

  }

  .navbar .menu-right:before {

    content: "";

    position: absolute;

    z-index: 1;

    top: 50%;

    left: 20px;

    width: 1px;

    height: calc(100% - 25px);

    background-color: #000;

    transform: translateY(-50%);

  }

}

.navbar .menu-left {

  top: 0;

  left: -100%;

}

@media (max-width: 1023px) {

  .navbar .menu-left {

    top: 0;

    left: 0;

    width: 100%;

    padding-left: 1.5rem;

  }

  .navbar .menu-left:before {

    content: "";

    position: absolute;

    z-index: 1;

    top: 50%;

    left: 20px;

    width: 1px;

    height: calc(100% - 25px);

    background-color: #000;

    transform: translateY(-50%);

  }

}

.navbar .menu-item {

  display: flex;

  justify-content: space-between;

  width: 100%;

  padding: 0.5rem 1rem;

  font-size: 18px;

  transition: 0.25s;

  font-weight: 600;

}

.navbar .menu-item:hover {

  color: #f87895;

}

.navbar ul li {

  list-style: none;

  transition: 0.3s ease;

}

.navbar ul li .arrow {

  transition: all 0.3s ease-out;

}

.navbar ul li a {

position: relative;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
        font-size: 15px;

}

@media (min-width: 1024px) {

  .navbar .dropdownMega {

    position: inherit !important;

  }

}

@media (min-width: 1024px) {

  .navbar .mega-menu {

    position: absolute;

    top: 65px;

    left: 0;

    width: 650px;

    opacity: 0;

    visibility: hidden;

    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;

  }

}

@media (max-width: 1023px) {

  .navbar .mega-menu {

    position: relative;

    display: none;

    padding-left: 0;

  }

}

.navbar .mega-menu .content {

  display: flex;

  gap: 1rem;

  width: 100%;

  padding: 1rem;

  background: #171b27;

  -webkit-box-shadow: 0 20px 50px 0 #000;

  box-shadow: 0 20px 50px 0 #000;

}

@media (max-width: 1023px) {

  .navbar .mega-menu .content {

    grid-template-columns: auto;

  }

}

@media (min-width: 1024px) {

  .navbar .mega-menu .content {

    padding: 1.5rem 1rem;

  }

}

@media (max-width: 1023px) {

  .navbar .mega-menu .content .col {

    padding: 0;

    width: 100%;

  }

}

.navbar .category .content .col .img-wrapper {

  margin: 1rem 0;

}

.navbar .blog .content {

  grid-template-columns: repeat(1, 1fr);

}

@media (min-width: 1024px) {

  .navbar .blog .content {

    grid-template-columns: repeat(4, 1fr);

  }

}

.navbar .blog .content .col .img-wrapper {

  margin-bottom: 1rem;

}

.navbar .blog .content .col .menu-title {

  font-weight: normal;

}

.navbar .blog .content .col .menu-title a {

  transition: 0.25s;

}

.navbar .blog .content .col .menu-title a:hover {

  color: #ff5722;

}

.navbar .content .col {

  display: flex;

  flex-direction: column;

}

.navbar .content .col .img-wrapper {

  display: block;

  position: relative;

  width: 100%;

  height: 20vw;

  overflow: hidden;

}

.navbar .content .col .img-wrapper:hover img {

  transform: scale(1.1);

}

.navbar .content .col .img {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  border-radius: 5px;

  overflow: hidden;

}

.navbar .content .col img {

  width: 100%;

  max-width: 100%;

  transition: transform 0.3s ease-in-out;

}

.navbar .content .col .menu-title {

  color: #fff;

  font-size: 1.125rem;

  line-height: 1.125rem;

  border-left: 2px solid #ff5722;

  padding-left: 0.625rem;

}

@media (max-width: 1023px) {

  .navbar .content .col .menu-title {

    font-size: 0.875rem;

  }

}

.navbar .content .col p {

  margin-top: 0.625rem;

  margin-bottom: 0.625rem;

  font-size: 0.813rem;

  line-height: 1.6rem;

  color: #fff;

}

.navbar .content .col .mega-links {

  padding-left: 1rem;

  border-left: 1px solid #3c3c3c;

}

@media (max-width: 1023px) {

  .navbar .content .col .mega-links {

    border-left: 0;

    padding-left: 0;

  }

  .navbar .content .col .mega-links li {

    margin: 0;

  }

  .navbar .content .col .mega-links li a {

    padding: 0 0.5rem;

  }

}

.navbar .content .col .mega-links li {

  margin: 1rem 0;

}

.navbar .content .col .mega-links li a {

  padding: 0;

}

@media (max-width: 1023px) {

  .overflow {

    overflow: hidden;

  }

}

@media (max-width: 1023px) {

  .overlay {

    position: fixed;

    z-index: 500;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    background-color: rgba(0, 0, 0, 0.6);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;

  }

  .overlay.overlay--active {

    opacity: 1;

    visibility: visible;

  }

}



.user_icons {

  display: flex;

  gap: 30px;

}



.search_product {

  position: relative;

}



.search_product i {

  position: absolute;

  top: 50%;

  transform: translate(-50%, -50%);

  right: 0px;

}



.search_product input {

  background-color: transparent;

  border: 1px solid #c0c0c0;

  padding: 9px;

  border-radius: 10px;

  width: 260px;

  transition: 0.6s;

}



.search_product input:focus {

  box-shadow: none;

  outline: none;

  background-color: white;

  transition: 0.6s;

}



/* ============ Full Page Slider ================= */

.creative-fullpage--slider {

  background-color: #ffffff;

  z-index: 2;

  width: 100%;

  position: relative;

  flex-direction: column;

  height: 80vh;

  font-size: 16px;

  display: flex;

  clip-path: none !important;

}



.creative-fullpage--slider .slider-inner {

  height: 80vh;

  position: relative;

}



.creative-fullpage--slider .swiper-slide {

  position: relative;

  display: flex;

  justify-content: center;

  text-align: left;

  flex-direction: column;

  overflow: hidden;

}



.creative-fullpage--slider .swiper-slide .slider-inner img {

  object-fit: cover;

  width: 100%;

  height: 80vh;

}



.creative-fullpage--slider .swiper-slide .slider-inner video {

  object-fit: cover;

  width: 100%;

  height: 100%;

}



.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {

  position: absolute;

  top: 50%;

  left: 38%;

  transform: translate(-50%, -50%)!important;

  z-index: 1;

}



/* .creative-fullpage--slider .swiper-slide .slider-inner::after {

  content: "";

  position: absolute;

  width: 101%;

  height: 100%;

  top: 0;

  left: -1px;

  background-color: #0000007a;

  background-image: radial-gradient(at center right,

      #ffffff00 50%,

      #00000096 100%);

} */



.swiper-slide .slider-inner .swiper-content .title-area .tag {

  color: #ffffff;

  font-weight: 900;

  font-size: 24px;

  margin-bottom: 10px;

  margin-top: 0px;

}



.swiper-slide .slider-inner .swiper-content .title-area .title {

  color: #fff;

  font-size: 2.5vw;

  font-weight: 900;

  line-height: 1.1;

  text-transform: capitalize;

  text-decoration: none;

}



.swiper-slide .slider-inner .swiper-content p.disc {

  font-size: 16px;

  width: 100%;

  margin-top: 15px;

  margin: 20px 0px 20px 0px;

  font-weight: 400;

  line-height: 32px;

  color: #fff;

}



.creative-btn--wrap .creative-slide--btn {

  color: #ffffff;

  margin-left: 18px;

  font-size: 1.4em;

  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);

  font-weight: 400;

  display: inline-flex;

  position: relative;

  white-space: nowrap;

  text-decoration: none;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  user-select: none;

  outline: none;

  outline-color: transparent;

  box-shadow: none;

  will-change: transform;

  backface-visibility: hidden;

}



.creative-btn--circle .circle {

  position: absolute;

  right: calc(100% - 10px);

  top: 0;

  bottom: 0;

  margin: auto;

  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  clip-path: circle(25% at 50% 50%);

  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);

}



.creative-btn--circle .circle .circle-fill {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  border-radius: 100%;

  background-color: var(--btn-color);

  will-change: transform;

  transform: scale(0);

  z-index: 1;

  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1),

    background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);

}



.creative-btn--circle .circle-icon {

  transform: translate(-100%, 0%);

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  z-index: 2;

  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);

}



.creative-btn--circle .circle-icon .icon-arrow {

  width: 20px;

  height: 20px;

  stroke: none;

  fill: #ffffff;

}



.creative-btn--circle .circle-outline {

  fill: transparent;

  width: 13px;

  stroke: var(--btn-color);

  stroke-width: 7px;

  /* 👈 size yahan increase karo */

}



.creative-btn--wrap .creative-slide--btn .creative-btn--label {

  margin-left: 4pt;

  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);

}



.creative-btn--wrap .creative-slide--btn .creative-btn__border {

  position: absolute;

  left: 4pt;

  right: 0;

  bottom: 0;

  height: 1px;

  background: currentColor;

  transform-origin: right;

  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);

}



.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {

  transform: translateX(18px);

}



.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {

  transform: scale(0, 1);

}



.creative-btn--wrap .creative-slide--btn:hover {

  margin-left: 38px !important;

}



.creative-btn--wrap .creative-slide--btn:hover .circle {

  clip-path: circle(50% at 50% 50%);

}



.creative-btn--wrap .creative-slide--btn:hover .circle-fill {

  transform: scale(1, 1);

}



.creative-btn--wrap .creative-slide--btn:hover .circle-icon {

  transform: translate(0%, 0%);

  opacity: 1;

}



.creative-fullpage--slider .swiper-container-h .swiper-button-next,

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {

  bottom: 5%;

  top: unset;

  transform: scale(1);

  transition: all 0.4s;

  background-color: #fff;

  backdrop-filter: blur(20px);

  height: 35px;

  width: 35px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  transition: all 0.4s;

  font-size: 14px;

  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

}



.swiper-button-next:after, .swiper-button-prev:after{ font-size: 14px!important; color: black;}



.creative-fullpage--slider .swiper-container-h .swiper-button-next {

  top: 50%;

  right: -10px;

  transform: translate(-50%, -50%);

}



.creative-fullpage--slider .swiper-container-h .swiper-button-prev {

  top: 50%;

  left: 25px;

  transform: translate(-50%, -50%);

}



.swiper-container-h .slider-pagination-area {

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: unset;

  right: unset;

  bottom: 80px;

  left: 50% !important;

  transform: translateX(-50%);

  width: 500px;

  z-index: 1;

}



.swiper-container-h .slider-pagination-area .slide-range {

  font-size: 16px;

  font-weight: 500;

  margin: 0 15px;

  color: #ffffff;

  line-height: 0;

  position: absolute;

  font-size: 20px;

}



.swiper-container-h .slider-pagination-area .slide-range.one {

  left: -50px;

}



.swiper-container-h .slider-pagination-area .slide-range.three {

  right: -50px;

}



.swiper-container-h .slider-pagination-area .swiper-pagination {

  bottom: 0 !important;

  width: 500px !important;

}



.swiper-container-h

  .slider-pagination-area

  .swiper-pagination

  .swiper-pagination-progressbar-fill {

  background: #ffffff;

}











.swiper-container-h .swiper-button-next:hover,

.swiper-container-h .swiper-button-prev:hover {

  background: var(--color-primary);

  color: white;

}





.swiper-container-h .swiper-button-next:hover:after {

  color: white;

}



.swiper-container-h .swiper-button-prev:hover:after {

    color: white;

}



/* ====================== Responsive Ipad =============================== */

@media (max-width: 991px) {

  .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {

    width: 100%;



    

  }





  .swiper-container-h .slider-pagination-area {

    width: 200px !important;

  }



  .swiper-container-h .swiper-button-next::after,

  .swiper-container-h .swiper-button-prev::after {

    font-size: 30px;

  }





  .swiper-container-h .slider-pagination-area .swiper-pagination {

    bottom: 0 !important;

    width: 200px !important;

  }

}



/* ====================== Responsive Iphone =============================== */

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

  .swiper-slide .slider-inner .swiper-content .title-area .title {

    font-size: 34px;

  }



  .swiper-slide .slider-inner .swiper-content .title-area .tag {

    margin-bottom: 0px;

  }



  .swiper-slide .slider-inner .swiper-content p.disc {

    margin: 20px auto 20px auto;

    font-size: 16px;

    width: 95%;

  }



  .swiper-container-h .slider-pagination-area {

    display: none;

  }



  .swiper-slide .slider-inner .swiper-content p.disc br {

    display: none;

  }

}



.outer_content {

  background: rgba(0, 0, 0, 0.58);

  padding: 25px 30px;

}



/* 15 */

.btn-15 {

  background: #b621fe;

  border: none;

  z-index: 1;

}

.btn-15:after {

  position: absolute;

  content: "";

  width: 0;

  height: 100%;

  top: 0;

  right: 0;

  z-index: -1;

  background-color: #ff5279;

  border-radius: 5px;

  transition: all 0.3s ease;

}

.btn-15:hover {

  color: #fff;

}

.btn-15:hover:after {

  left: 0;

  width: 100%;

}

.btn-15:active {

  top: 2px;

}



.custom-btn {

  color: #fff;

  border-radius: 5px;

  padding: 10px 25px;

  font-weight: 600;

  background: #f87895;

  cursor: pointer;

  transition: all 0.3s ease;

  position: relative;

  display: inline-block;

  outline: none;

}



.custom-btn img{ width: 20px!important; height: 16px!important; object-fit: contain;}



.liner_btn.custom-btn {

  background-color: transparent;

  border: 1px solid #fff;

}



/* ============ shopsection ================= */



.shop_by_type {

  padding: 80px 0;

}



.shop_by_type img {

  width: 80%;

  margin: auto;

}



.shop_by_type .card {

  position: relative;

  width: 100%;

  border-radius: 28px;

  padding: 8px;

  background: transparent; /* outer pink border */

  border: 4px solid #ff94ad;

}



.shop_by_type .card-inner {

  background: #fff;

  border-radius: 22px;

  overflow: hidden;

}



.shop_by_type .card-inner img {
    width: 100%;
    display: block;
    border-radius: 22px;
    aspect-ratio: 2 / 2;
    object-fit: cover;
}



.shop_by_type .label {

  position: absolute;

    bottom: -13px;

  left: 50%;

  transform: translateX(-50%);

  background: #ff7fa2;

  color: #fff;

  padding: 8px 24px;

  border-radius: 0px;

  font-weight: bold;

  font-size: 18px;

}



/* ============ featured_collection ================= */



.featured_collection {

  padding: 60px 0;

  background-color: var(--color-secondary);

}



.global_heading {

  font-size: 38px;

  font-weight: 700;

}



.product-card {

  width: 100%;

  cursor: pointer;

}



.product-card:hover .product-title{ color: var(--color-primary);}



.product-image {

  border: 4px solid #ff7aa2;

  border-radius: 28px;

  overflow: hidden;

  position: relative;

}

.product-title a{color: black!important;}



.product-image img {

  width: 100%;

  height: auto;

  display: block;

  transition: 0.6s;

  aspect-ratio: 3 / 4;   /* 👈 change ratio as per design (e.g. 1/1, 4/5) */

  object-fit: cover;

}



.product-info {

  margin-top: 12px;

}



.product-title {

  font-size: 15px!important;

  font-weight: 600;

  line-height: 1.4;

  margin-bottom: 8px;

  color: #000;

    white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}



.price-row {

  display: flex;

  align-items: center;

  gap: 8px;

  flex-wrap: wrap;

}



.price {

  font-size: 16px;

  font-weight: 700;

  color: #000;

}



.mrp {

  font-size: 14px;

  color: #999;

  text-decoration: line-through;

}



.discount {

  font-size: 14px;

  font-weight: 600;

  color: #1a9b2d;

}



.swiper-pagination-progressbar {

  display: none !important;

}



/* ============ handpicked ================= */



.handpicked {

  padding: 60px 0;

}



.handpicked .shop-video-card {

  width: 100%;

  border-radius: 20px;

  overflow: hidden;

  background: #fff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  position: relative;

}



.handpicked .video-wrapper {

  /* height: 420px; */

  background: #f3f3f3;

  position: relative;

}



.handpicked .video-wrapper:after{ 

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    background-color: #00000042;

    z-index: 9;

    left: 0px;



}



.handpicked .video-wrapper img,

.handpicked .video-wrapper video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.handpicked .product-info {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 10px;

  background: #fff;

  border-radius: 14px;

  position: relative;

  z-index: 2;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

  position: absolute;

  bottom: 60px;

  width: 95%;

  /* top: 50%; */

  left: 50%;

  z-index: 99;

  transform: translate(-50%, 0%);

  cursor: pointer;

}



.handpicked .product-info:hover{ background-color: #ffebf0; }



.handpicked .thumb {

  width: 50px;

  height: 65px;

  border-radius: 8px;

  object-fit: cover;

}



.handpicked .product-right h4 {

  font-size: 14px;

  margin: 0 0 5px;

  line-height: 1.3;

}



.handpicked .price {

  font-size: 13px;

}



.handpicked .price .new {

  font-weight: bold;

  color: #000;

}



.handpicked .price .old {

  text-decoration: line-through;

  color: #999;

  margin-left: 6px;

}



.handpicked .price .off {

  color: #00a651;

  font-weight: 600;

  margin-left: 6px;

}



.handpicked .add-to-cart {

  width: 100%;

  border: none;

  padding: 14px;

  background: var(--color-primary);

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  border-radius: 0 0 20px 20px;

  margin-top: -7px;

}



.handpicked .add-to-cart:hover {

  background: #ff4f7a;

}



/* ============ newarival ================= */



.inner_new_arival img{ width: 100%;}



.new_arival {

  background-color: #fee4ea;

  padding: 60px 0;

}



.sibtitle_heading {

  color: var(--color-primary);

  font-weight: 700;

}



.inner_new_arival {

  padding: 15px 15px 0;

  background-color: white;

  border-radius: 25px;

}



.instagram_post img {

  width: 85%;

  margin: auto;

}

.instagram_post_outer {

  padding: 60px 0;

}









.testimonial-image img {

  width: 260px;

  height: 100%;

  object-fit: cover;

  border-radius: 16px;

}



.testimonial-card {

  border: 1px solid #000;

  border-radius: 16px;

  padding: 12px;

  background: #fff;

  display: flex;

  flex-direction: column;

  justify-content: center;

  height: 100%;

}



.testimonial-card:hover .stars{ font-size: 22px; transition: 0.6s;}



.stars {

  color: #f5a623;

  font-size: 18px;

  margin-bottom: 10px;

   transition: 0.6s;

   height: 30px;

}



.testimonial-card h3 {

  font-size: 18px;

  font-weight: 700;

  margin-bottom: 12px;

  text-transform: uppercase;

}



.testimonial-card p {

  font-size: 14px;

  line-height: 1.6;

  color: #444;

  margin-bottom: 16px;

}



.author {

  font-size: 13px;

  font-weight: 600;

  color: #000;

}







.testimonial_outer {

  background-color: var(--color-secondary);

  padding: 60px 0;

}





.our_promise_box img{

  width: 60px;

  aspect-ratio: 1 / 1;   /* square ratio */

  height: auto;

  object-fit: contain;

}





.our_promise{ padding: 40px 0;}



.our_promise_box p{ margin: 0px;}







footer h6{ font-weight: 700; font-size: 22px;}



footer{ background-color: var(--color-secondary); padding: 60px 0 0;}



footer ul li a{ text-decoration: none; color: black; font-size: 16px; margin: 5px 0; display: inline-block; font-weight: 400;}



footer ul li{ list-style: none}





.social_links{ display: flex; gap: 20px; }



.social_links li a{ background-color: #f87895; padding: 5px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: white;}



.social_links li a:hover{ 



  background-color: #ff5279;



} 



.copy_right{margin-top: 60px; }



.copy_right p{ margin: 0px; padding: 15px 0; border-top: 1px solid #BEBEBE; }



a:hover{ color:#ff5279;}





.mobile_slide_cnt .outer_content {

    background: #ffffffc4;

    padding: 25px 30px;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}





.mobile_slide_cnt{ margin-top: -53px; position: relative; z-index: 9; text-align: center;}



.mobile_slide_cnt{ display: none;}









/* IMPORTANT */



.img-block {

        position: relative;

        overflow: hidden;

        width: 100%;

        transition: 0.5s;

      }





.img-block span {

        position: absolute;

        width: 100%;

        height: 100%;

        top: 0;

        left: -120%;

        background-color: rgba(255, 255, 255, 0.3);

        transition: 0.4s;

        transform: skewX(10deg);

      }



.img-block img {

        width: 100%;

      }



.img-block:hover span {

        left: 120%;

      }



/* PRESENTATION */



.img-block {

        background-color: #667;

        height: 100%;

      }







      .add_bag_btn{     background-color: white;

    color: var(--color-primary);

    padding: 10px;

    position: absolute;

    bottom: 0px;

    width: 91%;

    left: 0px;

    bottom: 0px;

    left: 50%;

    transform: translate(-50%, 145%);

    border-radius: 10px;

    border-radius: 30px;

    font-weight: 700; transition: 0.6s}



        .product-card:hover .product-image img{ scale: 1.1; transition: 0.6s;}



    .product-card:hover .add_bag_btn{     transform: translate(-50%, -18%);}





       .add_bag_btn:hover{ background-color: var(--color-primary); color: white; transition: 0.6s; }











.product-image img {

  width: 100%;

  display: block;

  transition: opacity 0.4s ease-in-out;

}



/* Hide hover image initially */

.product-image .hover-img {

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

}



/* Fade swap on hover */

.product-image:hover .main-img {

  opacity: 0;

}



.product-image:hover .hover-img {

  opacity: 1;

}





.product-image:hover .add_bag_btn {

  opacity: 1;

}





.instagram_post {

  position: relative;

  overflow: hidden;

  border-radius: 12px;

  cursor: pointer;

  transition: transform 0.4s ease, box-shadow 0.4s ease;

}



/* Image animation */

.instagram_post img {

  width: 100%;

  display: block;

  transition: transform 0.6s ease;

}



/* Hover zoom + lift */

.instagram_post:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

}



.instagram_post:hover img {

  transform: scale(1.1);

}



/* Overlay */

.insta-overlay {

position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;

    align-items: center;

    flex-direction: column;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.4s ease;

}



/* Overlay text */

.insta-overlay span {

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  transform: translateY(20px);

  transition: transform 0.4s ease;

}



.insta-overlay i{ color: white; font-size: 20px;} 



/* Show overlay on hover */

.instagram_post:hover .insta-overlay {

  opacity: 1;

}



.instagram_post:hover .insta-overlay span {

  transform: translateY(0);

}





.swiper-button-next{ background-color:var(--color-primary); color: white;}





.swiper-button-next:after{ color: white;}







.swiper-button-prev{ background-color:var(--color-primary); color: white;}





.swiper-button-prev:after{ color: white;}



.creative-fullpage--slider .swiper-button-next:after {

    color: black;

}





.creative-fullpage--slider .swiper-button-prev:after {

    color: black;

}





@media (min-width: 1400px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {

   max-width: 90%;

    }

}





.shop_by_type .swiper-wrapper{ justify-content: center;    padding: 10px 0px;

}


.xoo-wsc-basket{ display: none!important;}



.xoo-wsc-modal .xoo-wsc-container{
    border-radius: 35px 0px 0px 35px!important;
    overflow: hidden!important;

}


.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn{

background-color: var(--color-primary);
    padding: 8px 20px;
    font-size: 16px;
        box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;
        border: 1px solid transparent;
        font-weight: 600;

}

.xoo-wsc-ft-btn-checkout:hover{

background-color: white!important;
border-color: var(--color-primary)!important;
color: var(--color-primary)!important;

}

.xoo-wsc-pname a{

    font-size: 14px!important;
    color: #4d4d4d!important;

}

.xoo-wsc-sml-qty{ 

      color: #4d4d4d!important;

}

.woocommerce-Price-amount.amount{ 

        color: #4d4d4d!important;
            font-weight: 500;
    font-size: 14px !important;

}

.user_icons .woocommerce-Price-amount{

  display: none!important;

}


.xoo-wsc-pprice ins{

background-color: #ffffff00!important;

}


.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp{ background-color: transparent!important;}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 8px 20px 8px 30px !important;
    font-size: 16px!important;
    border: 1px solid #c0c0c0!important;
    border-radius: 5px!important;
    background-color: #fff!important;
}


.wc-block-components-form .wc-block-components-text-input.is-active input[type=email]{


    border-color: #c0c0c0!important;


}


.wc-block-components-form .wc-block-components-text-input.is-active input[type=email]:focus{


  border-color: var(--color-primary)!important;
  outline: none!important;
  box-shadow: none!important;

}




.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label{ 


      border-color: #c0c0c0!important;

}


.wc-block-components-text-input input[type=text]{ 

        border-color: #c0c0c0!important;

}


.wc-blocks-components-select .wc-blocks-components-select__select{ 

          border-color: #c0c0c0!important;


} 


.wc-block-components-text-input input[type=tel]{ 

         border-color: #c0c0c0!important;

}





.wc-block-components-text-input input[type=tel]:focus{


  border-color: var(--color-primary)!important;
  outline: none!important;
  box-shadow: none!important;

}


.wc-blocks-components-select .wc-blocks-components-select__select:focus{


  
  border-color: var(--color-primary)!important;
  outline: none!important;
  box-shadow: none!important;

}


.wc-block-components-text-input input[type=text]:focus{

    border-color: var(--color-primary)!important;
  outline: none!important;
  box-shadow: none!important;

}



.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit
 {

    left: 10px!important;
    top: 16px!important;
}


.dgwt-wcas-style-pirx .dgwt-wcas-preloader{ 

  margin-right: 0px!important;

}


.dgwt-wcas-preloader svg path{ 

  color: var(--color-primary)!important;
  fill:var(--color-primary) !important;

}


.wc-block-components-address-card {
    border: 1px solid hsl(0deg 0% 75.29%)!important;}

    .wc-block-components-checkout-place-order-button{ 

     background-color: var(--color-primary);
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 16px;
    box-shadow: none;
    min-height: unset !important;
        box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;

    }


    .wc-block-components-checkout-return-to-cart-button{ display: none!important;}


    .woocommerce-checkout .container{ 

     max-width: 1320px!important;

    }

    .wc-block-checkout__actions_row{ justify-content: end!important;}

    .wc-block-components-checkout-order-summary__title-text{ color: black!important;}

    .wc-block-components-totals-coupon__button{

          background-color: var(--color-primary);
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 16px;
    box-shadow: none;
    min-height: unset !important;

    }


    .wc-block-components-checkout-place-order-button:hover{

      background-color: #ff5279 ;
      color: white;
      border-color: var(--color-primary);
    }


    .wc-block-components-textarea:focus {

    border: 1px solid var(--color-primary); outline: none!important; box-shadow: none!important;}


    .wc-block-components-textarea {
    border: 1px solid hsl(0deg 0% 75.29%);}




    .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    background: var(--color-primary);
    color: #ffffff;
}


.woocommerce-account .published-page .container{

          max-width: 1320px;

}

.published-page{ padding: 40px 0px!important;}


 .published-page .entry-title{ font-size: 28px;}



/* ===== My Account Wrapper ===== */


/* ===== Navigation (Left Menu) ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
}

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

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

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--color-primary);
    color: #fff;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--color-primary);
    color: #fff;
}

/* ===== Content Area ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 72%;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ===== Headings ===== */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== Tables (Orders etc.) ===== */
.woocommerce-account table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-account table th {
    background: #f3f4f8;
    padding: 12px;
    font-weight: 600;
}

.woocommerce-account table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* ===== Buttons ===== */
.woocommerce-account .button {
    background: #4964bb;
    color: #fff;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 500;
    transition: 0.3s;
}

.woocommerce-account .button:hover {
    background: #354aa0;
    color: #fff;
}

/* ===== Forms ===== */
.woocommerce-account input.input-text,
.woocommerce-account select,
.woocommerce-account textarea {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #ddd;
}

.woocommerce-account fieldset {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

/* ===== Logout Link ===== */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    background: #ffefef;
    color: #d60000;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #d60000;
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .woocommerce-account .woocommerce {
        display: block;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        margin-bottom: 20px;
    }
}



footer.entry-footer{ display: none!important;}


.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #d60000 !important;
    border: none;
    background-color: transparent!important;
}


.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #f0f0f0;
}


.woocommerce-info {
    border-top-color: #f87895;
}

.woocommerce-info::before {
    color: #f87895;
}


.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #ffffff;}


    .woocommerce-account .woocommerce-MyAccount-content {
    background: #f0f0f0;
    box-shadow: none;
}


.banner-description{ 

display: none!important;

}

.banner-title {
    font-size: 36px!important;}

    .banner-content .container{ max-width: 90%!important;}


.woocommerce-MyAccount-content a{ color: black; text-decoration: underline!important;}


.woocommerce-breadcrumb a{    color: #767676;}

.woocommerce-breadcrumb{ color: #767676; }


.woocommerce-Address{ background-color: white !important;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #cecece; margin: 10px 0;}


.woocommerce-Address h2{ font-size: 20px!important;}


.woocommerce-account .addresses .title .edit {
    background-color: #f87895;
    color: white;
    padding: 5px 11px 5px 11px;
    text-decoration: none !important;
    display: inline-block;
    margin-bottom: 13px;
    float: unset !important;
    position: relative;
    border: 1px solid transparent;
    font-weight: 500;
}


.woocommerce-account .addresses .title .edit:hover{

  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);

}
.woocommerce-account .addresses .title .edit::before {
  content: "\2b"; /* edit / pencil icon */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 6px;
}



.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    border-color: #c0c0c0;
}


.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
    border-color: var(--color-primary);
    outline: none!important;
    box-shadow: none!important;
}


.woocommerce form .show-password-input::before, .woocommerce-page form .show-password-input::before {
    opacity: 0.4;
}


.woocommerce-account fieldset {
    padding: 15px 0;
}

.woocommerce-Button{

      background-color: var(--color-primary)!important;
    color: white!important;
    font-weight: 500!important;
    font-size: 16px!important;
    padding: 10px 16px!important;
    box-shadow: none!important;
    min-height: unset !important;
    float: inline-end!important;
    border: 1px solid transparent!important;

}


.woocommerce-Button:hover{

      background-color: white!important;
    color: var(--color-primary)!important;
    border-color: var(--color-primary)!important;

}



.select2-container .select2-dropdown, .select2-container .select2-selection {

  border-color: #c0c0c0!important;

}


.woocommerce-address-fields button{

      background-color: var(--color-primary) !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 10px 16px !important;
    box-shadow: none !important;
    min-height: unset !important;
    float: inline-end !important;
    border: 1px solid transparent !important;

}


.woocommerce-address-fields button:hover {
    background-color: white !important;
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}



.shop-with-sidebar-layout {
  display: grid;
    grid-template-columns: 25% 75%;
    gap: 15px;
}


.woocommerce-shop .woocommerce-breadcrumb {
    background-color: #ffffff;
    padding: 15px 0px;
    margin-top: 15px;
    /* border: 1px solid #c0c0c0; */
    border-radius: 10px;
    margin-bottom: 20px;
}


.woof_redraw_zone{ display: unset!important;} 


.woof_sid_auto_shortcode .woof_container{ width: 100%;}


.woof_price_search_container form .price_slider_wrapper {
    flex-direction: column-reverse!important;
}


.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #f0f0f0;
}


.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #f87895;
}


.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    background-color: #7f54b3;
    border-radius: 1em;
    cursor: ew-resize;
    outline: 0;
    top: -.3em;
    margin-left: -.5em;
}


.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #f87895!important;
    border: none!important;

}



.woof_shortcode_output{ padding: 40px 0;}



.mobile-filter-toggle, .mobile-filter-close{

  display: none!important;

}

.woocommerce-products-header__title{

  font-size: 28px!important;

}

.filter-header-title h3{ 

      font-size: 16px;
    color: var(--color-primary);

}

.woof_opened {

  font-size: 16px;
    color: #313131;
    text-transform: capitalize;

}


.woof_list_label li .woof_label_term:hover, .woof_list_label li .woof_label_term.checked {
    background-color: #ff7aa2;
    border-color: #ff7aa2;
    color: #fff;
}


.product-right h4 a{ 

  color: black!important;

}


.iradio_square-blue.checked {
    background-position: -168px -1px;
}




.custom-product-info-sections {
    margin-top: 30px;
    padding-top: 20px;
}
 
/* Individual Info Section */
.info-section {
    border: none;
    border-radius: 8px;
    margin: 0px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}
 

 
/* Section Header */
.info-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
    user-select: none;
    width: 100%;
        padding: 18px 0px;
}
 
.info-section-header:hover {
    background: #f8f8f8;
}
 
.info-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
 
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 8px;
    color: #666;
    flex-shrink: 0;
}
 
.info-section-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}
 
.info-subtitle {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin-left: auto;
    padding-right: 10px;
}
 
/* Toggle Icon */
.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
 
.toggle-icon.open {
    transform: rotate(180deg);
}
 
/* Section Content */

 
.info-section-content p {
    margin: 0 0 15px 0;
}
 
.info-section-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
 
.info-section-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}
 
.info-section-content strong {
    color: #333;
    font-weight: 600;
}
 
/* Key Highlights - Open by Default */
.key-highlights .info-section-content {
    display: block;
}
 
/* Key Highlights Grid Layout */
.key-highlights .info-section-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}
 
.key-highlights .info-section-content p {
 
    margin: 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 6px;
}
 
.key-highlights .info-section-content strong {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
 
.key-highlights .info-section-content span {
    color: #666;
    font-size: 14px;
}
 
/* Additional Information Table */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
 
.woocommerce-product-attributes tr {
    border-bottom: 1px solid #eee;
}
 
.woocommerce-product-attributes tr:last-child {
    border-bottom: none;
}
 
.woocommerce-product-attributes th {
    padding: 12px 15px 12px 0;
    text-align: left;
    font-weight: 600;
    color: #333;
    width: 40%;
    font-size: 14px;
}
 
.woocommerce-product-attributes td {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
}
 
/* Return Note */
.return-note {
    background: #fff9e6;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
    font-size: 13px;
}
 
.return-note a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}
 
/* Icons Color Variations */
.key-highlights .info-icon {
    background: #e8f5e9;
    color: #4caf50;
}
 
.product-description .info-icon {
    background: #e3f2fd;
    color: #2196f3;
}
 
.additional-information .info-icon {
    background: #fff3e0;
    color: #ff9800;
}
 
.returns-exchange .info-icon {
    background: #f3e5f5;
    color: #9c27b0;
}
 
/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-product-info-sections {
        margin-top: 25px;
    }
    .info-section-header {
        padding: 15px;
    }
    .info-header-content {
        gap: 10px;
    }
    .info-icon {
        width: 32px;
        height: 32px;
    }
    .info-section-header h3 {
        font-size: 15px;
    }
    .info-subtitle {
        display: none;
    }
    .info-section-content {
        padding: 0 15px 15px 57px;
        font-size: 13px;
    }
    .key-highlights .info-section-content {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    .key-highlights .info-section-content p {
        padding: 12px;
    }
    .woocommerce-product-attributes th {
        font-size: 13px;
    }
    .woocommerce-product-attributes td {
        font-size: 13px;
    }
}
 
@media (max-width: 480px) {
    .info-section-header {
        padding: 12px;
    }
    .info-section-header h3 {
        font-size: 14px;
    }
    .info-section-content {
        padding: 0 12px 12px 50px;
    }
}


.woocommerce div.product .product_title {
    clear: none;
    margin-top: 0;
    padding: 0;
    font-weight: 700;
    font-size: 32px;
}


.woocommerce .star-rating span::before {

    color: #f87895!important;
}


.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 0.618em;
}

.woocommerce-product-rating a{ color: var(--color-primary); font-weight: 600;}

.product_cat-baby .woocommerce-Price-amount.amount {
    color: #000000 !important;
    font-weight: 700;
    font-size: 22px !important;
    display: none;
}

.woocommerce-product-details__short-description p{ font-size: 14px!important;}

.reset_variations{ display: none!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: #f87895;
    font-size: 1.25em;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
    color: #f87895;
}

.woocommerce-variation-price .woocommerce-Price-amount{ display: block!important;}

.woocommerce-variation-price .price{ display: block!important;}

.reset_variations_alert .woocommerce-variation-price{

  display: block!important;

}

/*.entry-summary .price{ display: none;}*/


.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
background-color: #f87895;
    color: #ffffff;
    font-weight: 600;
    border-color: #f87895;
    height: unset !important;
    border: 1px solid #f87895;
    border-radius: 6px;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;}


.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover{


  box-shadow: none!important;

}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover{

    box-shadow: rgba(0, 0, 0, 0.2) 0px -1px 2px 0px inset, rgba(255, 255, 255, 0.32) 0px 4px 4px 0px inset !important;


}


.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):focus, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item){ 

    border: 1px solid #b7b7b7;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52;
    padding: 5px 10px;
    height: unset;
    border-radius: 5px !important;

}

/* .reset_variations, .single_variation{ display: none!important;} */


.woocommerce div.product form.cart .button{     width: 73%;
    background-color: var(--color-primary) !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 13px 16px !important;
    box-shadow: none !important;
    min-height: unset !important;
    float: inline-end !important;
    border: 1px solid transparent !important;
  box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;}


  .comment-respond .form-submit .submit {

        background-color: var(--color-primary)!important;
    padding: 8px 20px;
    font-size: 16px;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;
    border: 1px solid transparent;
    font-weight: 600;
    color: white!important;

  }

  .comment-respond label{ font-size: 14px!important ; font-weight: 600!important;     margin-bottom: 8px!important; color: black!important;}

  .comment-form-rating{ margin-top: 15px!important;}

  .form-submit{ text-align: end!important;}


    .comment-respond .form-submit .submit:hover{

          background-color: #ff5279 !important;
    border: 1px solid transparent;
    color: #ffffff !important;

    }


    .woocommerce span.onsale {
    min-height: 10px;
    min-width: 3.236em;
    padding: 0px;
    font-size: 1em;
    font-weight: 700;
    position: absolute;
    text-align: center;
    /* line-height: 3.236; */
    top: 0.5em;
    left: 0.5em;
    margin: 0;
    /* border-radius: 100%; */
    background-color: var(--color-primary);
    color: #fff;
    font-size: 12px;
    z-index: 9;
}


    .woocommerce #review_form #respond textarea:focus{ 

      outline: none!important;
      box-shadow: none;
      border-color: var(--color-primary);

    }

    
.woocommerce div.product form.cart .button:hover{ 

background-color: #ff5279 !important;
    border: 1px solid transparent;
    color: #ffffff !important;

}




.key-highlights .info-section-content{ 

  padding: 0px!important;

}


.info-section-header:hover {
    background: transparent!important;
}

    .slick-list.draggable .slick-slide img{

    height: 180px !important;
    width: 300px !important;

    }

.woocommerce div.product div.images img {
    height: 670px ; object-fit: contain;    object-fit: cover; object-position: center;}


    .wqpmb_input_text:focus-visible{ 

      outline: none;
      box-shadow: none;
         border-color: var(--color-primary);

    }

       .wqpmb_input_text:focus{ 

      outline: none;
      box-shadow: none;
      border-color: var(--color-primary);

    }



    .qib-button-wrapper .quantity input.input-text.qty.text {
    height: 46px!important;}

    .qib-button-wrapper button.qib-button, .qib-button-wrapper div.quantity.wqpmb_quantity {
    float: none !important;
    height: 46px!important;
}


.qib-button-wrapper {
    margin: 0px 0!important;}


    .wpgs-for .slick-arrow::before, .wpgs-nav .slick-prev::before, .wpgs-nav .slick-next::before {
    color: #ffffff;
    background-color: #f87895;
    border-radius: 10px;
        width: 30px;
    display: block;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
        color: white !important;
        font-size: 14px!important;
}



    .flaticon-right-arrow:before {
    content: "\f105"!important;
    font-family: "Font Awesome 7 Free"!important;
    font-weight: 900!important;
    font-size: 14px;

}


.flaticon-back:before {
    content: "\f104"!important;
    font-family: "Font Awesome 7 Free"!important;
    font-weight: 900;
    /* content: "\f054"; */
}


.single.single-product .flaticon-right-arrow {
    right: 10px!important;
}

.single.single-product .flaticon-back{

left: 10px!important;
}


.wpgs-nav.slick-slider .slick-next,

.wpgs-nav.slick-slider .slick-prev{

  display: none!important;

}

.custom-breadcrumbs{ display: none!important;}

.banner-content .product-count{ display: none;}


.banner-overlay {
    background: rgb(0 0 0 / 59%)!important;

}


.woocommerce .woocommerce-ordering select {
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52;
    padding: 10px;
    border-radius: 5px;
}


.woocommerce .woocommerce-ordering select:focus{

outline: none!important;

}


.woocommerce .woocommerce-ordering select:focus-visible{

outline: none!important;

}



.custom-full-width-section {
    margin-top: 50px!important;
    margin-bottom: 50px!important;
}



.single-product .wc-tabs{ 

  display: none!important;

} 


.woocommerce-tabs.wc-tabs-wrapper{

  width: 70%;
    margin: auto;
    padding-top: 40px;

}


.single-product .woocommerce-Reviews-title{

      text-align: start;
    font-size: 24px;
    margin-bottom: 30px;

}

.woocommerce p.stars a{ 

  color: var(--color-primary);

}

body .qib-button-wrapper{ width: 25%;}

.woocommerce .quantity .qty {
    width: 100% !important;
    text-align: center;
}


.faq-header h2 {
    font-size: 34px!important;}



    .woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{

          color: #4d4d4d !important;
    font-weight: 500;
    font-size: 14px !important;

    }



    .faq-header h2{ font-weight: 600!important;}


    .button-wrapper #chart-button, .button-wrapper .md-size-chart-btn{ color: var(--color-primary); font-weight: 600; }


    .woocommerce ul.products li.product .price {

      font-weight: 500;
    color: rgb(77, 77, 77) !important;
    font-size: 14px !important;

    }


    .new_arrival h1{

font-size: 32px!important;
margin-bottom: 35px;
font-weight: 600;

    }


        .new_arrival{ 

          padding: 40px 0;

        }


        a.woof_front_toggle{

              width: 20px;
    height: 20px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #f87895;
    color: white;
    text-align: center;
    line-height: 15px;

        }


        .woof_container_inner h4{

              font-size: 16px;
    color: #313131;
    text-transform: capitalize;

        }


        .xoo-wsc-sc-bki {
    font-size: 23px!important;
      color: #302f2f;
   
}


.xoo-wsc-sc-cont {
    color: #302f2f;
    margin-top: 4px;
}


.xoo-wsc-icon-shopping-bag1:before {
    font-size: 23px!important;
      color: #302f2f;
}

.xoo-wsch-text{

      font-size: 18px;
    font-weight: 600;

}

.xoo-wsc-ft-buttons-cont {
    grid-template-columns: 1fr 1fr;
}


.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover, .xoo-wsc-container .xoo-wsc-btn:hover {
    background-color: #ff5279 !important;
    border: 1px solid transparent;
    color: #ffffff !important;
}


.xoo-wsc-ft-amt-subtotal{ display: flex; }

span.xoo-wsc-ft-amt-label{

      color: #4d4d4d !important;
    font-weight: 500;
    font-size: 14px !important;

}

.xoo-wsc-ft-totals .woocommerce-Price-amount.amount {
    color: #f87895 !important;font-size: 17px !important;}


.wc-block-components-product-name{

     font-size: 16px !important;
    font-weight: 600;
    color: var(--color-primary) !important;

}


.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
    border: 1px solid hsl(0deg 0% 89.8%);
    padding: 20px;
}


.wc-block-cart__submit-button{

  background-color: #f87895;
    color: #ffffff;
    font-weight: 600;
    border-color: #f87895;
    height: unset !important;

    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;

}

.wc-block-cart__submit-button:hover{

    background-color:#ff5279 ;
    color: white;

}


.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1.5px rgb(248 120 149);
}


.wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
    outline: none!important;
    outline-offset: none!important;
}



.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity {
    align-items: start;
    display: flex;
    justify-content: space-between;
    flex-direction: unset!important;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before {
    background: #f87895;}


    .wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid hsl(346.41deg 90.14% 72.16%);
}


.woocommerce-cart .price {
    font-size: 16px;
    font-weight: 600;}


    .post, .page {
    margin: 0 0 0!important;
}


.shop-category-banner {
    margin-bottom: 15px;}

.woocommerce ul.products li.product a img {

    margin: 0px 0 0;}

   .logged-in.woocommerce-account{ background-color: white;}

    .logged-in header{ display: block!important;}
        .logged-in footer{ display: block!important;}
             .logged-in .topbar{ display: block!important;}

    .woocommerce-account .topbar{ display: none; }

       .woocommerce-account header{ display: none; }
         .woocommerce-account footer.entry-footer{ display: none!important; }
              .woocommerce-account footer{ display: none; }

              .woocommerce-account {    background-color: #fee4ea78;}

                .woocommerce-account .custom-auth-container {
    box-shadow: 0 10px 40px rgb(0 0 0 / 4%);
}


.auth-content {
    padding: 0px;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: none;
    margin: 0 0;
    padding-top: 0px;

}

.woocommerce-form-login__submit{

      background-color: var(--color-primary)!important;
    padding: 8px 20px!important;
    font-size: 16px;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;
    border: 1px solid transparent!important;
    font-weight: 600!important;
    color: white!important;
    margin-top: 15px!important;

}

.woocommerce-form-login__submit:hover{ 

      background-color: #ff5279 !important;
    border: 1px solid transparent;
    color: #ffffff !important;

}

.custom-auth-container .woocommerce img img {
    height: auto;
    max-width: 100%;
    width: 160px;
}

.custom-auth-container .woocommerce-page img {
    height: auto;
    max-width: 100%;
    width: 160px;
}

.woocommerce-LostPassword{ 

  margin-top: 0px!important;

}

.woocommerce-privacy-policy-text p{ font-size: 14px;}

.woocommerce-privacy-policy-text a{ color: var(--color-primary); }

.lost_password{ text-align: end!important;}

.lost_password a{ color: var(--color-primary)!important;}
.custom-auth-container .auth-toggle a{ color: var(--color-primary); font-size: 16px;}

.custom-auth-container .auth-toggle{ text-align: center; }

.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    display: block;
    margin: 0px;
    font-size: 14px;
}

.woocommerce-form-login__submit{ width: 100%;}

.woocommerce-form-login__rememberme{ margin-top: 0px!important;}


.auth-logo{ text-align: center; margin-top: 15px;}


.entry-content .form-row{ display: unset!important;}


.info-section-content{

      display: block;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 6px;

}


body .qib-button-wrapper .minus.qib-button, body .qib-button-wrapper .plus.qib-button {
    background: #f0f0f0;
}

/*.topbar{ display: none!important;}*/

/* .content-area{ padding-top: 50px;}  */


.contact-info-section {
    background: none!important;
    border-radius: none!important;
    box-shadow: none!important;
    padding: 0px!important;
    border-top: none!important;
}


.contact-form-section {
    background: #f3f4f6!important;
    border-radius: 16px!important;
    box-shadow: none!important;
    padding: 40px!important;
    border-top: none!important;
}

.contact-info-item{  background-color: transparent!important;}


.contact-icon i { color: var(--color-primary); fill: var(--color-primary);     font-size: 18px;}

.contact-form-section {
    padding: 15px !important;}

    .contact-icon {
    background: #ffe0e8!important;}

    .map-container{ box-shadow: unset!important; } 


    .submit-btn{

background: var(--color-primary)!important;
    padding: 8px 20px!important;
    font-size: 16px;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;
    border: 1px solid transparent!important;
    font-weight: 600!important;

    }


        .submit-btn:hover{

              background: #ff5279 !important;
    border: 1px solid transparent!important;
    color: #ffffff !important;
    transform: unset!important;

        }


    .map-section{ 

      background-color: transparent!important;
          padding: 0px 0px 50px!important;

    }


.contact-info-section a{ color: var(--color-primary);}

.contact-info-item {
    padding: 0px!important;
    margin-bottom: 30px!important;
}


.contact-form-section br{ display: none!important;}

.contact-page-wrapper {
background: white!important;
min-height: unset!important;

}


.xoo-wsc-ft-amt.xoo-wsc-less, .xoo-wsc-psavings, .xoo-wsc-psavings * {
    color: #ffffff;
    font-size: 12px;
}

.xoo-wsc-psavings {
    border: 1px solid #4CAF50;
    background-color: #4caf50;
      animation: glowGreen 1.5s infinite alternate;}


      .xoo-wsc-img-col {
    align-self: start!important;
}


.xoo-wsc-sm-left {

    row-gap: 0px;
}




.xoo-wsc-pattern-card, .xoo-wsc-img-col img, .xoo-wsc-img-col, .xoo-wsc-sm-back-cont {
border-radius: 15px!important;
}


.xoo-wsc-products:not(.xoo-wsc-pattern-card),
.xoo-wsc-products:not(.xoo-wsc-pattern-card) span.amount,
.xoo-wsc-products:not(.xoo-wsc-pattern-card) a {
    font-size: 16px;
    color: #000000;

    white-space: nowrap;       /* ek hi line */
    overflow: hidden;          /* extra text hide */
    text-overflow: ellipsis;   /* dots (...) */
    display: block;            /* required for ellipsis */
    max-width: 100%;           /* container ke hisab se */
}

.why_loved_us{

  background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;

}

.feature-col {
    border-right: 1px solid #c0c0c0;
}

.feature-col:last-child {
    border-right: none;
}

.wpgs-nav .slick-current {
    border-color: #f87895!important;
}


.add-to-cart-btn{
    background: var(--color-primary)!important;
    padding: 8px 20px!important;
    font-size: 16px;
    box-shadow: inset 0 -1px 2px 0 #00000033, inset 0 4px 4px 0 #fffFFF52 !important;
    border: 1px solid transparent!important;
    font-weight: 600!important;

}

.add-to-cart-btn:hover{ 

      background: #ff5279 !important;
    border: 1px solid transparent;
    color: #ffffff !important;

}



.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.added::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.added::after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.added::after {
    font-family: WooCommerce;
    content: unset!important;
    margin-left: .53em;
    vertical-align: bottom;
}

.custom-full-width-section {
    background: #f878951c!important;}


    /* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  z-index: 9999;
}

/* Menu Items */
.mobile-bottom-bar a {
  text-align: center;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  flex: 1;
}

.mobile-bottom-bar a span { display: block!important;     font-weight: 600;
}

.mobile-bottom-bar i {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
      margin: auto;
}


/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #ddd;
  z-index: 9999;
  height: 60px;
}

.mobile-bottom-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
}

.mobile-bottom-bar a svg {
  display: block;
  margin: 0 auto 4px;
  fill: #333;
}

/* Active State */
.mobile-bottom-bar a.active {
    color: #f87895;
}

.mobile-bottom-bar a.active svg path {
  fill: #f87895;
}

mark, ins {
    background: #ffffff!important;
    text-decoration: none!important;
}

.wc-block-components-product-badge{ 

  background-color: #4CAF50;
  border-color: #4CAF50;
  color: white!important;

}


.woocommerce-orders-table thead th{ 

  background-color: var(--color-primary)!important;
  color: white!important;

}


/* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-pink) 0%, var(--lighter-pink) 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
 
      @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
 
        .hero h1 {
            font-size: 48px;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-weight: bold;
        }
 
        .hero p {
            font-size: 20px;
            color: #fff;
        }
 
        /* Story Section */
        .story-section {
            padding: 40px 0 60px;

        }
 
       
 
    
     .story-image img{ border-radius: 15px;}
 
        .story-placeholder {
            background: var(--light-pink);
            height: 300px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            width: 100%;
        }
 
        /* Values Section */
        .values-section {
            padding: 50px 0;
            background: white;
        }
 
       
 
        .value-card {
      background: white;
    border-radius: 5px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #dcdcdc;
        }
 
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
        }
 
        .value-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }
 
        .value-card h3 {
            font-size: 24px;
            color: var(--primary-pink);
            margin-bottom: 15px;
            font-weight: bold;
        }
 
        .value-card p {
            font-size: 15px;
            color: #666;
            margin-bottom: 0;
        }
 
        /* Mission Section */
        .mission-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-yellow) 0%, var(--yellow) 100%);
            text-align: center;
        }
 
        .mission-section h2 {
            font-size: 36px;
            color: #fff;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-weight: bold;
        }
 
        .mission-section p {
            font-size: 18px;
            color: #fff;
            margin-bottom: 40px;
            line-height: 1.8;
        }
 
        .btn-custom {
            background: #fff;
            color: var(--primary-pink);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
            display: inline-block;
        }
 
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            color: var(--primary-pink);
        }
 
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: var(--bg-cream);
        }
 
        .team-section h2 {
            text-align: center;
            font-size: 36px;
            color: var(--primary-pink);
            margin-bottom: 50px;
            font-weight: bold;
        }
 
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
 
        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-pink) 0%, var(--lighter-pink) 100%);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
        }
 
        .team-member h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
            font-weight: bold;
        }
 
        .team-member p {
            font-size: 14px;
            color: var(--primary-pink);
            margin-bottom: 0;
        }

        .pp-content a{ color: var(--color-primary)!important; font-weight: 600;}


        .pp-content p, .pp-content li {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.pp-content h2 {

    font-size: 18px!important;
    font-weight: 600!important;
}


.pp-title {
    font-weight: 700!important; box-shadow: none!important;}

    .pp-hero {
    box-shadow: none!important;}


    .woocommerce nav.woocommerce-pagination ul {

    display: flex;
    justify-content: center;
    border: none!important;
    gap: 10px;
}


.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    /* display: flex; */
    align-items: end;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li{ border-right: none!important;}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .5em;
    min-width: 1em;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #e9e6ed;
    color: black;
    font-weight: 700;
}


    .woocommerce-pagination{ padding-bottom:25px!important ;}
 
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
 
            .hero p {
                font-size: 16px;
            }
 
        
 
            .story-placeholder {
                height: 200px;
                font-size: 60px;
            }
        }

/* Desktop Hide */
@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}


/* Hide on Desktop */
@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}



    @media (min-width: 1400px) {
    .woocommerce-cart .container,  .woocommerce-cart .container-lg,  .woocommerce-cart .container-md,  .woocommerce-cart .container-sm,  .woocommerce-cart .container-xl,  .woocommerce-cart .container-xxl {
        max-width: 1320px;
    }
}



.cm_values_section {
  background-color: #fff;
  padding: 120px 0;
}
.cm_values_section .value_top {
  max-width: 720px;
  margin: 0 auto 80px;
}
.value_top .sec_header {
  justify-content: center;
}
.cm_values_section .value_top p {
  font-size: 16px;
  line-height: 1.4;
  padding-top: 32px;
  font-weight: 500;
  letter-spacing: 0.10000000149011612px;
  color: #0f0f0f;
  margin: 0;
  text-align: center;
}
.cm_values_section .value_top .sec_header {
  margin-bottom: 0;
}
.value_item_block {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 120px;
  position: relative;
}
.value_item_block.right {
  flex-direction: row-reverse;
  text-align: left;
}
.value_item_block:not(:last-child) {
  padding-bottom: 48px;
}
.value_item_block {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  gap: 120px;
  position: relative;
}
.value_item_block::after,
.value_item_block::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
.value_item_block::before {
  width: 24px;
  height: 24px;
  top: 50%;
  background-color: var(--color-primary);
  border-radius: 50%;
}
.value_inner_block .value_item_block:first-child::before {
  top: 50%;
}
.value_inner_block .value_item_block:last-child::after {
  height: 50%;
}
.value_item_block::after {
  width: 2px;
  height: 100%;
  top: 0;
  background-color: var(--color-primary);
}
.value_inner_block .value_item_block:first-child::after {
  height: 50%;
  bottom: 0;
  top: auto;
}
.value_content_block,
.value_img_block {
  width: 50%;
}
.value_img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.value_title h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0;
  letter-spacing: 0.25px;
}
.value_sub_title h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.165;
  color: #0f0f0f;
  margin: 0;
  padding: 15px 0;
  letter-spacing: 0.25px;
}
.value_description p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.10000000149011612px;
  font-weight: 500;
  margin: 0;
  color: #0f0f0f;
}

/* ========= responsive media css  ======== */

@media (max-width: 1440px) {
  .cm_values_section {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .cm_values_section {
    padding: 0 0 50px;
  }
  .value_item_block:not(:last-child) {
    padding-bottom: 54px;
  }
  .value_sub_title h2 {
    font-size: 28px;
    padding: 10px 0;
  }
  .value_description p {
    font-size: 14px;
    line-height: 1.6;
  }
  .cm_values_section .value_top {
    margin-bottom: 60px;
  }
  .value_item_block:before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 767px) {
  .value_sub_title h2 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .value_inner_block .value_item_block:first-child:before {
    top: 24%;
  }
  .value_inner_block .value_item_block:first-child:after {
    height: 75%;
  }
  .value_item_block:after {
    left: 9px;
  }
  .value_item_block:before {
    left: 0;
    transform: unset;
    top: 28%;
  }
  .value_content_block,
  .value_img_block {
    width: 90%;
  }
  .value_item_block {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: end;
  }
  .cm_values_section .container {
    padding: 0 15px;
  }
  .value_inner_block .value_item_block:last-child:after {
    height: 30%;
  }
}



.bow_tie_promise_fabric {
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.bow_tie_promise_fabric:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 120px;
  background-color: #fff;
}

.bow_tie_promise_fabric .comman_description {
  font-size: 16px;
  max-width: 720px;
  margin: 30px auto 0;
  font-weight: 500;
}

.swiper.bow_tie_promise_fabric_slider {
  padding: 75px 0 60px;
  overflow: visible;
}

.bow_tie_promise_fabric_slider .swiper-wrapper > .swiper-slide {
  bottom: -80px;
  transition: 0.6s;
}

.bow_tie_promise_fabric_slider .swiper-slide-active {
  bottom: 0;
  transform: scale(1.3);
  z-index: 11;
}

.bow_tie_promise_fabric_inner_img {
  max-width: 120px;
}

.bow_tie_promise_fabric_inner_text {
  display: none;
}

.swiper-slide-active .bow_tie_promise_fabric_inner_text {
  display: block;
  max-width: 450px;
  margin: auto;
}

.bow_tie_promise_fabric_inner_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}

.bow_tie_promise_fabric_inner_desc {
  font-size: 16px;
}


.cm_our_vision {
  padding: 80px 0;
  background-color: #fff;
}
.our_vision_heading {
  margin-bottom: 55px;
}
.our_vision_heading p {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  letter-spacing: 0.10000000149011612px;
  font-weight: 500;
  line-height: 1.4;
  color: #0f0f0f;
}
.vision_main_block {
  display: flex;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.vision_block_items {
  background-color: #fff1e6;
  border-radius: 20px;
  width: 560px;
}
.vision_main_img_block {
  position: relative;
}
.vision_img {
  position: relative;
  padding-top: 71.5%;
}
.vision_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.vision_title_block {
  position: absolute;
  top: auto;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
}
.vision_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.164;
  letter-spacing: 0.25px;
  text-align: center;
  color: #0f0f0f;
  margin: 0;
  background-color: rgb(255 255 255 / 70%);
  padding: 12px 43px;
  display: inline-block;
  backdrop-filter: blur(20px);
  border-radius: 20px;
}
.vision_content_block {
  padding: 40px 40px 54px;
}
.vision_sub_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.165;
  letter-spacing: 0.25px;
  color: #0f0f0f;
  margin: 0;
}
.vision_description {
  line-height: 22.4px;
  color: #0f0f0f;
  margin: 0;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.10000000149011612px;
}


.story-section{ 

  overflow: hidden!important;

} 


/* ======== responsive media css ======== */

@media (max-width: 991px) {
  .vision_content_block {
    padding: 23px 16px 12px;
  }
  .vision_sub_title {
    font-size: 24px;
  }
  .vision_description {
    font-size: 14px;
  }
  .vision_main_block {
    gap: 20px;
  }
  .vision_title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .cm_our_vision {
    padding: 48px 0;
  }
  .vision_main_block {
    flex-wrap: wrap;
    gap: 24px;
  }
  .vision_block_items {
    width: 100%;
  }
}



#open-size-chart{ 

  margin: 0px!important;
  color: black!important;
  margin-bottom: 15px!important;

}


.closeSizeChart{ padding: 0px!important;}