/* =========================================
   WooCommerce Single Product Layout Styles
   Font: Montserrat
   ========================================= */

/* Base font for product layout */
.skinlab-single-product-wrapper,
.skinlab-single-product-wrapper * {
  box-sizing: border-box;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.skinlab-single-product-wrapper {
  width: 100%;
  overflow-x: hidden;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* =========================================
   1. Banner Hero Section (.zodaily-)
   ========================================= */
.zodaily-section {
  position: relative;
  width: 100%;
  min-height: 280px;
  background: url('../img/zo_daily_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 85px 20px;
  overflow: hidden;
}

.zodaily-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.zodaily-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.zodaily-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

/* =========================================
   2. About This Product Section (.aboutproduct-)
   ========================================= */
.aboutproduct-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 70px 20px 80px;
  border-bottom: 1px solid #f1f5f9;
}

.aboutproduct-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: start;
}

/* Gallery */
.aboutproduct-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.aboutproduct-main-img-wrap {
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.aboutproduct-main-img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.aboutproduct-thumbnails {
  display: flex;
  gap: 14px;
  width: 100%;
}

.aboutproduct-thumb {
  width: 90px;
  height: 90px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.aboutproduct-thumb:hover {
  border-color: #94a3b8;
}

.aboutproduct-thumb.active {
  border: 1.5px solid #000000;
}

.aboutproduct-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Details Column */
.aboutproduct-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.aboutproduct-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.aboutproduct-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}

.aboutproduct-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #333333;
  font-weight: 500;
  margin-bottom: 18px;
}

.aboutproduct-price {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.aboutproduct-divider {
  height: 1px;
  background-color: #e5e7eb;
  width: 100%;
  margin: 14px 0;
}

.aboutproduct-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.aboutproduct-label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
}

.aboutproduct-value {
  font-size: 14.5px;
  font-weight: 700;
  color: #000000;
}

.aboutproduct-options {
  display: flex;
  gap: 22px;
  align-items: center;
}

.aboutproduct-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #000000;
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.5px;
}

.aboutproduct-radio {
  accent-color: #000000;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.aboutproduct-add-btn,
.aboutproduct-details .single_add_to_cart_button {
  background: #000000 !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 15px !important;
  border-radius: 4px !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  width: 100% !important;
  margin: 18px 0 10px !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  display: block;
}

.aboutproduct-add-btn:hover,
.aboutproduct-details .single_add_to_cart_button:hover {
  background: #222222 !important;
  transform: translateY(-1px);
}

.aboutproduct-benefits {
  margin: 6px 0 12px;
}

.aboutproduct-benefits-title {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.aboutproduct-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #333333;
  font-weight: 500;
}

.aboutproduct-affirm {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  margin: 16px 0 8px;
}

.aboutproduct-link {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.aboutproduct-pickup {
  margin-top: 4px;
}

.aboutproduct-pickup-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.aboutproduct-pickup-desc {
  font-size: 13px;
  color: #555555;
  font-weight: 500;
}

/* =========================================
   3. How To Use Section (.howtouse-)
   ========================================= */
.howtouse-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  background: url('../img/bg_how_to_use.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
}

.howtouse-container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.howtouse-section-header {
  text-align: center;
  margin-bottom: 140px;
}

.howtouse-section-title {
  font-size: 38px;
  font-weight: 800;
  color: #050505;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.howtouse-section-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #262626;
  letter-spacing: -0.1px;
}

.howtouse-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 125px 26px;
  align-items: stretch;
}

.howtouse-step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 0 #000000, 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.howtouse-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 0 #000000, 0 14px 28px rgba(0, 0, 0, 0.1);
}

.howtouse-step-img-wrapper {
  margin-top: -95px;
  margin-bottom: 22px;
  width: 195px;
  height: 195px;
  flex-shrink: 0;
}

.howtouse-step-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.howtouse-step-badge {
  background: #000000;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 22px;
  border-radius: 4px;
  margin-bottom: 18px;
  display: inline-block;
  user-select: none;
}

.howtouse-step-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.howtouse-step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #383838;
  font-weight: 500;
  max-width: 215px;
  margin: 0 auto;
}

/* =========================================
   4. When To Use FAQ Section (.whentousefaq-)
   ========================================= */
