/** Shopify CDN: Minification failed

Line 11:10 Unexpected "{"
Line 11:19 Expected ":"
Line 11:26 Unexpected "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');


#section-{{ section.id }} {
  --heading-color: inherit;
  --text-color: inherit;
  --heading-font: inherit;
  --body-font: inherit;
}
/* ================= BASE ================= */
body {
  font-family: var(--body-font);
  color: var(--text-color);
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gemstone-page {
  background: #fff;
  width: 100%;
  overflow-x: hidden;
}

/* ================= HERO ================= */
.candere-hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  width: 90%;
  z-index: 2;
}

.hero-center h1 {
  font-size: 52px;
  letter-spacing: 4px;
}

.hero-center .line {
  width: 220px;
  height: 1px;
  background: #777;
  margin: 15px auto 30px;
}

.hero-center h2 {
  font-size: 28px;
}

.hero-center p {
  font-size: 15px;
  line-height: 1.8;
}

.hero-btn {
  border: 1px solid #777;
  padding: 12px 40px;
  display: inline-block;
  color: #2fbccc;
  font-size: 18px;
}

/* ================= COMMON ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.text-center {
  text-align: center;
}

h2 {
  font-size: 32px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

/* ================= STONES ================= */
.stones-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 60px;
  margin-top: 40px;
}

.stone-item {
  grid-column: span 2;
  text-align: center;
}

/* Pyramid (desktop only) */
.stone-item:nth-child(1) { grid-column: 1 / span 2; }
.stone-item:nth-child(2) { grid-column: 3 / span 2; }
.stone-item:nth-child(3) { grid-column: 5 / span 2; }
.stone-item:nth-child(4) { grid-column: 7 / span 2; }
.stone-item:nth-child(5) { grid-column: 9 / span 2; }

.stone-item:nth-child(6) { grid-column: 2 / span 2; }
.stone-item:nth-child(7) { grid-column: 4 / span 2; }
.stone-item:nth-child(8) { grid-column: 6 / span 2; }
.stone-item:nth-child(9) { grid-column: 8 / span 2; }

.stone-item:nth-child(10) { grid-column: 3 / span 2; }
.stone-item:nth-child(11) { grid-column: 5 / span 2; }
.stone-item:nth-child(12) { grid-column: 7 / span 2; }

.stone-item:nth-child(13) { grid-column: 4 / span 2; }
.stone-item:nth-child(14) { grid-column: 6 / span 2; }

.stone-item:hover img {
  opacity: 0.6;
}

/* ================= COLOR ================= */
.color-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.color-grid div {
  width: 30%;
}

/* ================= CLARITY + CUT ================= */
.clarity-cut-wrapper {
  display: flex;
  width: 100%;
  height: 650px;
  margin-bottom: 20px;
}

.clarity-section {
  width: 50%;
  position: relative;
}

.clarity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clarity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
}

.clarity-overlay {
  position: absolute;
  top: 18%;
  left: 8%;
  color: #fff;
  max-width: 480px;
}

.clarity-overlay h2 {
  font-size: 40px;
}

.cut-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}

.cut-image {
  height: 60%;
}

.cut-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cut-content {
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 60px;
  text-align: center;
}

/* ================= SIZE ================= */
.size-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.size-bg {
  width: 100%;
}

.size-overlay {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 700px;
  width: 90%;
}

/* ================= PRECIOUS ================= */
.precious-section {
  display: flex;
  height: 650px;
  margin-bottom: 20px;
}

.precious-image {
  width: 50%;
}

.precious-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
  text-align: center;
  background: #f8f8f8;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .stones-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {


  /* STONES */
  .stones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stone-item {
    grid-column: span 1 !important;
  }

  .stone-item:nth-child(n) {
    grid-column: auto !important;
  }

  /* LAYOUT STACK */
  .clarity-cut-wrapper,
  .precious-section {
    flex-direction: column;
    height: auto;
  }

  .clarity-section,
  .cut-section,
  .precious-image,
  .precious-content {
    width: 100%;
  }

  /* CUT + PRECIOUS */
  .cut-content,
  .precious-content {
    padding: 30px 20px;
  }

  /* PRECIOUS ORDER FIX */
  .precious-image {
    order: 1;
    height: 300px;
  }

  .precious-content {
    order: 2;
  }

  /* SIZE */
  .size-section {
    height: auto;
  }

  .size-bg {
    min-height: 300px;
  }

  .size-overlay {
    top: 10%;
    width: 90%;
  }

  .size-overlay h2 {
    font-size: 24px;
  }

  .size-overlay p {
    font-size: 13px;
  }

  /* COLOR */
  .color-grid {
    flex-direction: column;
  }

  .color-grid div {
    width: 100%;
  }
}