/* Campanie 2 Hero Section Styles */

.campanie-hero-wrapper {
  padding-top: 109px;
  position: relative;
  overflow: hidden;
}

.campanie-hero-image-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.campanie-hero-image-mobile {
  display: none;
}

.campanie-hero-image-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

/* Main Container */
.campanie-hero-container {
  width: 980px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
}

/* Header Section */
.campanie-hero-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  align-self: stretch;
  position: relative;
  width: 100%;
}

.campanie-hero-title {
  font-size: 54px;
  line-height: 65px;
  text-align: center;
  color: white;
  font-weight: bold;
  margin: 0;
}

.campanie-hero-subtitle {
  opacity: 0.7;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
  color: #e1e6ea;
  margin: 0;
  max-width: 90%;
}

/* Features Row */
.campanie-hero-features {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  width: 980px;
}

.campanie-hero-feature-item {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  width: 100%;
}

.campanie-hero-feature-image {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campanie-hero-feature-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.campanie-hero-feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  position: relative;
}

.campanie-hero-feature-title {
  font-size: 19px;
  line-height: 23px;
  color: white;
  font-weight: 500;
  margin: 0;
}

.campanie-hero-feature-desc {
  opacity: 0.7;
  font-size: 15px;
  line-height: 18px;
  color: #f6f8fa;
  font-weight: normal;
  margin: 0;
}

.campanie-hero-feature-rating {
  opacity: 0.7;
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
}

.campanie-hero-divider-vertical {
  opacity: 0.2;
  width: 1px;
  height: 100%;
  background-color: white;
}

.campanie-hero-divider-horizontal {
  opacity: 0.2;
  width: 100%;
  height: 1px;
  background-color: white;
}

/* Promo Row */
.campanie-hero-promo-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  width: 100%;
}

/* Info Boxes */
.campanie-hero-info-box {
  overflow: hidden;
  border-radius: 5px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  width: 100%;
  height: 92px;
  background-color: rgba(255, 255, 255, 0.1);
}

.campanie-hero-info-title {
  font-size: 17px;
  line-height: 20px;
  color: white;
  font-weight: bold;
  margin: 0;
}

.campanie-hero-info-divider {
  opacity: 0.2;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.campanie-hero-info-desc {
  opacity: 0.7;
  font-size: 15px;
  line-height: 18px;
  color: white;
  margin: 0;
}

/* Coupon Box */
.campanie-hero-coupon-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 328px;
}

.campanie-hero-coupon-outer {
  border-radius: 5px;
  padding: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  width: 100%;
  background-color: #003426;
}

.campanie-hero-coupon-inner {
  overflow: hidden;
  border-radius: 3px;
  border: 3px dashed #00af66;
  padding: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: relative;
  width: 100%;
  background-color: #004130;
  box-sizing: border-box;
}

.campanie-hero-coupon-text {
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}

.campanie-hero-coupon-text-white {
  color: #f6f8fa;
  font-weight: bold;
}

.campanie-hero-coupon-text-green {
  color: #00af66;
  font-weight: bold;
}

/* CTA Button */
.campanie-hero-cta-button {
  overflow: hidden;
  border-radius: 50px;
  padding: 15px 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #f95632;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.campanie-hero-cta-button:hover {
  background-color: #e04522;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 86, 50, 0.3);
}

.campanie-hero-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.campanie-hero-cta-title {
  font-size: 21px;
  line-height: 25px;
  color: white;
  margin: 0;
}

.campanie-hero-cta-subtitle {
  opacity: 0.7;
  font-size: 13px;
  line-height: 16px;
  color: white;
  font-weight: bold;
  margin: 0;
}

.campanie-hero-cta-arrow {
  width: 16px;
  height: 14px;
  flex-shrink: 0;
}

/* Guarantee Section */
.campanie-hero-guarantees {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  position: relative;
  justify-content: center;
  width: 100%;
}

.campanie-hero-guarantee-item {
  display: flex;
  gap: 7px;
  align-items: center;
  position: relative;
}