.whentousefaq-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 100px;
}

.whentousefaq-container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.whentousefaq-header {
  text-align: center;
  margin-bottom: 40px;
}

.whentousefaq-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.whentousefaq-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  font-weight: 500;
}

.whentousefaq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whentousefaq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf0f2;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.whentousefaq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.whentousefaq-item-header {
  width: 100%;
  background: linear-gradient(90deg, #cdecd5 0%, #e2eed6 45%, #d4e7e6 100%);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  text-align: left;
  user-select: none;
}

.whentousefaq-item-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.2px;
}

.whentousefaq-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.whentousefaq-toggle-icon::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 2.2px;
  background: #ffffff;
  border-radius: 1px;
}

.whentousefaq-toggle-icon::after {
  content: '';
  position: absolute;
  width: 2.2px;
  height: 11px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.whentousefaq-item.active .whentousefaq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.whentousefaq-item-body {
  display: none;
  background: #ffffff;
  padding: 6px 26px 14px;
}

.whentousefaq-item.active .whentousefaq-item-body {
  display: block;
}

.whentousefaq-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.whentousefaq-benefit-item {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.5;
  padding: 16px 0;
  border-bottom: 1px solid #eef0f2;
}

.whentousefaq-benefit-item:last-child {
  border-bottom: none;
}

/* =========================================
   5. When To Use Section (.whentouse-)
   ========================================= */
.whentouse-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  background: url('../img/when_to_use_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
}

.whentouse-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.whentouse-section-header {
  text-align: center;
  margin-bottom: 45px;
}

.whentouse-section-title {
  font-size: 38px;
  font-weight: 800;
  color: #050505;
  letter-spacing: -0.5px;
}

.whentouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.whentouse-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 155px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whentouse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.whentouse-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.whentouse-card-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #383838;
  font-weight: 500;
  max-width: 250px;
  margin: 0 auto;
}

/* =========================================
   6. You May Also Like Section (.youmayalsolike-)
   ========================================= */
.youmayalsolike-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.youmayalsolike-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 40px;
  align-items: center;
}

.youmayalsolike-info {
  text-align: left;
}

.youmayalsolike-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.youmayalsolike-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #2b2b2b;
  font-weight: 500;
}

.youmayalsolike-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.youmayalsolike-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youmayalsolike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.youmayalsolike-img-wrapper {
  padding: 30px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}

.youmayalsolike-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.youmayalsolike-content {
  padding: 0 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.youmayalsolike-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.youmayalsolike-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #383838;
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 210px;
}

.youmayalsolike-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.youmayalsolike-stars {
  font-size: 14px;
  color: #000000;
  letter-spacing: 2px;
}

.youmayalsolike-score {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}

.youmayalsolike-btn {
  background: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 12px;
  border: none;
  width: 100%;
  cursor: pointer;
  letter-spacing: -0.1px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  display: block;
}

.youmayalsolike-btn:hover {
  background-color: #222222;
  color: #ffffff;
}

/* =========================================
   7. Skin You Feel Hopeful In Section (.skinyou-)
   ========================================= */
.skinyou-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: url('../img/skin_you_bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  overflow: hidden;
}

.skinyou-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.skinyou-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.skinyou-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.skinyou-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 34px !important;
}

