:root {
  --main-color: #958FC5;
  --secondary-color: #BDBDBD;
  --step1-width: 0%;
  --step2-width: 33.33%;
  --step3-width: 66.67%;
  --step4-width: 100%;
}

body {
  background-color: #F7F6FF;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif !important;
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--main-color) #f0f0f0;
}

/* Text Selection */
::selection {
  background: var(--main-color);
  color: #fff;
}

::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Loader style ////////////////////////// */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f3f3f3;
  z-index: 9999;
}

#loader-bar {
  height: 100%;
  width: 0;
  background: #5F5DA9;
  /* Purple color to match your theme */
  transition: width 0.1s linear;
}

/* Hide loader when page is fully loaded */
.loaded #loader {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}



.bold-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  font-family: 'Alfa Slab One', serif !important;
}


header {
  padding: 20px 0;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}


.heading-title {
  font-size: clamp(36px, 5vw, 48px) !important;
  color: #000;
  margin-bottom: 50px;
  border-bottom: 1px solid #958FC517;
  padding-bottom: 30px;
}

.header-top {
  padding: 10px 0;
  font-size: 14px;
}

.header-top a {
  color: #51505D;
  text-decoration: none;
}

.header-main {
  padding: 15px 0;
  border-top: 1px solid #958FC517;
  border-bottom: 1px solid #958FC517;
}

/* Button */

button#openMenuBtn {
  outline: unset !important;
  border: unset;
  background: unset;
}

/* Fullscreen Menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5F5DA9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 999;
}

.menu .menu-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center
}

.menu.active {
  transform: scale(1);
}

.menu a {
  color: #F7F6FF;
  text-decoration: none;
  font-size: 52px !important;
  transition: color 0.3s;
}

.menu a:hover {
  color: #dfddeeef;
}

/* Close button inside menu */
.close-menu-btn {
  position: absolute;
  top: 70px;
  left: 70px;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.close-menu-btn:hover {
        background-color: transparent;
    color: #fff;
    text-decoration: none;
    transform: scale(1.1);
}

.btn-login,
.btn-signup {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Alfa Slab One', serif;
  line-height: 40px;
  min-width: 132px;
  padding: 5px 20px;
  border-radius: 25px;
  margin-right: 12px;
  white-space: nowrap;

}

.btn-login {
  border: 1px solid #000;
  color: #000;

}

.btn-signup {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid #000;
}

.btn-login:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.btn-signup:hover {
  background-color: #27224E;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.icon-link {
  position: relative;
  color: #6c757d;
  margin-left: 10px;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
  display: inline-flex;
  align-items: center;
}

.icon-link .count {
  position: absolute;
  width: 18px;
  font-size: 12px;
  color: #fff;
  background: #000;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 13px;
  top: -13px;

}

.policy-link {
  color: #51505D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.logo-img {
  max-width: 106px;
}

.hero-image-container {
  padding: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .bold-text {
    font-size: 12px !important;
  }

  .heading-title {
    font-size: 28px !important;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }


  .header-main {
    padding: 4px 0;

  }

  header {
    padding: 0 10px;
  }

  .logo-img {
    max-width: 84px;
  }

  .header-top {
    padding-top: 18px !important;
  }

  svg {
    width: 20px;
    height: 20px;
  }

  .header-top .col-md-6 {
    text-align: center !important;
    margin-bottom: 10px;
  }

  .header-main .row {
    flex-wrap: nowrap;
    width: 85%;
  }

  .header-main .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
  }



  .btn-login,
  .btn-signup {
    min-width: clamp(80px, 10vw, 100px);
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: clamp(25px, 3vw, 30px);
    margin-right: 2px;
  }

  .icon-link {
    margin-left: 5px;
  }

  .close-menu-btn {
    top: 20px;
    left: 20px;
  }

  .close-menu-btn svg {
    width: 35px !important;
    height: 35px !important;
  }



}

@media (max-width: 480px) {

  .header-main .row {
    flex-wrap: nowrap;
    gap: 10px;
    width: 55%;
  }

  .header-main .col-md-3,
  .header-main .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-image-container {
    padding: 20px 0 0 0;
  }




  .btn-login,
  .btn-signup {
    min-width: clamp(70px, 15vw, 90px);
    font-size: clamp(9px, 1vw, 10px);
    line-height: clamp(20px, 2.5vw, 25px);
  }

  .icon-link {
    margin-left: 3px;
  }

  .menu a {
    font-size: clamp(24px, 4vw, 32px) !important;
  }

  .close-menu-btn {
    top: 15px;
    left: 15px;
  }



}


/* //////////////////// hero image header ///////////// */

.hero-header {
  position: relative;

}

.black-circle {
  position: absolute;
  top: 13px;
  right: 254px;
  width: 100px;
  height: 100px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: -1;
  animation: glow 2s infinite ease-in-out;
  pointer-events: none;
}

.purple-circle {
  position: absolute;
  top: 71px;
  right: 306px;
  width: 70px;
  height: 70px;
  background-color: #958FC5;
  border-radius: 50%;
  z-index: -2;
  animation: flicker 1.5s infinite ease-in-out;
  pointer-events: none;

}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-color: #000;
  }

  50% {
    box-shadow: 0 0 15px rgba(98, 0, 234, 0.7);
    border-color: #6200ea;
  }
}

@keyframes flicker {

  0%,
  100% {
    background-color: #958FC5;
    box-shadow: 0 0 5px rgba(149, 143, 197, 0.5);
  }

  50% {
    background-color: #b0a8e0;
    box-shadow: 0 0 20px rgba(149, 143, 197, 0.8);
  }
}

.more-circle {
  width: 168px;
  height: 168px;
  border: 1px solid #000;
  color: #000 !important;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-circle:hover {
  transform: scale(1.1);
  border-color: var(--main-color);
  /* Purple to match your theme */
  box-shadow: 0 0 15px rgba(98, 0, 234, 0.337);
  background-color: rgba(98, 0, 234, 0.05);
}

.circle-arrow {
  font-size: 24px;
  display: inline-block;
  animation: bounce 1.5s infinite;
  transition: transform 0.3s ease;
}

.more-circle:hover .circle-arrow {
  transform: rotate(180deg);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.heading {
  font-size: 52px !important;
  color: #000;
}

.heading-span {
  font-size: 52px !important;
  color: var(--main-color);
  font-family: 'Alfa Slab One', serif;
}

.description {
  font-size: 18px;
  font-weight: 400;
  color: #51505D;
  margin-top: 17px;
  width: 95%;
  line-height: 1.5;
}

.flower-img {
  top: -88px;
  right: 0;
  z-index: -1;
}

/* -- who we are /////////////////////////////////*/

.who-we-are {
  padding: 40px 0;
  margin-bottom: 150px;
}


.who-heading {
  font-size: 52px !important;
  color: #000;
  margin-top: 122px;
}

.btn-more {
  border: 1px solid #000;
  border-radius: 50px;
  width: 150px;
  height: 50px;
  font-size: 16px;
  color: #000 !important;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-top: 132px;
  position: relative;
  overflow: hidden;
}

.btn-more:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--main-color) !important;
  border: 1px solid var(--main-color);
}

/* Original arrow (moves right and disappears) */
.btn-more::after {
  content: '→';
  font-size: 24px;
  font-weight: 800;

  position: absolute;
  right: 20px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-more:hover::after {
  transform: translateX(50px);
  opacity: 0;
}

/* New arrow (appears from left) */
.btn-more::before {
  content: '→';
  font-size: 24px;
  font-weight: 800;
  position: absolute;
  left: -30px;
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-more:hover::before {
  transform: translateX(50px);
  opacity: 1;
}

 
.whoWeAre-content .image-container {
  position: relative;
  width: 128%;
  height: 400px;
}

@media (min-width: 1024px) {
    .whoWeAre-content .image-container {
    position: relative;
    width: 125%;
    height: 400px;
    left: -64px;
}
}

.down-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.bubble {
  width: 50vmin;
  height: 50vmin;
  background: #A8A1D3;
  /* Lighter shade of #958FC5 */
  border: 4.5vmin solid #B5B0E0;
  /* Slightly lighter border */
  position: absolute;
  top: calc(50% - (50vmin * 0.49));
  left: calc(50% - (50vmin * 0.49));
  overflow: visible;
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  /* Petal-like shape */
  animation: rotate 35s infinite linear;
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(1turn);
  }
}

.bubble:before {
  content: "";
  position: absolute;
  top: 5vmin;
  left: 5vmin;
  width: calc(100% - (50vmin * 0.3));
  height: calc(100% - (50vmin * 0.3));
  background: #8A84C0;
  /* Deeper analogous shade */
  border: 3.25vmin solid #9A94CC;
  /* Matching border */
  border-radius: 45% 25% 45% 25% / 25% 45% 25% 45%;
  /* Slightly offset petals */
  z-index: -2;
  animation: rotateBefore 35s infinite linear;
}

@keyframes rotateBefore {
  0% {
    transform: rotate(-2turn);
  }
}

.bubble:after {
  content: "";
  position: absolute;
  top: 10vmin;
  left: 10vmin;
  width: calc(100% - (25vmin));
  height: calc(100% - (25vmin));
  background: #7F78B0;
  /* Darker complementary shade */
  border: 2.5vmin solid #8E88C0;
  /* Matching border */
  border-radius: 40% 20% 40% 20% / 20% 40% 20% 40%;
  /* Smaller petal layer */
  animation: rotateAfter 35s infinite linear;
}

@keyframes rotateAfter {
  0% {
    transform: rotate(2turn);
  }
}

.up-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}


.left-black-cir {
  position: absolute;
  top: 580px;
  left: -100px;
  width: 158px;
  height: 158px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: -2;
  animation: glow 2s infinite ease-in-out;
  pointer-events: none;
}

.left-purple-cir {
  position: absolute;
  top: 530px;
  left: -50px;
  width: 158px;
  height: 158px;
  background-color: #958FC5;
  border-radius: 50%;
  z-index: -1;
  animation: flicker 1.5s infinite ease-in-out;
  pointer-events: none;

}

.circle {
  pointer-events: none;
}

