.marketplace * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  text-decoration: none;
}

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

a:hover {
  text-decoration: none;
}

.marketplace img {
  display: block;
  width: 100%;
  height: auto;
}

:root {
  --gradient: linear-gradient(
    90deg,
    #e63353 0%,
    #bc637b 30%,
    #998d9d 55%,
    #80abb6 75%,
    #70bdc5 90%,
    #6bc4cb 100%
  );
}

.marketplace {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  font-family: "Cabin", sans-serif;
  background-color: white;
}

/* Header */
.marketplace-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  /* padding: 10px 20px; */
  height: 70px;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.marketplace-header .header__inner {
  display: flex;
  gap: 43px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.marketplace-header .header__inner .header__logo {
  gap: 43px;
  margin-top: 10px;
}
/* Mobile layout adjustments */
@media screen and (max-width: 768px) {
  .marketplace-header .header__inner {
    justify-content: space-between;
    /* gap: 15px; */
    gap: 5px;
  }
  
  .marketplace-header .header__inner .header__logo {
    padding: 5px;
    flex: 1;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .marketplace-header .header__inner .header__logo .redirect_homepage_btn {
    font-size: 8px;
    line-height: 20px;
    padding: 0 8px;
  }
  
  /* Mobile user menu positioning */
  .marketplace-header .header__inner .auth_btn.d-md-none {
    order: 3;
    margin-left: auto;
  }
  
  /* Mobile user menu dropdown */
  .mobile-user-dropdown {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-user-dropdown.show {
    transform: translateX(0);
  }
  
  .mobile-user-dropdown-content {
    padding: 20px;
  }
  
  .mobile-user-info {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .mobile-user-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
  }
  
  .mobile-user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .mobile-user-actions .btn {
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .mobile-user-actions .btn-ec-regular {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
  }
  
  .mobile-user-actions .btn-ec-sub {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
  }
}

.marketplace-header .header__inner .c-headerBar__userMenu {
  width: auto;
  height: auto;
}

.marketplace-header .header__inner .header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketplace-header .header__inner .header__logo .images {
  flex-basis: content;
}

.marketplace-header .header__inner .header__logo .logo__image,
.marketplace-header .header__inner .header__logo .logo__text {
  width: 126px;
}

.marketplace-header .header__logo .logo > a {
  display: flex;
  width: 100%;
}

.marketplace-header .header__logo .logo > a > img {
  display: block;
  width: 126px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
}

.marketplace-header .header__text {
  display: flex;
  align-items: center;
}

.logo__image {
  display: block;
  width: 100%;
}

.marketplace-header .header__inner .redirect_homepage_btn {
  display: flex;
  height: fit-content;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 9px;
  line-height: 24px;
  background-color: #fed80e;
  border-radius: 16px;

  @media screen and (min-width: 519px) {
    font-size: 16px;
    line-height: 30px;
  }
}

.marketplace-header .header__inner .redirect_homepage_btn:hover {
  opacity: 0.8;
  color: inherit;
  transition: opacity 0.2s ease-in-out;
}

.marketplace-header .header__inner .auth_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
}

/* Show mobile user menu on mobile */
@media screen and (max-width: 768px) {
  .marketplace-header .header__inner .auth_btn.d-md-none {
    display: flex;
  }
}

.marketplace-header .header__inner .auth_btn > span {
  font-size: 16px;
  line-height: 45px;
  font-weight: 500;
  color: #2f3f4e;
}

.marketplace-header .header__inner .auth_btn > img {
  display: block;
  width: 33px;
  height: 33px;
  margin: 5px;
}

@media screen and (max-width: 1025px) {
  .marketplace-header .header__inner > div:first-child {
    width: 100%;
  }
  .marketplace-header .header__inner > div:first-child h1 {
    margin-left: 0;
  }
  .marketplace-header .header__inner .auth_btn {
    display: none;
  }

  /* .marketplace-header .header__inner .redirect_homepage_btn {
    font-size: 10px;
    line-height: 28px;
    padding: 0 10px;
  } */

  .marketplace-header .header__inner .logo__image {
    width: 120px;
    height: 34px;
  }
}
/* Responsive Header */
@media screen and (max-width: 768px) {
  .marketplace-header .header__inner > div:first-child {
    width: 100%;
  }
  .marketplace-header .header__inner > div:first-child h1 {
    margin-left: 0;
  }
  .marketplace-header .header__inner .logo__image {
    width: 100px;
    height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .marketplace-header .header__inner .header__logo .logo__image,
  .marketplace-header .header__inner .header__logo .logo__text {
    width: 80px;
  }

  .marketplace-header .header__inner .logo__image {
    width: 80px;
    height: 24px;
  }
}

@media screen and (max-width: 354px) {
  .marketplace-header .header__inner .header__logo .logo__image,
  .marketplace-header .header__inner .header__logo .logo__text {
    width: 60px;
  }

  .marketplace-header .header__inner .logo__image {
    width: 60px;
    height: 18px;
  }
}

/* End Header */

/* Banner */
.banner {
  background: url("/html/template/default/assets/img/marketplace/bg_banner_marketplace.png")
    no-repeat center center / cover;
  width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  margin-top: 70px;
}

.banner .banner__text {
  background-color: white;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50%;
}

.marketplace .banner__text .banner__text--title {
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.banner .banner__text .banner__text--logo {
  display: inline-block;
  width: 140px;
  height: 43px;
}

.marketplace .banner .banner__text .banner__text--highlight {
  font-weight: 700;
}

.marketplace .banner .banner__text .banner__text--highlight.fee-text {
  display: inline-block;
  padding: 4px 16px;
  background-color: #efefef;
  font-size: 10px;
}

.marketplace .banner .banner__text .banner__text--highlight.fee-per-month {
  color: #e73253;
}

.marketplace .banner .banner__text .sell-now {
  display: inline-block;
  width: 80%;
  font-size: 26px;
  line-height: 35px;
  font-weight: 700;
  text-align: center;
}

.marketplace .register-seller-btn,
.btn-gradient {
  position: absolute;
  top: 18px;
  display: flex;
  align-items: center;
  padding: 4px 0;
  justify-content: center;
  width: 220px;
  background: var(--gradient);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, opacity 0.2s;
}

.marketplace .register-seller-btn .cta-text,
.btn-gradient .cta-text {
  flex: 0 0 75%;
}

.marketplace .register-seller-btn > div,
.btn-gradient > div {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  padding: 10px 8px;
  border-left: 2px solid rgba(0, 102, 122, 0.3);
}

.marketplace .register-seller-btn .cta-arrow,
.btn-gradient .cta-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #fff;
}
.marketplace .register-seller-btn:hover,
.btn-gradient:hover {
  opacity: 0.92;
}

@media screen and (min-width: 1023px) {
  .banner {
    flex-direction: row;
    justify-content: center;
  }
  .banner .banner__text {
    width: 440px;
    height: 440px;
    padding: 20px;
    gap: 12px;
  }
  .marketplace .banner__text .banner__text--title {
    font-size: 30px;
  }
  .banner .banner__text .banner__text--logo {
    width: 200px;
    height: 60px;
  }
  .marketplace .banner .banner__text .banner__text--highlight.sell-now {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
  }
  .marketplace .banner .banner__text .banner__text--highlight.fee-text {
    font-size: 24px;
  }
  .banner .banner__cta.register-seller-btn {
    width: 320px;
    padding: 8px 0;
  }
  .banner .banner__cta.register-seller-btn .cta-text {
    flex: 0 0 80%;
    font-size: 27px;
  }
  .marketplace .register-seller-btn > div {
    flex: 0 0 20%;
    padding: 8px;
  }
}

/* End Banner */

/* Services */
.marketplace .service-overview {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.marketplace .service-overview .service-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px; /* Kích thước vòng tròn */
  height: 80px;
  padding: 20px;
  background-color: #6bc5cb; /* Màu xanh ngọc tương tự hình ảnh */
  color: #fff;
  font-size: 6px;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box; /* Đảm bảo padding không làm tăng kích thước tổng thể */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%; /* Tạo hình tròn */

  @media screen and (min-width: 519px) {
    width: 160px;
    height: 160px;
    font-size: 14px;
  }
}

.marketplace .service-stars {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;

  @media screen and (min-width: 519px) {
      margin-top: 20px;
  }
}

.marketplace .service-stars img {
  width: 109px;
  height: 27px;
}

/* Suggest Best Sell */
.marketplace .promo-badge {
  position: relative;
  width: 300px;
  margin-bottom: 23px;
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  background-color: #e63353;
  border-radius: 50px;
  color: #fff;

  @media screen and (max-width: 519px) {
      margin-bottom: 0;
  }
}

.marketplace .promo-badge::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 38px solid transparent;
  border-left: 51px solid #e63353;
  bottom: -23px;
  right: 28px;
  transform: skew(-10deg);
}

.marketplace .best-sell-products {
  min-height: 233px;
  margin-top: 31px;
  background-color: #6bc5cb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.marketplace .best-sell-products .left-side div {
  display: block;
  width: auto;
  height: auto;
  object-fit: fill;
  object-position: center;
}

@media screen and (min-width: 575px) {
  .marketplace .best-sell-products .left-side div {
    width: 259px;
  }
}

@media screen and (min-width: 767px) {
  .marketplace .best-sell-products {
    gap: 30px;
  }
  .marketplace .best-sell-products .left-side div {
    width: 600px;
    height: 500px;
  }
  .marketplace .best-sell-products .left-side div img {
    width: 100%;
    height: 100%;
    object-position: center;
  }
}
@media screen and (min-width: 1023px) {
  .marketplace .best-sell-products .left-side {
    flex: 0 0 0;
  }
  .marketplace .best-sell-products .left-side div {
    width: 758px;
    height: 504px;
  }
}
.marketplace .best-sell-products .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.marketplace .best-sell-products .right-side img {
  height: 100%;
}
.marketplace .best-sell-products .right-side div:first-child {
  width: 105px;
  height: 92px;
}
.marketplace .best-sell-products .right-side div:last-child {
  margin-top: 20px;
  width: 74px;
  height: 96px;
}
@media screen and (min-width: 767px) {
  .marketplace .best-sell-products .right-side div:first-child {
    width: 100%;
    height: 237px;
  }
  .marketplace .best-sell-products .right-side div:last-child {
    width: 100%;
    height: 250px;
  }
}

/* @media screen and (min-width: 575px) {
  .marketplace .service-overview .service-item {
    width: 90px;
    height: 90px;
    font-size: 11px;
  }
} */

@media screen and (min-width: 768px) {
  .marketplace .service-overview {
    padding-top: 40px;
    gap: 25px;
  }
  .marketplace .service-overview .service-item {
    width: 240px;
    height: 240px;
    font-size: 24px;
  }
  .marketplace .service-stars img {
    width: 280px;
    height: 70px;
  }
  .marketplace .promo-badge {
    width: 600px;
    font-size: 40px;
    line-height: 54px;
    bottom: -23px;
  }
  .marketplace .promo-badge::after {
    right: 100px;
  }

  .marketplace
    .best-sell-products
    .best-sell-products__content
    > div:first-child,
  .marketplace
    .best-sell-products
    .best-sell-products__content
    > div:last-child {
    max-height: 250px;
  }
}

@media screen and (min-width: 1023px) {
  .marketplace .service-overview .service-item {
    width: 320px;
    height: 320px;
    font-size: 38px;
  }

  .marketplace .promo-badge {
    width: 700px;
    font-size: 40px;
    line-height: 54px;
  }

  .marketplace .promo-badge::after {
    border-bottom: 38px solid transparent;
    border-left: 51px solid #e63353;
    right: 150px;
  }
}
/* End Suggest Best Sell */

/* Customer awareness */
.marketplace .customer-awareness {
  display: flex;
  flex-direction: column;
  gap: 34px;

  @media screen and (min-width: 767px) {
    padding-top: 60px;
  }
}

.marketplace .customer-awareness .customer-awareness__title h2 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  background: #d9dfff;
  padding: 8px 0;

  @media screen and (min-width: 575px) {
    font-size: 18px;
  }

  @media screen and (min-width: 767px) {
    font-size: 30px;
    line-height: 42px;
  }

  @media screen and (min-width: 1024px) {
    font-size: 45px;
    line-height: 90px;
  }
}

.marketplace .customer-awareness .customer-awareness__content {
  display: flex;
  height: 100%;
  justify-content: center;
}

.gender-percentage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;

  @media screen and (min-width: 767px) {
    width: 80%;
  }
}
.gender-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 40%;
  height: 100px;

  @media screen and (min-width: 575px) {
    width: 50%;
    height: 200px;
  }
}
.label {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  top: 0;

  @media screen and (min-width: 767px) {
    font-size: 36px;
  }
}
.percentage__number {
  font-weight: bold;
  line-height: 0.8;
  bottom: 0;
}