.skinyou-btn {
  background: #ffffff;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 44px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: -0.1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.skinyou-btn:hover {
  transform: translateY(-2px);
  background-color: #f3f3f3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #000000;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (max-width: 1024px) {
  .aboutproduct-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutproduct-gallery {
    align-items: center;
  }

  .aboutproduct-thumbnails {
    justify-content: center;
  }

  .youmayalsolike-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .youmayalsolike-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .howtouse-steps-grid {
    grid-template-columns: 1fr;
    gap: 120px;
    max-width: 340px;
    margin: 0 auto;
  }

  .howtouse-section {
    height: auto;
    padding: 60px 20px;
  }

  .howtouse-section-title {
    font-size: 30px;
  }

  .howtouse-section-header {
    margin-bottom: 85px;
  }

  .whentouse-section {
    height: auto;
    padding: 60px 20px;
  }

  .whentouse-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whentouse-section-title {
    font-size: 30px;
  }

  .youmayalsolike-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skinyou-title {
    font-size: 32px;
  }

  .whentousefaq-title {
    font-size: 30px;
  }

  .zodaily-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {

  /* Prevent flexbox overflow issues by forcing standard block layouts on mobile section wrappers */
  .zodaily-section,
  .aboutproduct-section,
  .howtouse-section,
  .whentousefaq-section,
  .whentouse-section,
  .youmayalsolike-section,
  .skinyou-section {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .zodaily-container,
  .aboutproduct-container,
  .howtouse-container,
  .whentousefaq-container,
  .whentouse-container,
  .youmayalsolike-container,
  .skinyou-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .zodaily-section {
    padding: 40px 16px;
    min-height: 140px;
  }

  .zodaily-title {
    font-size: 22px;
  }

  .aboutproduct-section {
    padding: 24px 16px;
  }

  .aboutproduct-main-img-wrap {
    height: 280px;
    margin-bottom: 16px;
  }

  .aboutproduct-title {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .aboutproduct-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .aboutproduct-desc {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .aboutproduct-price {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .aboutproduct-divider {
    margin: 10px 0;
  }

  .aboutproduct-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .howtouse-section {
    padding: 50px 16px 30px;
  }

  .howtouse-section-header {
    margin-bottom: 60px;
  }

  .howtouse-section-title {
    font-size: 24px;
  }

  .howtouse-section-subtitle {
    font-size: 13px;
  }

  .howtouse-steps-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 65px 0 !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  .howtouse-steps-grid > :last-child:nth-child(odd) {
    grid-column: unset;
    max-width: 100%;
    margin: 0 auto;
  }

  .howtouse-step-card {
    padding: 0 10px 20px;
  }

  .howtouse-step-img-wrapper {
    margin-top: -45px;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .howtouse-step-badge {
    font-size: 10.5px;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .howtouse-step-name {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .howtouse-step-desc {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .whentousefaq-section {
    padding: 30px 16px;
  }

  .whentousefaq-header {
    margin-bottom: 24px;
  }

  .whentousefaq-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .whentousefaq-item-header {
    padding: 14px 16px;
  }

  .whentousefaq-item-title {
    font-size: 16px;
  }

  .whentousefaq-toggle-icon {
    width: 22px;
    height: 22px;
  }

  .whentousefaq-toggle-icon::before {
    width: 9px;
  }

  .whentousefaq-toggle-icon::after {
    height: 9px;
  }

  .whentousefaq-item-body {
    padding: 4px 16px 10px;
  }

  .whentousefaq-benefit-item {
    font-size: 13.5px;
    padding: 12px 0;
  }

  .whentouse-section {
    padding: 30px 16px;
  }

  .whentouse-section-header {
    margin-bottom: 24px;
  }

  .whentouse-section-title {
    font-size: 24px;
  }

  .whentouse-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .whentouse-card {
    padding: 16px 10px;
    min-height: 120px;
  }

  .whentouse-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .whentouse-card-desc {
    font-size: 11px;
    line-height: 1.4;
  }

  .youmayalsolike-section {
    padding: 30px 16px;
  }

  .youmayalsolike-container {
    gap: 24px;
  }

  .youmayalsolike-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .youmayalsolike-desc {
    font-size: 13px;
  }

  .youmayalsolike-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .youmayalsolike-card {
    border-radius: 8px;
  }

  .youmayalsolike-img-wrapper {
    height: 130px;
    padding: 15px 10px 10px;
  }

  .youmayalsolike-content {
    padding: 0 8px 12px;
  }

  .youmayalsolike-card-title {
    font-size: 13.5px;
    margin-bottom: 4px;
  }

  .youmayalsolike-card-desc {
    font-size: 10.5px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .youmayalsolike-stars {
    font-size: 11px;
  }

  .youmayalsolike-score {
    font-size: 11px;
  }

  .youmayalsolike-btn {
    font-size: 13px;
    padding: 10px 8px;
  }

  .skinyou-section {
    padding: 40px 16px;
    min-height: 220px;
  }

  .skinyou-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .skinyou-desc {
    font-size: 13px;
    margin-bottom: 20px !important;
  }

  .skinyou-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
}