.circle3,
.circle4,
.circle1,
.circle2 {
  position: absolute;
  border-radius: 50%;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.circle1 {
  animation-name: switchCircle1;

}

.circle2 {
  animation-name: switchCircle2;

}

/* Base styles for the two circles */
.circle3 {
  width: 70px;
  height: 70px;
  background-color: #5F5DA9;
  left: -40px;
  top: 82%;
  animation-name: switchCircle3;
}

.circle4 {
  width: 110px;
  height: 110px;
  border: 2px solid #000;
  background-color: transparent;
  left: -6px;
  top: 75%;
  animation-name: switchCircle4;
}

/* Base style for .circle1 */
.circle1 {
  width: 158px;
  height: 158px;
  background-color: #5F5DA9;
  right: -92px;
  top: 40%;
  animation-name: switchCircle1;
}

/* Base style for .circle2 */
.circle2 {
  width: 158px;
  height: 158px;
  border: 2px solid #000;
  background-color: transparent;
  right: -66px;
  top: 45%;
  z-index: -2;
  animation-name: switchCircle2;
}

/* Keyframes for swapping positions */
@keyframes switchCircle1 {

  0%,
  100% {
    right: -92px;
    top: 40%;
  }

  50% {
    right: -66px;
    top: 45%;
  }
}

@keyframes switchCircle2 {

  0%,
  100% {
    right: -66px;
    top: 45%;
  }

  50% {
    right: -92px;
    top: 40%;
  }
}

/* Keyframes for the switching effect */
@keyframes switchCircle3 {

  0%,
  100% {
    left: -40px;
    top: 82%;
  }

  50% {
    left: -6px;
    top: 75%;
  }
}

@keyframes switchCircle4 {

  0%,
  100% {
    left: -6px;
    top: 75%;
  }

  50% {
    left: -40px;
    top: 82%;
  }
}


@media screen and (max-width: 768px) {

  .left-black-cir,
  .left-purple-cir {
    width: 120px !important;
    height: 120px !important;
  }

  .btn-more {
    width: 144px;
    height: 40px;
    font-size: 14px !important;
    margin: auto;
    display: flex;
    margin-top: 30px;
  }

  .image-container {
    height: 300px;
  }

  .down-img {
    min-height: 253px;
  }

  .up-img {
            width: 240px !important;
        height: 240px !important;
    /* top: 0px;
    left: 10%; */
  }

  .who-heading {
    font-size: 36px !important;
    margin-top: 20px;
  }

  .who-we-are {
    padding: 20px 0;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .flower-img {
    display: none;
  }

}


/* --- our-categories //////////////////// */

.our-categories {
  padding: 40px 0;
  text-align: center;
}

.our-categories .categories-heading {
  font-size: 52px !important;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}

.our-categories .swiper {
  width: 92%;
  padding: 20px 0;
}

.our-categories .swiper-wrapper {
  justify-content: center !important;
  gap: 30px !important;
}

.our-categories .swiper-slide {
  width: fit-content !important;
}

.our-categories .card-product {
  background: radial-gradient(circle, #ffffff60 0%, #D9D7ED00 40%, #D9D7ED 100%);
  border-radius: 15px;
  padding: 20px;
  padding-bottom: 0;
  text-align: center;
  width: 360px !important;
  height: 460px !important;
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 25px #ffffff40;
  transition: all 0.3s ease-in-out;
  margin-top: 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.our-categories .card-product:hover {
  box-shadow: 0px 0px 35px 0px #5F5DA91F;
  border: 1px solid #000;
}

.our-categories .card-product h3 {
  font-size: 20px !important;
  font-weight: 400;
  color: #000;
  margin-top: 36px;
  margin-bottom: 20px;
}

.our-categories .card-product img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.our-categories .swiper-pagination-lock {
  display: block !important;
}

@media (max-width: 1024px) {
  .our-categories .card-product {
    width: 260px !important;
    height: 406px !important;
  }
   .our-categories .swiper-wrapper {
    justify-content: unset !important;
    gap: 0 !important;
  }
  
}

@media (max-width: 768px) {
  .our-categories .card-product {
    width: 275px !important;
    height: 406px !important;
    margin: 0 20px;
  }

  .our-categories .swiper-wrapper {
    justify-content: unset !important;
    gap: 0 !important;
  }

}

@media screen and (max-width: 767px) and (min-width: 426px) {
.our-categories .card-product {
    width: 340px !important;
  }
}


@media (max-width: 425px) {
  .who-heading {
    font-size: 26px !important;
    margin-top: 20px;
  }

  .our-categories .card-product {
    width: auto !important;
    max-width: 310px;
    margin: 0 16px;
  }

  .our-categories .swiper-wrapper {
    justify-content: center !important;
    gap: 0px !important;
  }

}

/* Pagination Dots */
.our-categories .swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
}

.our-categories .swiper-pagination-bullet {
  background: #D9D7ED !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.our-categories .swiper-pagination-bullet-active {
  background: #5F5DA9 !important;
  width: 22px !important;
  height: 8px !important;
  border-radius: 20px !important;
}

/* Navigation Arrows */
.our-categories .swiper-button-next,
.our-categories .swiper-button-prev {
  background-color: transparent !important;
  border: 1px solid #000 !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: #000 !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.our-categories .swiper-button-next::after,
.our-categories .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.our-categories .swiper-button-next::after {
  content: '→' !important;
  font-size: 22px !important;
  display: contents !important;
}

.our-categories .swiper-button-prev::after {
  content: '←' !important;
  font-size: 22px !important;
  display: contents !important;
}

.our-categories .swiper-button-next:hover,
.our-categories .swiper-button-prev:hover {
  background-color: #958FC5 !important;
  color: #F7F6FF !important;
  border: 1px solid #000000 !important;
}


@media (max-width: 768px) {
  .our-categories .categories-heading {
    font-size: 36px !important;
    margin-bottom: 0;

  }
}


/* ---latest products ///////////////////////// */

.latest-products {
  background-color: #F7F6FF;
  padding-bottom: 33px;
  overflow: hidden;
}

.container-latest {
  text-align: center;
  padding: 40px 0;
  background: #5F5DA9;
  padding-bottom: 84px;
}

.latest-products .latest-products-heading {
  font-size: 48px !important;
  font-weight: bold;
  color: #F7F6FF;
  margin-top: 80px;
  margin-bottom: 50px;
  text-transform: lowercase;
}

.latest-products .latest-products-swiper {
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.latest-products .latest-product-card {
  background: #D9D7ED;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 263px;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.latest-products .latest-product-card:hover {
  box-shadow: 0px 4px 35px 0px #5856A0;
  background: #F7F6FF;
  border: 1px solid #000;
}

.latest-products h3 {
  font-size: 18px !important;
  color: #F7F6FF;
  text-align: center;
  margin-top: 26px;
  margin-bottom: 10px;
  letter-spacing: 1.1px;
}

.latest-products p {
  font-size: 18px;
  color: #D9D7ED;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.latest-products .latest-product-card img {
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  overflow: hidden;
}

/* Navigation Arrows */
.latest-products .latest-products-swiper-button-next,
.latest-products .latest-products-swiper-button-prev {
  border: 1px solid #D9D7ED;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #000 !important;
  position: absolute;
  z-index: 500;
}

.latest-products .latest-products-swiper-button-next {
  right: -44px;
  top: 40%;
  transform: translateY(-50%);
}

.latest-products .latest-products-swiper-button-prev {
  left: -44px;
  top: 40%;
  transform: translateY(-50%);
}

.latest-products .latest-products-swiper-button-next:hover,
.latest-products .latest-products-swiper-button-prev:hover {
  background-color: #D9D7ED !important;
  color: #000000 !important;
  border: 1px solid #D9D7ED !important;
  display: flow;
}

.latest-products .latest-products-swiper-button-next:hover:after,
.latest-products .latest-products-swiper-button-prev:hover:after {
  color: #000000 !important;
  font-size: 22px !important;
  display: contents !important;
  font-weight: 400 !important;
  z-index: 1000 !important;
}

.latest-products .latest-products-swiper-button-next:after,
.latest-products .latest-products-swiper-button-prev:after {
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #D9D7ED !important;
  z-index: 1000 !important;
  position: absolute;
  top: 0%;
  display: flex !important;
}


.latest-products .latest-products-swiper-button-next::after {
  content: '→' !important;
}

.latest-products .latest-products-swiper-button-prev::after {
  content: '←' !important;
}

@media (max-width: 768px) {
  .latest-products .latest-product-card {
    width: auto !important;
    height: auto !important;
  }

  .latest-products .latest-products-heading {
    font-size: 24px !important;
  }

  .latest-products .latest-products-swiper-button-prev {
    right: 60px;
    transform: translateY(-50%);
    top: -10px;
    left: unset;
  }

  .latest-products .latest-products-swiper-button-next {
    right: 0;
    top: -10px;
    transform: translateY(-50%);
  }


}


/* More Button */
.latest-products .latest-products-btn-more {
  background-color: transparent;
  border: 1px solid #D9D7ED;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px !important;
  color: #D9D7ED !important;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 15px;
}


.latest-black-cir {
  position: absolute;
  bottom: -66px;
  right: 301px;
  width: 110px;
  height: 110px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 2;
  animation: glow 2s infinite ease-in-out;
}

.latest-purple-cir {
  position: absolute;
  bottom: -14px;
  right: 306px;
  width: 134px;
  height: 134px;
  background-color: #958FC5;
  border-radius: 50%;
  z-index: 1;
  animation: flicker 1.5s infinite ease-in-out;
}

.latest-bg-top {
  width: 577px;
  height: 419px;
  top: 8px;
  right: 0px;
  position: absolute;
  pointer-events: none;
}

.latest-bg-bottom {
  width: 577px;
  height: 419px;
  bottom: 0px;
  left: 0px;
  position: absolute;
  pointer-events: none;
}

@media (max-width: 768px) {
  .swiper-slide.latest-products-swiper-slide {
    min-width: 360px !important;
  }

  .latest-purple-cir {
    right: 57px;
    width: 84px;
    height: 84px;

  }

  .latest-black-cir {
    right: 86px;
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 424px) {
  .swiper-slide.latest-products-swiper-slide {
    min-width: 350px !important;
  }
}

@media (max-width: 321px) {
  .swiper-slide.latest-products-swiper-slide {
    min-width: 300px !important;
  }
}



/* --- Our Services */


.our-services {
  padding: 40px 0;
  text-align: center;
}

.our-services-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}

.services-card {
  display: flex;
  gap: 10px;
  margin-top: 53px;
}

.services-card h4 {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #000;
  margin-top: 4px;
  margin-bottom: 0;
  text-transform: capitalize;
}

.services-card p {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #51505D;
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

.services-card img {
  width: 100%;
  max-width: 52px;
  max-height: 34px;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .our-services-content {
    margin-bottom: 180px;
    gap: 0px;
  }

}

@media (max-width: 375px) {

  .services-card {
    max-width: 200px;

  }
}


/* --- Newsletter Section ////////// */

.newsletter {
  background-color: #D9D7ED;
  max-height: 435px;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin: auto;
  margin-top: 100px;
  margin-bottom: -564px;
  width: 70%;
  z-index: 10;

}

.newsletter .left-side {
  padding-left: 48px;
}


.left-side,
.right-side {
  width: 50%;

}


.newsletter h2 {
  font-size: 52px !important;
  color: #000;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 18px !important;
  color: #51505D !important;
  margin-bottom: 47px !important;
}

.newsletter .input-group input {
  display: flex;
  align-items: center;
   /*width: 150% !important; */
   position:absolute;
  z-index: 2;
  background: #fff;
  border-radius: 50px !important;
  padding: 14px 5px 14px 25px;
}

.newsletter .email-input {
  flex: 1;
  padding: 10px 28px;
  border: none;
  border-radius: 25px 0 0 25px;
  font-size: 20px;
  font-weight: 400;
  color: #858490;
  background-color: #fff !important;
  outline: none;
}

.newsletter .submit-btn {
  padding: 10px 15px;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  border: none;
  background-color: #5F5DA9;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  right: 5px;
  top: 5px;
}

.newsletter .submit-btn i {
  font-size: 1.2rem;
}

.newsletter .flowers-img {
  max-height: 358px;
  width: auto;
  height: auto;
  position: relative;
  right: -80px;
  top: 16px;
  pointer-events: none;
}

.newsletter-bg-img {

  width: 424px;
  height: 100%;
  z-index: -1;
}

.newsletter-bg {
  margin-bottom: -142px;
  margin-left: 35%;
  z-index: -1;
  pointer-events: none;
}

.black-newsletter-cir {
  position: absolute;
  top: -75px;
  left: 160px;
  width: 110px;
  height: 110px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 2;
  animation: glowFade 2s infinite ease-in-out;
}

@keyframes glowFade {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
    color: #5F5DA9;

  }
}

.scroll-up {
  position: absolute;
  color: #000000;
  rotate: -90deg;
  left: -150px;
  top: 150px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 3.5px;
  transition: all 0.3s ease;
  animation: glowFadeUp 1.8s infinite ease-in-out;
}

@keyframes glowFadeUp {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
    color: #5F5DA9;

  }
}


.scroll-up svg {
  rotate: 90deg;
  position: absolute;
  left: 46px;
  top: -28px;
}

.scroll-up:hover {
  cursor: pointer;
  color: #000 !important;
}

.elementor-1249 .elementor-element.elementor-element-1a907164 .quantity .qty {
    border-radius: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    color: #FFFFFF;
    background-color: #5F5DA9;
    transition: all 0.2s;
    border-radius: 50%;
    display: flex
;
    width: 50px;
    height: 50px;
    justify-content: center;
    margin: auto;
 
    text-align: center;
}
    
@media screen and (max-width: 1024px) {
     .newsletter .email-input {
    width:100% !important;
  }
   .newsletter {
       padding-bottom: 70px;
   }
} 

@media screen and (max-width: 768px) {
  .newsletter-bg {
    display: none;
  }


  .newsletter .email-input {
    font-size: 15px;
    padding: 10px 5px 10px 25px;
    width:100% !important;
  }

  button.submit-btn {
    width: 40px !important;
    height: 40px !important;
  }

  .left-side {
    width: 100%;
    padding: 0px !important;
  }

  .newsletter {
            margin-top: -82px;
        margin-bottom: -160px;
        width: 90%;
        padding: 20px;
         padding-bottom: 46px;
  }

  .black-newsletter-cir {
    display: none;
  }

  .newsletter .flowers-img {
    width: auto;
    height: auto;
    position: relative;
    right: -44px;
    top: 16px;
    pointer-events: none;
    max-width: 310px;
  }

  .more-circle {
    width: 98px;
    height: 98px;
    border: 1px solid #000;
    color: #000 !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
    margin: 0 auto 14px auto;
  }


}

@media screen and (max-width: 766px) and (min-width: 426px) {
  .newsletter {
    margin-top: -114px;
    margin-bottom: -160px;
    width: 90%;
    padding: 20px;
     padding-bottom: 46px;
  }
}



@media screen and (max-width: 425px) {
  
 
        .newsletter {
        margin-top: -82px;
        margin-bottom: -72px;
        width: 90%;
        padding: 20px;
         padding-bottom: 64px;
    }
    
}
 

@media screen and (max-width: 320px) {
  
      .newsletter .input-group input {
        width: 100% !important;
    }
    
}


/* --- whats app icon ---  */

.whatsapp-container {
  position: absolute;
  top: 96px;
  right: -100px;
  width: 60px;
  height: 60px;
  z-index: 100;
}

.whatsapp-btn {
  width: 68px;
  height: 68px;
  background-color: #958FC5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: drop 1.5s ease-in forwards;
}

.inner-container {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.elementor-element.elementor-element-4eb2d59d.e-con-full.e-flex.e-con.e-child {
    margin-bottom: 108px;
}

.elementor-element.elementor-element-4622d599.e-con-full.e-flex.e-con.e-child {
    margin-bottom: 80px;
}

.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.whatsapp-btn::before,
.whatsapp-btn::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(107, 91, 149, 0.5);
  /* Purple ripple */
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 1.5s infinite;
  /* Start after drop */
}

.whatsapp-btn::after {
  animation-delay: 1.8s;
  /* Second ripple starts slightly later */
}

/* Drop Animation */
@keyframes drop {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }

  70% {
    transform: translateY(24px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .whatsapp-container {
    position: fixed !important;
    bottom: 24px !important;
    top: unset !important;
    right: 25px;
    width: 60px;
    height: 60px;
  }

}


/* ---- Footer ///////////////// */

.footer {
  background-color: #5F5DA9;
  color: #fff;
  padding-top: 197px;
  padding-bottom: 90px;
  margin-top: 430px;
  /* overflow-x: hidden; */
}

.footer h5 {
  font-size: 20px !important;
  color: #BCB8DC;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer p {
  font-weight: 400;
  font-size: 14px;
  color: #F7F6FFB2;
  margin-top: 20px;
  line-height: 1.6;
  letter-spacing: 1px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 18px;
}

.footer ul li a {
  color: #F7F6FFCC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.social-icons {
  margin-top: 53px;
}

.social-icon {
  margin-right: 31px;
}

.social-icon img {
  width: 30px;
  max-height: 30px;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.puiux-logo {
  width: auto;
  height: auto;
  max-height: 44px;
}

/* quantity-container */
.quantity-input {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-value {
  font-weight: 600;
  font-size: 18px;
}

/* product card */
.product-card {
  background-color: transparent;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  min-width: 264px;
  height: 302px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
}

.product-title {
  font-size: clamp(16px, 2vw, 18px) !important;
  color: #000;
  margin-bottom: 5px;
}

.product-price {
  font-size: 10px;
  color: #5F5DA9;
  font-weight: 500;
  margin-bottom: 5px;
}

.product-price .price {
  font-size: 18px;
  color: #5F5DA9;
  white-space: nowrap;
}

.product-description {
  font-size: 14px;
  color: #51505D;
  margin-bottom: 22px;
}

.color-container {
  display: flex;
  justify-content: space-between;
}

.color-container h6 {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #A4A3AE;

}

.product-detail-section .color-container h6,
.product-detail-section .size-options h6 {
  color: #A4A3AE !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  text-transform: capitalize;

}

.product-card .color-options .color-circle.small {
  width: 16px;
  height: 16px;
}

.add-to-cart {
  background-color: #958FC5 !important;
  color: #fff !important;
  border: none;
  padding: 8px 15px;
  width: 100%;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #5F5DA9 !important;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus,
.btn-primary:active:focus {
  box-shadow: unset;
}

.favorite-btn {
  border: none;
  font-size: 16px;
  color: #958FC5;
  background-color: #E8E6F6;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
}

.favorite-btn:hover {
  color: #5F5DA9;
}

/* inputs */

.form-label {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 400;
}

.input-group input,
.input-group select {
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  padding: 10px 44px;
  font-size: 16px;
  color: #51505D;
  background-color: #D9D7ED66 !important;
  border-radius: 50px !important;
  border: 1px solid transparent !important;
  width: 100% !important;
}

.input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%2351505D" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-size: 16px;
}

.input-group-text {
  background-color: transparent;
  border: 2px solid #5F5DA9;
  border-right: none;
  border-radius: 25px 0 0 25px;
  padding: 10px 15px;
}

.input-group-text i {
  color: #51505D;
}

.mail-icon,
.lock-icon {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 14px;
  font-size: 18px;
  color: #51505D;
}


.eye-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.eye-path {
  fill: #51505D;
  transition: fill 0.2s ease;
}

.eye-icon.eye-closed .eye-path {
  fill: #A9A9A9;
}

.eye-icon.eye-closed .slash-path {
  visibility: visible;
}

.lock-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #51505D;
  z-index: 10;
}

.form-control {
  border: none;
  background-color: transparent;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #4C4A87 !important;
  background-color: transparent !important;
  color: #51505D !important;
}

.toggle-password {
  border: 2px solid #5F5DA9;
  border-left: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
}

.forget-password {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-align: right;
}

.forget-password:hover {
  color: #5F5DA9;
}


.footer-description {
  width: 75%;
}


/* Responsive adjustments with media queries */
@media (max-width: 1024px) {
  .newsletter h2 {
    font-size: 36px !important;

  }


  .newsletter .flowers-img {
    max-height: 260px;
    right: -40px;
  }

  .product-image {
    width: 100%;
    min-width: 200px;
    height: 302px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .footer-description {
    width: 100%;
  }

  .footer {
    padding-top: 40px !important;
    padding-bottom: 4vw;
    margin-top: 15vw;
  }

  .newsletter h2 {
    font-size: 26px !important;
  }

  .footer .container {
    padding: 0 10px;
  }

  .footer .row {
    flex-wrap: wrap;
    /* Allow wrapping to create two-column layout */
  }

  /* Two columns per row */
  .footer .col-md-4,
  .footer .col-md-2,
  .footer .col-md-3 {
    flex: 0 0 50%;
    /* Each column takes 50% width */
    max-width: 50%;
    margin-bottom: 20px;
    text-align: center;
    /* Center text for consistency */
  }

  .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .social-icon {
    margin: 0 10px;
  }

  .footer-bottom {
    margin-top: 15px;
    padding-top: 10px;
  }

  .footer-bottom .col-md-6 {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {



     .footer {
        padding-top: 70px !important;
        padding-bottom: 3vw;
        margin-top: 2vw;
    }
  .right-side {
    display: none;
  }

  .footer h5 {
    margin-bottom: 10px;
  }

  .footer p {
    margin-top: 10px;
    font-size: 12px !important;
  }



  .social-icons {
    margin-top: 15px;
  }

  .social-icon {
    margin: 0 8px;
  }

  /* Stack all sections vertically on very small screens */
  .footer .col-md-4,
  .footer .col-md-2,
  .footer .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .black-circle {
    right: 54px;
    width: 50px;
    height: 50px;
  }

  .purple-circle {
    right: 82px;
    width: 30px;
    height: 30px;
    top: 46px;
  }

  .heading {
    font-size: 32px !important;
  }

  .heading-span {
    font-size: 30px !important;
  }

  .description {
    font-size: 16px !important;

  }

  .whoWeAre-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;

  }

  .swiper-wrapper {
    justify-content: unset !important;
    gap: 0 !important;
  }

  .input-group input,
  .input-group select {
    font-size: 12px;
  }

  .newsletter p {
    margin-bottom: 12px !important;
  }


}


@media (max-width: 600px) {
  :root {
    --step2-width: 36.33%;
    --step3-width: 64%;
  }
}

/* --- cart page //////////////////// */
.cart-section .progress-bar-container {
  margin-bottom: 20px;
  position: relative;
}

.cart-section .w-md-50 {
  width: 50% !important;
}

.cart-section .progress-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin-bottom: 4px;
  position: relative;
}

.cart-section .progress-steps li {
  color: #00000033;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding-bottom: 24px;
}

.cart-section .progress-steps li.active {
  color: #4C4A87;
  font-weight: 600;
  padding-bottom: 46px;
}

.cart-section .progress-steps li:first-child {
  text-align: left;
  /* Align first step text to the left */
  padding-left: 0;
  /* Remove any padding */
}

.cart-section .progress-steps li:last-child {
  text-align: right;
  /* Align last step text to the right */
  padding-right: 0;
}

.cart-section .progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #E0DFEA;
  width: 100%;
  /* Full width */
  z-index: -1;
}

.cart-section .progress-line-active {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #4C4A87;
  width: 0;
  transition: width 0.4s ease-in-out;
}

.cart-section .progress-steps li::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #00000033;
  background-color: #F7F6FF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cart-section .progress-steps li:first-child::before {
  left: 0;
}

.cart-section .progress-steps li:not(:first-child)::before {
  left: 50%;
}

.cart-section .progress-steps li:last-child::before {
  right: 0;
  left: auto;
}

.cart-section .progress-steps li.active::before {
  border: 2px solid #4C4A87;
  background-color: #fff;
}

.cart-section .progress-steps li.second.active {
  padding-left: 0;
}


.cart-section .items-header h3 {
  background: #E8E6F6;
  padding: 8px 50px;
  border-radius: 50px;
  font-size: 32px;
  color: #1E1E1E;
  margin-bottom: 20px;
  min-height: 78px;
  align-items: center;
  display: flex;
}

.cart-section .items-header span {
  color: #51505D;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 10px;
}

.cart-section .wide-dash {
  display: inline-block;
  width: 56px;
  border-bottom: 1px solid #51505D;
  margin: 0 6px 0 16px;
}


.cart-section .cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-section .cart-table td {
  vertical-align: middle;
  padding: 48px 15px;
  border-bottom: 1px solid #958FC517;
}

.cart-section .cart-image-cell {
  width: 130px;
}

.cart-details-cell {
  max-width: 218px;
}

.cart-price-cell,
.cart-quantity-cell,
.cart-color-cell,
.cart-size-cell,
.cart-remove-cell {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}


.cart-item {
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background-color: #F7F6FF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  transform: scale(1.01);
}

.cart-item-image {
  width: 124px;
  max-height: 124px;
  border-radius: 10px;
  margin: auto;
  display: block;
}

.item-title {
  font-size: 20px !important;
  color: #000000;
  margin-bottom: 5px;
}

.item-category {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 42px;
}

.item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-transform: capitalize;
  color: #51505D;
}

.item-price {
  color: #4C4A87;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0px !important;
}

.cart-section .color-options {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.cart-section .color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  background-clip: padding-box;
  border-color: #f7f6ff;
  box-shadow: 0 0 0 1px #5F5DA9;
}

.cart-section .size-btn {
  min-width: 80px;
  height: 30px;
  border-radius: 100px;
  background: #E8E6F6;
  border: none;
  font-size: 12px;
  color: #4C4A87;
  cursor: default !important;
  margin-right: 10px;
  font-weight: 500;
  line-height: 100%;

}

.cart-section .remove-btn {
  background: #E8E6F6;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}


.cart-section .remove-btn i {
  color: #4C4A87;
  font-size: 20px;
}

.cart-section .remove-btn:hover i {
  color: #E8E6F6;
}

.cart-section .remove-btn:hover {
  background: #4C4A87;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}


.cart-section .cart-summary-container {
  display: flex;
  /* gap: 40px; */
  background: #E8E6F6;
  border-radius: 24px;
  padding: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 12px;
  flex-direction: column;
  margin-top: 30px;
}

.cart-section .cart-summary-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
}

.cart-section .features-box,
.cart-section .summary-box {
  max-height: 410px;
  flex: 1;
  min-width: 300px;
}


.cart-section .summary-box .container {
  padding: 0 3rem;
}

.cart-section .features-title,
.cart-section .summary-title {
  color: #000000;
  line-height: 72px;
  text-transform: capitalize;
}

.cart-section .features-title {
  font-size: 14px !important;
}

.cart-section .summary-title {
  font-size: 20px !important;
}

.cart-section .features-list {
  background: #DDDBEE;
  border-radius: 24px;
  padding: 23px 33px;
  list-style: none;
}

.cart-section .features-list li {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #1E1E1E;
}

.cart-section .features-list i {
  color: #5f5da9;
  font-size: 20px;
  margin-top: 4px;
}

.cart-section .features-list h6 {
  font-weight: 700;
  font-size: 14px;
  color: #1D364D;
}

.cart-section .features-list p {
  font-weight: 400;
  font-size: 12px;
  color: #51505D;
}


.cart-section .apply-btn {
  background: #4c4a87;
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  min-width: 111px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-transform: capitalize;

}

.cart-section .summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  color: #51505D;
  margin-bottom: 8px;
}

.cart-section .summary-table td {
  padding: 8px;
  vertical-align: middle;
}

.cart-section td.line {
  width: 292px;
}

.cart-section .line-bridge {
  border-bottom: 1px solid #958FC517;
  height: 1px;
  width: 100%;
  margin: auto;
}

.cart-section .summary-table .left-title {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #51505D;
  white-space: nowrap;
}

.cart-section .summary-table .amount {
  text-align: right;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  white-space: nowrap;
}



.cart-section .summary-table .separator td {
  padding: 6px 0;
  border-color: #958FC517;
}

.cart-section .coupon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.cart-section .coupon-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: #F7F6FF;
  font-size: 14px;
  color: #51505D;
}

.cart-section input.coupon-input:focus-visible {
  outline: none;
  /* box-shadow: 0 0 0 1px #5F5DA9; */
  /* background-color: transparent; */
}


.cart-section .buy-now-btn {
  width: fit-content;
  margin-left: auto;
  display: block;
  padding: 16px;
  background: #958FC5;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
}

.cart-section .buy-now-btn.second {
  border: 1px solid #000;
  width: 100%;
  color: #fff;
  margin-top: 38px;
  background-color: #958FC5;
  white-space: nowrap;
}

.cart-section .summary-box .container.second-box {
  padding: 42px 30px;
  border-radius: 20px;
  background-color: #E8E6F6;
}

.cart-section .previous-btn {
  padding: 16px 40px;
  min-width: 169px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #eceaf6;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.cart-section .footer {
  margin-top: 40px;
  padding-top: 100px;
}

.cart-section .shipping-form {
  padding: 30px 52px 30px 0;
  border-radius: 12px;
  color: #1E1E1E;
}

.cart-section .form-label {
  font-weight: 400;
  color: #000000;
  font-size: 16px;
}

.cart-section .saved-address-box {
  background: #EBEAF8;
  border-radius: 12px;
  color: #51505D;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;

}

.cart-section i.fa-solid.fa-pen-to-square {
  transform: rotatey(180deg);
}

.cart-section .change-link {
  font-weight: 700;
  color: #4C4A87 !important;
  font-size: 14px;
  text-decoration: none;
}

.cart-section .custom-input {
  background: #D9D7ED66;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  padding-left: 48px;
  color: #51505D;
  font-size: 14px;
  border: 1px solid transparent;
}

.cart-section .custom-input:focus {
  background: transparent !important;
  border: 1px solid #4C4A87 !important;
  box-shadow: none;

}

.cart-section .custom-input::placeholder {
  color: #51505D;
}

.cart-section .input-icon-wrapper {
  position: relative;
}

.cart-section .input-icon-wrapper .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #4C4A87;
  font-size: 16px;
}


.cart-section .form-check:first-of-type .form-check-input {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.cart-section .form-check .form-check-input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.cart-section .form-check:first-of-type .form-check-input:checked {
  background-color: #4C4A87;
  border-color: #4C4A87;
  width: 12px;
  height: 12px;
}

.cart-section .form-check-input:checked {
  background-color: #4C4A87;
  border-color: #4C4A87;
}

.cart-section label.form-check-label {
  color: #51505D;
  font-size: 15px;
}

.cart-section .terms-link {
  color: #4C4A87 !important;
  font-weight: 600;
  text-decoration: none;
}


/* Step Wizard Styles */
.cart-section .wizard-content {
  min-height: 400px;
  margin-bottom: 20px;
}

.cart-section .step-pane {
  display: none;
}

.step-pane.active {
  display: block;
}

.step-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}



.progress-steps li.active {
  padding-bottom: 46px;
}

.progress-steps li.second.active {
  padding-left: 0px;
}


.cart-section .cart-buttons {
  display: flex;
  gap: 9px;
  justify-content: flex-start;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  flex-direction: row;
}

.cart-section .next-btn {
  padding: 16px 40px;
  min-width: 169px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;

}

.previous-btn {
  border: 1px solid #000;
  background: #eceaf6;
  color: #000;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 169px;
}

.previous-btn:hover {
  background: #d5d3e6;
}

.next-btn {
  background: #4c4a87;
  color: white;
  border: none;
}

.next-btn:hover {
  background: #5f5da9;
}

.previous-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart-section .payment-options {
  gap: 10px;
  border-bottom: 1px solid #958FC517;
  padding-bottom: 34px;
  margin-bottom: 22px;
}

.payment-method {
  background-color: #E8E6F6;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  font-weight: bold;
  min-height: 97px;
  width: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.payment-method.active {
  border: 1px solid #4C4A87;
  background-color: transparent;
}

.payment-method img {
  max-width: 100%;
  width: auto;
  display: flex;
}



.cart-section input[type="password"] {
  font-size: 18px;
  letter-spacing: 2px;
}


.cart-section .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 50, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
  /* initially hidden */
}

.cart-section .modal-content {
  background-color: #F7F6FF;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 812px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 700px;
  min-height: 700px;
  border: none !important;
}

.cart-section .modal-content h3 {
  font-size: 42px !important;
}

.cart-section .modal-content p {
  color: #51505D;
  margin-top: 10px;
  font-size: 14px;
}

.cart-section .modal-content .btn {
  border: 1px solid #000;
  color: #000000;
  font-weight: 400 !important;
}

.cart-section .modal-content .btn:hover {
  color: #000;
  background-color: var(--main-color);
  font-weight: 400;
}

.cart-section .dotlottie-player-success {
  transform: rotate(45deg);
  z-index: 0;
  width: 200px !important;
  height: 200px !important;
  margin-bottom: 38px;
  border-radius: 50% !important;
  overflow: hidden;
}


/* Text styling */
.cart-section .success-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.cart-section .success-text {
  color: #555;
  font-size: 16px;
}

/* Decoration wrapper */
.decoration-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  width: 220px !important;
  height: 220px !important;
}

/* Decoration icons */
.decoration-icon {
  position: absolute;
  font-size: 24px;
  opacity: 0.7;
  z-index: 2;
  color: #cac8ff;
}

/* Specific icon placements */
.meteor {
  top: 24px;
  left: 33%;
}

.earth {
  top: 122px;
  right: 22%;
  font-size: 28px;
}

.star {
  bottom: 18px;
  left: 36%;
  font-size: 20px;
}

/* Animation keyframes */
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

/* Animation classes */
.float {
  animation: floatUpDown 4s ease-in-out infinite;
}

.rotate {
  animation: rotate360 10s linear infinite;
}

.twinkle {
  animation: twinkle 2s ease-in-out infinite;
}

.cart-section img.latest-bg-top.position-absolute,
.cart-section img.latest-bg-bottom.position-absolute {
  width: 280px;
  height: 200px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cart-section .cart-summary-inner {
    gap: 80px;
  }

  .cart-section .features-box,
  .cart-section .summary-box {
    max-height: 410px;
    flex: 1;
    max-width: 250px;
    min-width: 300px;
    margin: 12px -26px;
  }

  .cart-section .coupon-input {
    width: 100%;
  }

  .cart-section .step-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {

  /* .features-box,
    .summary-box {
        max-height: 410px;
        flex: 1;
        max-width: 250px;
        min-width: 300px;
        margin: 12px -26px;
    } */

  .cart-section .step-title {
    font-size: 18px;
  }

  .cart-section .progress-steps li {
    font-size: 10px;
  }

  .cart-section .previous-btn,
  .cart-section .next-btn {
    padding: 12px 20px;
    font-size: 16px;

  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .cart-section .cart-table {
    display: block;
    width: 100%;
  }

  .cart-section .cart-table tbody,
  .cart-section .cart-table tr,
  .cart-section .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-section .cart-table td {
    padding: 15px;
    text-align: center;
    border-bottom: none;
  }

  .cart-section .cart-image-cell {
    width: 100%;
    margin-bottom: 10px;
  }

  .cart-section .cart-item-image {
    width: 100px;
    max-height: 100px;
  }

  .cart-section .cart-details-cell {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .cart-section .item-title {
    font-size: 18px !important;
  }

  .cart-section .item-category {
    font-size: 16px;
    line-height: 30px;
  }

  .cart-section .item-description {
    font-size: 13px;
    line-height: 20px;
  }

  .cart-section .item-price {
    font-size: 16px;
  }

  .cart-section .cart-quantity-cell {
    margin: 10px 0;
  }

  .cart-section .quantity-container {
    justify-content: center;
  }

  .cart-section .color-circle {
    width: 25px;
    height: 25px;
  }

  .cart-section .size-btn {
    min-width: 70px;
    height: 28px;
    font-size: 11px;
  }

  .cart-section .remove-btn {
    width: 40px;
    height: 40px;
  }

  .cart-section .remove-btn i {
    font-size: 18px;
  }

  .cart-section .cart-item {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #E0DFEA;
    border-radius: 20px;
  }

  .cart-section .cart-item:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .cart-section .items-header h3 {
    font-size: 24px;
    padding: 8px 30px;
    min-height: 60px;
  }

  .cart-section .items-header span {
    font-size: 16px;
  }

  .cart-section .progress-steps li {
    font-size: 12px;
  }

  .cart-section .progress-steps li.active {
    padding-bottom: 30px;
    padding-left: 10px;
  }

  .cart-section .progress-steps li::before {
    width: 12px;
    height: 12px;
    left: 15px;
  }

  .cart-section .summary-box .container {
    padding: 0;
  }




}

@media (max-width: 768px) {
  .cart-section .shipping-form {
    padding: 20px !important;
    margin-left: 0;
    margin-right: 50px;
    padding-left: 0 !important;
  }

  .cart-section .cart-table td {
    padding: 3px 15px;
  }

}

@media (max-width: 576px) {


  .cart-section .items-header h3 {
    font-size: 20px;
    padding: 6px 20px;
    min-height: 50px;
  }

  .cart-section .items-header span {
    font-size: 14px;
  }

  .cart-section .cart-item-image {
    width: 80px;
    max-height: 80px;
  }

  .cart-section .item-title {
    font-size: 16px !important;
  }

  .cart-section .item-category {
    font-size: 14px;
    line-height: 24px;
  }

  .cart-section .item-description {
    font-size: 12px;
    line-height: 18px;
  }

  .cart-section .item-price {
    font-size: 14px;
  }

  .cart-section .color-circle {
    width: 20px;
    height: 20px;
  }

  .cart-section .size-btn {
    min-width: 60px;
    height: 26px;
    font-size: 10px;
  }

  .cart-section .remove-btn {
    width: 35px;
    height: 35px;
  }

  .cart-section .remove-btn i {
    font-size: 16px;
  }

  .cart-section .progress-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .cart-section .progress-steps li {
    font-size: 10px;
    flex: 1;
    text-align: center;
  }

  .cart-section .progress-steps li.active {
    padding-bottom: 20px;
    padding-left: 0;
  }

  .cart-section .progress-steps li::before {
    left: 50%;
    transform: translate(-50%, -39%);
    width: 10px;
    height: 10px;
  }

  .cart-section .progress-steps::before {
    display: none;
  }

  .cart-section .cart-summary-container {
    padding: 20px 70px;

  }

  .cart-section .previous-btn,
  .cart-section .buy-now-btn {
    width: 108px !important;
    max-width: unset;
    min-width: unset;
    min-height: 60px;
    white-space: nowrap;

  }

  .cart-section .shipping-form {
    padding: 20px !important;
    width: 100% !important;
  }

  .cart-section .summary-box.w-100.w-md-50 {
    width: 100% !important;
    max-width: unset;
    min-width: unset;
    margin: auto;
    margin-bottom: 120px;
  }

  .cart-section .buy-now-btn.second {
    width: 100% !important;
  }

  .cart-section .cart-buttons.mt-md-2 {
    margin-top: 90px !important;
  }

  .cart-section .payment-form {
    width: 100% !important;
    padding: 20px !important;
  }

  .cart-section .payment-method {
    white-space: wrap;
    padding: 10px;
  }

  .cart-section .cart-summary-inner {
    gap: 20px;
    flex-direction: column;

  }



}

@media (max-width: 320px) {

  .cart-section .features-box,
  .cart-section .summary-box {
    max-height: 410px;
    flex: 1;
    max-width: 250px;
    min-width: unset;
    margin: 12px -47px;
  }

  .cart-section .cart-buttons {
    margin-left: -18px;
  }

}


/* --- Contact Us ////////////////// */
/* Contact Us Section */
.contact-us-section {
  position: relative;
  padding-top: 50px;
}

.contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.contact-us-section h2 {
  font-size: clamp(36px, 5vw, 52px) !important;
  color: #000;
  margin-bottom: 70px;
  text-transform: capitalize;
}

/* Contact Information Cards */
.contact-info-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-us-section .contact-card {
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 215, 237, 0) 0%, #D9D7ED 100%);
  min-height: 260px;
  border-radius: 15px;
  flex: 1;
  min-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-us-section .contact-card:hover {
  transform: translateY(-5px);
}

.contact-us-section .card-title {
  font-size: clamp(16px, 2vw, 18px) !important;
  color: #000;
  margin-bottom: 16px;
}

.contact-us-section .card-text {
  font-size: clamp(12px, 1.8vw, 18px);
  color: #51505D;
  margin: 0;
  padding: 0 40px;
}

.contact-us-section .contact-card img {
  position: absolute;
  height: auto;
}

.contact-us-section .contact-card .flower-decoration-left {
  max-width: 205px;
  height: auto;
  left: 0;
  bottom: 0;
}

.contact-us-section .contact-card .flower-decoration-mid {
  max-width: 288px;
  height: auto;
  left: 12%;
  bottom: 0;
}

.contact-us-section .contact-card .flower-decoration-right {
  max-width: 214px;
  height: auto;
  right: 0;
  top: 0;
}

/* Map */

.contact-us-section .map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 400px;
  /* background-color:  #958FC5; */
  border-radius: 20px;
  overflow: hidden;
}

.contact-us-section .map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(65deg) saturate(50%) brightness(90%);
  mix-blend-mode: multiply;
}


/* Contact Form */
.contact-us-section .contact-form-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-us-section .form-text-content {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.contact-us-section .form-heading {
  font-size: clamp(36px, 5vw, 42px) !important;
  color: #000;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.contact-us-section .clipboard-img {
  margin-top: 124px;
  max-width: 305px;
  width: 100%;
  display: block;
  filter:
    hue-rotate(209deg)
    /* saturate(0.6)         */
    /* brightness(0.95);     */
}

.contact-us-section .contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-us-section .form-group {
  position: relative;
}

.contact-us-section .form-input,
.contact-us-section .form-textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-size: clamp(12px, 1.8vw, 14px);
  color: #51505D;
  background-color: #D9D7ED66;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-us-section .form-textarea {
  border-radius: 15px;
  padding: 15px;
  resize: none;
}

.contact-us-section .form-input:focus,
.contact-us-section .form-textarea:focus {
  border-color: #5F5DA9;
  background-color: transparent;
}

.contact-us-section .form-icon {
  position: absolute;
  top: 65%;
  left: 20px;
  transform: translateY(-50%);
  color: #958FC5;
  font-size: 16px;
}

.contact-us-section .contact-form .submit-btn {
  background-color: #5F5DA9;
  color: #fff;
  padding: 12px 30px;
  width: 100%;
  border: 1px solid #000;
  border-radius: 25px;
  font-size: clamp(14px, 2vw, 16px);
  cursor: pointer;
  align-self: flex-end;
  transition: background-color 0.3s ease;
}

.contact-us-section .contact-form .submit-btn:hover {
  background-color: #4a4890;
}

.contact-us-section .flower-img {
  top: 200px;
  right: 0;
  z-index: -1;
}

.contact-us-section .left-purple-cir {
  top: 33px;
  left: 30px;
  pointer-events: none;

}

.contact-us-section .left-black-cir {
  top: 60px;
  left: 0px;
  pointer-events: none;
}


.contact-us-section .circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}


.contact-us-section .circle3 {
  width: 70px;
  height: 70px;
  background-color: #5F5DA9;
  left: -140px;
  z-index: -2;
  top: 70%;
}

/* Smaller lighter circle on the left */
.contact-us-section .circle4 {
  width: 110px;
  height: 110px;
  border: 2px solid #000;
  left: -106px;
  z-index: -1;
  top: 60%;
}


.contact-us-section dotlottie-player {
  transform: rotate(-15deg);
}

.contact-us-section .clipboard-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-top: 74px;
}