.campanie-hero-guarantee-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.campanie-hero-guarantee-text {
  font-size: 15px;
  line-height: 18px;
  color: white;
  font-weight: normal;
  margin: 0;
}

.campanie-hero-guarantee-divider {
  opacity: 0.2;
  width: 1px;
  height: 100%;
  background-color: white;
  align-self: stretch;
  height: 20px;
}

/* Flash Sale Banner */
.campanie-hero-flash-sale {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #002f1d;
  min-width: 400px;
}

.campanie-hero-flash-sale-text {
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  margin: 0;
}

.campanie-hero-flash-sale-normal {
  color: #f6f8fa;
  font-size: 15px;
}

.campanie-hero-flash-sale-highlight {
  color: #ff6d4d;
  font-size: 15px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .campanie-hero-wrapper {
    padding-top: 80px;
  }

  .campanie-hero-image-left,
  .campanie-hero-image-right {
    max-width: 25%;
    opacity: 0.7;
  }

  .campanie-hero-container {
    width: 100%;
    max-width: 980px;
    padding: 0 20px 50px;
  }

  .campanie-hero-features {
    width: 100%;
  }

  .campanie-hero-title {
    font-size: 46px;
    line-height: 56px;
  }
}

@media (max-width: 768px) {
  .campanie-hero-image-mobile {
    display: block;
    order: 3;
  }

  .campanie-hero-image-left {
    display: none;
  }

  .campanie-hero-image-right {
    display: none;
  }

  .campanie-hero-wrapper {
    padding-top: 32px;
    min-height: auto;
  }

  .campanie-hero-header {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 16px 16px;
    margin-bottom: 16px;
  }

  .campanie-hero-title {
    color: #fff;
    text-align: center;
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 34.8px */
  }

  .campanie-hero-subtitle {
    color: #e1e6ea;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 510;
    line-height: 155%; /* 23.25px */
  }

  .campanie-hero-image-left,
  .campanie-hero-image-right {
    max-width: 20%;
    opacity: 0.5;
  }

  .campanie-hero-container {
    /* padding: 0 16px 40px; */
    padding: 0;
    gap: 0;
  }

  .campanie-hero-flash-sale {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    min-width: 100%;
    padding: 8px 15px;
    /* margin-top: 20px; */
    border-radius: 5px;
    order: 4;
    border-radius: 0;
  }

  .campanie-hero-flash-sale-text {
    font-size: 13px;
    line-height: 18px;
  }

  .campanie-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .campanie-hero-subtitle {
    font-size: 14px;
    line-height: 21px;
    max-width: 100%;
  }

  .campanie-hero-features {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    order: 4;
    align-items: center;
    justify-content: center;
  }

  .campanie-hero-feature-item {
    width: 100%;
    justify-content: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .campanie-hero-feature-image {
    width: 40px;
    height: 40px;
  }

  .campanie-hero-feature-title {
    font-size: 17px;
    line-height: 21px;
  }

  .campanie-hero-feature-desc {
    font-size: 14px;
    line-height: 17px;
  }

  .campanie-hero-divider-vertical {
    display: none;
  }

  .campanie-hero-divider-horizontal {
    margin: 10px 0;
    display: none;
  }

  .campanie-hero-promo-row {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 16px;
    margin-bottom: 16px;
  }

  .campanie-hero-promo-row .campanie-hero-info-box {
    order: 2;
    width: 50%;
  }

  .campanie-hero-promo-row .campanie-hero-info-box:nth-of-type(1) {
    order: 1;
    width: 50%;
  }

  .campanie-hero-coupon-container {
    order: 3;
    width: 100%;
  }

  .campanie-hero-info-box {
    width: 100%;
    height: auto;
    padding: 12px 18px;
  }

  .campanie-hero-info-title {
    font-size: 16px;
    line-height: 19px;
    text-align: center;
  }

  .campanie-hero-info-desc {
    font-size: 14px;
    line-height: 17px;
  }

  .campanie-hero-coupon-container {
    width: 100%;
  }

  .campanie-hero-coupon-text {
    font-size: 20px;
    line-height: 24px;
  }

  .campanie-hero-coupon-inner {
    padding: 12px;
  }

  .campanie-hero-cta-button {
    width: calc(100% - 16px);
    padding: 14px 24px;
    border-radius: 30px;
    order: 3;
    position: absolute;
    bottom: 20rem;
  }

  .campanie-hero-cta-title {
    font-size: 17px;
    line-height: 21px;
  }

  .campanie-hero-cta-subtitle {
    font-size: 12px;
    line-height: 15px;
  }

  .campanie-hero-guarantees {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px;
  }

  /* .campanie-hero-guarantee-item {
    width: calc(50% - 5px);
    justify-content: flex-start;
  } */

  .campanie-hero-guarantee-text {
    font-size: 13px;
    line-height: 16px;
  }

  .campanie-hero-guarantee-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .campanie-hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .campanie-hero-coupon-text {
    font-size: 20px;
  }

  .campanie-hero-guarantee-item {
    width: 100%;
    justify-content: center;
  }

  .campanie-hero-guarantee-text {
    font-size: 14px;
  }
}

/* Pick Favorite Section Styles */
.pick-favorite-wrapper {
  padding: 80px 0;
  background: linear-gradient(276deg, #e1e6ea -21.68%, #f6f8fa 57.06%);
  display: flex;
  justify-content: center;
}

.pick-favorite-container {
  width: 1180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* Header Section */
.pick-favorite-header {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.pick-favorite-title {
  font-size: 38px;
  line-height: 49px;
  font-weight: bold;
  color: #0c1f2b;
  margin: 0;
}

.pick-favorite-subtitle {
  font-size: 17px;
  line-height: 26px;
  color: #7b878f;
  /* max-width: 650px; */
  margin: 0;
}

/* Grid Container */
.pick-favorite-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Row Layouts */
.pick-favorite-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
/* 
.pick-favorite-row--three {
  flex-wrap: wrap;
} */

.pick-favorite-row--three .pick-favorite-card {
  flex: 1 1 calc(33.333% - 14px);
  max-width: 380px;
}

.pick-favorite-row--two {
  /* flex-wrap: wrap; */
  justify-content: center;
}

.pick-favorite-row--two .pick-favorite-card {
  flex: 1 1 380px;
  max-width: 380px;
}

/* Card Styles */
.pick-favorite-card {
  position: relative;
  border: 1px solid #e1e6ea;
  border-radius: 5px;
  padding: 0 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 15.38%);
  overflow: visible;
  min-height: 450px;
  overflow: hidden;
}

/* Product Image */
.pick-favorite-card-image {
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  /* margin-top: -50px; */
}

.pick-favorite-card-image img {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin: auto;
}

/* Card Content */
.pick-favorite-card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* Card Header */
.pick-favorite-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Badge */
.pick-favorite-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 109, 77, 0.08);
  border-radius: 50px;
  padding: 5px 10px;
}

.pick-favorite-badge-text {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #c25b44;
}

/* Card Title */
.pick-favorite-card-title {
  font-size: 29px;
  line-height: 35px;
  font-weight: bold;
  color: #0c1f2b;
  margin: 0;
}

/* Card Description */
.pick-favorite-card-description {
  font-size: 15px;
  line-height: 23px;
  color: #0c1f2b;
  margin: 0;
}

/* Card Footer */
.pick-favorite-card-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

/* Strain List */
.pick-favorite-strain-list {
  font-size: 15px;
  line-height: 23px;
  color: #9aa7ae;
  margin: 0;
}

/* Button */
.pick-favorite-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #f95632;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.pick-favorite-button:hover {
  background-color: #e04520;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(249, 86, 50, 0.3);
}

