* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Match footer color below the fold so no white strip at bottom */
html,
body {
  background-color: #c9b09a;
}

.mob-nav {
  display: none;
}

a {
  text-decoration: none;
  color: #000;
}

ul li {
  list-style-type: none;
}

.big-container {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #989898;
}

.box-1 {
  background: #17587c;
  width: 100%;
  padding: 14px 0px 7px 0px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

.move-text-animate {
  animation: 15s linear infinite;
  width: 100%;
}

marquee.move-text-animate span {
  margin-right: 20px;
  word-spacing: 2px;
}

.box-2 {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
}

.heading-flex {
  display: flex;
  gap: 30px;
  text-align: center;
}

.flex-1 {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #979797;
}

.flex-1:hover {
  color: #000;
}

.container {
  width: 1200px;
  margin: 0 auto;
}


.icon {
  display: flex;
  gap: 30px;
  font-size: 20px;
}

.flex-1 img {
  width: 20px;
}

.flex-1 h4 {
  font-weight: 500;
}

.header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 10px 0; */
}

.header nav ul {
  display: flex;
  gap: 20px;
}

.search-box {
  background: #f6f6f6;
  padding: 15px 85px 15px 42px;
  border-radius: 6px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  color: #979797;
}

.logo img {
  width: 70px;
}

nav ul li a {
  color: #000;
  font-size: 17px;
  font-weight: 500;
}

.pos {
  position: relative;
}

.pos-1 {
  position: absolute;
  top: 33%;
  left: 4%;
  color: #979797;
}

.heelo::after {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background: #17587c;
  transition: 0.3s;
  border-radius: 50px;
  margin-top: 3px;
}

nav ul li a:hover {
  color: #17587c !important;
  transition: 0.2s;
}

.heelo:hover::after {
  width: 100%;
}

.main-skincare-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.skincare-pro {
  background: #edf1f0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.skincare-text {
  text-align: center;
  padding-top: 80px;
  width: 90%;
  margin: 0 auto;
}

.skincare-pro-img {
  overflow: hidden;
}

.skincare-pro-img img {
  width: 100%;
  transition: 0.3s all ease-in-out;
}

.skincare-pro-img img:hover {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
}

.skincare-text h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  padding-top: 26px;
  width: 90%;
}

.skincare-text h3 {
  font-size: 23px;
  text-align: center;
  color: #17587c;
  font-weight: 600;
}

.skincare-text p {
  color: #7e7e7e;
  text-align: center;
  font-size: 19px;
  padding-top: 30px;
  line-height: 23px;
}

.btm {
  margin-top: 35px;
}

.btm a {
  text-decoration: none;
  background: #000000d1;
  padding: 10px 15px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}

.btm:hover a {
  background: #17587c;
}

.glow-line:hover {
  transition:
    mask-position 2.5s ease,
    -webkit-mask-position 2.5s ease;
  -webkit-mask-position: 120%;
  mask-position: 120%;
  opacity: 1;
}

.glow-line {
  -webkit-mask-image: linear-gradient(
    45deg,
    #000 40%,
    rgba(0, 0, 0, 0.2) 50%,
    #000 75%
  );
  mask-image: linear-gradient(
    45deg,
    #000 25%,
    rgba(0, 0, 0, 0.2) 50%,
    #000 75%
  );
  -webkit-mask-size: 480%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}

.case-studies-img {
  display: flex;
  gap: 10px;
}

.common-heading {
  text-align: center;
  margin-top: 50px;
}

.common-heading h2 {
  font-size: 37px;
  font-weight: 600;
}

.common-heading h4 {
  color: #7e7e7eba;
  font-size: 19px;
  font-weight: 400;
  margin-top: 15px;
}