.contact-us-section .clipboard-container dotlottie-player {
  width: 100%;
  height: 100%;
}

.contact-us-section .shape {
  position: absolute;
}

.contact-us-section .sm-circle {
  width: 15px;
  height: 15px;
  background-color: #B9B5D6;
  border-radius: 50%;
}

.contact-us-section .triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #B9B5D6;
  animation: float 4s ease-in-out infinite;
}

/* Shapes position */
.contact-us-section .sm-circle.one {
  top: -10px;
  left: 20%;
  animation: pulse 2s ease-in-out infinite;
}

.contact-us-section .sm-circle.two {
  bottom: -10px;
  right: 15%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.contact-us-section .triangle.one {
  top: 10%;
  right: -15px;
  animation-delay: 0.5s;
}

.contact-us-section .triangle.two {
  bottom: 15%;
  left: -15px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}




/* Responsive Adjustments */
@media (max-width: 768px) {

  .contact-us-section .contact-us-section h2 {
    font-size: 28px !important;
    margin-bottom: 2.5rem;
  }

  .contact-us-section .left-purple-cir {
    top: 23px;
    left: 4px;
    pointer-events: none;

  }

  .contact-us-section .left-black-cir {
    top: 50px;
    left: -30px;
    pointer-events: none;
  }


  .contact-us-section .contact-us-section {
    padding: 30px 0;
  }

  .contact-us-section .clipboard-container {
    margin: auto;
    margin-top: 60px;
  }

  .contact-us-section .footer {
    padding-top: 6vw;
    padding-bottom: 3vw;
    margin-top: 208px;
  }

  .contact-us-section .contact-info-cards {
    flex-direction: column-reverse;
    align-items: center;
  }

  .contact-us-section .contact-card {
    min-width: 100%;
    max-width: 400px;
    min-height: 232px;
  }

  .contact-us-section .contact-card .flower-decoration {
    max-width: 60px;
  }

  .contact-us-section .contact-card .flower-decoration-mid {
    left: 0%;
  }

  .contact-us-section .map-container {
    height: 300px;
  }

  .contact-us-section .contact-form-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-us-section .form-text-content,
  .contact-us-section .contact-form {
    min-width: 100%;
  }

  .contact-us-section .form-heading {
    font-size: clamp(28px, 4vw, 36px) !important;
  }

  .contact-us-section .clipboard-img {
    max-width: 60px;
    left: -30px;
  }

  .contact-us-section .form-input,
  .contact-us-section .form-textarea {
    font-size: clamp(11px, 1.5vw, 12px);
  }

  .contact-us-section .contact-form .submit-btn {
    align-self: center;
    font-size: clamp(12px, 1.8vw, 14px) !important;
    width: 50% !important;
  }


  .contact-us-section .circle3 {
    width: 50px;
    height: 50px;
    background-color: #5F5DA9;
    left: -150px;
    z-index: -2;
    top: 70%;
  }

  /* Smaller lighter circle on the left */
  .contact-us-section .circle4 {
    width: 80px;
    height: 80px;
    border: 2px solid #000;
    left: -116px;
    z-index: -1;
    top: 60%;
  }


}


@media (max-width: 480px) {

  .contact-us-section .clipboard-container {
    width: 200px;
    height: 200px;
    margin-top: 60px;
  }

  .contact-us-section .shape.sm-circle {
    width: 10px;
    height: 10px;
  }

  .contact-us-section .shape.triangle {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #B9B5D6;
  }

  .contact-us-section .left-purple-cir,
  .contact-us-section .left-black-cir {
    display: none;
  }

  .contact-us-section .contact-card {
    padding: 15px;
  }

  .contact-us-section .card-title {
    font-size: clamp(14px, 1.8vw, 16px) !important;
  }

  .contact-us-section .card-text {
    font-size: clamp(11px, 1.5vw, 12px);
  }

  .contact-us-section .contact-card .flower-decoration {
    max-width: 50px;
  }

  .contact-us-section .map-container {
    height: 250px;
  }

  .contact-us-section .form-heading {
    font-size: clamp(24px, 3.5vw, 28px) !important;
  }

  .contact-us-section .clipboard-img {
    max-width: 50px;
    left: -20px;
  }

  .contact-us-section .form-input,
  .contact-us-section .form-textarea {
    font-size: clamp(10px, 1.3vw, 11px);
  }

  .contact-us-section .form-icon {
    font-size: 14px;
    right: 12px;
  }

  .contact-us-section .contact-form .submit-btn {
    padding: 10px 25px;
    font-size: clamp(11px, 1.5vw, 12px);
    width: 100% !important;
  }
}

/* --- login & forget pass pages ///////////////// */
/* Login Section */
.login-section {
  padding: 50px 0;
  min-height: calc(100vh - 200px);
}


/* Modal Overlay */
.login-section .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1F1E2CD9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
  /* initially hidden */
}

