/* =================================
 * SHOPCUBE 페이지 스타일 (pages/shopcube.css)
 * ================================= */

/* --- 공통 섹션 스타일 --- */
.section-header h2 {
  margin-bottom: 4px;
}
.section-header p {
  margin-bottom: 100px;
}

/* --- 1. 히어로 배너 --- */
.shopcube-banner {
  background: linear-gradient(
      154deg,
      rgba(68, 131, 249, 0.84) 33.79%,
      rgba(68, 131, 249, 0.9) 52.75%,
      #4483f9 75.54%
    ),
    #fff;
}
.shopcube-banner .section-header h2,
.shopcube-banner .section-header p {
  color: #fff;
}
.shopcube-banner .section-header p {
  margin: 0;
}

/* --- 2. 인트로 섹션 --- */
.shopcube-intro {
  background: linear-gradient(
      0deg,
      rgba(68, 131, 249, 0.08) 0%,
      rgba(68, 131, 249, 0.08) 100%
    ),
    #fff;
}
.shopcube-intro .section-container {
  height: 540px;
  overflow: hidden;
}
.shopcube-intro-image {
  margin-top: 100px;
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 30px;
  background: #f6f6f6;
  box-shadow: 3.959px 0 9.897px 0 #fff inset,
    0 -0.99px 2.969px 0 rgba(0, 33, 167, 0.1) inset,
    4px 20px 40px 0 rgba(3, 9, 91, 0.1),
    -0.99px -4.948px 9.897px 0 rgba(0, 33, 167, 0.1) inset;
}
.shopcube-intro-image img {
  width: 100%;
}

/* --- 3. 핵심 기능 설명 --- */
.shopcube-features-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
}
.shopcube-features-items .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 300px;
}
.shopcube-features-items .icon-item span {
  color: #4483f9;
  text-align: center;

  font-size: 24px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.2px;
}

/* --- 4. 상담 섹션 --- */
.shopcube-consult {
  background: linear-gradient(
      0deg,
      rgba(68, 131, 249, 0.08) 0%,
      rgba(68, 131, 249, 0.08) 100%
    ),
    #fff;
}

.shopcube-consult .section-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.shopcube-consult .section-header {
  width: 37%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.shopcube-consult .section-header h2 {
  text-align: left;
}
.shopcube-consult .section-header p {
  text-align: left;
  margin-bottom: 24px;
}
.shopcube-consult .section-header a {
  margin: 0;
}

.shopcube-consult-content {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.shopcube-consult-item {
  display: flex;
  width: 330px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
}
.shopcube-consult-item h3 {
  color: #171717;
  text-align: center;

  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.2px;
  margin-top: 8px;
}
.shopcube-consult-item p {
  color: #404040;
  text-align: center;

  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: -0.2px;
  width: 61%;
}

@media (max-width: 1024px) {
  .shopcube-consult .section-container {
    flex-direction: column;
    justify-content: center;
  }
  .shopcube-consult .section-header {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .shopcube-features-items {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
    margin-top: 40px;
  }
  .shopcube-features-items img {
    width: 150px;
  }
  .shopcube-features-items .icon-item span {
    font-size: 16px;
  }
  .shopcube-features-items .icon-item:last-child img {
    width: 210px;
  }

  .shopcube-consult .section-container {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    height: 814px;
    padding: 80px 16px 120px 16px;
  }

  .shopcube-consult .section-header {
    width: 100%;
    align-items: center;
  }

  .shopcube-consult-content {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 16px;
  }

  .shopcube-consult .section-header a {
    position: absolute;
    bottom: 120px;
  }

  .shopcube-consult-item {
    width: 300px;
    gap: 0;
  }
  .shopcube-consult-item h3 {
    margin-top: 16px;
    font-size: 16px;
  }
  .shopcube-consult-item p {
    font-size: 14px;
    width: 75%;
  }

  .shopcube-intro-image {
    margin-top: 40px;
    margin-left: 40px;
  }
  .shopcube-intro-image img {
    width: fit-content;
  }

  .shopcube-consult .section-header p {
    margin-bottom: 0;
  }
}