.fadein {
  opacity: 0;
  transition: all 1.5s;
  transform: translate(0, 120px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.texts {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.product {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 47px;
}

.product-box img {
  width: 100%;
  transition: 0.3s all ease-in-out;
}

.product-box {
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

.product-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 16px;
}

.product-box h3 sup {
  font-size: 14px;
  padding-left: 5px;
}

.product-box:hover img {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
}

.product-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-banner-box img {
  width: 100%;
  height: 300px;
  transition: 0.3s all ease-in-out;
}

.product-banner-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.product-banner-text h2 {
  font-size: 34px;
  text-align: center;
  color: white;
  font-weight: 500;
  padding-bottom: 20px;
}

.product-banner-text {
  text-align: center;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-banner-text a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

.product-banner-box:hover img {
  transform: scale(1.1);
  transition: 0.3s all ease-in-out;
}

.product-banner-box {
  -webkit-mask-image: linear-gradient(
    45deg,
    #000 40%,
    rgba(0, 0, 0, 0.2) 50%,
    #000 75%
  );
  mask-image: linear-gradient(
    45deg,
    #000 25%,
    rgba(0, 0, 0, 0.2) 50%,
    #000 75%
  );
  -webkit-mask-size: 480%;
  mask-size: 800%;
  -webkit-mask-position: 0;
  mask-position: 0;
}

.product-banner-box:hover {
  transition:
    mask-position 2.5s ease,
    -webkit-mask-position 2.5s ease;
  -webkit-mask-position: 120%;
  mask-position: 120%;
  opacity: 1;
}

.tab {
  overflow: hidden;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 45px;
  transition: 0.3s;
  font-size: 28px;
  color: #989898;
}

/* Change background color of buttons on hover */
.tab button:hover {
  color: #000;
}

/* Create an active/current tablink class */
.tab button.active {
  color: #000;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
}

.sale-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.sle-item img {
  width: 100%;
}

.sle-item {
  text-align: center;
}

.ratings-flex {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sale-price h2 del {
  font-size: 12px;
  color: #989898;
  font-weight: 500;
}

.sale-price h2 {
  font-weight: 600;
  font-size: 17px;
}

.sale-price h3 {
  font-size: 17px;
  padding: 6px;
}

.ratings i {
  color: #17587c;
  font-size: 13px;
}

.ratings-flex h5 {
  font-size: 13px;
  font-weight: 500;
  color: #989898;
}

.sale-price {
  padding: 20px;
}

.sle-item {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.sle-item:hover {
  box-shadow: -3px 13px 19px 10px #e9e9e9;
  transition: 0.4s;
}

.social-media- {
  position: absolute;
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}

.social-media- a {
  color: black;
}

.sle-item:hover .social-media- {
  opacity: 0.9;
  bottom: 30%;
  transition: 0.4s;
}

.first {
  background: white;
  padding: 14px;
  border-radius: 50%;
  transition: 0.4s;
  font-size: 17px;
}

.second {
  background: white;
  padding: 14px;
  border-radius: 50%;
  transition: 0.4s;
  font-size: 17px;
}

.third {
  background: white;
  padding: 14px;
  border-radius: 50%;
  transition: 0.4s;
  font-size: 17px;
}

.fourth {
  background: white;
  padding: 14px;
  border-radius: 50%;
  transition: 0.4s;
  font-size: 17px;
}

.first:hover {
  background: black;
  color: white;
  transition: 0.4s;
}

.second:hover {
  background: black;
  color: white;
  transition: 0.4s;
}

.third:hover {
  background: black;
  color: white;
  transition: 0.4s;
}

.fourth:hover {
  background: black;
  color: white;
  transition: 0.5s;
}

.off-btm {
  background: #17587c;
  color: #fff;
  width: fit-content;
  padding: 6px;
  border-radius: 5px;
  position: absolute;
  top: 15px;
  left: 15px;
  transition: 0.5s;
}

.pink {
  background: #839115;
}

.btns {
  text-align: center;
  margin-top: 70px;
}

.btns a {
  background: white;
  color: black;
  border: 1px solid #a4a4a4;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.7s;
}

.btns a:hover {
  background: black;
  color: white;
  border: 1px solid black;
  transition: 0.7s;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.off-grid-flex {
  display: flex;
  gap: 10px;
}

.off-grid-flex h5 {
  font-size: 19px;
}

.off-grid-btm {
  background: #17587c;
  padding: 5px 10px;
  border-radius: 9px;
  color: #fff;
}

.offer-grid-time {
  padding-left: 130px;
}

.offer-grid-time p {
  font-size: 18px;
  width: 83%;
  color: #989898;
}

.offer-grid-time h2 {
  font-size: 50px;
  font-weight: 600;
  padding: 20px 0;
}

.offer-grid-img img {
  width: 100%;
}

/* Timer */

.time-container ul li {
  display: inline-block;
  font-size: 16px;
  list-style-type: none;
  padding: 5px 13px;
  border-radius: 10px;
  text-transform: uppercase;
  width: fit-content;
  text-align: center;
  margin: 31px 0;
}

.time-container ul li span {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

/* Timer-end */

.offer-btm {
  background: #000;
  width: fit-content;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  border-radius: 10px;
  transition: 0.5s;
}

.offer-btm a {
  color: white;
}

.offer-btm:hover {
  background: #17587c;
  transition: 0.5s;
}

.video-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.vedio {
  position: relative;
}

.vedio img {
  width: 100%;
}

.bg-color {
  background-color: #edf1f0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-text h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.bg-color h2 {
  font-size: 50px;
  width: 58%;
  line-height: 54px;
}

.video-text P {
  font-size: 18px;
  width: 80%;
  color: #989898;
  margin: 19px 0;
}

.video-text {
  margin-left: 63px;
}

.youtube-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 75px;
  background: #fff;
  padding: 15px 38px;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  text-align: center;
  transition: 0.5s;
}

.youtube-link:hover {
  background: #000;
  transition: 0.5s;
}

.youtube-link:hover i {
  color: #fff;
  transition: 0.5s;
}

.why-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  gap: 40px;
}

.why-section-box p {
  font-size: 16px;
  color: #989898;
  line-height: 25px;
}

.why-section-box h2 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-section-box img {
  width: 95px;
  margin-bottom: 20px;
}

.why-section-box {
  text-align: center;
  background: rgb(249 249 249);
  padding: 28px;
}

.why-section-box:hover {
  box-shadow: -3px 13px 19px 10px #e9e9e9;
}

.why-section-box:hover h2 {
  color: #17587c;
}

.why-section-box:hover img {
  transform: rotateY(360deg);
  /* -webkit-transition: rotateY(360deg);
    -moz-transition: rotateY(360deg);
    -o-transition: rotateY(360deg); */
}

.why-section-box img {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.footer-div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

footer {
  background-color: #c9b09a;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer-box h2 {
  width: 66%;
  line-height: 44px;
  font-size: 36px;
  color: #17587c;
}

.footer-box p {
  color: #989898;
  margin: 17px 0 42px 0;
  font-size: 16px;
  font-weight: 500;
}

.footer-box h3 {
  font-size: 22px;
  margin-bottom: 13px;
}

.footer-box ul li a {
  color: black;
  line-height: 35px;
  font-size: 15px;
}

.email-box {
  background-color: #f6f6f6;
  border: none;
  padding: 15px 114px 15px 11px;
  outline: none;
  border-radius: 7px;
}

.arrow {
  position: absolute;
  left: 245px;
  top: 33%;
  color: #989898;
}

.copywrite {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  border-top: 1px solid #979797;
  padding-top: 50px;
}

.copywrite img {
  width: 180px;
}

.c-img {
  height: 22px;
  width: 230px !important;
}

.socialicon {
  display: flex;
  gap: 10px;
}

.copywrite-box {
  display: flex;
  gap: 20px;
}

/* about us css start */
.h-box-1 {
  text-align: center;
  background: #17587c;
  padding: 10px;
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.about-us-bg {
  position: relative;
}

.about-us-bg img {
  width: 100%;
}

.about-text {
  position: absolute;
  top: 50%;
  left: 10%;
}

.about-text h5 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 50px;
}

.aboutus-common-heading {
  text-align: center;
  align-items: center;
}

.aboutus-common-heading h2 {
  font-size: 28px;
  width: 25%;
  margin: 0 auto;
  line-height: 38px;
  margin-bottom: 15px;
}

.aboutus-common-heading p {
  font-size: 16px;
  width: 37%;
  margin: 0 auto;
  color: #989898;
  line-height: 22px;
}

.aboutus-grid-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.aboutus-grid-text p {
  font-size: 16px;
  color: #989898;
  margin-top: 20px;
  line-height: 28px;
  width: 70%;
}

.aboutus-grid-text h2 {
  font-size: 34px;
  width: 60%;
  line-height: 42px;
}

.aboutus-grid-1-img img {
  width: 100%;
}

.aboutus-grid-text {
  padding-left: 51px;
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 65px;
  justify-content: center;
}

.colors {
  opacity: 0.4;
}

.colors:hover {
  opacity: 0.9;
}

.client-logo img {
  width: 100%;
}

.client-logo img {
  width: 150px;
}

.aboutus-common-heading h3 {
  width: 44%;
  margin: 0 auto;
  font-size: 25px;
  line-height: 42px;
  font-weight: 600;
}

.client-logo-box {
  background-color: #dcdbd961;
  padding: 10px;
  margin-bottom: 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 100px;
}

.team-grid img {
  width: 85%;
}

.team-info h4 {
  font-size: 17px;
  color: #989898;
  font-weight: 500;
  margin: 7px;
}

.team-info h2 {
  font-size: 23px;
  font-weight: 600;
  margin: 7px;
}

.iconsing-1 {
  display: flex;
  gap: 10px;
}

.iconsing-1 {
  display: flex;
  gap: 45px;
  font-size: 25px;
  justify-content: center;
  align-items: center;
  width: 85%;
}

.team-info {
  position: relative;
}

.iconsing-1 {
  display: flex;
  gap: 45px;
  font-size: 25px;
  justify-content: center;
  align-items: center;
}

.white {
  background-color: #fff;
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  opacity: 0;
  transition: 0.6s;
}

.team-info:hover .white {
  bottom: 73px;
  opacity: 0.9;
  transition: 0.6s;
}

.iconsing-1 i:hover {
  color: #17587c;
}

/*about-us css end */

/*features css start */
.home-block h3 {
  font-size: 17px;
  font-weight: 500;
}

.home-block {
  text-align: center;
  background: #f5f5f5;
  padding: 7px;
}

.features-common-heading p {
  font-size: 17px;
  font-weight: 400;
  color: #989898;
  width: 25%;
  margin: 0 auto;
  line-height: 30px;
}

.features-common-heading h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-common-heading {
  text-align: center;
}

.features-grid-1 {
  display: grid;
  grid-template-columns: 40% 58%;
  gap: 2%;
  align-items: center;
}

.f-g-text p {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0;
  width: 69%;
  line-height: 28px;
}

.f-g-text h2 {
  font-size: 42px;
  width: 43%;
  line-height: 57px;
}

.f-bg {
  background: #fff0fa;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-g-text {
  margin-left: 61px;
}

.f-g-image img {
  width: 100%;
}

.features-grid-2 {
  display: grid;
  grid-template-columns: 58% 40%;
  gap: 2%;
  align-items: center;
}

.f-g-2-text h2 {
  font-size: 42px;
  width: 82%;
  line-height: 57px;
}

.f-g-2-text p {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0;
  width: 69%;
  line-height: 28px;
}

.f-g-2-text {
  margin-left: 61px;
}

.banner-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.banner-f1 img {
  width: 100%;
}

.banner-f1-text h2 {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 13px;
}

.banner-f1 {
  position: relative;
}

.banner-f1-text {
  position: absolute;
  left: 18%;
  bottom: 65px;
  text-align: center;
}

.banner-f1-text a {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.banner-f2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.banner-f2-img img {
  width: 100%;
  height: 400px;
}

.banner-f3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.banner-f3-img img {
  width: 100%;
}

.banner-f3-img {
  position: relative;
}

.explore {
  position: absolute;
  top: 50px;
  left: 40px;
}

.explore h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 10px 0 45px 0;
}

.explore h2 {
  font-size: 35px;
  font-weight: 500;
}

.f-btm a {
  font-size: 20px;
  font-weight: 500;
  background: white;
  padding: 10px 20px 12px;
  text-align: center;
  border-radius: 10px;
  transition: 0.5s;
}

.f-btm:hover a {
  background: #000;
  color: #fff;
  transition: 0.5s;
}

.f-shop h4 {
  font-size: 17px;
  font-weight: 400;
  margin: 10px 0 30px 0;
}

.f-shop h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 20px;
}

.banner-f4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.banner-f4-box img {
  width: 100%;
}

.banner-f4-text h2 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

.banner-f4-text a {
  font-size: 16px;
  font-weight: 500;
}

.banner-f4-box {
  position: relative;
}

.banner-f4-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

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

.banner-f5-box img {
  width: 100%;
}

.banner-f5-box {
  position: relative;
}

.f5-text h2 {
  font-size: 35px;
  font-weight: 600;
  width: 86%;
}

.f5-text h4 {
  font-size: 17px;
  font-weight: 500;
  color: #989898;
  margin-bottom: 10px;
}

.f5-text {
  position: absolute;
  top: 37px;
  left: 50px;
}

.f5-text p {
  font-size: 19px;
  font-weight: 500;
  margin-top: 10px;
  width: 70%;
  line-height: 26px;
}

.banner-f6 {
  display: grid;
  grid-template-columns: 28% 28% 40%;
  gap: 2%;
}

.banner-f6-box img {
  width: 100%;
  height: 450px;
  transition: 0.4s;
}

.banner-f6-box:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.banner-f6-box {
  position: relative;
}

.f6-text {
  position: absolute;
  text-align: center;
  bottom: 35px;
  left: 31%;
}

.black-box {
  content: "";
  position: absolute;
  background: black;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.f6-text h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 11px;
}

.f6-text a {
  font-size: 18px;
  color: #fff;
  border-bottom: 2px solid #fff;
}

.banner-f7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.f7-box img {
  width: 100%;
  height: 450px;
}

.f7-box {
  position: relative;
}

.f7-text h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.f7-text h4 {
  font-size: 17px;
  font-weight: 600;
}

.f7-text {
  position: absolute;
  left: 38px;
  top: 24px;
}

.f7-btm {
  position: absolute;
  left: 38px;
  bottom: 25px;
}

.f7-btm a {
  font-size: 16px;
  font-weight: 500;
}

.category-flex {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.category-flex h2 {
  font-size: 30px;
  font-weight: 600;
}

.category-flex a {
  font-size: 17px;
}

/* features css end*/
/* Info css start*/

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

.info-img {
  overflow: hidden;
}

.info-img img {
  width: 100%;
  transition: 0.4s;
}

.info-text p {
  font-size: 16px;
  color: #989898;
  margin-bottom: 20px;
  line-height: 26px;
  font-weight: 500;
}

.info-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.msg-hour {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.hour h5 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.msg h5 {
  color: #17587c;
  font-size: 17px;
}

.hour h2 {
  font-size: 23px;
}

.msg h2 {
  font-size: 23px;
}

.info-img:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.info-grid-l {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact h2 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact p {
  font-size: 17px;
  font-weight: 500;
  color: #989898;
  width: 74%;
  line-height: 25px;
  margin-bottom: 20px;
}

.contact a {
  color: #17587c;
  font-size: 18px;
}

.contact h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact h5 span {
  color: #989898;
}

.font {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.social-icon i {
  font-size: 23px;
}

.social-icon {
  display: flex;
  gap: 20px;
}

main {
  display: none;
}

/* Info css end*/

/*********************************Filter-css-start**************************/
/* .animatedbounceInDown {
    position: relative;
    height: 100%;
    background: #f2f2f259;
    padding-top: 8px;
    width: 90%;
    display: inline;
} */

.animatedbounceInDown {
  position: relative;
  /* margin: 50px;  */
  height: 100%;
  background: #ffffff;
  padding-top: 8px;
  width: 100%;
  display: inline;
  box-shadow: 4px 1px 8px #f2f2f2;
}

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

.animatedbounceInDown ul li a {
  display: block;
  background: #ffffff;
  padding: 26px 60px;
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}

.animatedbounceInDown ul li a:hover {
  background: #f8f8f8;
  color: #515151;
}

.animatedbounceInDown ul li a .fa {
  width: 16px;
  text-align: center;
  margin-right: 5px;
  float: right;
}

.animatedbounceInDown ul ul {
  background-color: #ebebeb;
}

.animatedbounceInDown ul li ul li a {
  background: #f8f8f8;
  border-left: 4px solid transparent;
  padding: 15px 20px;
}

.animatedbounceInDown ul li ul li a:hover {
  background: #ebebeb;
  border-left: 4px solid #3498db;
}

.filter-main-parent-grid {
  display: grid;
  grid-template-columns: 25% 75%;
  margin-bottom: 80px;
}

.filter-grid-1 {
  width: 95%;
}

.filter-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 45px;
}

.filter-flex h3 {
  color: black;
  font-size: 22px;
  font-weight: 500;
}

.filter-flex a {
  color: #b30c00;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.filter-btn-1 {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(179.55deg, #4b8f6b 0.39%, #2c5c43 105.51%);
  padding: 16px 36px;
  margin: 0 auto;
  margin-top: 50px;

  box-shadow: 0 5px 15px rgb(0 0 0 / 9%);
  text-decoration: none;
  border-radius: 43px;
  text-align: center;
  width: 50%;
}

.filter-btn-1 span {
  position: relative;
  z-index: 1;
}

.filter-btn-1:after {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  height: 490%;
  width: 176%;
  background: #17587c;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.filter-btn-1:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.filter-container {
  width: 1320px;
  margin: 0 auto;
}

.mt-2 {
  margin-top: 22px;
  font-size: 36px;
  /* border-bottom: 3px solid black; 
     width: 22%;  */
  text-align: center;
}

.main-grid {
  display: grid;
  grid-template-columns: 22% 75%;
  gap: 3%;
}

.filter-flex h3 img {
  width: 24px;
}

/*********************************Filter-css-start**************************/

.index-slider .slider-container {
  position: relative;
  height: 1000px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 100px;
}

.index-slider .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.index-slider .slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.index-slider .slide::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0000006b;
}

.index-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-slider .slide-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 999;
}

.index-slider .slide-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.index-slider .slide-content p {
  font-size: 1rem;
}

.index-slider .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.index-slider .nav-button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.index-slider .prev {
  left: 20px;
}

.index-slider .next {
  right: 20px;
}

.index-slider .dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.index-slider .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.index-slider .dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.row-4 {
  display: grid;
  grid-template-columns: 18% 40% 18% 21%;
  gap: 12px;
  margin-bottom: 80px;
}

.row-4 img {
  width: 100%;
  display: block;
}

.row-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stacked-jew-column {
  display: grid;
  gap: 12px;
}

img.jew1 {
  height: 370px;
  object-fit: cover;
}

img.jew {
  height: 179px;
  object-fit: cover;
}

.iinner {
  position: relative;
  height: 100%;
}

.explore-2 a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.explore-2 {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 10px);
  border-bottom: 1px solid #fff;
}

.common-sec {
  text-align: center;
  margin-bottom: 50px;
}

.title {
  font-size: 30px;
  font-weight: 500;
}

.title span {
  color: #b32126;
  font-family: "Caramel", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}

.sub {
  margin-top: 6px;
  font-size: 20px;
  color: #555;
}

.category-item {
  display: grid;
  grid-template-columns: 37% 1fr;
  align-items: center;
  gap: 46px;
  margin-bottom: 30px;
  background: #fffbea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-image {
  height: 100%;
  min-height: 290px;
}

.category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

}

.category-content h2 {
  color: #b32126;
  font-family: "Caramel", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}

.category-item-2 {
  display: grid;
  grid-template-columns: 1fr 37%;
  align-items: center;
  gap: 46px;
  margin-bottom: 30px;
  background: #fffbea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-content.text-left {
  /* text-align: right; */
  padding-left: 30px;
}

.product-sec .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: start;
  gap: 40px;
  margin-bottom: 30px;
}

.product-sec .product-card {
  background: white;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-sec .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-sec .product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-sec .product-info {
  padding: 15px;
}

.product-sec .product-name {
  font-size: 17px;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 500;
}

.product-sec .price-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.product-sec .current-price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.product-sec .original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-sec .offer-code {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}

.product-sec .offer-icon {
  color: #ff6b6b;
}

.product-sec .add-to-cart-btn {
  width: 100%;
  padding: 10px;
  background-color: #b32126;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-sec .add-to-cart-btn:hover {
  background-color: #a01829;
}

.product-sec .view-all-section {
  text-align: center;
  margin-top: 40px;
}

.product-sec .view-all-btn {
  padding: 12px 30px;
  background-color: white;
  color: #b32126;
  border: 2px solid #b32126;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-sec .view-all-btn:hover {
  background-color: #b32126;
  color: white;
}

.product-sec {
  margin: 60px 0 80px;
}

.offer-flex {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: end;
}

.product-banner-grid img {
  width: 50px;
  height: 50px;
}

.product-banner-grid {
  display: flex;
  gap: 13px;
  text-align: left;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  width: 92%;
}

.product-banner-grid h3 {
  font-size: 15px !important;
  margin-bottom: 5px;
}

span.original-price {
  color: #aaaaab;
  margin-left: 5px;
}

h2.title.title-2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}

.mt-80 {
  margin-top: 80px;
  color: #525252;
}

/* Handicraft section - full-width cream background, no white strips */
.handicraft-section {
  overflow: hidden;
}
.handicraft-section .common-heading,
.handicraft-section .title {
  color: #525252;
}

.newsletter-section {
  background: #c9b09a;
  padding: 80px 20px;
  text-align: center;
}

/* Footer bleed wrapper - same tan background to bottom of page */
.footer-bleed {
  padding-bottom: 50px;
  box-sizing: border-box;
}

.newsletter-box h2 {
  font-size: 45px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.newsletter-box p {
  font-size: 35px;   /* increased from 50px */
  color: #555;
  margin-bottom: 25px;
}

.newsletter-box .love {
  color: #b01616;
  font-family: "Caramel", cursive;
  font-size: 43px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #fff;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.newsletter-form input {
  width: 260px;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
}

.newsletter-form button {
  background: #b01616;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.socialicon i {
  font-size: 24px;
}

.socialicon {
  margin-top: 30px;
}

img.kuchh-alag {
  width: 68%;
  margin-top: 30px;
}

.about-page {
  background-color: #fdf7e6;
}

.about-image {
  display: flex;
  justify-content: center;
}

.pt-50 {
  padding-top: 50px;
}

.contact-page .image-section {
  position: relative;
  min-height: 400px;
}

.contact-page .image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page .brand-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 300;
}

.contact-page .form-section {
  padding: 50px 40px;
  background: #fdf7e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.contact-page .form-content-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-page .form-header h2 {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-page .form-header p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 30px;
}

.contact-page .form-group {
  margin-bottom: 30px;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 33px;
}

.contact-page label {
  display: block;
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-page .required {
  color: #ef4444;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page input[type="tel"],
.contact-page input[type="password"],
.contact-page select,
.contact-page textarea {
  width: 100%;
  padding: 10px 12px;
  border: navajowhite;
  border-bottom: 1px solid #b01616;
  /* border-radius: 6px; */
  font-size: 14px;
  transition: border-color 0.2s;
  background: none;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: #9ca3af;
}

.contact-page textarea {
  resize: none;
  font-family: inherit;
}

.contact-page .phone-group {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.contact-page .btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-page .btn-submit {
  background-color: #17587c9c;
  color: white;
  margin-bottom: 12px;
}

.contact-page .btn-submit:hover {
  background-color: #17587c;
}

.contact-page .btn-whatsapp {
  background-color: #22c55e;
  color: white;
}

.contact-page .btn-whatsapp:hover {
  background-color: #16a34a;
}

.contact-page .whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-flex {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  min-height: 500px;
}

.pt-30 {
  padding-top: 30px;
}

p.tc {
  line-height: 24px;
  color: #757575;
}

p.tc a {
  color: #b01616;
}

.form-row-5 {
  display: flex;
  gap: 20px;
}

.product-details .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 31px;
  font-size: 16px;
  color: #000000;
  margin-top: 51px;
}

.product-details .breadcrumb a {
  color: #666;
  text-decoration: none;
}

.product-details .product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.product-details .product-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-details .main-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.product-details .main-image img {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
}

.product-details .thumbnail-images {
  display: flex;
  gap: 15px;
}

.product-details .thumbnail {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.product-details .thumbnail:hover {
  border-color: #c41e3a;
}

.product-details .thumbnail img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.product-details .product-details h1 {
  font-size: 24px;
  margin-bottom: 25px;
}

.product-details .product-name {
  color: #333;
}

.sub-name {
  color: #c41e3a;
}

.product-details .product-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.product-details .volume {
  font-weight: 600;
  color: #333;
}

.product-details .price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}

.product-details .discount-badge {
  background-color: #ffe6e6;
  color: #c41e3a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.product-details .current-price {
  font-size: 28px;
  font-weight: 700;
  color: #c41e3a;
}

.product-details .tax-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-details .info-icon {
  width: 14px;
  height: 14px;
  border: 1px solid #666;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.product-details .product-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.product-details .features {
  display: flex;
  gap: 30px;
  margin-bottom: 42px;
}

.product-details .feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-details .feature-icon {
  width: 40px;
  height: 40px;
  background-color: #f5d1d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c41e3a;
  font-size: 20px;
}

.product-details .feature-text {
  font-size: 13px;
}

.product-details .feature-title {
  font-weight: 600;
  color: #333;
}

.product-details .feature-subtitle {
  color: #666;
  margin-top: 5px;
}

.product-details .accordion {
  border-top: 1px solid #e0e0e0;
}

.product-details .accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.product-details .accordion-header {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.product-details .accordion-header:hover {
  color: #c41e3a;
}

/* .product-details  .accordion-icon {
            transition: transform 0.3s;
        } */

.product-details .accordion-icon.active {
  transform: rotate(180deg);
}

.product-details .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 0;
}

.product-details .accordion-content.active {
  max-height: 500px;
  padding: 0 0 18px 0;
}

.product-details .accordion-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Header Main Container */
.royal__header__wrapper {
  --royal-announcement-height: 34px;
  --royal-topbar-height: 76px;
  --royal-header-total-height: calc(
    var(--royal-announcement-height) + var(--royal-topbar-height)
  );
  background: #d0b89c;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.royal__announcement__bar {
  height: var(--royal-announcement-height);
  overflow: hidden;
  white-space: nowrap;
  background: #2a2016;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.royal__announcement__track {
  display: inline-flex;
  align-items: center;
  min-width: 200%;
  height: 100%;
  animation: royalAnnouncementLoop 18s linear infinite;
}


.royal__announcement__track span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #f4e8dc;
  text-transform: uppercase;
  padding-right: 36px;
}

.royal__announcement__track span::after {
  content: none;
  margin-left: 18px;
  opacity: 0.8;
}

@keyframes royalAnnouncementLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Top Bar with Icons */
.royal__top__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

/* Left Menu Icon */
.royal__menu__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
}

.royal__chevron__icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.royal__menu__button.active .royal__chevron__icon {
  transform: rotate(180deg);
}

/* Center Logo */
.royal__logo__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
}

.royal__logo__img {
  height: 50px;
  width: auto;
  cursor: pointer;
}

/* Right Icons Container */
.royal__right__icons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.royal__icon__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: relative;
}

.royal__icon__btn svg {
  width: 24px;
  height: 24px;
  stroke: #2c1f12;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.royal__icon__btn:hover svg {
  stroke: #1f150d;
}

.royal__icon__count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #c1121f;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  padding: 0 4px;
}

/* Navigation Sidebar */
.royal__nav__sidebar {
  position: fixed;
  left: -300px;
  top: var(--royal-header-total-height);
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  /* padding-top: 80px; */
}

.royal__nav__sidebar.active {
  left: 0;
}

.royal__nav__menu {
  list-style: none;
}

.royal__nav__item {
  border-bottom: 1px solid #e2e8f0;
}

.royal__nav__link {
  display: block;
  padding: 18px 40px;
  color: #2d3748;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.royal__nav__link:hover,
.royal__nav__link.active {
  background: #f7fafc;
  color: #2b6cb0;
  padding-left: 50px;
}

.royal__nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #2b6cb0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.royal__nav__link:hover::before,
.royal__nav__link.active::before {
  opacity: 1;
}

/* Custom Orders Dropdown */
.royal__nav__dropdown {
  position: relative;
}

.royal__dropdown__toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-right: 20px !important;
}

.royal__dropdown__arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.royal__dropdown__arrow.open {
  transform: rotate(180deg);
}

.royal__dropdown__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.royal__dropdown__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.royal__dropdown__item:last-child {
  border-bottom: none;
}

.royal__dropdown__link {
  display: flex;
  align-items: center;
  padding: 14px 20px 14px 50px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
  position: relative;
  background: transparent;
}

.royal__dropdown__link::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a86c;
  opacity: 0.5;
  transition: all 0.25s ease;
}