/* Show modal when active */
.login-section .modal-overlay.active {
  display: flex;
}

/* Modal Content */
.login-section .modal-content {
  background-color: #F7F6FF;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 812px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 700px;
  min-height: 700px;
  border: none !important;
}

.login-section .modal-content h3 {
  font-size: 42px !important;
}

.login-section .modal-content p {
  color: #51505D;
  margin-top: 10px;
  font-size: 14px;
}

.login-section .modal-content .btn {
  border: 1px solid #000;
  color: #000000;
  font-weight: 400 !important;
}

.login-section .modal-content .btn:hover {
  color: #000;
  background-color: var(--main-color);
  font-weight: 400;
}

.login-section .dotlottie-player-success {
  transform: rotate(45deg);
  z-index: 0;
  width: 200px !important;
  height: 200px !important;
  margin-bottom: 38px;
  border-radius: 50% !important;
  overflow: hidden;
  background: #ffffff8a;
}

/* Text styling */
.login-section .success-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.login-section .success-text {
  color: #555;
  font-size: 16px;
}


/* OTP Input Styles */
.otp-inputs {
  gap: 15px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.otp-box {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  color: #51505D;
  background-color: #D9D7ED66;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border 0.3s ease;
}

.otp-box:focus {
  border: 1px solid #4C4A87;
  box-shadow: none;
  background-color: transparent !important;
}

/* Timer and Resend Styles */
.timer,
.resend {
  font-size: 18px;
  font-weight: 400;
  color: #51505D;
  text-align: center;
  margin-bottom: 20px;
}

.timer {
  font-weight: 500;
}

.resend-link {
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

/* Form Section */
.login-section .login-form {
  padding: 30px;
}

.login-section .login-form h1 {
  font-size: 24px !important;
  color: #000;
  margin-bottom: 30px;
}

.login-section .form-label {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 400;
}

.login-section .input-group input {
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  padding: 10px 44px;
  font-size: 16px;
  color: #51505D;
  background-color: #D9D7ED66 !important;
  border-radius: 50px !important;
  border: 1px solid transparent !important;
  width: 100% !important;
}

.login-section .input-group-text {
  background-color: transparent;
  border: 2px solid #5F5DA9;
  border-right: none;
  border-radius: 25px 0 0 25px;
  padding: 10px 15px;
}

.login-section .input-group-text i {
  color: #51505D;
}

.login-section .mail-icon,
.login-section .lock-icon {
  position: absolute;
  z-index: 4;
  top: 13px;
  left: 14px;
  font-size: 18px;
  color: #51505D;
}


.login-section .eye-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.login-section .eye-path {
  fill: #51505D;
  transition: fill 0.2s ease;
}

.login-section .eye-icon.eye-closed .eye-path {
  fill: #A9A9A9;
}

.login-section .eye-icon.eye-closed .slash-path {
  visibility: visible;
}

.login-section .lock-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #51505D;
  z-index: 10;
}

.login-section .form-control {
  border: none;
  background-color: transparent;
}

.login-section .form-control:focus {
  box-shadow: none !important;
  border: 1px solid #4C4A87 !important;
  background-color: transparent !important;
  color: #51505D !important;
}

.login-section .toggle-password {
  border: 2px solid #5F5DA9;
  border-left: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
}

.login-section .forget-password {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-align: right;
}

.login-section .btn-login-submit {
  display: block;
  width: 100%;
  background-color: #958FC5;
  border: 1px solid #000000;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 25px;
  margin: 20px 0;
  text-transform: lowercase;
  font-weight: 700;
}

.login-section .btn-login-submit:hover {
  background-color: #27224E;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.login-section .create-account {
  font-size: 16px;
  font-weight: 600;
  color: #51505D;
  margin-bottom: 20px;
}

.login-section .create-account a {
  color: #4C4A87;
  text-decoration: underline;
}

.login-section .form-check {
  display: flex;
  align-items: center;
}

.login-section .form-check-input {
  margin-right: 10px;
  background-color: transparent !important;
}

.login-section .form-check-input:focus {
  border-color: #4C4A87 !important;
  outline: 0;
  box-shadow: 0 0 0 .25rem #4c4a8736 !important;
}

.login-section .form-check-label {
  font-size: 15px;
  font-weight: 400;
  color: #51505D;
}

.login-section .form-check-label a {
  color: #4C4A87;
  text-decoration: none;
}

/* Image Section */
.login-section .login-image {
  padding: 30px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 215, 237, 0) 0%, #D9D7ED 100%);
  height: 788px !important;
  border-radius: 25px;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  max-width: 555px;
}

