@font-face {
  font-family: "stevie";
  src: url("../fonts/steviesans-font-family/fonnts.com-steviesans_book.otf");
  font-style: normal;
}

@font-face {
  font-family: "editotrial";
  src: url("../fonts/editorial-old-font/ppeditorialold-regular.otf");
  font-style: normal;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --light-black: #333333;
  --light-white: #fcfcfc;
  /* --pink: #f460c9; */
  --pink: #FFADE7;
  --light-pink: #ffdfeb;
  --white: #ffffff;
  --inter-font: "Inter", sans-serif;
  --roboto-font: "Roboto", sans-serif;
  --urbanist-font: "Urbanist", sans-serif;
}

::selection {
  background-color: var(--pink);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.9rem;
  background-color: rgb(236, 236, 236);
}

::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 12px;
  border: 3px solid var(--white);
}

body,
html {
  overflow-x: hidden;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Container Adjustment */
@media (max-width: 1920px) {
  .container {
    max-width: 1650px !important;
  }
}

@media (max-width: 1600px) {
  .container {
    max-width: 1480px !important;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1320px !important;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px !important;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px !important;
  }
}

/* Container Adjustment */

/* Header Start  */

.header {
  padding: 30px 0;
  background-color: var(--light-white);
}

.header-wrapper {
  display: flex;
  align-items: center;
}

.header-box {
  width: calc(100% / 3);
}

.search-area {
  display: flex;
  gap: 40px;
}

.search-area .search-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--pink);
  border-radius: 100%;
  color: var(--white);
  border: none;
  outline: none;
  height: 50px;
  width: 50px;
  font-size: 22px;
}

.login-area {
  display: flex;
  gap: 12px;
  align-items: center;
}

.login-area img {
  width: 33px;
}

.login-area h5,
.login-area h6 {
  font-family: "stevie";
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0;
}

.login-area h5 {
  font-weight: 500 !important;
  margin-top: 4px;
}

.logo img {
  width: 236px;
}

.cart-area {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: end;
}

.cart-area .cart {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart img {
  width: 38px;
}

.cart .list-badge {
  position: absolute;
  top: -5px;
  right: -9px;
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 100%;
  font-size: 12px;
  font-weight: bold;
  color: var(--white);
  height: 22px;
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cart-area .cart p {
  margin: 0;
  font-family: "stevie";
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
}

.hamburger img {
  width: 42px;
  cursor: pointer;
}

/* Hero Banner Start */

.banner-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 825px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.banner-content {
  max-width: 735px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.banner-hd {
  color: var(--black);
  font-size: 72px;
  font-weight: bold;
  font-family: "editotrial";
  text-transform: capitalize;
}

.para {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--black);
}

.btns-wrapper {
  display: flex;
  gap: 30px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 36px;
  border: 2px solid;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  font-family: "stevie";
  transition: all 0.5s;
}

.primary-btn,
.secondary-btn:hover {
  transition: all 0.5s;
  background-color: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.secondary-btn,
.primary-btn:hover {
  transition: all 0.5s;
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
}

/* Category Section Start */

.category-sec {
  background-color: #fef6f7;
  padding: 120px 0;
}

.sec-hd {
  text-transform: capitalize;
  color: var(--black);
  font-size: 54px;
  font-weight: 600;
  font-family: "editotrial";
  letter-spacing: -1px;
}

.category-slider {
  margin-top: 45px;
}

.category-slide {
  position: relative;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  margin: 0 10px;
  padding: 48px 41px 20px;
  border-radius: 10px;
  box-shadow: 0px 1px 5px 0px #00000040;
}

.category-slider .slick-track {
  display: flex !important;
}

.category-slider .slick-slide {
  height: inherit !important;
}

.category-slide-img {
  width: 100%;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
}

.category-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.category-slide h4 {
  font-size: 34px;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  letter-spacing: -1px;
  font-family: "editotrial";
  margin-top: 16px;
  text-align: center;
  min-height: 2lh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-slide h4 {
  min-height: calc(34px * 1.2 * 2);
}


.category-slider .slick-list {
  padding: 15px 0;
}

.category-slide h4 {
  font-size: 34px;
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  letter-spacing: -1px;
  font-family: "editotrial";
  margin-top: 16px;
  text-align: center;
}

.category-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  background-color: var(--pink);
  color: var(--white);
  box-shadow: 0px 0px 5.27px 0px #00000040;
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  flex-direction: column;
  font-size: 15px;
  transform: rotate(-35deg);
}

/* Most Section Start */
.most-sec {
  background-color: #fef6f7;
}

.most-slider {
  margin-top: 40px;
  padding: 0 20px;
}

.most-slide {
  position: relative;
  margin: 0 9px;
}

/* ✅ New: image wrapper handles the cropping */
.most-slide-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.most-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tag {
  background-color: var(--light-white);
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  font-family: var(--inter-font);
  padding: 9px 12px;
  position: absolute;
  top: 20px;
  left: 0px;
}

.most-desc {
  margin-top: 25px;
}

.most-desc h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  font-family: "editotrial";
  margin-bottom: 7px !important;
  text-transform: capitalize;
}

.most-desc p {
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
  font-family: "stevie";
}

.most-desc p b, .para b {
  font-family: var(--inter-font);
}

.most-slider .slick-dots {
  padding: 0;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 0;
}

.custom-dot {
  display: block;
  width: 60px;
  height: 15px;
  background: #b2acad;
  cursor: pointer;
  border-radius: 50px;
}

.slick-dots li.slick-active .custom-dot {
  background: var(--pink);
}

/* Earn Section Start */

.earn-sec {
  background-color: #fef6f7;
  padding: 120px 0;
}

.earn-box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}

.earn-box {
  box-shadow: 0px 1px 6px 0px #00000040;
  max-width: 675px;
  width: 100%;
  border-radius: 20px;
  background-color: var(--white);
  padding: 35px;
  text-align: center;
  margin-bottom: 30px;
}

.earn-box h3 {
  color: var(--black);
  font-size: 36px;
  font-weight: 600;
  font-family: "editotrial";
  margin-bottom: 20px;
  text-transform: capitalize;
}

.earn-box p {
  font-family: "stevie";
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black);
}