.male .percentage__number {
  font-size: 60px;
  color: #2b8bd2;
  left: -10%;

  @media screen and (min-width: 575px) {
    font-size: 120px;
  }

  @media screen and (min-width: 767px) {
    font-size: 120px;
    left: 10%;
  }
}
.male .percentage__number span {
  font-size: 30px;
  @media screen and (min-width: 767px) {
    font-size: 55px;
  }
}
.female .percentage__number {
  font-size: 90px;
  color: #ed3259;
  right: -10%;
  @media screen and (min-width: 575px) {
    font-size: 120px;
  }
  @media screen and (min-width: 767px) {
    font-size: 170px;
    right: 0;
  }
}
.female .percentage__number span {
  font-size: 30px;
  @media screen and (min-width: 767px) {
    font-size: 55px;
  }
}
.gender-percentage .divider {
  height: 100%;
  width: 1.5px;
  background-color: #666;
  margin: 0 40px;
  transform: rotate(15deg);
}

/* End Customer awareness */

/* No.1 Badges */
.no1-badges-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

  @media screen and (min-width: 767px) {
    gap: 44px;
  }
}

.no1-badges {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
  @media screen and (min-width: 767px) {
    gap: 24px;
  }
}

.no1-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 3 - 10px);
  height: fit-content;
  margin-top: 20px;
  padding: 8px;
  transition: box-shadow 0.2s, border 0.2s;
  background: #fff;
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.25);
  @media screen and (min-width: 767px) {
    width: calc(100% / 3 - 24px);
    max-height: fit-content;
    padding: 10px;
  }

  @media screen and (min-width: 1023px) {
    max-width: 375px;
    padding: 16px;
  }
}