.login-section .image-container {
  text-align: center;
}

.login-section .login-image img {
  max-width: 100%;
  height: auto;
  max-height: 503px;
  position: absolute;
  bottom: 8%;
  left: 12%;

}

.login-section .login-image h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: #5F5DA9;
  text-transform: lowercase;
  text-align: center;
  padding-top: 71px;
  font-size: 42px !important;
}

.login-section .form-check-input:checked {
  background-color: #4C4A87 !important;
  border-color: #4C4A87 !important;
}


.login-section .circle {
  position: absolute;
  border-radius: 50%;
}

/* Larger purple circle on the right */
.login-section .circle1 {
  width: 158px;
  height: 158px;
  background-color: #5F5DA9;
  right: -92px;
  z-index: -1;
  top: 40%;
}

/* Smaller lighter circle on the left */
.login-section .circle2 {
  width: 158px;
  height: 158px;
  border: 2px solid #000;
  right: -66px;
  z-index: -2;
  top: 45%;
}

.login-section .circle3 {
  width: 70px;
  height: 70px;
  background-color: #5F5DA9;
  left: -40px;
  z-index: -2;
  top: 82%;
}

/* Smaller lighter circle on the left */
.login-section .circle4 {
  width: 110px;
  height: 110px;
  border: 2px solid #000;
  left: -6px;
  z-index: -1;
  top: 75%;
}