.earn-btn-wrapper,
.boutique-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Wholesale Section Start */

.wholesale-sec {
  padding: 120px 0;
  background-color: var(--light-pink);
}

.wholesale-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.wholesale-box {
  width: calc(100% / 4 - 40px);
  text-align: center;
}

.wholesale-desc {
  padding: 19px;
  background-color: var(--white);
  box-shadow: 0px 2px 13px 0px #00000040;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 600;
  font-family: "editotrial";
  color: var(--black);
  text-transform: capitalize;
  line-height: 35px;
}

.wholesale-sec .faq-wrapper {
  margin-top: 120px;
}

.wholesale-sec .faqs {
  margin-top: 60px;
}

.wholesale-sec .faq {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--black);
}

.wholesale-sec .faq-btn {
  border: none;
  font-size: 40px;
  font-family: "editotrial";
  font-weight: 600;
  text-transform: capitalize;
  color: #101828;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: transparent !important;
  width: 100%;
  text-align: start;
}

.wholesale-sec .faq-body {
  display: none;
  padding: 33px 0 0;
  border-radius: 0px !important;
  border: none;
  border-top: 0;
  margin-top: -1rem;
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  width: 100%;
  max-width: 1022px;
}

.wholesale-sec .faq-btn-arrow {
  background-color: transparent;
  color: var(--black);
  box-shadow: 0px 0px 5.27px 0px #00000040;
  height: 66px;
  width: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  flex-direction: column;
  font-size: 23px;
  transform: rotate(35deg);
  transition: 0.8s;
  border: 1px solid var(--black);
}

.wholesale-sec .faq.active .faq-btn-arrow {
  transition: 0.8s;
  transform: rotate(-35deg);
  background-color: var(--pink);
  border-color: transparent;
  color: var(--white);
}

/* Boutique Section Start */

.Boutique-sec {
  padding: 120px 0;
  background-color: #fef6f7;
}

.Boutique-sec .sec-hd {
  margin-bottom: 35px;
}

.boutique-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.boutique-wrapper::before {
  content: "";
  position: absolute;
  top: 204px;
  left: 149px;
  width: 100%;
  max-width: 1330px;
  background-color: var(--black);
  height: 3px;
}

.boutique-box {
  width: calc(100% / 5 - 40px);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 99;
}

.boutique-box img {
  width: 175px;
}

.boutique-box .number {
  height: 53px;
  width: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 100%;
  border: 2px solid #565656;
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background-color: #fef6f7;
}

.boutique-box h3 {
  font-size: 32px;
  font-weight: 600;
  font-family: "editotrial";
  color: var(--black);
  text-transform: capitalize;
}

.boutique-box p {
  line-height: 30px;
}

.boutique-btn-wrapper {
  margin-top: 20px !important;
}

/* Gallery Section  */

.gallery-sec {
  padding: 0 21px;
  background-color: #fef6f7;
}

.gallery-wrapper {
  display: flex;
  gap: 20px;
}

.gallery-left {
  width: 50%;
}

.video-box {
  aspect-ratio: 929 / 830;
  width: 100%;
  height: 100%;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-right {
  display: flex;
  justify-content: space-between;
}

.gallery-right .child {
  width: calc(100% / 2 - 10px);
  display: flex;
  /* flex-direction: column;
  justify-content: space-between; */
}

.gallery-right .child img {
  width: 100%;
}

.gallery-desc h3 {
  font-family: "editotrial";
  font-size: 28px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Tier Section STart */

.tier-sec {
  padding: 120px 0;
  background-color: #fef6f7;
}

.tier-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tier-box {
  width: calc(100% / 2 - 70px);
  padding: 37px 33px;
  background-color: #fef6f7;
  border-radius: 20px;
  box-shadow: 0px 1px 7px 0px #00000040;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.tier-box .tier {
  box-shadow: 0px 1px 7px 0px #00000040;
  border-radius: 20px;
  background-color: var(--white);
  height: 100%;
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tier-box .tier h2 {
  writing-mode: sideways-lr;
  font-size: 60px;
  font-weight: 600;
  font-family: "editotrial";
  color: var(--black);
  text-transform: capitalize;
}

.tier-desc {
  flex-grow: 1;
}

.tier-desc h3,
.tier-desc h4 {
  font-size: 32px;
  font-weight: 600;
  font-family: "editotrial";
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.tier-desc h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0;
}

.tier-desc ul {
  margin-top: 38px;
  margin-bottom: 40px;
  height: 185px;
  overflow-y: auto;
  padding-left: 19px;
}

.tier-desc ul li {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--inter-font);
  margin-bottom: 11px;
  list-style-type: none !important;
  position: relative;
}

.tier-desc ul li::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: var(--black);
  border-radius: 100%;
  left: -16px;
  top: 10px;
}

.tier-desc .tier-btn {
  padding: 14px;
  border: 2px solid var(--pink);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  font-family: "stevie";
  display: block;
  width: 100%;
  color: var(--white);
  background-color: var(--pink);
  text-align: center;
}

/* Selling Section Start */

.selling-sec {
  position: relative;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fef6f7;
}

.selling-sec .video-area {
  position: absolute !important;
  padding: 0 28px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.selling-sec .height {
  height: 100%;
}

.video-area video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 20px;
}

.selling-box {
  padding: 63px 45px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 840px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.9px);
  -webkit-backdrop-filter: blur(3.9px);
  border: 1px solid #ffffff33;
}

