.essentials-section {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.essentials-section .highlight {
  color: #e91e63;
}

.essentials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.essentials-title h2 {
  font-weight: 500;
  font-size: 52px;
  margin: 0;
  line-height: 1.32;
}

.essentials-subtitle {
  color: #797d7f;
  font-weight: 400;
  line-height: 1.52;
  font-size: 20px;
}

.shop-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e77494 0%, #e6275d 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  max-width: 156px;
  gap: 10px;
}

.shop-button div {
  font-weight: 500;
  font-size: 14px;
}

.shop-button img {
  width: 16px;
  height: 16px;
}

.essentials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  border-radius: 20px;
  padding: 20px 36px;
}

.item-title h3 {
  font-weight: 700;
  color: #1d2123;
  margin: 0;
  font-size: 32px;
  line-height: 1.52;
}

.item-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* clamp to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  color: #797d7f;
  line-height: 1.52;
  max-height: calc(1.52em * 3);
  /* optional for consistency */
}

.item-description.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.read-more-btn {
  margin-top: 6px;
  color: #e91e63;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.item-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.item-image {
  width: 240px;
  height: 130px;
}

.blue {
  background: linear-gradient(180deg, #edf5ff 0%, #f9fcff 80.4%);
}

.pink {
  background: linear-gradient(180deg, #ffeded 0%, #fff9f9 80.4%);
}

.expert-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 60px;
}

.expert-row {
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #f8f8f8;
}

.expert-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expert-title {
  line-height: 1.52;
  font-weight: 700;
  color: #1d2123;
  font-size: 32px;
}

@media screen and (max-width: 700px) {
  .expert-title {
    text-align: center;
  }
}


.expert-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.52;
  color: #797d7f;
}

.expert-icons img {
  width: 410px;
  height: 80px;
}

.product-scroll {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-scroll::-webkit-scrollbar {
  display: none;
}

.product-scroll .item {
  scroll-snap-align: start;
  min-width: 650px;
}

@media (max-width: 768px) {
  .essentials-section {
    padding: 40px;
  }

  .essentials-grid {
    flex-direction: row;
  }

  .expert-section {
    padding: 40px;
  }

  .expert-row {
    border-radius: 24px;
    padding: 24px;
  }

  .product-scroll .item {
    min-width: 270px;
  }
}

@media (max-width: 425px) {
  .essentials-section {
    padding: 20px;
    gap: 24px;
  }

  .essentials-title h2 {
    font-size: 26px;
  }

  .essentials-subtitle {
    line-height: 1.32;
    font-size: 12px;
  }

  .essentials-grid {
    flex-direction: row;
    gap: 12px;
  }

  .item {
    padding: 16px;
    border-radius: 14px;
  }

  .item-title h3 {
    font-size: 16px;
  }

  .item-description {
    font-size: 12px;
  }

  .item-image {
    width: 120px;
    height: 65px;
  }

  .expert-section {
    padding: 20px;
  }

  .expert-row {
    border-radius: 14px;
    padding: 20px;
    gap: 24px;
  }

  .expert-header {
    gap: 16px;
  }

  .expert-title {
    font-size: 20px;
  }

  .expert-description {
    font-size: 12px;
    line-height: 1.32;
  }

  .expert-icons img {
    width: 206px;
    height: 46px;
  }
}