.login-section footer {
  margin-top: 115px !important;
  padding-top: 100px !important;
  padding-bottom: 50px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .login-section .circle1,
  .login-section .circle2 {
    display: none;
  }

  .login-section .circle3 {
    top: 75%;
  }

  .login-section .circle4 {
    top: 68%;
  }

  .login-section footer {
    margin-top: 0px !important;
    padding-top: 50px !important;
    padding-bottom: 20px !important;
  }

  .login-section .login-section {
    padding: 20px 0;
    min-height: calc(100vh - 232px);
  }

  .login-section .login-form {
    padding: 20px;
  }

  .login-section .login-form h1 {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .login-section .form-label {
    font-size: 14px;
  }

  .login-section .form-control {
    font-size: 14px;
    padding: 8px;
  }

  .login-section .btn-login-submit {
    font-size: 14px;
    padding: 10px;
  }

  .login-section .create-account,
  .login-section .form-check-label {
    font-size: 12px;
  }

  .login-section .login-image {
    max-height: 550px;
  }

  .login-section .login-image img {
    max-height: 350px;
    left: 10%;
  }

  .login-section .login-image h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .login-section .login-form {
    padding: 15px;
  }

  .login-section .login-form h1 {
    font-size: 22px !important;
  }

  .login-section .form-control {
    font-size: 12px;
    padding: 6px;
  }

  .login-section .btn-login-submit {
    font-size: 12px;
    padding: 8px;
  }
}

/* --- products & single product //////////////// */
/* Products Section */
.products-section,
.product-detail-section {
  padding: 22px 0 42px 0;
}

.products-section .border-borrom {
  border-bottom: 1px solid #EEEDFA;
}

.products-section .products {
  max-width: 1200px;
  margin: 0 auto;
}


/* Filter Sidebar */
.products-section .filter-container {
  border-radius: 15px;
  padding: 20px;
}

.products-section .filter-header {
  margin-bottom: 20px;
}

.products-section .filter-title {
  font-size: clamp(18px, 2.5vw, 24px) !important;
  color: #000;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.products-section .applied-filters h5 {
  font-size: 14px;
  color: #1E1E1E;
  margin-bottom: 10px;
}

.products-section .clear-all {
  font-size: 12px;
  font-weight: 500;
  color: #1E1E1E;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-section .clear-all:hover {
  text-decoration: underline;
  color: #5F5DA9;
}

.products-section .applied-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.products-section .filter-tag {
  background-color: #D9D7ED80;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  color: #1E1E1E;
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-section .filter-tag i {
  cursor: pointer;
  color: #1E1E1E;
}

.products-section .filter-group {
  padding: 12px 0 16px 0;
}

.products-section .filter-group-title {
  font-size: clamp(12px, 2vw, 14px) !important;
  font-weight: 400;
  color: #51505D;
  margin-bottom: 10px;
}



/* Price Range Slider */
.price-range {
  position: relative;
  margin: 20px 0;
}

/* noUiSlider Base Styles */
#price-slider {
  margin: 10px 0;
}

/* Slider Track (the entire bar) */
.noUi-target {
  background: #D9D7ED !important;
  /* Light purple track */
  border: none !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  height: 5px !important;
}

/* Selected Range (between the thumbs) */
.noUi-connect {
  background: #5F5DA9 !important;
  height: 5px !important;
}

.noUi-horizontal {
  height: 5px !important;
}

.noUi-horizontal .noUi-handle {
  cursor: pointer !important;
  right: -8px !important;
}

/* Thumbs (Handles) */
.noUi-handle {
  width: 15px !important;
  height: 15px !important;
  background: #5F5DA9 !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
  top: -5px !important;
  cursor: pointer;
}

/* Remove default handle pseudo-elements */
.noUi-handle::before,
.noUi-handle::after {
  display: none !important;
}

/* Price Values */
.products-section .price-values {
  font-size: 14px;
  color: #51505D;
  margin-top: 10px;
}

.products-section .price-values span {
  font-weight: 600;
  font-size: 12px;
  color: #000;
}

/* Size Filter */
.products-section .size-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-section .checkbox-label {
  font-size: 15px;
  color: #1E1E1E;
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-section .checkbox-label input[type="checkbox"] {
  accent-color: #1E1E1E;
  background-color: transparent;
}



/* Color Filter */
.color-options .color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  background-clip: padding-box;
}

/* Selected state: add outer glow without changing size */
.color-options .color-circle.choose.selected {
  border-color: #f7f6ff;
  box-shadow: 0 0 0 1px #5F5DA9;
}

/* Product Grid */
.products-section .products-header {
  padding-bottom: 10px;
}

.products-section .products-title {
  font-size: clamp(20px, 3vw, 32px) !important;
  color: #1E1E1E;
  font-weight: 400;
}

.products-section .results-count {
  font-size: 18px;
  color: #51505D;
}

.products-section .under-border {
  border-bottom: 1px solid #51505D;
  width: 56px;
  height: 8px;
  margin: 0 8px;
}

.products-section .sort-select {
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: transparent;
  font-size: 12px;
  color: #000;
}

.products-section .product-container {
  border-left: 1px solid #EEEDFA;
  padding: 20px 20px 0 20px;
}

.products-section .product-grid {
  margin-top: 20px;
}



.products-section .quantity-container {
  margin: 24px 0 46px 0;
}

.products-section .delivery-box {
  background-color: #E8E6F6;
  border-radius: 20px;
  padding: 24px;
  max-width: 100%;
}

.products-section .delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.products-section .delivery-item .icon svg {
  min-width: 24px;
  max-width: 24px;
}

.products-section .delivery-item .text .title {
  font-weight: 700;
  font-size: 14px;
  color: #1D364D;
  margin: 0;
}

.products-section .delivery-item .text .description {
  color: #51505D;
  font-size: 12px;
  font-weight: 400;
  margin: 4px 0 0;
}


.products-section .close-filter-btn {
  background-color: transparent;
  border: 1px solid #9c96c6;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-section .close-filter-btn i {
  font-size: 1.25rem;
  color: var(--main-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.products-section .close-filter-btn:hover {
  background-color: transparent;
  border-color: #9c96c6;
}

.products-section .close-filter-btn:hover i {
  color: var(--main-color);
  transform: rotate(180deg);
  /* Rotates caret to suggest toggling */
}

.products-section .close-filter-btn:active {
  background-color: transparent;
  border-color: #9c96c6;
}

.products-section .close-filter-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .products-section .under-border {
    border-bottom: 1px solid #51505D;
    width: 24px;
    height: 8px;
    margin: 0 8px;
  }

  .products-section .products-section {
    padding: 30px 0;
  }

  .products-section .products h2 {
    font-size: clamp(28px, 4vw, 36px) !important;
  }

  .products-section .filter-container {
    margin-bottom: 20px;
  }

  .products-section .filter-title {
    font-size: clamp(16px, 2vw, 18px) !important;
    padding-bottom: 4px;
  }

  .products-section .filter-group-title {
    font-size: clamp(14px, 1.8vw, 16px) !important;
  }

  .products-section .products-title {
    font-size: clamp(18px, 2.5vw, 20px) !important;
  }


  .products-section .product-image {
    height: 260px;
    min-width: 170px;
  }

  .products-section .product-title {
    font-size: clamp(14px, 1.8vw, 16px) !important;
  }

  .products-section .product-price,
  .products-section .product-description {
    font-size: 8px;
  }

  .products-section .add-to-cart {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .products-section .products h2 {
    font-size: clamp(24px, 3.5vw, 28px) !important;
  }

  .products-section .filter-container {
    padding: 15px;
  }

  .products-section .filter-title {
    font-size: clamp(14px, 1.8vw, 16px) !important;
  }

  .products-section .filter-group-title {
    font-size: clamp(12px, 1.5vw, 14px) !important;
  }

  .products-section .price-values,
  .products-section .checkbox-label,
  .products-section .clear-all,
  .products-section .results-count,
  .products-section .sort-select {
    font-size: 12px;
  }

  .products-section .sort-select {
    width: 74px;
  }

  .color-options .color-circle {
    width: 20px;
    height: 20px;
  }

  .products-section .products-title {
    font-size: clamp(16px, 2vw, 18px) !important;
  }

  .products-section .product-image {
    height: 120px;
  }

  .products-section .product-title {
    font-size: clamp(12px, 1.5vw, 14px) !important;
  }

  .products-section .product-price,
  .products-section .product-description {
    font-size: 8px;
  }



  .products-section .add-to-cart {
    font-size: 11px;
    padding: 5px 10px;
  }

  .products-section .favorite-btn {
    font-size: 14px;
  }
}



/* Size Filter */
.products-section .size-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-section .checkbox-label {
  font-size: 14px;
  color: #51505D;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

/* Style the native checkbox */
.products-section .checkbox-label input {
  /* Remove browser default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Custom styling */
  width: 16px;
  height: 16px;
  border: 2px solid #51505D;
  /* Border color */
  border-radius: 4px;
  background-color: transparent;
  /* Set background to transparent */
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Checkmark when checked */
.products-section .checkbox-label input:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  font-family: Arial, sans-serif;
  /* Fallback font for consistency */
  line-height: 1;
}

/* Border color when checked */
.products-section .checkbox-label input:checked {
  border-color: #1E1E1E;
  /* Match checkmark color */
  background-color: #1E1E1E;
}

/* Hover effect */
.products-section .checkbox-label input:hover {
  border-color: #5F5DA9;
  /* Purple border on hover */
}

/* Focus state for accessibility */
.products-section .checkbox-label input:focus {
  box-shadow: 0 0 0 2px rgba(95, 93, 169, 0.3);
  /* Purple focus ring */
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .products-section .checkbox-label {
    font-size: 12px;
  }

  .products-section .checkbox-label input {
    width: 14px;
    height: 14px;
  }

  .products-section .checkbox-label input:checked::after {
    font-size: 10px;
  }
}

.products-section .footer {
  margin-top: 0px;
  padding-top: 100px;
}



/* Product Detail Section */

.product-detail-section .product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}


.product-detail-section .product-title {
  font-size: 32px !important;
  color: #000;
  margin-bottom: 0.5rem;
}

.product-detail-section .cat-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  text-transform: capitalize;

}

.product-detail-section .product-price {
  font-size: 32px;
  color: #5F5DA9;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-detail-section .product-description {
  font-size: 18px;
  color: #51505D;
  line-height: 1.6;
}

.product-detail-section .color-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}


.product-detail-section .color-container h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}