.selling-box .primary-btn {
  width: fit-content;
}

/* FAQ SECTION START  */

.faqs-sec {
  padding: 120px 0;
  background-color: #fef6f7;
  position: relative;
}

.faqs-sec .faq-wrapper {
  margin-top: 120px;
}

.faqs-sec .faqs {
  margin-top: 90px;
}

.faqs-sec .faq {
  margin-bottom: 25px;
}

.faqs-sec .faq-btn {
  border: none;
  padding: 7px;
  padding-left: 82px;
  font-size: 28px;
  background-color: #f0f0f0;
  border-radius: 100px;
  font-family: "editotrial";
  font-weight: bold;
  text-transform: capitalize;
  color: var(--black);
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: start;
  align-items: center;
  transition: 0.8s;
}

.faqs-sec .faq-btn::before {
  position: absolute;
  content: "Q";
  font-size: 28px;
  font-weight: 400;
  font-family: "stevie";
  color: var(--black);
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.8s;
}

.faqs-sec .faq.active .faq-btn {
  transition: 0.8s;
  background-color: var(--pink);
  color: var(--white);
}

.faqs-sec .faq.active .faq-btn::before {
  transition: 0.8s;
  color: var(--white);
}

.faqs-sec .faq-body {
  display: none;
  background-color: #fff2f7;
  padding: 24px 50px;
  border-radius: 20px !important;
  border: none;
  border-top: 0;
  margin-top: 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.faqs-sec .faq-btn-arrow {
  background-color: var(--pink);
  color: var(--white);
  height: 81px;
  width: 81px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  flex-direction: column;
  font-size: 23px;
  transition: 0.8s;
}

.faqs-sec .faq.active .faq-btn-arrow {
  transition: 0.8s;
  background-color: var(--white);
  color: var(--black);
}

.faqs-sec .faq.active .faq-btn-arrow i::before {
  content: "\f068";
}

.faq-img {
  position: absolute;
  width: 600px;
  right: 105px;
  top: 120px;
}

/* Collection Section Start */
.collection-sec {
  background-color: #fef6f7;
}

.collection-wrapper {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
}

.collection-box {
  width: calc(100% / 3 - 10px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.collection-box img {
  width: 100%;
  border-radius: 30px;
}

/* Form Section Start */

.form-sec {
  padding: 120px 0;
  background-color: #fef6f7;
}

.form-sec .sec-hd {
  font-size: 48px;
}

.timing-list-wrapper {
  margin-top: 40px;
}

.timing-list {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.timing-list img {
  width: 48px;
}

.timing-list h5 {
  font-size: 24px;
  font-family: "editotrial";
  font-weight: 600;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.timing-list p {
  font-size: 20px;
  font-family: var(--inter-font);
  font-weight: 400;
  color: var(--black);
}

.contact-form {
  border: 1px solid #00000033;
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
}

.contact-form .field-wrapper {
  display: flex;
  gap: 23px;
}

.field-wrapper {
  margin-bottom: 20px;
}

.field-wrapper input {
  width: 100%;
  padding: 25px 40px;
  border: 1px solid #c5c5c5;
  background-color: transparent;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  border-radius: 10px;
}

.field-wrapper input::placeholder {
  color: #333333;
}

.field-wrapper input:focus {
  outline: none;
  border-color: var(--pink);
}

.contact-btn {
  padding: 18px;
  border: 2px solid var(--pink);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  font-family: "stevie";
  display: block;
  width: 100%;
  color: var(--white);
  background-color: var(--pink);
  text-align: center;
  margin-top: 35px;
}

.form-sec-wrapper {
  display: flex;
  gap: 25px;
}

.form-sec-wrapper .form-sec-left {
  width: 40%;
  flex-shrink: 0;
}

.form-sec-wrapper .form-sec-right {
  width: 60%;
  flex-grow: 1;
}

/* Footer Start */

.footer {
  margin: 0 25px 10px;
  background-image: url("../images/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 55px 25px;
  border-radius: 20px;
  transition: all 0.5s;
}

.quote-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.quote-wrapper h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  font-family: "editotrial";
  text-transform: capitalize;
}

.footer-desc p {
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  font-family: var(--inter-font);
}

.footer .footer-hd {
  font-size: 32px;
  font-weight: 600;
  font-family: "editotrial";
  margin-bottom: 33px;
  color: var(--white);
  text-transform: capitalize;
}

.footer .linking-wrap {
  display: flex;
  justify-content: center;
}

.w-div {
  width: fit-content;
}

footer .animate,
footer .animate a {
  position: relative;
}

footer .animate a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scalex(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  bottom: -0.3em;
}

footer .animate a:hover::after {
  transform: scalex(1);
  transform-origin: left;
}

.footer .footer-nav-links li {
  margin-bottom: 25px;
}

.footer .footer-nav-links li a {
  color: var(--white);
  font-size: 18px;
  font-family: var(--inter-font);
  text-decoration: none;
  font-weight: 400;
  transition: 0.8s;
}

.footer form {
  position: relative;
  margin: 30px 0px 10px 0px;
}

.footer form input {
  padding: 24px 22px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--inter-font);
  color: var(--white);
  border-radius: 10px;
  background-color: var(--white);
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.267);
  width: 100%;
}

.footer form input::placeholder {
  color: var(--white);
}

.footer form button {
  position: absolute;
  right: 5px;
  top: 6px;
  padding: 15px 36px;
  border-radius: 10px;
  border: 1px solid #ffffff80;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  font-family: "stevie";
  background-color: var(--pink);
}

.footer .social-icon-wrapper {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer .primary-btn:hover {
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.5s;
}

.social-icon-wrapper a {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 1px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.8s;
  background-color: var(--pink);
  color: var(--white);
}

.social-icon-wrapper i {
  font-size: 27px;
}

.social-icon-wrapper a:hover {
  background-color: white;
  color: var(--pink) !important;
  transition: 0.8s;
  border-color: var(--white);
}

.bottom-bar {
  margin-top: 45px;
  padding: 26px 0;
  background-color: var(--white);
  border-radius: 10px;
}

.bottom-bar p {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--inter-font);
}

.bottom-bar p a {
  font-weight: bold;
}

.loader {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.loader video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.loader-logo {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.start-btn {
  padding: 15px 36px;
  border: 2px solid var(--pink);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  font-family: "stevie";
  background-color: var(--pink);
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 1px 5px 0px #00000040;
}

/* Main Menu Start */

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh;
  width: 100%;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s !important;
  min-height: 900px !important;
  /* overflow-y: auto; */
  background: #ffade7;
}

.main-menu.active-menu {
  visibility: visible;
  opacity: 1;
  transition: 0.5s !important;
}

.menu-left-side {
  width: 60%;
}

.menu-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.menu-box {
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: calc(100% / 2);
}

.menu-box-1 {
  background-color: #fef6f7;
}

.menu-box ul li {
  margin-bottom: 20px;
}

.menu-box ul li a {
  font-size: 30px;
  font-weight: 500;
  color: var(--black);
  font-family: var(--urbanist-font);
}

.menu-box-2,
.menu-box-3 {
  background-image: url("../images/menu-img-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-box-3 {
  background-image: url("../images/menu-img-2.png");
}

.menu-anchor {
  color: var(--white);
  font-size: 40px;
  font-weight: 500;
  font-family: var(--urbanist-font);
}

.menu-address-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.menu-address-box {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menu-address-box img {
  width: 65px;
}

.menu-address-box h5 {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--urbanist-font);
  color: var(--black);
}

.menu-address-box p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}

.menu-right-side {
  width: 40%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffade7;
  box-shadow: 0px 1px 9px 0px #00000040;
  position: relative;
}

.menu-right-side ul li {
  margin-bottom: 23px;
}

.menu-right-side ul li a {
  font-size: 37px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}

.menu-close-btn {
  position: absolute;
  top: 50px;
  right: 100px;
  font-size: 70px;
  cursor: pointer;
}

/* menu bar animation start */
.main-menu.active-menu .menu-box-1 {
  animation: fade-cross 3s;
  transition: all;
}

.main-menu.active-menu .menu-box-2 {
  animation: fade-cross2 3s;
  transition: all;
}

.main-menu.active-menu .menu-box-3 {
  animation: fade-cross-reverse2 3s;
  transition: all;
}

.main-menu.active-menu .menu-box4 {
  animation: fade-cross-reverse 3s;
  transition: all;
}

.main-menu.active-menu .menu-right-side {
  animation: menu-rght 3s;
  transition: all;
}

@keyframes fade-cross {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0%;
  }

  100% {
    transform: translate(0);
    opacity: 100%;
  }
}

@keyframes fade-cross-reverse {
  0% {
    transform: translate(50%, 50%);
    opacity: 0%;
  }

  100% {
    transform: translate(0);
    opacity: 100%;
  }
}

@keyframes fade-cross-reverse2 {
  0% {
    transform: translate(-50%, 50%);
    opacity: 0%;
  }

  100% {
    transform: translate(0);
    opacity: 100%;
  }
}

@keyframes fade-cross2 {
  0% {
    transform: translate(50%, -50%);
    opacity: 0%;
  }

  100% {
    transform: translate(0);
    opacity: 100%;
  }
}

@keyframes menu-rght {
  0% {
    transform: translateX(50%);
    opacity: 0%;
  }

  100% {
    transform: translateX(0);
    opacity: 100%;
  }
}

/* menu bar animation end */



/* Wholesale Modal CSS Start */

.confirmationFieldWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.confirmationFieldWrapper .confirmationField {
  width: calc(100% / 3 - 10px);
}

.confirmationFieldWrapper2 .confirmationField {
  width: calc(100% / 4 - 10px);
}

.confirmationFieldWrapper3 .confirmationField {
  width: calc(100% / 2 - 10px);
}

.wholesaler-modal .modal-dialog {
  max-width: 1300px;
}

.wholesaler-modal label {
  font-size: 18px;
  color: black;
  font-family: "editotrial";
  margin-bottom: 5px;
}

.wholesaler-modal input:not(.sign-input),
.wholesaler-modal textarea {
  padding: 6px 12px;
  color: black;
  font-size: 15px;
  font-family: var(--inter-font);
  border: 1px solid black;
}


.wholesaler-modal .form-control:focus,
.wholesaler-modal .form-select:focus {
  border-color: #e99fbb !important;
}

.custom-col {
  width: calc(100% / 3 - 10px);
}

.wholesaler-modal h4 {
  font-size: 25px;
  color: black;
  font-family: "editotrial";
  margin-bottom: 25px;
}

.wholesaler-modal h6 {
  font-family: "editotrial";
  font-size: 18px;
  color: black;
  font-weight: 500;
  margin-bottom: 10px;

}

.wholesaler-modal ul {
  margin-bottom: 13px;
  padding-left: 2rem;
  margin-top: 10px;
}

.wholesaler-modal ul li,
.wholesaler-modal p {
  margin-bottom: 5px;
  list-style-type: disc;
  line-height: unset;
  font-family: var(--inter-font);
}

.wholesaler-modal .checkbox-div label {
  font-size: 14px;
  font-family: var(--inter-font);
  margin-bottom: 0;
}

.wholesaler-modal .checkbox-div {
  margin-bottom: 10px;
}

.wholesaler-modal textarea {
  height: 38px;
}

.wholesaler-modal .modal-body {
  padding: 17px 30px;
}



/* Latest Css Start */

.hero-banner-2 {
  background-image: url('../images/banner-img-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 450px;
  justify-content: center;
  align-items: center;
}

.banner-content-2 .sec-hd {
  margin-bottom: 35px;
}

.most-sec-2 {
  padding: 125px 0;
}

/* Custom Collection Catalog */
.cc-catalog-sec {
  background-color: var(--white);
  padding: 50px 0 100px;
}

.cc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.cc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--inter-font);
  font-size: 16px;
  color: var(--light-black);
}

.cc-breadcrumb a {
  color: var(--light-black);
  transition: color 0.3s;
}

.cc-breadcrumb a:hover {
  color: var(--pink);
}

.cc-breadcrumb-current {
  color: var(--black);
  font-weight: 500;
}

.cc-breadcrumb-sep {
  color: #999;
}

.cc-designs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  font-family: "stevie";
  transition: all 0.3s;
}

.cc-designs-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.cc-designs-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--inter-font);
}