.no1-badge__img {
  width: 101px;
  height: auto;
  margin-bottom: 5px;
  margin-top: 8px;
  object-fit: contain;
  object-position: center;

  @media screen and (min-width: 767px) {
    width: 150px;
    margin-bottom: 10px;
    margin-top: 16px;
  }

  @media screen and (min-width: 1023px) {
    width: 255px;
    height: 255px !important;
    margin-bottom: 15px;
    margin-top: 20px;
  }
}

.no1-badge__text {
  font-size: 11px;
  color: #222;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  max-height: 389px;
  letter-spacing: 0.5px;
  white-space: normal; 
  word-break: break-word; 
  overflow-wrap: break-word;

  @media screen and (min-width: 575px) {
    font-size: 16px;
  }

  @media screen and (min-width: 767px) {
    font-size: 20px;
    line-height: 1.5;
  }

  @media screen and (min-width: 1023px) {
    font-size: 30px;
    line-height: 1.6;
  }
}

/* End Customer awareness */

/*  */
.buzzdrop-features {
  padding: 33px 0 33px 0;
  @media screen and (min-width: 767px) {
    padding: 121px 0 33px 0;
  }
}
.buzzdrop-features__header {
  background: #d9dfff;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 8px 0 8px 0;
  letter-spacing: 1px;

  @media screen and (min-width: 575px) {
    font-size: 18px;
    line-height: 28px;
  }

  @media screen and (min-width: 767px) {
    font-size: 30px;
    line-height: 42px;
  }

  @media screen and (min-width: 1024px) {
    font-size: 45px;
    line-height: 90px;
  }
}
.buzzdrop-features__header--highlight {
  font-weight: bold;
  font-size: 18px;

  @media screen and (min-width: 767px) {
    font-size: 45px;
    line-height: 90px;
  }
}
.buzzdrop-features__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 10px 0 10px;

  @media screen and (min-width: 1023px) {
    padding: 55px 100px 0 120px;
    gap: 45px;
  }
}
.buzzdrop-point {
  display: flex;
  align-items: center;
  height: 58px;
  background: #fff;
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.25);
  position: relative;

  @media screen and (min-width: 767px) {
    height: 150px;
  }
}
.buzzdrop-point__label {
  display: flex;
  width: 102px;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding-right: 10px;
  background: #6bc4cb;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);

  @media screen and (min-width: 767px) {
    width: 261px;
    height: 100%;
    font-size: 50px;
  }
}
.buzzdrop-point__content {
  font-size: 9px;
  line-height: 16px;
  font-weight: 600;
  color: #222;
  flex: 1;

  @media screen and (min-width: 575px) {
    font-size: 11px;
  }

  @media screen and (min-width: 767px) {
    font-size: 26px;
    line-height: 36px;
  }
}
.buzzdrop-point__arrow {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #b2e6e9;
  margin-right: 16px;
  margin-left: 8px;

  @media screen and (min-width: 767px) {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 30px solid #b2e6e9;
    margin-right: 24px;
    margin-left: 16px;
  }
}
.buzzdrop-features__catch {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #222;
  padding: 40px 16px;

  @media screen and (min-width: 767px) {
    font-size: 32px;
    line-height: 48px;
    padding: 80px 0;
  }
}