.product-detail-section .size-options {
  margin: 26px 0;
  gap: 4px;
}


.product-detail-section .size-options input[type="radio"] {
  margin-right: 0.3rem;
  accent-color: #4C4A87;
}


/* Related Products Section */
.related-products-section {
  padding: 100px 0;
}

.related-products-section h2 {
  font-weight: 400;
  font-size: 42px !important;
  line-height: 72.8px;
  text-transform: capitalize;
  color: #000;

}

.related-products-section .swiper-container {
  padding: 0 2rem;
}

.related-products-section .swiper-slide {
  padding: 1rem;
  max-width: 318px;

}


/* Swiper Navigation  */
.related-products-section .swiper-button-next,
.related-products-section .swiper-button-prev {
  background-color: transparent;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  color: #000 !important;
  transition: all 0.3s ease;
  margin: auto;
  background-color: #f7f6ffc3;
}

/* Arrow Styles */
.related-products-section .swiper-button-next::after,
.related-products-section .swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: 600;
  color: #000;
}

.related-products-section .swiper-button-prev {
  top: 38% !important;
  left: 0 !important;
}

.related-products-section .swiper-button-next {
  top: 38% !important;
  right: 0 !important;
}

/* Arrow Content */
.related-products-section .swiper-button-next::after {
  content: '→' !important;
}

.related-products-section .swiper-button-prev::after {
  content: '←' !important;
}

/* Hover State - Button and Arrow */
.related-products-section .swiper-button-next:hover,
.related-products-section .swiper-button-prev:hover {
  background-color: #958FC5;
  border-color: #958FC5;
  color: #fff !important;
}

.related-products-section .swiper-button-next:hover::after,
.related-products-section .swiper-button-prev:hover::after {
  color: #fff;
}



.single-product-image {
  min-width: 541px;
  max-height: 516px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}


.product-slider-image {
  max-width: 124px;
  max-height: 124px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.btns-group .add-to-cart,
.btns-group .buy-now {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: none;
}

/* Add to Cart Hover */
.btns-group .add-to-cart:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* light stroke */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* subtle shadow */
  background-color: #958FC5 !important;
}

/* Buy Now Default */
.btns-group .buy-now {
  background-color: #4C4A87 !important;
  color: #fff !important;
}

/* Buy Now Hover */
.btns-group .buy-now:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* light white-ish stroke */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* subtle shadow */
}


/* Checkbox Container */
.checkbox-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}



/* Style the Label as a Circular Button */
.det-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  background-color: #EDE9FE;
  border: 2px solid transparent;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4C4A87;
  text-transform: capitalize;
  cursor: pointer;
  transition: border 0.3s ease, background-color 0.3s ease;
}

/* Hover State */
.det-checkbox-label:hover {
  border: 1px solid #8B5CF6;
}

/* Checked State */
.det-checkbox-label input[type="radio"]:checked+.det-checkbox-label {
  border: 2px solid #8B5CF6;
  background-color: #EDE9FE;
  accent-color: #8B5CF6;
}

/* Remove margin-end (me-3) since we're using gap */
.det-checkbox-label.me-3 {
  margin-right: 0;
}

.swiper-wrapper {
  justify-content: unset !important;
  gap: 0px !important;
}

.swiper-container {
  padding: 0 !important;
}


ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    flex-direction: row;
    gap: 28px;
}

.our-categories .swiper .swiper-slide {
        padding: 0.5rem;
        max-width: 391px;
        margin: 0 !important;
    }

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .single-product-image {
    min-width: 480px;
  }
}