.cc-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cc-search-wrap {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: stretch;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.cc-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 16px;
  font-family: var(--inter-font);
  color: var(--black);
}

.cc-search-btn {
  width: 56px;
  border: none;
  background: transparent;
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.cc-search-btn:hover {
  color: var(--pink);
}

.cc-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cc-view-toggle {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.cc-view-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.cc-view-btn + .cc-view-btn {
  border-left: 1px solid #e0e0e0;
}

.cc-view-btn.is-active,
.cc-view-btn:hover {
  background: var(--pink);
  color: var(--white);
}

.cc-sort-select {
  min-width: 160px;
  height: 48px;
  padding: 0 36px 0 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--inter-font);
  color: var(--black);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.cc-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.cc-sidebar {
  position: sticky;
  top: 30px;
}

.cc-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.cc-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 14px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--inter-font);
  color: var(--black);
}

.cc-filter-tag-remove {
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0 2px;
}

.cc-filter-tag-remove:hover {
  color: var(--pink);
}

.cc-filter-group {
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.cc-filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cc-filter-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.cc-filter-heading::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.3s;
}

.cc-filter-heading.is-open::after {
  transform: rotate(180deg);
}

.cc-filter-body {
  display: none;
}

.cc-filter-body.is-open {
  display: block;
}