.pick-favorite-button svg {
  width: 14px;
  height: 13px;
  flex-shrink: 0;
}

/* Harvest Badge */
.pick-favorite-harvest-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #002f1d;
  padding: 4px 18px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.pick-favorite-harvest-badge small {
  font-size: 11px;
  line-height: 14px;
  font-weight: bold;
  color: #f6f8fa;
  opacity: 0.7;
  position: relative;
  top: -3px;
}

/* Most Sold Badge */
.pick-favorite-most-sold {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pick-favorite-most-sold small {
  font-size: 11px;
  line-height: 12px;
  font-weight: 800;
  color: #f6f8fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Pick Favorite */
@media (max-width: 1200px) {
  .pick-favorite-container {
    width: 100%;
    max-width: 1180px;
  }
}

@media (max-width: 1024px) {
  .pick-favorite-row--three .pick-favorite-card {
    /* flex: 1 1 calc(50% - 10px); */
  }

  .pick-favorite-title {
    font-size: 34px;
    line-height: 44px;
  }
  .pick-favorite-row {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pick-favorite-wrapper {
    padding: 60px 0;
  }

  .pick-favorite-container {
    gap: 40px;
    padding: 0 16px;
  }

  .pick-favorite-title {
    font-size: 28px;
    line-height: 36px;
  }

  .pick-favorite-subtitle {
    font-size: 15px;
    line-height: 23px;
  }

  .pick-favorite-row {
    flex-direction: column;
    gap: 30px;
  }

  .pick-favorite-row--three .pick-favorite-card,
  .pick-favorite-row--two .pick-favorite-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pick-favorite-card {
    padding: 0 20px 30px;
    min-height: 400px;
  }

  .pick-favorite-card-title {
    font-size: 24px;
    line-height: 30px;
  }

  .pick-favorite-card-description {
    font-size: 14px;
    line-height: 21px;
  }

  .pick-favorite-button {
    width: 223px;
    padding: 14px 30px;
  }

  .pick-favorite-most-sold {
    top: 20px;
    left: 20px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .pick-favorite-wrapper {
    padding: 40px 0;
    flex-direction: column;
  }

  .pick-favorite-container {
    gap: 30px;
  }

  .pick-favorite-title {
    font-size: 24px;
    line-height: 32px;
  }

  .pick-favorite-subtitle {
    font-size: 14px;
    line-height: 21px;
  }

  .pick-favorite-card-image {
    width: 200px;
    height: auto;
  }

  .pick-favorite-card-image img {
    width: 200px;
    height: auto;
  }

  .pick-favorite-card {
    gap: 20px;
  }

  .pick-favorite-card-content {
    gap: 20px;
  }

  .pick-favorite-button {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* Smart Buy Section Styles */
.smart-buy-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  width: 100%;
}

.smart-buy-container {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* Header Section */
.smart-buy-header {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.smart-buy-title {
  font-size: 35px;
  line-height: 49px;
  font-weight: bold;
  color: #0c1f2b;
  margin: 0;
}

.smart-buy-subtitle {
  font-size: 17px;
  line-height: 26px;
  color: #7b878f;
  max-width: 650px;
  margin: 0;
}

/* Cards Container */
.smart-buy-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

/* Card Styles */
.smart-buy-card {
  flex: 1;
  max-width: 380px;
  position: relative;
  border: 1px solid #e1e6ea;
  border-radius: 5px;
  padding: 30px 30px 40px;
  background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 15.38%);
  overflow: visible;
  min-height: 559px;
  display: flex;
  flex-direction: column;
}

/* Featured Card */
.smart-buy-card--featured {
  border: 2px solid rgb(255, 109, 77);
  box-shadow: 0px 5px 25px rgba(255, 109, 77, 0.2);
}

/* Most Sold Badge */
.smart-buy-most-sold {
  position: absolute;
  left: 8px;
  top: 80px;
  padding: 4px 12px;
  border-radius: 50px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.smart-buy-most-sold-text {
  position: absolute;
  right: -2px;
  top: 95px;
  padding: 4px 12px;
  border-radius: 50px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.smart-buy-most-sold small {
  font-size: 11px;
  line-height: 12px;
  font-weight: 800;
  color: #f6f8fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Content */
.smart-buy-card-content {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Card Header */
.smart-buy-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.smart-buy-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.smart-buy-card-title {
  font-size: 28px;
  line-height: 35px;
  font-weight: bold;
  color: #0c1f2b;
  text-align: center;
  margin: 0;
}

/* Price */
.smart-buy-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  padding-bottom: 25px;
}

.smart-buy-price {
  font-size: 54px;
  line-height: 65px;
  font-weight: bold;
  color: #f95632;
  text-align: center;
  margin: 0;
}

.smart-buy-price-previous {
  font-size: 15px;
  line-height: 18px;
  color: #9aa7ae;
  text-decoration: line-through;
  text-align: center;
  margin: 0;
}

/* Product Image */
.smart-buy-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding-bottom: 30px;
}

.smart-buy-product-image {
  width: auto;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  border-radius: 4px;
}

/* Features List */
.smart-buy-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding-bottom: 30px;
}

.smart-buy-feature-item {
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  padding: 15px 0 16px 0;
}

.smart-buy-feature-text {
  font-size: 15px;
  line-height: 18px;
  color: #0c1f2b;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.smart-buy-divider {
  width: 100%;
  height: 1px;
  background-color: #e1e6ea;
}

.smart-buy-divider:last-child {
  display: none;
}

/* Button */
.smart-buy-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.smart-buy-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #f95632;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.smart-buy-button:hover {
  background-color: #e04520;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(249, 86, 50, 0.3);
}

.smart-buy-button svg {
  width: 14px;
  height: 13px;
  flex-shrink: 0;
}

/* Responsive Design for Smart Buy */
@media (max-width: 1200px) {
  .smart-buy-cards {
    flex-wrap: wrap;
  }

  .smart-buy-card {
    /* flex: 1 1 calc(33.333% - 14px); */
    min-width: 300px;
  }
}

@media (max-width: 1024px) {
  .smart-buy-title {
    font-size: 34px;
    line-height: 44px;
  }

  .smart-buy-card {
    /* flex: 1 1 calc(50% - 10px); */
  }
}

@media (max-width: 768px) {
  .smart-buy-most-sold {
    top: 60px;
    left: 5px;
    height: 48px;
  }

  .smart-buy-most-sold-text {
    top: 65px;
    right: -10px;
  }

  .smart-buy-most-sold-text svg {
    height: 100px;
  }

  .smart-buy-wrapper {
    padding: 60px 0;
  }

  .smart-buy-container {
    gap: 40px;
    padding: 0 16px;
  }

  .smart-buy-title {
    font-size: 28px;
    line-height: 36px;
  }

  .smart-buy-subtitle {
    font-size: 15px;
    line-height: 23px;
  }

  .smart-buy-cards {
    flex-direction: column;
    gap: 30px;
  }

  .smart-buy-card {
    max-width: 100%;
    min-height: auto;
    padding: 25px 20px 35px;
  }

  .smart-buy-card-title {
    font-size: 24px;
    line-height: 30px;
  }

  .smart-buy-price {
    font-size: 44px;
    line-height: 54px;
  }

  .smart-buy-price-previous {
    font-size: 14px;
  }

  /* .smart-buy-product-image {
    max-width: 150px;
    max-height: 100px;
  } */

  .smart-buy-feature-text {
    font-size: 14px;
  }

  .smart-buy-button {
    width: 100%;
    padding: 14px 30px;
  }

  .smart-buy-image {
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .smart-buy-wrapper {
    padding: 40px 0;
  }

  .smart-buy-container {
    gap: 30px;
  }

  .smart-buy-title {
    font-size: 24px;
    line-height: 32px;
  }

  .smart-buy-subtitle {
    font-size: 14px;
    line-height: 21px;
  }

  .smart-buy-card {
    /* gap: 20px; */
    padding: 20px 16px 30px;
  }

  .smart-buy-card-content {
    /* gap: 20px; */
  }

  .smart-buy-card-header {
    gap: 15px;
  }

  .smart-buy-card-title {
    font-size: 22px;
    line-height: 28px;
  }

  .smart-buy-price {
    font-size: 38px;
    line-height: 46px;
  }

  /* .smart-buy-product-image {
    max-width: 120px;
    max-height: 80px;
  } */

  .smart-buy-button {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* Expect Section Styles */
.expect-wrapper {
  padding: 75px 0;
  background: linear-gradient(91deg, #0c1f2b 49.25%, #05121a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.expect-container {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* Header Section */
.expect-header {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.expect-title {
  font-size: 38px;
  line-height: 49px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.expect-subtitle {
  font-size: 17px;
  line-height: 26px;
  color: white;
  opacity: 0.5;
  margin: 0;
}

/* Timeline Section */
.expect-timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

.expect-timeline-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 20px;
}

.expect-timeline-item {
  flex: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Time Badge */
.expect-time-badge {
  border-radius: 5px;
  border: 1px solid white;
  padding: 10px 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.expect-time-badge--green {
  border-color: #00af66;
  background: rgba(0, 175, 102, 0.08);
}

.expect-time-badge--orange {
  border-color: #ff6d4d;
  background: rgba(255, 109, 77, 0.08);
}

.expect-time-value {
  font-size: 45px;
  line-height: 70px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  color: white;
}

.expect-time-badge--green .expect-time-value {
  color: #00af66;
}

.expect-time-badge--orange .expect-time-value {
  color: #ff6d4d;
}

/* Item Content */
.expect-item-title {
  font-size: 19px;
  line-height: 29px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.expect-divider {
  width: 100%;
  height: 1px;
  background-color: #e1e6ea;
  opacity: 0.2;
}

.expect-item-description {
  font-size: 15px;
  line-height: 23px;
  color: white;
  opacity: 0.5;
  margin: 0;
}

/* Progress Dots */
.expect-progress {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1180px;
}

.expect-progress-line {
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 1180px;
  height: 1px;
  border-radius: 1px;
  opacity: 0.2;
  background: linear-gradient(
    90deg,
    rgba(225, 230, 234, 0) 0%,
    #e1e6ea 12%,
    #e1e6ea 50.48%,
    #e1e6ea 87.98%,
    rgba(225, 230, 234, 0) 100%
  );
  opacity: 0.2;
  border-radius: 1px;
  z-index: 0;
}

.expect-progress-dot {
  flex: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Bottom CTA */
.expect-cta {
  width: 580px;
  max-width: 100%;
  border-radius: 5px;
  border: 1px solid #017859;
  padding: 20px 15px 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #017859;
  background: linear-gradient(
    180deg,
    rgba(0, 175, 102, 0.3) 0%,
    rgba(1, 120, 89, 0.3) 100%
  );
  box-shadow: -6px 0 0 0 #017859 inset, 6px 0 0 0 #017859 inset;
}

.expect-cta-title {
  font-size: 29px;
  line-height: 44px;
  font-weight: bold;
  color: #00af66;
  margin: 0;
}

.expect-cta-description {
  font-size: 17px;
  line-height: 26px;
  color: white;
  margin: 0;
}

.expect-timeline-item-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* Responsive Design for Expect Section */
@media (max-width: 1024px) {
  .expect-title {
    font-size: 34px;
    line-height: 44px;
  }
  .expect-timeline {
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .expect-timeline-items {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
  }

  .expect-timeline-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
    margin-bottom: 20px;
  }

  .expect-timeline-item-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .expect-progress-line {
    position: absolute;

    bottom: 23.5px;
    transform: none;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    max-width: 1180px;
    height: 100%;
    border-radius: 1px;
    opacity: 0.2;
    background: linear-gradient(
      180deg,
      rgba(225, 230, 234, 0) 0%,
      #e1e6ea 12%,
      #e1e6ea 50.48%,
      #e1e6ea 87.98%,
      rgba(225, 230, 234, 0) 100%
    );
    opacity: 0.2;
    border-radius: 1px;
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .expect-wrapper {
    padding: 60px 0;
  }

  .expect-container {
    gap: 20px;
    padding: 0 16px;
  }

  .expect-title {
    font-size: 28px;
    line-height: 36px;
  }

  .expect-subtitle {
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 30px;
  }

  .expect-timeline-items {
    flex-direction: column;
    gap: 30px;
  }

  .expect-timeline-item {
    flex: 1 1 100%;
    padding: 0 20px;
  }

  .expect-time-value {
    font-size: 25px !important;
    line-height: 54px;
  }

  .expect-item-title {
    font-size: 15px;
    line-height: 26px;
    text-align: left;
  }

  .expect-progress {
    display: flex;
    flex-direction: column;
  }

  .expect-cta {
    width: 100%;
    padding: 16px 12px 20px;
  }

  .expect-cta-title {
    font-size: 24px;
    line-height: 36px;
  }

  .expect-cta-description {
    font-size: 15px;
    line-height: 23px;
  }
}

@media (max-width: 480px) {
  .expect-wrapper {
    padding: 40px 0;
  }

  .expect-container {
    gap: 20px;
  }

  .expect-title {
    font-size: 24px;
    line-height: 32px;
  }

  .expect-subtitle {
    font-size: 14px;
    line-height: 21px;
  }

  .expect-time-badge {
    padding: 8px 6px;
    min-width: 80px;
  }

  .expect-time-value {
    font-size: 32px;
    line-height: 48px;
  }

  .expect-item-title {
    font-size: 15px;
    line-height: 24px;
  }

  .expect-item-description {
    font-size: 14px;
    line-height: 21px;
  }

  .expect-cta-title {
    font-size: 22px;
    line-height: 32px;
  }

  .expect-cta-description {
    font-size: 14px;
    line-height: 21px;
  }
}

/* =====================================================
   Stop Section Styles
   ===================================================== */
.stop-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Main Section */
.stop-main-section {
  background: url("../assets/images/stopWasting.png") no-repeat center center,
    linear-gradient(180deg, #017859 -0.01%, #0d202b 99.99%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.stop-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 780px;
}

.stop-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stop-title {
  font-size: 54px;
  line-height: 70px;
  color: white;
  font-weight: bold;
  margin: 0;
}

.stop-subtitle {
  opacity: 0.7;
  font-size: 17px;
  line-height: 26px;
  color: #e1e6ea;
  margin: 0;
  max-width: 660px;
}

/* Flash Sale Box */
.stop-flash-sale {
  border-radius: 5px;
  border: 1px solid #ff6d4d;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 580px;
  border-radius: 5px;
  border: 1px solid #ff6d4d;
  background: linear-gradient(
    90deg,
    rgba(249, 86, 50, 0.3) 0%,
    rgba(194, 91, 68, 0.3) 100%
  );
  box-shadow: -6px 0 0 0 #ff6d4d inset, 6px 0 0 0 #ff6d4d inset;
}

.stop-flash-title {
  font-size: 29px;
  line-height: 44px;
  color: #ff6d4d;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.stop-flash-subtitle {
  font-size: 17px;
  line-height: 26px;
  color: white;
  margin: 0;
  text-align: center;
  max-width: 400px;
}

/* CTA Section */
.stop-cta-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.stop-cta-button {
  overflow: hidden;
  border-radius: 50px;
  padding: 15px 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  background-color: #f95632;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stop-cta-button:hover {
  background-color: #ff6d4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 86, 50, 0.3);
}

.stop-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  align-items: center;
}

.stop-cta-text {
  font-size: 21px;
  line-height: 25px;
  color: white;
  margin: 0;
  font-weight: normal;
}

.stop-cta-subtext {
  opacity: 0.7;
  font-size: 13px;
  line-height: 16px;
  color: white;
  font-weight: bold;
  display: block;
}

.stop-cta-arrow {
  width: 16px;
  height: 14px;
}

/* Trust Badges */
.stop-trust-badges {
  display: flex;
  gap: 15px;
  align-items: center;
}

.stop-badge-item {
  display: flex;
  gap: 7px;
  align-items: center;
}

.stop-badge-text {
  font-size: 15px;
  line-height: 18px;
  color: white;
  margin: 0;
}

.stop-badge-divider {
  opacity: 0.2;
  width: 1px;
  height: 18px;
  background-color: white;
}

/* Stats Section */
.stop-stats-section {
  background: linear-gradient(0.88deg, #0c1f2b 0%, #05121a 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

.stop-stats-container {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1160px;
}

.stop-trust-section {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.stop-trust-icon {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
}

.stop-trust-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.stop-trust-title {
  opacity: 0.7;
  font-size: 23px;
  line-height: 35px;
  color: white;
  margin: 0;
}

.stop-trust-subtitle {
  opacity: 0.7;
  font-size: 15px;
  line-height: 23px;
  color: white;
  margin: 0;
}

/* Statistics */
.stop-statistics {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 680px;
}

.stop-stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.stop-stat-value-wrapper {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.stop-stat-value {
  font-size: 29px;
  line-height: 46px;
  color: #ff6d4d;
  font-weight: bold;
  margin: 0;
}

.stop-stat-star {
  width: 21px;
  height: 21px;
}

.stop-stat-divider {
  opacity: 0.2;
  width: 100%;
  height: 1px;
  background-color: white;
}

.stop-stat-label {
  font-size: 15px;
  line-height: 24px;
  color: white;
  margin: 0;
  text-align: center;
}

.stop-image-mobile-img {
  display: none;
}

/* =====================================================
   Stop Section - Responsive Styles
   ===================================================== */
@media (max-width: 1440px) {
  .stop-stats-container {
    padding: 0 100px;
  }
}

@media (max-width: 1200px) {
  .stop-stats-container {
    padding: 0 50px;
    gap: 60px;
  }

  .stop-statistics {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .stop-main-section {
    background: linear-gradient(180deg, #017859 -0.01%, #0d202b 99.99%);
  }
  .stop-main-section {
    padding: 60px 20px;
  }

  .stop-title {
    font-size: 48px;
    line-height: 62px;
  }

  .stop-stats-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 30px;
  }

  .stop-trust-section {
    width: 100%;
    justify-content: center;
  }

  .stop-statistics {
    width: 100%;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .stop-main-section {
    padding: 50px 20px 0px 20px;
  }

  .stop-container {
    gap: 25px;
  }

  .stop-title {
    font-size: 36px;
    line-height: 48px;
  }

  .stop-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .stop-flash-sale {
    padding: 20px 15px;
  }

  .stop-flash-title {
    font-size: 24px;
    line-height: 36px;
  }

  .stop-flash-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .stop-cta-button {
    padding: 12px 30px;
  }

  .stop-cta-text {
    font-size: 18px;
    line-height: 22px;
  }

  .stop-cta-subtext {
    font-size: 12px;
    line-height: 14px;
  }

  .stop-trust-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stop-stats-section {
    padding: 30px 15px;
  }

  .stop-stats-container {
    padding: 0 15px;
  }

  .stop-trust-icon {
    width: 80px;
    height: 80px;
  }

  .stop-trust-title {
    font-size: 20px;
    line-height: 30px;
  }

  .stop-statistics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stop-stat-value {
    font-size: 24px;
    line-height: 36px;
  }

  .stop-stat-label {
    font-size: 14px;
    line-height: 20px;
  }

  .stop-image-mobile-img {
    display: block;
  }
}

@media (max-width: 480px) {
  .stop-main-section {
    padding: 40px 15px 0px 15px;
  }

  .stop-container {
    gap: 20px;
  }

  .stop-title {
    font-size: 28px;
    line-height: 38px;
  }

  .stop-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .stop-flash-sale {
    padding: 15px 10px;
  }

  .stop-flash-title {
    font-size: 20px;
    line-height: 30px;
  }

  .stop-flash-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .stop-cta-button {
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
  }

  .stop-cta-text {
    font-size: 16px;
    line-height: 20px;
  }

  .stop-trust-badges {
    gap: 10px;
  }

  .stop-badge-text {
    font-size: 13px;
  }

  .stop-stats-container {
    gap: 30px;
  }

  .stop-trust-section {
    flex-direction: column;
    text-align: center;
  }

  .stop-trust-icon {
    width: 60px;
    height: 60px;
  }

  .stop-trust-title {
    font-size: 18px;
    line-height: 26px;
  }

  .stop-trust-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .stop-statistics {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
  }

  .stop-stat-value {
    font-size: 22px;
    line-height: 32px;
  }
}