.buzzdrop-features__logo--highlight {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 6px;
}

.buzzdrop-features__logo--highlight img {
  width: 100px;
  height: auto;
  max-height: 40px;

  @media screen and (min-width: 767px) {
    width: 140px;
    max-height: 80px;
  }
}


.buzzdrop-features__cost {
  width: fit-content;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  background-color: #efefef;
  margin: 0 auto;
  padding: 4px 38px 5px 24px;
  margin-bottom: 31px;

  @media screen and (min-width: 767px) {
    font-size: 55px;
    margin-bottom: 69px;
  }
}
.buzzdrop-features__cost--highlight {
  color: #e63353;
  font-size: 24px;
  font-weight: 700;
  margin-left: 6px;

  @media screen and (min-width: 767px) {
    font-size: 55px;
    font-weight: bold;
    margin-left: 12px;
  }
}
.buzzdrop-features__cta {
  margin-top: 31px;
  display: flex;
  justify-content: center;
}

.buzzdrop-features__cta-btn {
  top: 0;
  position: unset;
  @media screen and (min-width: 767px) {
    width: 620px;
  }
}

.buzzdrop-features__cta-btn .cta-text {
  @media screen and (min-width: 767px) {
    font-size: 37px;
    font-size: 700;
    line-height: 98px;
  }
}