.cc-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-family: var(--inter-font);
  color: var(--light-black);
  cursor: pointer;
}

.cc-check-label:last-child {
  margin-bottom: 0;
}

.cc-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
  cursor: pointer;
}

.cc-range-slider {
  position: relative;
  height: 28px;
  margin: 10px 0 16px;
}

.cc-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #e8e8e8;
  border-radius: 10px;
  transform: translateY(-50%);
}

.cc-range-fill {
  position: absolute;
  height: 100%;
  background: var(--pink);
  border-radius: 10px;
  left: 0%;
  right: 0%;
}

.cc-range-min,
.cc-range-max {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  margin: 0;
  transform: translateY(-50%);
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.cc-range-min::-webkit-slider-thumb,
.cc-range-max::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
}

.cc-range-min::-moz-range-thumb,
.cc-range-max::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
}

.cc-range-max {
  z-index: 2;
}

.cc-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-family: var(--inter-font);
  color: var(--light-black);
}

.cc-color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 10px;
}

.cc-color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cc-color-swatch::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch-color);
  border: 2px solid #ddd;
  transition: border-color 0.3s, transform 0.3s;
}

.cc-color-swatch[data-color="white"]::before {
  border-color: #ccc;
}

.cc-color-swatch.is-active::before,
.cc-color-swatch:hover::before {
  border-color: var(--pink);
  transform: scale(1.08);
}

