/* =========================================
   GEMSTONE KIT PAGE STYLES
   ========================================= */

/* --- HERO SECTION (Matched to Consultation) --- */
.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Matches Consultation Gradient */
  background: linear-gradient(to top, rgba(244, 210, 142, 0.5876), #fff 70%);
  padding: 20px 20px 50px;
  gap: 30px;
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 980px;
  width: 70%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.content-wrapper h1 {
  font-weight: bold;
  margin: 0;
}

.content-wrapper p {
   /* main.css Desktop P */
  line-height: 1.6;
  margin: 0;
  max-width: 820px;
}

/* Decorative Side Images */
.hero-deco-container {
  position: absolute;
  top: 30%; /* Centered vertically relative to section */
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-container img {
  max-width: 175px; /* Consistent size */
  display: block;
  height: auto;
  aspect-ratio: auto;
}

.hero-deco-container.left-deco {
  left: 3%;
}

.hero-deco-container.right-deco {
  right: 5%;
  transform: translateY(15%);
}

.breadcrumb {
  bottom: -20px;
}

/* --- SECTION 2: WHATS INSIDE --- */
.gemstone-section {
  padding: 80px 20px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-header {
  text-align: center;
  max-width: 75%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header h2 {
  margin: 0;
}

.section-header p {
  
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 100px);
  align-items: stretch;
}

.kit-feature-card {
  background: #fff;
  padding: 30px 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -1px 9.6px 0 rgba(0, 0, 0, 0.31);
  gap: 25px;
  transition: transform 0.2s ease;
}

.kit-feature-card:hover {
  transform: translateY(-5px); /* Slides right */
}

.kit-feature-card .card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.kit-feature-card .icon-wrapper {
  width: 90px;
  aspect-ratio: 1/1;
  background-color: #d37e2b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
  margin-bottom: 20px;
}

.kit-feature-card .icon-wrapper img {
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
}

.kit-feature-card h3 {
  margin: 0;
}

.kit-feature-card p {
  text-align: center;
  
  margin: 0;
  line-height: 1.5;
}

.feature-list {
  max-width: 350px;
  width: 100%;
  padding: 0 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.2s ease;
  cursor: default;
}

.list-item:hover {
  transform: translateX(5px); /* Slides right */
}

.check-box {
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  background-color: #ba5c00;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.check-box img {
  width: 20px;
  aspect-ratio: 1/1;
}

.text-box {
  background-color: #faefce;
  padding: 8px 16px;
  border-radius: 4px;
  
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
}

/* --- SECTION 3: KIT FEATURES STRIP --- */
.kit-features-section {
  background: linear-gradient(
    to right,
    rgba(170, 101, 34, 1) 100%,
    rgba(211, 126, 43, 1) 0%
  );
  color: white;
  padding: 40px 20px;
}

.kit-features-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  gap: 15px;
}

.icon-circle {
  background-color: white;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
}

.feature-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.feature-desc {
  
  line-height: 1.5;
}

/* --- PRODUCT IMAGE --- */
.product-section {
  display: flex;
  justify-content: center;
  padding: 0;
}

.product-image {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  display: block;
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: 1fr; /* Stack cards */
    max-width: 700px;
    margin: 0 auto;
  }

  .kit-feature-card {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
  }

  .kit-feature-card .card-header {
    width: 45%;
    align-items: center;
  }

  .kit-feature-card .feature-list {
    width: 45%;
    margin-top: 0;
  }

  .kit-feature-card .icon-wrapper {
    margin-bottom: 0;
  }

}

/* ================= MEDIA QUERY: TABLET (max-width: 1024px) ================= */
@media (max-width: 1024px) {
  /* Hero */
  .hero-section {
    padding-top: 15px; /* Adjust for breadcrumb overlap if needed */
  }

  .content-wrapper {
    width: 100%;
    gap: 10px;
  }


  .content-wrapper p {
    width: 85%;
    padding-bottom: 30px;
  }

  .hero-deco-container {
    top: 5%;
  }
  /* Adjust Gems */
  .hero-deco-container.left-deco {
    top: 16%;
    left: 1%;
  }

  .hero-deco-container img {
    max-width: 90px;
  }
  .hero-deco-container.right-deco {
    right: 5%;
    top: 60%;
  }

  .hero-deco-container.right-deco img {
    max-width: 80px;
  }

  /* Section 2 */
  .gemstone-section {
    padding: 60px 20px;
    gap: 40px;
  }

  .section-header {
    max-width: 90%;
  }


  /* Section 3 */
  .kit-features-container {
    justify-content: center;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-title {
    font-size: 24px;
  }
}

/* ================= MEDIA QUERY: MOBILE (max-width: 767px) ================= */
@media (max-width: 767px) {
  /* Hero */
  .hero-section {
    padding: 10px 20px 60px 20px; /* Extra bottom padding for breadcrumb */
    min-height: auto;
  }


  .content-wrapper p {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-deco-container {
    display: none; /* Hide decorative images on mobile */
  }

  .breadcrumb {
    bottom: -6%;
  }

  /* Section 2 */
  .gemstone-section {
    padding: 50px 20px;
  }

  .section-header {
    max-width: 100%;
  }

  .kit-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 25px;
  }

  .kit-feature-card .icon-wrapper {
    margin-bottom: 20px;
  }

  .kit-feature-card .card-header {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .kit-feature-card .feature-list {
    width: 100%;
  }

  /* Section 3 */
  .kit-features-section {
    padding: 30px 20px;
  }

  .kit-features-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .feature-list {
    padding: 0;
  }

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

  .icon-circle {
    width: 90px;
    height: 90px;
  }
}
