.hero-section {
  flex-direction: column;
  align-items: center;
  background: linear-gradient(
    to top,
    rgba(241, 198, 112, 0.4787),
    rgba(255, 236, 199, 0.6444),
    #fff 30%
  );
  padding-bottom: 60px;
}
.content-wrapper p {
  max-width: 600px;
}
.features-container {
  width: 100%;
  position: static;
  margin: 0 auto;
  padding: 0;
  gap: 20px;
  display: flex;
  justify-content: space-between;
}
.feature-card {
  box-shadow: 0 0 16.4px 0 rgba(0, 0, 0, 0.27);
  max-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px;
  min-width: 130px;
  width: 100%;
  min-height: 173px;
}
.feature-card p {
  font-weight: 400;
  color: #000;
}

/* ----- Gemstones Section ----- */

.gemstones-section {
  padding: 60px 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1000px;
}

.section-header h2 {
  margin-bottom: 0;
}

.gemstone-grid {
  display: grid;
  gap: 20px;
  max-width: 1060px;
  margin: auto;
  /* Desktop First Default */
  grid-template-columns: 1fr 1fr;
}

.gem-card {
  background: white;
  border-radius: 7px;
  padding: 20px;
  display: flex;
  gap: 40px;
  max-width: 520px;
  box-shadow: 0 0 10.1px 0 rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gem-card:hover {
  transform: translateY(-4px); /* Moves up */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Deep, soft shadow */
}

.gem-card-left {
  justify-items: center;
}
.gem-card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gem-image {
  width: 85px;
  height: 85px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gem-image img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gem-card:hover .gem-image img {
  transform: scale(1.03); /* Zooms in and tilts */
}

/* Gemstone Color Variations */
.ruby .gem-image {
  background-color: #f9e6e6;
}
.emerald .gem-image {
  background-color: #e5fff0;
}
.yellow-sapphire .gem-image {
  background-color: #fffadb;
}
.blue-sapphire .gem-image {
  background-color: #d6e6ff;
}
.hessonite .gem-image {
  background-color: #f9e6e6;
}
.opal-with-fire .gem-image {
  background-color: #defaff;
}
.red-coral .gem-image {
  background-color: #f9e6e6;
}
.pearl .gem-image {
  background-color: #f0f0f0;
}
.white-sapphire .gem-image {
  background-color: #f1f1f1;
}
.cats-eye .gem-image {
  background-color: #ffdbc1;
}
.aquamarine .gem-image {
  background-color: #ebf6f8;
}
.lapis-lazuli .gem-image {
  background-color: #d6e6ff;
}
.turquoise .gem-image {
  background-color: #cdf7f3;
}
.peridot .gem-image {
  background-color: #e9ffed;
}
.garnet .gem-image {
  background-color: #f9e6e6;
}
.citrine .gem-image {
  background-color: #ffe7e0;
}
.moonstone .gem-image {
  background-color: #eeeeee;
}
.sunstone .gem-image {
  background-color: #ffe4df;
}

.gem-content p {
  
  margin: 0 0 10px 0;
}

.gem-content h3 {
  margin: 0 0 10px 0;
}

.gem-content h3 span {
  font-weight: normal;
}

.gem-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.gem-content li {
  gap: 10px;
  display: flex;
  align-items: center;
}

.bullet-div {
  width: 20px;
  height: 20px;
  border-radius: 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullet-div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Bullet Color Variations */
.ruby .bullet-div {
  background-color: #f8e0e0;
}
.ruby .bullet-div span {
  background-color: #ce0014;
}
.emerald .bullet-div {
  background-color: #deffec;
}
.emerald .bullet-div span {
  background-color: #008c3a;
}
.yellow-sapphire .bullet-div {
  background-color: #f7f1cd;
}
.yellow-sapphire .bullet-div span {
  background-color: #d27e2b;
}
.blue-sapphire .bullet-div {
  background-color: #d6e6ff;
}
.blue-sapphire .bullet-div span {
  background-color: #0057ef;
}
.hessonite .bullet-div {
  background-color: #f8e0e0;
}
.hessonite .bullet-div span {
  background-color: #ce0014;
}
.opal-with-fire .bullet-div {
  background-color: #defaff;
}
.opal-with-fire .bullet-div span {
  background-color: #0fc7d8;
}
.red-coral .bullet-div {
  background-color: #f8e0e0;
}
.red-coral .bullet-div span {
  background-color: #ce0014;
}
.pearl .bullet-div {
  background-color: #eeeeee;
}
.pearl .bullet-div span {
  background-color: #616161;
}
.white-sapphire .bullet-div {
  background-color: #eeeeee;
}
.white-sapphire .bullet-div span {
  background-color: #616161;
}
.cats-eye .bullet-div {
  background-color: #ffdbc1;
}
.cats-eye .bullet-div span {
  background-color: #ac5500;
}
.aquamarine .bullet-div {
  background-color: #ebf6f8;
}
.aquamarine .bullet-div span {
  background-color: #3ad2e0;
}
.lapis-lazuli .bullet-div {
  background-color: #d6e6ff;
}
.lapis-lazuli .bullet-div span {
  background-color: #2c75f2;
}
.turquoise .bullet-div {
  background-color: #cdf7f3;
}
.turquoise .bullet-div span {
  background-color: #00aba5;
}
.peridot .bullet-div {
  background-color: #e9ffed;
}
.peridot .bullet-div span {
  background-color: #00a716;
}
.garnet .bullet-div {
  background-color: #f8e0e0;
}
.garnet .bullet-div span {
  background-color: #ce0014;
}
.citrine .bullet-div {
  background-color: #ffe7e0;
}
.citrine .bullet-div span {
  background-color: #b42600;
}
.moonstone .bullet-div {
  background-color: #eeeeee;
}
.moonstone .bullet-div span {
  background-color: #616161;
}
.sunstone .bullet-div {
  background-color: #ffe4df;
}
.sunstone .bullet-div span {
  background-color: #616161;
}

.view-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 2px 15px;
  text-decoration: none;
  
  font-weight: normal;
  border-radius: 0px;
  margin-top: 25px;
}

.card-deco {
  position: absolute;
  bottom: -30px;
  right: -48px;
}

.deco-frame-container {
  max-width: 1200px;
  margin: 40px auto;
}

.deco-frame-container img {
  width: 100%;
  height: auto;
}

/* ---------- Section 3 ---------- */

.gemstone-section {
  background: linear-gradient(
    to bottom,
    rgba(255, 229, 179, 0.4853),
    #ffffff 40%
  );
  padding: 40px 20px;
  max-width: 100vw;
}

.gem-kit-container {
  width: 100%;
  max-width: 1180px;
  margin: auto;
}

.gem-kit-container .section-header p {
  max-width: 820px;
}

.kit-feature-card {
  max-width: 330px;
  padding: 30px 20px;
}

/* ------- Responsive Queries ------- */

@media (max-width: 1100px) {
  .hero-section {
    padding: 0 30px 70px;
  }

  .content-wrapper h1 {
    max-width: 650px;
  }

  .features-container {
    gap: 4px;
  }

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

  .section-header {
    max-width: 600px;
  }


  .feature-card {
    padding: 10px 5px;
    border-radius: 0;
  }

  .gemstone-grid {
    padding: 0 10px;
  }

  /* Card Layout Change */
  .gem-card {
    flex-direction: column;
    align-items: center;
    min-height: 340px;
  }

  .gem-card-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .card-deco {
    width: 100px;
    height: auto;
    right: -25px;
    bottom: -10px;
  }

  .deco-frame-container {
    margin: 40px auto 20px;
  }

  .gem-content {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
  }

  .gem-image {
    width: 76px;
    height: 76px;
  }

  .gem-image img {
    width: 55px;
    height: auto;
  }

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

  .gem-kit-container .section-header {
    max-width: 620px;
  }

  .kit-feature-card .card-header {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    bottom: -2%;
  }

  .hero-section {
    padding: 10px 20px 70px 20px;
  }

  .gemstones-section {
    padding: 60px 10px;
  }

  .content-wrapper h1 {
    margin: 10px auto;
  }

  .features-container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
  }

  .feature-card {
    max-width: 152px;
    border-radius: 4px;
    min-height: 140px;
  }

  .feature-card img {
    height: 50px;
  }

  .gemstone-grid {
    max-width: 550px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .view-btn {
    height: auto;
  }

  .card-deco {
    right: -20px;
    bottom: -10px;
  }

  .section-header h2 {
    margin-bottom: 10px;
  }

  .deco-frame-container {
    margin: 40px auto 20px auto;
  }

  .gemstone-section {
    background: linear-gradient(
      to bottom,
      rgba(255, 229, 179, 0.4853),
      #ffffff 15%
    );
  }
  .kit-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 25px;
  }

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

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