.cc-color-swatch span {
  font-size: 12px;
  font-family: var(--inter-font);
  color: var(--light-black);
}

.cc-size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-size-btn {
  min-width: 44px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s;
}

.cc-size-btn.is-active,
.cc-size-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.cc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.cc-product-grid.cc-list-view {
  grid-template-columns: 1fr;
  gap: 24px;
}

.cc-product-card {
  display: flex;
  flex-direction: column;
}

.cc-product-grid.cc-list-view .cc-product-card {
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.cc-product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f8f8f8;
}

.cc-product-grid.cc-list-view .cc-product-media {
  flex: 0 0 220px;
  aspect-ratio: 3 / 4;
}

.cc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.cc-product-card:hover .cc-product-media img {
  transform: scale(1.03);
}

.cc-product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
}

.cc-product-card:hover .cc-product-overlay,
.cc-product-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cc-add-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--black);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.cc-add-btn:hover {
  transform: scale(1.08);
  background: var(--pink);
  color: var(--white);
}

.cc-add-btn.is-added {
  background: var(--pink);
  color: var(--white);
}

.cc-min-qty {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--inter-font);
  text-align: center;
  padding: 0 16px;
  line-height: 1.4;
}

.cc-product-info {
  margin-top: 20px;
}

.cc-product-grid.cc-list-view .cc-product-info {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cc-product-info h4 {
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  font-family: "editotrial";
  text-transform: capitalize;
  margin-bottom: 8px;
}

.cc-product-info p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  font-family: "stevie";
}

.cc-product-info p b {
  font-family: var(--inter-font);
}

.cc-product-variant-meta {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.cc-product-variant-meta li {
  font-size: 13px;
  font-family: var(--inter-font);
  color: #666;
  line-height: 1.5;
}

.cc-empty-products {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 18px;
  font-family: var(--inter-font);
  color: var(--light-black);
  padding: 40px 16px;
}

.cc-pagination-wrap {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.cc-pagination-summary {
  margin: 0;
  font-size: 15px;
  font-family: var(--inter-font);
  color: var(--light-black);
  text-align: center;
}

.cc-pagination-summary strong {
  color: var(--black);
  font-weight: 600;
}

.cc-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.cc-page-item {
  flex-shrink: 0;
}

.cc-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  font-family: "stevie", var(--inter-font), sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}

.cc-page-link:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cc-page-item.is-active .cc-page-link {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  pointer-events: none;
}

.cc-page-item.is-disabled .cc-page-link {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cc-page-item.is-ellipsis .cc-page-link {
  border-color: transparent;
  background: transparent;
  min-width: 32px;
  padding: 0 6px;
  font-family: var(--inter-font);
  font-weight: 500;
}

.cc-page-prev,
.cc-page-next {
  padding: 0 18px;
}

.cc-page-label {
  font-size: 15px;
}

.cc-cart-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  bottom: auto;
  z-index: 9999;
  width: min(360px, calc(100vw - 32px));
  padding: 20px 44px 20px 20px;
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.cc-cart-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cc-cart-toast-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--light-black);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.cc-cart-toast-close:hover {
  color: var(--pink);
}

.cc-cart-toast-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  font-family: "stevie", var(--inter-font), sans-serif;
  color: var(--black);
}

.cc-cart-toast-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--inter-font);
  color: var(--light-black);
}

.cc-cart-toast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--pink);
  border: 2px solid var(--pink);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  font-family: "stevie", var(--inter-font), sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cc-cart-toast-link:hover {
  background: transparent;
  color: var(--pink);
}

/* Customize Design Page */
.cd-design-sec {
  background-color: var(--white);
  padding: 45px 0 90px;
}

.cd-breadcrumb {
  margin-bottom: 36px;
}

.cd-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 55px;
}

.cd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cd-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: #b0b0b0;
  background: var(--white);
  transition: all 0.3s;
}

.cd-step.is-active .cd-step-circle {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.cd-step-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "editotrial";
  color: #b5b5b5;
  text-transform: capitalize;
}

.cd-step.is-active .cd-step-label {
  color: var(--black);
}

.cd-step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin-top: 26px;
  min-width: 80px;
  max-width: 140px;
}

.cd-table {
  width: 100%;
}

.cd-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 180px;
  align-items: center;
  background: #2a211e;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 6px 6px 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--inter-font);
}

.cd-table-head .cd-col-products {
  text-align: left;
}

.cd-table-head .cd-col-moq,
.cd-table-head .cd-col-qty {
  text-align: center;
}

.cd-table-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.cd-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 180px;
  align-items: center;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 22px 28px;
  gap: 10px;
}

.cd-item-product {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.cd-item-img {
  flex-shrink: 0;
  width: 110px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e8;
}

.cd-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cd-item-details h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  font-family: "editotrial";
  margin-bottom: 10px;
  line-height: 1.2;
}