@media (max-width: 768px) {
  .product-detail {
    padding: 1.5rem;
  }

  .related-products-slider {
    padding-top: 50px !important;
  }

  .swiper-button-next {
    top: 24px !important;
    right: 8px !important;
  }

  .swiper-button-prev {
    top: 24px !important;
    left: auto !important;
    right: 70px !important;
  }


  .product-image {
    max-height: 300px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .swiper-slide {
    padding: 0.5rem;
    max-width: 391px;
    margin:0 !important;
  }

  .single-product-image {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    min-width: unset;
  }

  .product-slider-image {
    max-width: 64px;
    height: auto;
    border-radius: 15px;
  }

  .checkbox-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .product-detail-section .product-title {
    font-size: 20px !important;

  }

  .product-detail-section .product-price {
    font-size: 22px;
  }

  .related-products-section h2 {
    line-height: 14px;
    font-size: 24px !important;
  }

}

@media (max-width: 576px) {
  .product-detail-container {
    padding: 0 1rem;
  }

  .product-title {
    font-size: 1.3rem;
  }


  .checkbox-container {
    flex-wrap: wrap;
    gap: 6px;
  }

  .swiper-container {
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .filter-content {
    display: none;
  }

  .filter-content.show {
    display: block;
  }
}

/* --- who we are ////////////////// */
/* Mission and Vision Section */
.mission-vision-section {
  background-color: #F7F6FF;
  padding: 50px 0;
}

.mission-vision-section .mission-vision-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.mission-vision-section .mission-vision-container .mission-vision-card {
  background: radial-gradient(50% 50% at 50% 50%, rgba(217, 215, 237, 0) 0%, #D9D7ED 100%);
  border-radius: 20px;
  padding: 40px;
  min-height: 300px;
  flex: 1;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 465px;
  width: 555px;
}

.mission-vision-section .mission-vision-container .mission-vision-card .card-heading {
  font-size: 32px !important;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.mission-vision-section .mission-vision-container .mission-vision-card .card-text {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #51505D;
  line-height: 1.6;
  padding: 0 44px;
}

.mission-vision-section .mission-vision-container .mission-vision-card .flower-decoration {
  position: absolute;
  max-width: 316px;
  height: auto;
}

.mission-vision-section .mission-vision-container .mission-vision-card .flower-bottom-left {
  bottom: 0;
  left: 0;
}

.mission-vision-section .mission-vision-container .mission-vision-card .flower-top-right {
  top: 0;
  right: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #F7F6FF;
  padding: 50px 0 8px 0;
}

.why-choose-us-section .why-choose-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content,
.why-choose-us-section .why-choose-us-container .story-values-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.why-choose-us-section .why-choose-us-container .story-values-content {
  margin-top: -96px;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content,
.why-choose-us-section .why-choose-us-container .story-values-content .text-content {
  flex: 1;
  max-width: 545px;
}

.why-choose-us-section .why-choose-us-container .story-values-content .text-content:last-child {
  margin-left: 50px;
}

.who-we-are .who-container .flower-img {
  top: 350px;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content .image-content,
.why-choose-us-section .why-choose-us-container .story-values-content .image-content {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content .image-content .section-image,
.why-choose-us-section .why-choose-us-container .story-values-content .image-content .section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-heading,
.why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-heading {
  font-size: clamp(52px, 4vw, 48px) !important;
  color: #000;
  margin-bottom: 20px;
}

.why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-subheading {
  font-size: clamp(52px, 4vw, 48px) !important;
  color: #000;
  margin: 24px 0;
}

.why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-text,
.why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-text {
  font-size: 18px;
  font-weight: 400;
  color: #51505D;
  line-height: 1.6;
  margin-bottom: 20px;
}

.who-we-are .who-container .image-container {
  margin-top: 30px;
}

.who-we-are .left-black-cir {
  position: absolute;
  top: 430px;
  left: -100px;
  width: 158px;
  height: 158px;
  background: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: -2;
  animation: glow 2s infinite ease-in-out;
  pointer-events: none;
}

.who-we-are .left-purple-cir {
  position: absolute;
  top: 380px;
  left: -50px;
  width: 158px;
  height: 158px;
  background-color: #958FC5;
  border-radius: 50%;
  z-index: -1;
  animation: flicker 1.5s infinite ease-in-out;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mission-vision-section .mission-vision-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card {
    padding: 30px;
    min-height: 250px;
    min-width: 100%;
    max-width: 500px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .card-heading {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .card-text {
    font-size: 14px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .flower-decoration {
    width: 120px;
  }

  .why-choose-us-section .why-choose-us-container .story-values-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .why-choose-us-section .why-choose-us-container .story-values-content .text-content:last-child {
    margin-left: 0;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content,
  .why-choose-us-section .why-choose-us-container .story-values-content .text-content,
  .why-choose-us-section .why-choose-us-container .why-choose-us-content .image-content,
  .why-choose-us-section .why-choose-us-container .story-values-content .image-content {
    min-width: 100%;
    max-width: 500px;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-heading,
  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-heading {
    font-size: clamp(24px, 3vw, 36px) !important;
  }

  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-subheading {
    font-size: clamp(20px, 2.5vw, 28px) !important;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-text,
  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-text {
    font-size: 14px;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .image-content .section-image,
  .why-choose-us-section .why-choose-us-container .story-values-content .image-content .section-image {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .mission-vision-section .mission-vision-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card {
    padding: 20px;
    min-height: 200px;
    max-width: 200px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .card-heading {
    font-size: clamp(18px, 2vw, 24px);
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .card-text {
    font-size: 12px;
  }

  .mission-vision-section .mission-vision-container .mission-vision-card .flower-decoration {
    width: 100px;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content,
  .why-choose-us-section .why-choose-us-container .story-values-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .who-we-are .who-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .why-choose-us-section .why-choose-us-container .story-values-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: unset;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-heading,
  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-heading {
    font-size: clamp(22px, 2.5vw, 28px) !important;
  }

  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-subheading {
    font-size: clamp(20px, 2vw, 24px) !important;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .text-content .section-text,
  .why-choose-us-section .why-choose-us-container .story-values-content .text-content .section-text {
    font-size: 12px;
  }

  .why-choose-us-section .why-choose-us-container .why-choose-us-content .image-content .section-image,
  .why-choose-us-section .why-choose-us-container .story-values-content .image-content .section-image {
    max-width: 300px;
  }
}


/* --- profile user pages //////////////////////////// */
.profile-section h2.heading-title.bold-text {
  margin-bottom: 32px;
  font-size: 32px;
  color: #000;
  text-transform: capitalize;
}

.profile-wrapper {
  display: flex;
  gap: 30px;
}

/* Sidebar */
.sidebar {
  width: 306px;
  border-radius: 20px;
  background-color: #E8E6F6;
  padding: 60px 0;
  flex-shrink: 0;
  max-height: 100dvh;
}

.sidebar img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.sidebar h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sidebar nav a {
  display: block;
  color: #4C4A87;
  padding: 14px 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: capitalize;
}

.sidebar nav a.active {
  background-color: #958FC5;
  border-radius: 50px;
  color: #F7F6FF;
}

.person-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 20px;
  border-bottom: 1px solid #958FC517;
  width: 80%;
  gap: 14px;
  padding-bottom: 12px;

}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    border-radius: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-height: 60px;
    z-index: 1000;
    flex-wrap: wrap;

  }

  .person-details {
    display: none;
    /* Hide profile picture and name on mobile */
  }

  .sidebar nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }

  .sidebar nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    font-size: 12px;
    line-height: 14px;
  }

  .sidebar nav a i {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .sidebar nav a.active {
    border-radius: 10px;
    padding: 5px 10px;
  }
}

/* Content */
.content {
  flex: 1;
  padding: 60px 50px;
  background-color: #E8E6F6;
  border-radius: 20px;
}

.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.wishlist-header h2,
.personal-info-section h2,
.password-section h2 {
  font-size: 32px !important;
  color: #000;
  margin-bottom: 12px;
  text-transform: capitalize;
}


.personal-info-section,
.profile-photo-section {
  padding-bottom: 22px;
  margin-bottom: 40px;
  border-bottom: 1px solid #958FC517;
}



.clear-btn {
  padding: 6px 14px;
  width: 137px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clear-btn:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.03);
}

/* Columns Grid */
.columns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.columns-grid .product-card {
  flex: 1 1 calc(25% - 20px);
  max-width: 260px;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
}

.product-title {
  font-size: 16px;
  color: #000;
}

.product-price {
  font-size: 10px;
  color: #5F5DA9;
}

.product-price .price {
  font-size: 18px;
}

.product-description {
  font-size: 14px;
  color: #51505D;
  margin-bottom: 22px;
}

.color-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.color-container h6 {
  font-size: 14px;
  font-weight: 400;
  color: #A4A3AE;
}

.color-circle.small {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.order-meta .price-meta,
.order-meta .date-meta {
  display: flex;
  flex-direction: column;
}

.price-meta .Price-value {
  color: #4C4A87;
  font-weight: 600;
  font-size: 18px;
  line-height: 22.4px;
}

.date-meta .date-value {
  color: #51505D;
  font-weight: 600;
  font-size: 14px;
  line-height: 22.4px;

}


/* Buttons */
.add-to-cart {
  background-color: #958FC5 !important;
  color: #fff !important;
  border: none;
  padding: 8px 15px;
  width: 100%;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #5F5DA9 !important;
}

.favorite-btn {
  border: none;
  font-size: 16px;
  color: #fff;
  background-color: #4C4A87;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.favorite-btn:hover {
  color: #5F5DA9;
}



.empty-wishlist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
  border-radius: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.empty-wishlist dotlottie-player {
  margin-bottom: 20px;
  transform: rotate(7.5deg);
}

.not-found-text {
  color: #51505D;
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.5;
  white-space: nowrap;
}

.not-found-text.bold-text {
  font-size: 42px !important;
  color: #000;
  margin-bottom: 15px;
}

.btn-default {
  display: inline-block;
  padding: 10px 25px;
  margin-top: 20px;
  background-color: #958FC5;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-default:hover {
  background-color: #5F5DA9;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}


.profile-photo-upload {
  border: 1px dashed #4C4A87;
  border-radius: 10px;
  width: 100%;
  height: 300px;
  background-color: #DDDBEE;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: #4a4a4a;
  font-size: 14px;
  position: relative;
  transition: background-color 0.3s ease;
}

.profile-photo-upload.dragover {
  background-color: #d0c0e0;
}

.icon-container {
  width: 74px;
  height: 74px;
  background: #D3D1E7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-photo-upload i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #4C4A87;
  width: 54px;
  height: 54px;
  background: #CAC8E0;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.profile-photo-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.profile-photo-upload img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.btn-cancel,
.btn-save {
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  font-size: 16px !important;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Cancel Button Hover */
.btn-cancel {
  color: #51505D;
}

.btn-cancel:hover {
  color: #333;
}

/* Save Button Hover */
.btn-save {
  color: #4C4A87;
}

.btn-save:hover {
  color: #3a386b;
}


.form-control:focus {
  background-color: #F7F6FF !important;
}

/* orders */
.order-status-select {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #000;
  background-color: transparent;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  min-width: 47px;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid #958FC517;
  justify-content: space-between;
}

.order-item img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}

.order-details {
  flex: 1;
}

.order-details h4 {
  font-size: 20px !important;
  color: #000;
  margin-bottom: 5px;
}

.order-details h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000;
  margin: 5px 0;
}

.order-details p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22.4px;
  text-transform: capitalize;
  color: #51505D;

}

.order-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #BAB8C5;
  min-width: 330px;
  justify-content: space-evenly;

}

.order-status {
  padding: 5px 15px;
  background-color: #C5EEC4;
  color: #4C4A87;
  border-radius: 15px;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
}


@media (max-width: 768px) {
  .empty-wishlist {
    padding: 20px 10px;
  }

  .not-found-text.bold-text {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .not-found-text {
    font-size: 14px;
    white-space: wrap;
  }

  .btn-default {
    padding: 8px 20px;
    font-size: 12px;
  }

  .wishlist-header h2,
  .personal-info-section h2,
  .password-section h2 {
    font-size: 22px !important;

  }

  .btn-cancel,
  .btn-save {
    font-size: 13px !important;
  }

}

@media (max-width: 576px) {
  .empty-wishlist dotlottie-player {
    width: 200px;
    height: 200px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .columns-grid .product-card {
    flex: 1 1 calc(33.33% - 20px);
  }

  .content {
    padding: 30px 15px;
  }

  .order-item {
    padding: 10px 0;
    gap: 8px;
  }
}

@media (max-width: 992px) {
  .columns-grid .product-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .profile-wrapper {
    flex-direction: column;
  }



  .sidebar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .sidebar nav a {
    padding: 10px 15px;
  }

  .content {
    padding: 30px 15px;
  }

  .columns-grid .product-card {
    max-width: 100%;
  }

  .wishlist-header h2 {
    font-size: 20px !important;
  }
}

@media (max-width: 576px) {
  .sidebar nav a {
    font-size: 12px;
    padding: 8px 10px;
  }

  .product-image {
    height: 200px;
  }
}

@media (max-width: 1200px) {


  .order-item img {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .order-details {
    margin-bottom: 10px;
  }

  .order-meta {
    flex-direction: column;
    gap: 10px;
    min-width: auto;
    align-items: flex-start;
  }

  .order-status {
    margin-top: 10px;
  }

  .order-details h5 {
    font-size: 16px;
    line-height: 10px;
    margin: 0;
  }
}

@media (max-width: 992px) {
  .order-item img {
    width: 90px;
    height: 90px;
  }

  .order-details h4 {
    font-size: 18px;
  }

  .order-details h5 {
    font-size: 16px;
    line-height: 10px;
    margin: 0;
  }

  .order-details p {
    font-size: 13px;
  }

  .order-meta {
    gap: 8px;
  }

  .price-meta .Price-value {
    font-size: 16px;
  }

  .date-meta .date-value {
    font-size: 13px;
  }
}

@media (max-width: 768px) {

  .order-item {
    padding: 10px;
    gap: 34px;
  }

  .order-item img {
    width: 80px;
    height: 80px;
  }

  .order-details h4 {
    font-size: 16px;
  }

  .order-details h5 {
    font-size: 14px;
  }

  .order-details p {
    font-size: 12px;
    line-height: 18px;
  }

  .order-meta {
    gap: 6px;
  }

  .price-meta .Price-value {
    font-size: 14px;
  }

  .date-meta .date-value {
    font-size: 12px;
  }

  .order-status {
    padding: 4px 12px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .order-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 10px;
    gap: 0;
  }


  .order-item {
    padding: 8px;
  }

  .order-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .order-details h4 {
    font-size: 14px;
  }

  .order-details h5 {
    font-size: 12px;
  }

  .order-details p {
    font-size: 11px;
    line-height: 16px;
  }

  .order-meta {
    gap: 5px;
  }

  .price-meta .Price-value {
    font-size: 13px;
  }

  .date-meta .date-value {
    font-size: 11px;
  }

  .order-status {
    padding: 3px 10px;
    font-size: 10px;
  }
}