.buzzdrop-features__cta-btn .cta-arrow {
  @media screen and (min-width: 767px) {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 32px solid #fff;
  }
}

/* Footer */
.buzzdrop-footer {
  width: 100%;
  background: #fff;
  padding: 69px 0 1px 0;
  text-align: center;
}

.buzzdrop-footer__links {
  margin-bottom: 18px;
}

.buzzdrop-footer__links > div {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 6px;

  @media screen and (min-width: 767px) {
    gap: 32px;
    margin-bottom: 12px;
  }
}

.buzzdrop-footer__links a {
  color: #111;
  font-size: 12px;
  line-height: 40px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;

  @media screen and (min-width: 767px) {
    font-size: 18px;
    line-height: 50px;
  }
}

.buzzdrop-footer__links a:hover {
  color: #e63353;
}

.buzzdrop-footer__logo {
  margin: 18px 0 10px 0;
}

.buzzdrop-footer__logo-text {
  font-family: "Cabin", sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #e63353 0%, #6bc4cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 0 #222, 0 2px 8px rgba(0, 0, 0, 0.1);
}

.buzzdrop-footer__copyright {
  font-size: 17px;
  color: #111;
  margin-top: 8px;
  margin-bottom: 89px;
}
/* End Footer */

/* Modals */

/* Registration Success Modal */

.registration-success-modal {
  min-width: 700px;
}

.modal {
  z-index: 1050;
}

.registration-success-modal .modal-content {
  position: relative;
  width: 100% !important;

  @media screen and (min-width: 575px) {
    width: unset;
  }
}