.royal__dropdown__link:hover {
  background: rgba(23, 88, 124, 0.08);
  color: #17587c;
  padding-left: 55px;
}

.royal__dropdown__link:hover::before {
  opacity: 1;
  width: 8px;
  height: 8px;
  background: #17587c;
}

/* Cart Sidebar */
.royal__cart__sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.royal__cart__sidebar.active {
  right: 0;
}

/* Cart Header */
.royal__cart__header {
  background: #d0b89c;
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.royal__cart__title {
  font-size: 18px;
  font-weight: 600;
}

.royal__cart__close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.royal__cart__close:hover {
  transform: scale(1.2);
}

/* Cart Items */
.royal__cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.royal__cart__item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.royal__item__image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.royal__item__details {
  flex: 1;
}

.royal__item__name {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 5px;
  line-height: 1.4;
}

.royal__item__price {
  font-size: 14px;
  color: #b91c1c;
  font-weight: 600;
}

.royal__item__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.royal__qty__btn {
  width: 25px;
  height: 25px;
  border: 1px solid #d1d5db;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.royal__qty__btn:hover {
  background: #f3f4f6;
}

.royal__qty__number {
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.royal__delete__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

.royal__delete__btn svg {
  width: 18px;
  height: 18px;
  stroke: #6b7280;
}

/* Cart Footer */
.royal__cart__footer {
  padding: 20px 25px;
  border-top: 2px solid #e5e7eb;
}

.royal__promo__text {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 15px;
}

.royal__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
}

.royal__subtotal__label {
  font-weight: 600;
  color: #1f2937;
}

.royal__subtotal__amount {
  font-weight: 700;
  color: #1f2937;
}

.royal__checkout__btn {
  width: 100%;
  background: #0c4a6e;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.royal__checkout__btn:hover {
  background: #075985;
}

.royal__checkout__icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.royal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.royal__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Content Spacer */
.royal__content__space {
  height: 90px;
}

/* Hero Section */
.royal__hero__section {
  height: calc(100vh - 90px);
  background: url("https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1600")
    center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.royal__hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.royal__hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
}

.royal__hero__title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.royal__hero__subtitle {
  font-size: 20px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carousel Dots */
.royal__carousel__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.royal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.royal__dot.active {
  background: white;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .royal__header__wrapper {
    --royal-announcement-height: 30px;
    --royal-topbar-height: 66px;
  }

  .royal__announcement__track {
    animation-duration: 16s;
  }

  .royal__announcement__track span {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding-right: 30px;
  }

  .royal__cart__sidebar {
    width: 100%;
    right: -100%;
  }

  .royal__top__bar {
    padding: 15px 20px;
  }

  .royal__logo__img {
    height: 40px;
  }

  .royal__right__icons {
    gap: 15px;
  }

  .royal__hero__title {
    font-size: 32px;
  }

  .royal__hero__subtitle {
    font-size: 16px;
  }
}

.kybtn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 25px;
}

.pt-300 {
  padding-top: 300px;
}

.pt-100 {
  padding-top: 100px;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

.checkout-form-section {
  background: #ffffff;
  /* border-right: 2px solid #6e6e6e52; */
  padding: 40px;
  box-shadow: 1px 13px 18px 3px #0000001c;
  border-radius: 12px;
}

.signin-link-wrapper {
  text-align: right;
  margin-bottom: 10px;
}

.signin-link {
  color: #17587c;
  text-decoration: none;
  font-size: 14px;
}

.text-input,
.phone-input-field,
.select-dropdown {
  width: 100%;
  padding: 10px;
  border: 1px solid #17587c40;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}

.text-input:focus,
.phone-input-field:focus,
.select-dropdown:focus {
  background-color: rgba(255, 255, 255, 0.8);
}

.text-input::placeholder,
.phone-input-field::placeholder {
  color: #999;
}

.name-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.location-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.address-field-wrapper {
  position: relative;
}

.address-field-wrapper .text-input {
  padding-right: 45px;
}

.address-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  cursor: pointer;
}

.phone-field-wrapper {
  position: relative;
}

.phone-field-wrapper .phone-input-field {
  padding-right: 45px;
}

.phone-info-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  cursor: pointer;
  font-size: 18px;
}

.save-info-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.save-info-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-label-text {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.order-summary-section {
  background: #ffffff;
  /* border-right: 2px solid #6e6e6e52; */
  padding: 40px;
  box-shadow: 1px 13px 18px 3px #0000001c;
  border-radius: 12px;
}

.product-display-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.product-image-wrapper {
  position: relative;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.quantity-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #000;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.product-info-wrapper {
  flex: 1;
}

.product-title-text {
  font-size: 15px;
  color: #000;
  margin-bottom: 5px;
}

.product-price-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.discount-code-section {
  margin: 20px 0;
  display: flex;
  gap: 10px;
}

.discount-code-input {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.apply-discount-btn {
  padding: 15px 30px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.apply-discount-btn:hover {
  background-color: #17587c;
  color: #fff;
}

.apply-discount-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Applied Coupon Styles */
.applied-coupon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 15px;
  background-color: #e8f5e9;
  border: 1px dashed #28a745;
  border-radius: 8px;
}

.applied-coupon-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-tag {
  font-weight: 600;
  color: #28a745;
  font-size: 14px;
}

.coupon-tag i {
  margin-right: 5px;
}

.coupon-discount-text {
  font-size: 13px;
  color: #666;
}

.remove-coupon-btn {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  padding: 5px;
  transition: transform 0.2s ease;
}

.remove-coupon-btn:hover {
  transform: scale(1.2);
}

.coupon-error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.discount-row {
  background-color: #f0fff4;
  padding: 8px 10px;
  border-radius: 5px;
  margin: 10px 0;
}

.savings-info {
  margin-top: 5px;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  font-size: 15px;
}

.price-row-label {
  color: #333;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-row-value {
  color: #333;
}

.total-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.total-label-text {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.total-amount-value {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.currency-label {
  font-size: 14px;
  color: #666;
  margin-right: 5px;
}

.tax-included-info {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .name-fields-row,
  .location-fields-row {
    grid-template-columns: 1fr;
  }
}

.checkout-page {
  padding: 50px 40px;
  /* background: #fdf7e6; */
  margin-top: 70px;
}

label.section-heading {
  margin-bottom: 10px;
  display: block;
}

.form-input-wrapper {
  margin-bottom: 20px;
}
.payment-section-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  margin-top: 30px;
}

.payment-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.payment-option-card {
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option-card.selected-payment {
  border-color: #17587c;
  /* background-color: #fff5f8; */
}

.payment-radio-group {
  display: flex;
  align-items: center;
  /* margin-bottom: 15px; */
  justify-content: space-between;
}

.custom-radio-input {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  accent-color: #17587c;
  cursor: pointer;
}

.payment-method-label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
}

.payment-icons-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-icon-badge {
  height: 24px;
  padding: 4px 8px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.redirect-info-box {
  /* background-color: #f9f9f9; */
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

.redirect-text {
  color: #444;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}

.billing-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 20px;
}

.product-item-card {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.product-thumbnail-wrapper {
  position: relative;
  flex-shrink: 0;
}

.product-image-box {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4a055 0%, #8b5a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-quantity-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #1a1a1a;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.product-details-area {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name-text {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.product-price-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.discount-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.discount-code-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}
.discount-code-field:focus {
  border-color: #17587c;
}

.apply-discount-btn {
  padding: 12px 24px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-discount-btn:hover {
  background: #f5f5f5;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
}

.summary-label {
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.summary-value {
  color: #1a1a1a;
  font-weight: 500;
}

.shipping-pending-text {
  color: #999;
  font-size: 14px;
}

.info-tooltip {
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  cursor: help;
}

.total-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
}

.final-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.total-label {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.total-amount-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.currency-code {
  font-size: 14px;
  color: #666;
}

.total-price {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.tax-info-text {
  color: #666;
  font-size: 13px;
  text-align: right;
}

.pay-now-button {
  width: 100%;
  padding: 16px;
  background: #17587c;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.pay-now-button:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3); */
}

.footer-links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.footer-policy-link {
  color: #17587c;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-policy-link:hover {
  color: #17587c;
  text-decoration: underline;
}

@media (max-width: 968px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }
}
.shipping-notice {
  font-size: 16px;
  margin-top: 15px;
}
.payment-radio-group.mb-15 {
  margin-bottom: 15px;
}
.payment-radio-group.mb-15 p {
  font-size: 14px;
}
.redirect-icon img {
  width: 100px;
}
.signin-page.payment-mode {
  border-radius: 8px;
}

.signin-page.payment-mode {
  width: 560px;
  margin: 0 auto;
  padding: 20px 30px;
  border: 1px solid #00000014;
}
.signin-page {
  background: white;
  border-radius: 10px 0px 0px 10px;
  padding: 0;
  position: relative;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
form.signin-form-page {
  padding: 6px 16px;
}
.signin-head h2 {
  font-size: 31px;
  color: black;
  font-weight: 600;
  text-align: center;
}
.AllSizesdiv {
  margin-top: 10px;
}
.card-btn {
  padding: 7px 10px;
  border-radius: 4px;
}
.select-div input[type="radio"][id^="myCheckbox"] {
  display: none;
}
.select-div label {
  border: 1px solid #ddd;
  padding: 10px;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  align-items: center;
}
.select-div label:before {
  /* background-color: #000; */
  color: #fff;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid #3d8b8b;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  transition-duration: 0.4s;
  transform: scale(0);
}
.select-div label img {
  height: 33px;
  /* width: 100px; */
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  border-radius: 15px;
}
.select-div label p {
  margin-bottom: 0;
  margin-left: 5px;
}
.SizeSelection.Cardpayment {
  justify-content: center;
}
.mt-30 {
  margin-top: 30px !important;
}
.select-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.SizeSelection {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
  border-radius: 5px;
}
.select-div :checked + label::before {
  content: "✓";
  background-color: rgb(61, 139, 139);
  transform: scale(1);
}
.card-flex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}
.total-bill h5 {
  font-size: 22px;
  color: gray;
  margin-bottom: 3px;
}
.total-bill span {
  color: #ed3237;
  font-size: 19px;
  font-weight: 600;
}
.total-bill {
  margin: 20px 0;
}
.noUi-horizontal .noUi-handle {
  background-color: #ed3237;
}
.noUi-connect {
  background: #ed3237;
}
.noUi-handle:active {
  border: 8px solid #f78a77;
  border: 8px solid rgb(237 50 55 / 26%);
}

a.btn.btn-xs.shop-now {
  width: 150px;
  font-size: 17px;
  padding: 12px 14px;
}
.cvvdiv {
  text-align: right;
  position: absolute;
  right: 20px;
}
.item-label:has(.icon) {
  padding-inline-start: 2.75em;
}
.item-label {
  border-radius: 0.375em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75em 1em;
  padding-inline-end: 2em;
  position: relative;
  border: 1px solid #00000012;
  margin: 20px;
}
.item-input,
.item-label {
  box-shadow: 0 0 0 2px hsl(var(--hue), 10%, 80%) inset;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.item-input {
  border-radius: 50%;
  position: absolute;
  top: 0.875em;
  left: 1em;
  width: 1em;
  height: 1em;
}
span.item-name {
  font-size: 18px;
}
.lgn a {
  color: #7e7e7e;
}
span.lable.ml-0.login-level {
  font-size: 20px;
  font-weight: 600;
}
a.cc-cart {
  width: fit-content;
  display: block;
  padding: 0px 20px;
  border-radius: 5px;
  line-height: 44px;
  font-weight: 700;
  font-size: 16px;
  background: #ffff;
  border: 2px solid #ed3237;
  color: #ed3237;
}
.product-extra-link2.product-extra-link2-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* span.select2.select2-container.select2-container--default {
  width: 100% !important;
}  */
.col-lg-6.bg-con {
  border: 1px solid #00000014;
  border-radius: 15px;
  padding: 30px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media (max-width: 676px) {
  .checkout-div {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .signin-page.payment-mode {
    width: 100%;
  }
  label p {
    display: none;
  }
}
.position-relative.newsletter-inner:before {
  content: "";
  position: absolute;
  background-color: #00000087;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.newsletter-content h2 {
  color: #fff;
}
.newsletter .newsletter-inner .newsletter-content p {
  color: #fff;
}
.newsletter .newsletter-inner {
  z-index: -9;
}
.edit-profile-sec {
  padding: 1rem;
}
.cart-page__table__meta-img {
  width: 100px;
  height: 100px;
  border: 2px solid #ed3237;
  margin-right: 34px;
  border-radius: 10px;
  overflow: hidden;
}
h3.cart-page__table__meta-title a {
  font-size: 20px;
  color: #253d4e;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
a.Cancel {
  background: #ed3237;
  padding: 7px 12px;
  color: #fff;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 14px;
}
h3.cart-page__table__meta-title {
  line-height: 25px;
  margin: 0;
}
.modal-content.modal-content-w {
  width: 55%;
  margin: auto;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #f633393d;
}

.pok-pagination {
  padding-top: 5px;
}
.pok-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pok-pagination ul li {
  margin: 0 15px;
}
.pok-pagination ul li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: rgba(22, 29, 53, 0.8);
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.pok-pagination ul li a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(144.14deg, #4d233f -11.44%, #305b9f 123.42%);
  z-index: -1;
  opacity: 0.1;
  border-radius: 50%;
}
.pok-pagination ul li a.active,
.pok-pagination ul li a:active,
.pok-pagination ul li a:hover {
  color: #fff;
  background: #ed3237;
}
.otpes-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 14px;
}
.otp-boxes-1 {
  border: 1px solid #b5b5b5;
  border-radius: 6px;
  width: 65px !important;
  height: 65px !important;
  text-align: center;
  font-size: 27px;
  background: rgb(255, 255, 255);
  font-family: "Noto Sans", sans-serif;
}
.otp-sec {
  padding: 30px 30px;
  border: 1px solid #00000014;
  border-radius: 8px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.header-action-icon-2 i {
  font-size: 24px !important;
}
.log-sign {
  display: flex;
  gap: 28px;
}
.log-sign a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #253d4e;
  font-family: "Quicksand", sans-serif;
}

@media only screen and (max-width: 768px) {
  .logo.logo-width-1.d-block.d-lg-none {
    order: 2;
  }
  .header-action-icon-2.d-block.d-lg-none {
    order: 1;
  }
  .header-action-2 {
    order: 3;
  }
  .logo.logo-width-1 a img {
    width: 100px;
    min-width: 100px;
  }
  .header-action-icon-2.header-action-icon-mb {
    display: none;
  }
  .header-bottom {
    padding: 35px 0 28px 0;
  }
  .log-sign {
    display: none;
  }
  .profile-box {
    margin-top: 77px;
  }
  .tab-content > .active {
    margin-top: 30px;
  }
  a.product-name.mb-10.text-heading {
    width: 140px;
    display: block;
  }
  .detail-extralink.mr-15 {
    width: 71px;
  }
}
.form-group.position-relative i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.total-bill {
  margin: 20px 0;
}
.table-responsive {
  overflow-x: auto;
}
.single-content h3 {
  font-size: 36px;
  line-height: 48px;
}
table tr {
  border: 1px solid #e9ecef;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
}

.single-content thead {
  background-color: #f9fafb;
}

.single-content th {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.single-content td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.single-content tr:last-child td {
  border-bottom: none;
}

.single-content .item-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-content .image-wrapper {
  border: 2px solid #ef4444;
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0;
}

.single-content .image-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.single-content .item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-content .item-name {
  font-weight: 500;
  color: #1f2937;
}

.single-content .item-description {
  color: #6b7280;
  font-size: 14px;
}

.single-content .order-id,
.date,
.total {
  color: #374151;
}

.single-content .actions-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-content .status {
  font-weight: 500;
}

.single-content .status.in-transit {
  color: #ea580c;
}

.single-content .status.completed {
  color: #374151;
}

.single-content .status.cancelled {
  color: #ef4444;
}

.single-content .cancel-btn {
  background-color: #ef4444;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.single-content .cancel-btn:hover {
  background-color: #dc2626;
}
.mb-30 {
  margin-bottom: 30px;
}

.myaccount-information {
  padding-top: 0px;
}

.signin-form {
  display: grid;
  grid-template-columns: 30% 67%;
  gap: 3%;
  border-radius: 0 !important;
  align-items: start;
}

.signin-head h2 {
  font-size: 26px;
  color: black;
  font-weight: 600;
  padding-bottom: 20px;
}

.checkout-sign {
  padding: 72px 0px;
  background: #d3d3d333;
}

.signin-form {
  border-radius: 10px;
}
.signin-form-2 {
  border: 2px solid #003c38;
  border-radius: 10px;
}

.signin-button .learn-more-btn-1-1 {
  background: #ff4460;
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 24px;
  border: 1px solid #c4ebb7;
  transition: 0.3s all ease;
  cursor: pointer;
}

.signin-button .learn-more-btn-1-1:hover {
  background: #ff9b40;
  color: white;
  border: 1px solid #ff9b40;
  transition: 0.6s all ease;
}
.signin-button {
  margin-top: 30px;
}

.next-page-link {
  text-align: center;
  padding: 30px 0 0 0;
  position: relative;
}

.next-page-link span:before {
  width: 46%;
  height: 1px;
  background: #55626070;
  position: absolute;
  content: "";
  top: 10px;
  right: -99px;
}
.next-page-link span:after {
  width: 46%;
  height: 1px;
  background: #55626070;
  position: absolute;
  content: "";
  top: 10px;
  left: -98px;
}

.next-page-link .new-cannamed:before {
  width: 92px;
  height: 1px;
  background: #55626070;
  position: absolute;
  content: "";
  top: 10px;
  right: -98px;
}
.next-page-link .new-cannamed:after {
  width: 92px;
  height: 1px;
  background: #55626070;
  position: absolute;
  content: "";
  top: 10px;
  left: -98px;
}

.next-page-link span {
  display: inline-block;
  color: #556260;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}

.additional-u .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: visible;
}
.additional-u .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 8px;
  color: #556260;
  display: inline-block;
}

.additional-u .input-text {
  margin-bottom: 12px;
  border: 1px solid #c6c6c6;
  background: #fff;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  color: #807e7e;
  background-clip: padding-box;
  /**** -webkit-appearance: none;
-moz-appearance: none;
appearance: none;***/
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  outline: none;
  padding: 10px 16px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.checkbox-2 {
  display: flex;
  justify-content: right;
  color: #556260;
  font-size: 13px;
  font-weight: 500;
}
.term-condition {
  color: #ff4460 !important;
  text-decoration: none;
}

.signin-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  border-radius: 8px 0px 0px 8px;
}

.signin-image.new-img {
  background-image: none;
  background-color: white;
  border-radius: 0 !important;
  padding: 32px 32px 73px 32px;
}

.background-box {
  background: black;
  opacity: 0.6;
  border-radius: 8px 0px 0px 8px;
  width: 100%;
  height: 100%;
}

.input-text:focus {
  border: 1px solid #ff4460;
}

a.sign-up-link {
  color: #ff4460;
}

.container-2 {
  width: 1000px;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.profile-image {
  padding: 10px 0;
  text-align: center;
}

.profile-image img {
  width: 25%;
  border-radius: 50%;
}

.profile-image h3 {
  font-size: 17px;
  color: black;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 8px;
}
.profile-image span {
  color: #4c4c4cb8;
  font-size: 14px;
}

.account-image h6 {
  font-size: 19px;
  text-align: center;
  padding-top: 16px;
  font-weight: 600;
}

.account-image h5 {
  font-size: 13px;
  text-align: center;
  padding-top: 7px;
  font-weight: 500;
  color: #00000078;
  padding-bottom: 27px;
}

.account-box-1 {
  background: #ffffff;
  border-bottom: 1px solid #d7d7d7;
  padding: 25px 16px;
  border-radius: 0;
  font-size: 14px;
  transition: 0.6s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.account-box-1 i {
  font-size: 15px;
  color: #9b9999;
}

.account-box-1 h6 {
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  margin: 0px;
}
.account-box-1 h5 {
  font-weight: 500;
  color: #9b9999;
  font-size: 12px;
  padding-top: 10px;
}

.account-box-1:hover {
  background: #b32126;
  transition: 0.6s;
}

.account-box-1:hover h6 {
  color: white;
}

.account-box-1:hover h5 {
  color: white;
}

.account-box-1:hover i {
  color: white;
}

.delet-account-u {
  display: block;
}
.delet-account {
  text-align: center;
  padding: 30px 0 10px 0;
  line-height: 27px;
}
.delet-account i {
  font-size: 10px;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
}
.delet-account span {
  font-size: 12px;
  color: black;
  font-weight: 500;
  text-underline-position: under;
}

.signin-form-page .detail-grid-2 {
  margin-top: 20px;
}

.signin-form-page .detail-grid-1 {
  padding: 0;
  background: white !important;
}
.signin-page.full-bg {
  background: #ff9b40;
}
.signin-form-page .detail-grid-2 {
  padding: 0;
}

.resend-link-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.resend-link-flex span {
  color: #556260;
  font-size: 13px;
  font-weight: 500;
}

.signin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signin-form-page .detail-grid-1 {
  padding: 0;
  background: white !important;
}

.details-flex-2 {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.form-group {
  padding-top: 8px;
}

.detail-btn {
  padding: 12px;
  /* font-size: 14px; */
  width: 92%;
  font-weight: 500;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  color: #73807e;
  margin-top: 10px;
  font-size: 13px;
  outline: none;
}

.detail-btnes {
  padding: 16px 60px 16px 16px;
  font-size: 14px;
  width: 86% !important;
  font-weight: 500;
  border: 1px solid #cacaca;
  border-radius: 5px;
  color: #73807e;
}

.signin-page-1 {
  padding: 45px 40px 30px 40px;
  background: white;
  border-radius: 0px 0px 0px 0px;
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0);
}

.box-center-pro a {
  border: none;
  /* display: block; */
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background: #b32126;
  padding: 17px 48px;
  margin: 0 auto;
  box-shadow: 3px 2px 14px lightgrey;
  text-decoration: none;
  border-radius: 10px;
  /* text-align: center; */
  /* width: 34%; */
  transition: 0.6s;
}

.box-center-pro a:hover {
  background: white;
  transition: 0.6s;
  color: #b32126;
}

.box-center-pro {
  text-align: center;
  margin-top: 70px;
}

.setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 12px 18px 12px;
}

.setting a i {
  font-size: 20px;
  color: #b30c00;
}

.setting h3 {
  font-size: 18px;
  font-weight: 600;
}

.his-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-his h4 {
  font-size: 20px;
  font-weight: 600;
  color: #005fda;
}

.all-flex img {
  width: 22%;
  border-radius: 10px;
}

.his-text h4 {
  font-size: 22px;
  font-weight: 500;
  color: black;
}

.pen {
  color: black;
  font-weight: 600;
  background: #e5e5e5d1 !important;
  padding: 8px 11px;
  border-radius: 5px;
  font-size: 13px;
}

.txt-circle h4 {
  color: grey;
  font-size: 17px;
  font-weight: 400;
}

.crcle {
  width: 16px;
  height: 16px;
  background: black;
  border-radius: 50%;
  display: block;
}

.txt-circle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qt {
  color: grey !important;
  font-size: 17px !important;
  font-weight: 400 !important;
}

.mains {
  display: flex;
  align-items: center;
  margin-top: 12px;
  gap: 16px;
}

.mains-1 h6 {
  color: black;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}

.mains-1 h2 {
  color: black;
  font-size: 22px;
  font-weight: 600;
}

.all-flex {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 27px;
  border: 2px solid #bdbdbd47;
  padding: 14px 12px 14px 12px;
  border-radius: 14px;
}

.mains-1 {
  width: 100%;
}

.rep {
  background: #b30c00;
  color: white;
  padding: 9px 9px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 500;
}

.c-7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.mt-t {
  margin-top: 20px;
}

.cle {
  background: #d2e4ff !important;
}

.hiss-text {
  font-size: 22px;
  font-weight: 500;
  color: black !important;
}

.counter {
  /* width: 150px; */
  /* margin: auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.counter input {
  width: 60px;
  border: 0;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  background: #0052cc;
  color: #fff;
  appearance: none;
  outline: 0;
  padding: 6px 4px 6px 4px;
  border-radius: 4px;
}
.counter span {
  display: block;
  font-size: 34px;
  /* padding: 4px 10px 4px 10px; */
  cursor: pointer;
  /* color: #0052cc; */
  user-select: none;
  /* background: #e4e4e4; */
  border-radius: 6px;
}

.repet {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shipping-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shipping-head h2 {
  font-size: 17px;
  color: black;
  font-weight: 500;
  padding-bottom: 20px;
  margin-top: 28px;
}

.addr {
  color: #343434;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

.add-flex i {
  color: #b30c00;
  font-size: 18px;
}

.another a {
  font-weight: 500;
  font-size: 17px;
}

.another {
  text-align: right;
  margin-top: 18px;
}

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

.add-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #d2e4ff;
  padding: 16px 15px 16px 15px;
  margin-top: 4px;
  border-radius: 10px;
}

.cl-11 {
  background: #f0f0f0a1;
}

.t-2 {
  color: #b32126;
}

.lab {
  font-weight: 600;
  font-size: 15px;
  color: black;
}
/**************account-css******************/

.logout-center {
  display: flex;
  justify-content: center;
}

.logout-box {
  background: white;
  box-shadow: 2px 4px 20px #77777729;
  width: 64%;
  padding: 30px;
  border-radius: 7px;
  text-align: center;
}

.mt-60-1 {
  margin-top: 54px;
}

.logout-box h6 {
  font-size: 16px;
  font-weight: 500;
}

.logout-btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.log {
  background: #212121 !important;
  color: rgb(255, 255, 255) !important;
}

.logout-btn {
  background: #b32126;
  padding: 14px 35px 14px 35px;
  color: white;
  text-align: center;
  border-radius: 26px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 23px;
  text-decoration: none;
}

.logout-box p {
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
  color: grey;
  line-height: 20px;
}

.logout-box i {
  font-size: 19px;
  margin-top: 10px;
  color: black;
}

.logout-btn:hover {
  color: white;
  transition: 0.6s;
}
/**********************Notification-css-start*********************/
.dropbtn {
  background-color: #0059cc;
  color: white;
  font-size: 18px;
  border: none;
  padding: 8px 12.5px 8px 12.5px;
  border-radius: 50%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 25px;
  border-radius: 3px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: 0.7s all;
}

.dropdown-content a:hover {
  background-color: #ddd;
  transition: 0.7s all;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #0059cc;
}

/**********************Notification-css-end*********************/

/**********************Notification-css-start*********************/
.dropbtn {
  background-color: #0059cc !important;
  color: white;
  font-size: 18px;
  border: none;
  padding: 8px 12.5px 8px 12.5px !important;
  border-radius: 50%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 25px;
  border-radius: 3px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: 0.7s all;
}

.dropdown-content a:hover {
  background-color: #ddd;
  transition: 0.7s all;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #0059cc;
}

/**********************Notification-css-end*********************/
.sidenav {
  display: none;
}

.side-1 {
  display: none;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 16px 8px 16px 32px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0px;
  right: 4px;
  font-size: 34px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

.ham-btn {
  text-align: left !important;
  margin-left: 33px;
}

.btn-1-res {
  color: white !important;
  padding: 15px 46px !important;
  text-align: center;
  font-size: 19px !important;
  font-weight: 600;
  /* width: 155px; */
  display: inline-block !important;
  margin-top: 36px;
  border-radius: 50px;
  background: #035cdf;
}

.popup-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.popup-link a {
  background: #035cdf;
  color: white;
  padding: 16px 16px 16px 16px;
  border-radius: 38px;
  font-size: 17px;
  cursor: pointer;
  margin: 0px;
  text-decoration: none;
  box-shadow: 2px 4px 20px #77777729;
}

.account-res-flex {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 39px;
  margin-top: 30px;
  padding-left: 32px;
}

.btn {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  background-color: #005fda;
  padding: 16px 45px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgb(0 0 0 / 9%);
  text-decoration: none;
  border-radius: 43px;
  text-align: center;
}

.join {
  color: #0061d5;
  text-decoration: none;
  font-weight: 600;
  border: 2.5px solid #0061d5;
  padding: 14px 22px 14px 22px;
  border-radius: 50px;
  transition: 0.6s;
}

.join:hover {
  background: #0061d5;
  transition: 0.6s;
  color: white;
}

/***************Filter-start************/
.popup-container {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 17, 17, 0.61);
  display: flex;
  align-items: center;
}
.popup-content {
  background-color: #fefefe;
  margin: auto;
  padding: 16px;
  border: 1px solid #888;
  width: 50%;
}
.popup-content p {
  font-size: 13px;
  /* padding: 10px; */
  line-height: 34px;
  font-weight: 500;
  color: rgb(182 182 182);
}
.popup-content a.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

.popup-content a.close:hover {
  color: #333;
}

.popup-content span:hover,
.popup-content span:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.popup-container:target {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-container h3 {
  margin: 10px 10px 0px 0px;
  font-size: 22px;
  font-weight: 600;
  /* font-family: poppins; */
  width: 100%;
  color: #b30c00;
}
/*End popup styles*/
.filter-btn {
  text-align: center;
  margin: 40px 0px 15px 0px;
}

.filter-btn a {
  text-decoration: none;
  color: #ffffff;
  background-color: black;
  padding: 10px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.5s all ease;
}

.filter-btn a:hover {
  box-shadow: inset 0 -3.25em 0 0 #93b04c;
  transition: 0.5s all ease;
  color: white;
}

/* Additional styles */
.popup-style-2 {
  transform: scale(0.3);
}

.popup-style-2:target {
  transform: scale(1);
}

.popup-style-3 {
  left: 100%;
}

.popup-style-3:target {
  left: 0;
}

.popup-style-4 {
  transform: rotate(180deg);
}

.popup-style-4:target {
  transform: rotate(0deg);
}

.popup-style-5 {
  top: 100%;
}

.popup-style-5:target {
  top: 0;
}

.popup-style-6 {
  transform: scale(15.3);
}

.popup-style-6:target {
  transform: scale(1);
}

.popup-style-7 {
  transform: skewY(180deg);
  transition: all 0.7s ease-in-out;
}

.popup-style-7:target {
  transform: skewY(0deg);
}

.filter-heading-1 {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  padding: 10px 0px 10px 0px;
}

select {
  padding: 14px 0px 14px 5px;
  margin-left: 0px;
  border-radius: 6px;
  width: 100%;
}

.first {
  padding: 10px !important;
  background: red !important;
}

.filter-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.popup-line {
  width: 100%;
  height: 2px;
  background: #9b9b9b91;
  border-radius: 10px;
  display: block;
}

.pop-ups {
  border: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background-color: #005fda;
  padding: 18px 11px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgb(0 0 0 / 9%);
  text-decoration: none;
  border-radius: 43px;
  width: 45%;
  margin-top: 40px;
}

.pop-ups span {
  position: relative;
  z-index: 1;
}

.pop-ups:after {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  height: 490%;
  width: 190%;
  background: #0268ff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.pop-ups:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  color: white !important;
}

.cent {
  text-align: center;
}

.textareas {
  padding: 14px 0px 63px 10px;
  width: 98.5%;
  color: black;
  /* font-weight: 600; */
  font-size: 14px;
  border: 1.5px solid #d1d1d1d1;
  outline: none;
  border-radius: 6px;
  margin-left: 5px;
  margin-top: 15px;
  font-family: "Poppins", sans-serif !important;
}

.unit {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #b6b6b6 !important;
  border-radius: 8px;
  margin-top: 16px;
}

.unit-flex {
  display: flex;
  align-items: center;
  gap: 66px;
}

/**Filter-end*****/

/***************Filter-start************/

.joins {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  background-color: #005fda;
  padding: 16px 45px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgb(0 0 0 / 9%);
  text-decoration: none;
  border-radius: 43px;
  text-align: center;
}

.joins span {
  position: relative;
  z-index: 1;
}

.joins:after {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  height: 490%;
  width: 150%;
  background: #0268ff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(97deg);
}

.joins:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.shoe-1 {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-top: 26px;
  display: block;
}
.popup-line {
  width: 100%;
  height: 2px;
  background: #9b9b9b91;
  border-radius: 10px;
  display: block;
}

.filter-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.filter-heading-1 {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  padding: 10px 0px 10px 0px;
}

.first-one {
  padding: 16px 0px 16px 5px;
  margin-left: 0px;
  border-radius: 6px;
  width: 100%;
  border: 1.5px solid #d1d1d1;
  outline: none;
  margin-top: 12px;
}

.mtse {
  margin-top: 15px;
  margin-left: 5px;
}

.sidenav a:hover {
  color: #f1f1f1;
}
.author-profile .author-media {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: inline-block;
}
.author-profile .author-media img {
  width: 130px;
  border-radius: 100%;
}
.author-profile .upload-link {
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 42px;
  background: #b32126;
  bottom: 0;
  right: 0px;
  box-shadow: 0 0 10px 0 rgba(0, 24, 128, 0.1);
  border-radius: 100%;
  color: #fff;
  overflow: hidden;
  border: 2px solid #fff;
  text-align: center;
}
.author-profile .upload-link .update-flie {
  position: absolute;
  opacity: 0;
  z-index: 0;
  width: 100%;
  cursor: pointer;
  left: 0;
  height: 100%;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.account-box-1.active {
  background: #b32126;
}
.account-box-1.active h6 {
  color: #fff;
}
.pt-80 {
  padding-top: 80px;
}

/* Confirm Modal Styles */
.confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.confirm-modal {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  text-align: center;
}

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

.confirm-modal h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}

.confirm-modal p {
  margin: 0 0 25px 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.confirm-icon.danger {
  background-color: #fee2e2;
  color: #dc2626;
}

.confirm-icon.primary {
  background-color: #dbeafe;
  color: #2563eb;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
}

.btn-cancel,
.btn-confirm {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.btn-cancel {
  background-color: #f3f4f6;
  color: #374151;
}

.btn-cancel:hover {
  background-color: #e5e7eb;
}

.btn-confirm.danger {
  background-color: #dc2626;
  color: #fff;
}

.btn-confirm.danger:hover {
  background-color: #b91c1c;
}

.btn-confirm.primary {
  background-color: #2563eb;
  color: #fff;
}

.btn-confirm.primary:hover {
  background-color: #1d4ed8;
}

.text-color {
  color: red;
}

.buy-now-wrapper {
  margin-top: 24px;
}

.buy-now-btn {
  width: 100%;
  background-color: #c62828;
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.buy-now-btn:hover {
  background-color: #b71c1c;
}

.royal__empty__cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.royal__empty__cart__image {
  width: 160px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.royal__empty__cart h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.royal__empty__cart p {
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

.royal__empty__cart__btn {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.royal__empty__cart__btn:hover {
  opacity: 0.9;
}

.royal__nav__link.active {
  color: #000;
  font-weight: 600;
  position: relative;
}

.royal__nav__link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #000;
}

div.tablecontainer {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}
.category-image img {
  border-radius: 0 100px 100px 0;
  height: 290px;
}
.category-item-2 img {
  border-radius: 100px 0 0 100px;
  height: 290px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 30px !important;
}

.bg-index {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)),
    url("../images/slider.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.pb-30 {
  padding-bottom: 30px;
}

.about-image-bg {
  width: 100%;
  background-repeat: no-repeat;
  object-fit: cover;
}
.about-img-2 {
  width: 50%;
  padding: 50px;
  display: grid;
  gap: 30px;
  margin: auto;
}
.about-img-2 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* /////////////////////// */

  .left-product-imgs img {
  width: 100%;
  display: block;
}
.left-product-imgs .img-display {
  overflow: hidden;
}
.left-product-imgs .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.left-product-imgs .img-showcase img {
  min-width: 100%;
}
.left-product-imgs .img-select {
  display: flex;
}
.left-product-imgs .img-item {
  margin: 0.3rem;
}
.left-product-imgs .img-item:nth-child(1),
.left-product-imgs .img-item:nth-child(2),
.left-product-imgs .img-item:nth-child(3) {
  margin-right: 0;
}
.left-product-imgs .img-item:hover {
  opacity: 0.8;
}