.cd-item-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.cd-item-meta li {
  font-size: 14px;
  font-family: var(--inter-font);
  color: #666;
  line-height: 1.6;
}

.cd-item-size-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cd-size-label {
  font-size: 14px;
  font-family: var(--inter-font);
  color: #666;
}

.cd-size-value {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-add-sizes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cd-add-sizes-label {
  font-size: 13px;
  font-family: var(--inter-font);
  color: #666;
}

.cd-add-size-btn {
  border: 1px solid var(--pink);
  background: #fff;
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--inter-font);
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cd-add-size-btn:hover {
  background: var(--pink);
  color: #fff;
}

.cd-add-size-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.cd-remove-btn {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-family: var(--inter-font);
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
}

.cd-remove-btn:hover {
  color: var(--pink);
}

.cd-item-moq,
.cd-item-qty {
  text-align: center;
}

.cd-moq-val {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-item-qty {
  position: relative;
  z-index: 2;
}

.cd-qty-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #e8e8e8;
  border-radius: 50px;
  padding: 8px 18px;
  min-width: 100px;
  position: relative;
  z-index: 2;
}

.cd-qty-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  padding: 0 4px;
  font-family: var(--inter-font);
  transition: color 0.3s;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.cd-qty-btn:hover {
  color: var(--pink);
}

.cd-qty-value {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--inter-font);
  color: var(--black);
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  -moz-appearance: textfield;
}

.cd-qty-value::-webkit-outer-spin-button,
.cd-qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cd-qty-value:focus {
  outline: none;
}

.cd-footer-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.cd-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: "stevie";
  transition: all 0.3s;
}

.cd-next-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.cd-item-row.is-removing {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s, transform 0.3s;
}

.cd-empty-state {
  text-align: center;
  padding: 48px 20px;
  font-family: var(--inter-font);
  color: #666;
  font-size: 16px;
}

.cd-step-panel[hidden] {
  display: none !important;
}

.cd-step-panel.is-active {
  display: block;
}

.cd-order-sheet {
  width: 100%;
}

.cd-order-notice {
  border: 1px solid var(--black);
  padding: 10px 14px;
  margin-bottom: 14px;
}

.cd-order-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-order-notice a {
  color: var(--black);
  text-decoration: underline;
}

.cd-order-instruction {
  margin: 0 0 18px;
  font-size: 14px;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-order-meta-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
  margin-bottom: 28px;
}

.cd-order-meta-fields p {
  margin: 0;
  font-size: 14px;
  font-family: var(--inter-font);
  color: var(--black);
  line-height: 1.6;
}

.cd-order-meta-value {
  font-style: normal;
  font-weight: 600;
  margin-left: 6px;
}

.cd-size-cell {
  text-align: center;
}

.cd-size-check {
  color: var(--pink);
  font-size: 16px;
}

.cd-size-dash {
  color: #999;
  font-family: var(--inter-font);
}

.cd-order-table-empty {
  text-align: center;
  padding: 32px 16px !important;
  font-family: var(--inter-font);
  color: #666;
}

.cd-order-table-empty a {
  color: var(--black);
  text-decoration: underline;
}

.cd-order-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--black);
}

.cd-order-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--white);
}

.cd-order-table th,
.cd-order-table td {
  border: 1px solid var(--black);
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-family: var(--inter-font);
  color: var(--black);
  vertical-align: middle;
  height: 38px;
}

.cd-order-table thead th {
  background: #f8d7e8;
  font-weight: 600;
  font-family: "editotrial", var(--inter-font), serif;
  font-size: 14px;
}

.cd-order-table th:nth-child(1),
.cd-order-table td:nth-child(1) {
  width: 9%;
}

.cd-order-table th:nth-child(2),
.cd-order-table td:nth-child(2) {
  width: 14%;
}

.cd-order-table th:nth-child(3),
.cd-order-table td:nth-child(3) {
  width: 12%;
}

.cd-order-table th:nth-child(n + 4):nth-child(-n + 9),
.cd-order-table td:nth-child(n + 4):nth-child(-n + 9) {
  width: 5%;
}

.cd-order-table th:nth-child(10),
.cd-order-table td:nth-child(10),
.cd-order-table th:nth-child(11),
.cd-order-table td:nth-child(11),
.cd-order-table th:nth-child(12),
.cd-order-table td:nth-child(12) {
  width: 8%;
}

.cd-footer-action--dual {
  gap: 16px;
  flex-wrap: wrap;
}

.cd-back-btn,
.cd-next-btn {
  border: none;
  cursor: pointer;
}

.cd-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: "stevie", var(--inter-font), sans-serif;
  transition: all 0.3s;
}

.cd-back-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.cd-next-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cd-confirm-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.cd-confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.cd-confirm-icon--success {
  background: var(--white);
  color: var(--pink);
  border: 3px solid var(--pink);
  font-size: 42px;
}

.cd-confirm-title {
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 600;
  font-family: "editotrial", serif;
  color: var(--black);
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.cd-confirm-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--inter-font);
  color: var(--light-black);
}

.cd-confirm-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.cd-confirm-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 22px 24px;
  background: #fafafa;
}