.registration-success-modal .modal-header-close,
.store_opening_success_modal .modal-header-close {
  position: absolute;
  top: 19px;
  right: 19px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #5f5f5f !important;
  border-radius: 50%;
  border: 1px solid #ccc; 
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.registration-success-modal .modal-header-close ,
.store_opening_success_modal .modal-header-close {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.registration-success-modal .modal-header-close:focus,
.store_opening_success_modal .modal-header-close:focus {
  outline: none;
}

.modal-dialog-centered {
}
.modal-content {
  padding: 43px 0 55px 0;
}
.modal-header {
  border-bottom: unset;
  justify-content: center;
}
.modal-title {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;

  @media screen and (min-width: 575px) {
    font-size: 25px;
  }
}
.close {
}
.model-header-close {
}
.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.registration-success-modal__image--firework {
  display: block;
  width: 327px;
  height: 163px;
}
.registration-success-modal__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;

  @media screen and (min-width: 575px) {
    font-size: 20px;
  }
}
.registration-success-modal__text span {
  text-align: center;
}

.modal-header-review {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #dee2e6;
  background-color: #f9fafb;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.modal-header-review .modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.modal-header-review .close {
  font-size: 1.5rem;
  line-height: 1;
  color: #6c757d;
  opacity: 0.8;
  transition: all 0.2s;
  border: none;
  background: transparent;
}
.modal-header-review .close:hover {
  color: #000;
  opacity: 1;
  transform: scale(1.1);
}
.modal-header-review .close:focus {
  outline: none;
}

.modal-footer-review {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
}
.modal-footer-review .btn {
  min-width: 100px;
  border-radius: 6px;
  font-weight: 500;
}
.btn-ec-sub {
  background-color: #f1f1f1;
  color: #333;
  border: 1px solid #ccc;
}
.btn-ec-sub:hover {
  background-color: #e2e2e2;
}
.btn-ec-delete {
  background-color: #dc3545;
  color: white;
  border: none;
}
.btn-ec-delete:hover {
  background-color: #c82333;
}

.modal-footer {
  border-top: unset;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.modal-footer button {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;

  @media screen and (min-width: 575px) {
    font-size: 20px;
    padding: 10px 20px;
  }
}

.modal-footer button:first-child {
  display: flex;
  justify-content: center;
  width: 350px;
  background-color: #e73253;
}

.modal-footer button:first-child:hover {
  opacity: 0.6;
}

.modal-footer button:last-child {
  display: flex;
  justify-content: center;
  width: 165px;
  background-color: transparent;
  border: 2px solid #e73253;
  color: #e73253;
}

.store_opening_success_modal .modal-content .modal-footer button:first-child {
  width: 50%;
  text-align: center;

  @media screen and (min-width: 575px) {
    width: 350px;
  }
}

.header__inner .c-headerBar {
  width: 100%;
  height: 65px;
  color: #fff;
  background: #2f3f4e;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  z-index: 1000;
}
.c-headerBar a {
  color: #fff;
}
.c-headerBar a:hover {
  color: #fff;
  text-decoration: none;
}
.c-headerBar__container {
  display: table;
  width: 100%;
  max-width: 2500px;
}
.c-headerBar__logo {
  display: table-cell;
  padding: 0 20px;
  width: 200px;
  height: 65px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c-headerBar__logo img {
  /* width: 172px; */
  /* height: 25px;  */
  width: auto;
  height: 40px;
}
.c-headerBar__toggleBtn {
  display: none;
  padding: 0 20px;
  width: 65px;
  height: 65px;
  font-size: 30px;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
}

/* Show toggle button on mobile for marketplace header */
.marketplace-header .c-headerBar__toggleBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: #2f3f4e;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.marketplace-header .c-headerBar__toggleBtn:hover {
  background-color: rgba(47, 63, 78, 0.1);
}

/* Mobile menu styles */
@media screen and (max-width: 767px) {
  .c-mainNavArea {
    position: fixed;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .c-mainNavArea.show {
    left: 0;
  }
  
  .c-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .c-curtain.show {
    opacity: 1;
    visibility: visible;
  }
  
  /* Ensure nav items are properly styled in mobile */
  
  .c-mainNavArea .c-mainNavArea__nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .c-mainNavArea .c-mainNavArea__navItem {
    border-bottom: 1px solid #eee;
  }
  
  .c-mainNavArea .c-mainNavArea__navItemTitle {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }
  
  .c-mainNavArea .c-mainNavArea__navItemTitle:hover {
    background-color: #f8f9fa;
    color: #333;
  }
  
  .c-mainNavArea .c-mainNavArea__navItemTitle i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .c-mainNavArea .c-mainNavArea__navItem ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
  }
  
  .c-mainNavArea .c-mainNavArea__navItem ul li a {
    padding: 12px 20px 12px 50px;
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .c-mainNavArea .c-mainNavArea__navItem ul li a:hover {
    background-color: #e9ecef;
    color: #333;
  }
  
  .c-mainNavArea .c-mainNavArea__navItem ul li a.is-active {
    background-color: #e63353;
    color: #fff;
  }
}
.c-headerBar__toggleBtn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.c-headerBar__shopTitle {
  display: table-cell;
  padding: 0 20px;
  height: 65px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
.c-headerBar__shopTitle:hover {
  background: rgba(255, 255, 255, 0.15);
}
.c-headerBar__shopTitle .fa-angle-right {
  padding-left: 15px;
  font-size: 21px;
}
.c-headerBar__userMenu {
  display: table-cell;
  padding: 0 20px;
  width: 170px;
  height: 65px;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}
.c-headerBar__userMenu:hover {
  background: rgba(255, 255, 255, 0.15);
}
.c-headerBar__userMenu span {
  font-weight: bold;
  vertical-align: middle;
}
.c-headerBar__userMenu .fa-angle-down {
  padding-left: 10px;
  font-size: 24px;
  vertical-align: middle;
}
.c-headerBar__userMenu .fa-user-circle {
  padding-right: 10px;
  font-size: 34px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .marketplace-header .header__inner .c-headerBar__userMenu {
    width: auto;
    height: auto;
    display: none;
  }
}

/*  */
.modal-footer-product-updated button {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;

  @media screen and (min-width: 575px) {
    font-size: 20px;
    padding: 10px 20px;
  }
}

.modal-footer-product-updated button:first-child {
  width: 300px;
  background-color: #e73253;
}

.modal-footer-product-updated button:first-child:hover {
  opacity: 0.6;
}

.modal-footer-product-updated button:last-child {
  width: 270px;
  background-color: transparent;
  border: 2px solid #e73253;
  color: #e73253;
}
.modal-footer-product-updated{
  border-top: unset;
  display: flex;
  justify-content: center;
  gap: 8px;
}
/*  */
.modal-footer-product-created button {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;

  @media screen and (min-width: 575px) {
    font-size: 20px;
    padding: 10px 20px;
  }
}

.modal-footer-product-created button:first-child {
  width: 250px;
  background-color: #e73253;
}

.modal-footer-product-created button:first-child:hover {
  opacity: 0.6;
}

.modal-footer-product-created button:last-child {
  width: 270px;
  background-color: transparent;
  border: 2px solid #e73253;
  color: #e73253;
}
.modal-footer-product-created{
  border-top: unset;
  display: flex;
  justify-content: center;
  gap: 8px;
}
/* End of Progress Bar Styling */

.custom-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999 !important;
  overflow: hidden;
}

.custom-modal {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.custom-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.firework-img {
  width: 80%;
  margin: 15px 0;
}

.custom-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.custom-modal-button {
  border: 1px solid #e73253;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 20px;
  color: #e73253;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-modal-button:hover {
  background-color: #e73253;
}
.business-days {
  font-weight: bold;
}
.custom-modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: #808080;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.custom-modal-close:hover {
  background: #666;
}
.btn-bg-red-text-wt{
  color: #fff;
  background-color: #e73253;
  border: 1px solid #e73253;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-bg-red-text-wt:hover{
  background-color: #fff;
  color: #e73253;
}

body.modal-lock {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    @media (min-width: 768px) {
  .custom-modal {
    width: 80%;
    max-width: 600px;
    padding: 40px 30px;
  }

  .custom-modal-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .firework-img {
    width: 90%;
    margin: 20px 0;
  }

  .custom-modal-button {
    font-size: 17px;
  }

  .custom-modal-close {
    width: 36px;
    height: 36px;
  }
}

.p-0{
  padding: 0;
}
.btn-border{
  border: 1px solid grey;
  padding: 10px 20px;
  border-radius: 5px;
}