.cd-confirm-card-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  font-family: "editotrial", serif;
  color: var(--black);
  text-transform: capitalize;
}

.cd-confirm-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cd-confirm-meta-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  font-size: 15px;
  font-family: var(--inter-font);
}

.cd-confirm-meta-list li:last-child {
  border-bottom: none;
}

.cd-confirm-meta-list span {
  color: #666;
}

.cd-confirm-meta-list strong {
  color: var(--black);
  font-weight: 600;
  text-align: right;
}

.cd-confirm-products {
  margin-bottom: 28px;
}

.cd-confirm-products-head {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) 0.7fr 0.8fr 0.8fr 0.9fr;
  gap: 12px;
  align-items: center;
  background: #2a211e;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 6px 6px 0 0;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--inter-font);
}

.cd-confirm-products-head span:not(:first-child) {
  text-align: center;
}

.cd-confirm-products-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.cd-confirm-product-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) 0.7fr 0.8fr 0.8fr 0.9fr;
  gap: 12px;
  align-items: center;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 18px 24px;
}

.cd-confirm-product-row > span {
  text-align: center;
  font-size: 15px;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-confirm-product-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cd-confirm-product-img {
  flex-shrink: 0;
  width: 72px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: #e8e8e8;
}

.cd-confirm-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-confirm-product-info h5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  font-family: "editotrial", serif;
  color: var(--black);
  line-height: 1.2;
}

.cd-confirm-product-info p {
  margin: 0;
  font-size: 13px;
  font-family: var(--inter-font);
  color: #666;
  line-height: 1.5;
}

.cd-confirm-notice {
  border: 1px solid var(--black);
  padding: 12px 16px;
  margin-bottom: 20px;
}

.cd-confirm-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-confirm-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 36px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  font-family: var(--inter-font);
  color: var(--black);
}

.cd-confirm-agree input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--pink);
  flex-shrink: 0;
}

.cd-confirm-success {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 10px;
}

.cd-confirm-success .cd-footer-action {
  margin-top: 36px;
}

/* Sunburst Collection Page */
.sc-collection-sec {
  background-color: var(--white);
  padding: 42px 0 70px;
}

.sc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--inter-font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #888;
  text-transform: capitalize;
}

.sc-breadcrumb a {
  color: #888;
  transition: color 0.3s;
}

.sc-breadcrumb a:hover {
  color: var(--pink);
}

.sc-breadcrumb-current {
  color: var(--black);
  font-weight: 500;
}

.sc-breadcrumb-sep {
  color: #aaa;
}

.sc-breadcrumb-line {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 22px 0 48px;
}

.sc-categories-title {
  margin-bottom: 48px;
}

.sc-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.sc-category-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.sc-category-card.is-hidden {
  display: none;
}

.sc-category-media {
  position: absolute;
  inset: 0;
}

.sc-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.sc-category-card:hover .sc-category-media img {
  transform: scale(1.04);
}

.sc-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.sc-category-name {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  font-family: "editotrial";
  text-transform: capitalize;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.1;
}

.sc-category-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.sc-category-card:hover .sc-category-arrow {
  background: var(--white);
  transform: translate(2px, -2px);
}

.sc-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.sc-load-more-btn {
  border: none;
  background-color: var(--pink);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  font-family: "stevie";
  padding: 14px 42px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.sc-load-more-btn:hover {
  background-color: var(--black);
}

.sc-load-more-btn.is-hidden {
  display: none;
}

.sc-promo-sec {
  position: relative;
  background-color: #fff2f7;
  padding: 70px 0 90px;
  overflow: hidden;
}

.sc-promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px) 1fr;
  align-items: center;
  gap: 20px;
  min-height: 420px;
}

.sc-promo-model {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.sc-promo-model img {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.sc-promo-card {
  background: var(--white);
  text-align: center;
  padding: 42px 36px 38px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 3;
}

.sc-promo-label {
  font-size: 28px;
  font-family: "editotrial";
  color: var(--black);
  margin-bottom: 12px;
}

.sc-promo-off {
  font-size: 52px;
  font-weight: 600;
  font-family: "editotrial";
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1;
}

.sc-promo-note {
  font-size: 15px;
  font-family: var(--inter-font);
  color: #777;
  font-weight: 400;
}

.sc-promo-ring {
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border: 28px solid var(--pink);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Other Pages Css Start */
 
.privacy-content {
  background-color: var(--white);
  padding: 100px 0;
}
 
.privacy-wrapper {
  margin-bottom: 35px;
}
 
.privacy-heading {
  color: var(--black);
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  font-family: "editotrial";
  text-transform: capitalize;
}
 
.privacy-para {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--inter-font);
  margin-bottom: 15px;
}
 
.privacy-heading-mini {
  color: var(--black);
  font-size: 28px;
  font-weight: bold;
  font-family: "editotrial";
  text-transform: capitalize;
  margin-top: 40px;
}
 
.privacy-wrapper ul {
    margin: 26px 0;
}
 
.privacy-wrapper ul li {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--inter-font);
    margin-bottom: 15px;
    list-style-type: disc;
}
 
.privacy-para a {
  color: var(--pink);
  text-decoration: none;
}
 
.custom-tier-box {
  width: calc(100% / 4 - 10px);
}
 
.faqs-sec-2 {
  padding: 100px 0 !important;
}
