/* Scoped Container */
.gear-guide-embed {
  max-width: 1000px;
  margin: 2rem auto;
  font-family: inherit; /* Uses your store's font */
  color: #333;
  line-height: 1.6;
}

.guide-intro-block {
  text-align: center;
  margin-bottom: 3rem;
}

.gear-guide-embed h2 {
  font-size: 2.25rem;
  color: #1a1a1a;
  margin: 0.5rem 0 1.5rem 0;
  line-height: 1.2;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #2d5a27;
  font-size: 0.75rem;
}

.intro-text {
  font-size: 1.15rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
}

/* Layer Grid Logic */
.layer-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 3rem;
}

.layer-card {
  background: #fdfdfd;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  border: 1px solid #eaeaea;
  transition: transform 0.2s ease;
}

.layer-card:hover {
  transform: translateY(-5px);
  border-color: #d1d1d1;
}

.layer-number {
  font-weight: 800;
  font-size: 3.5rem;
  color: #f0f0f0;
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 0;
}

.layer-card h3 {
  font-size: 1.4rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.layer-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #2d5a27;
  margin-bottom: 1.5rem;
}

.gear-checklist {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.9rem;
}

.gear-checklist li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.gear-checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2d5a27;
}

/* Callout Box */
.curator-callout {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 3rem;
}

.curator-callout h4 {
  margin-top: 0;
  color: #a4c6a0; /* Soft moss green */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

/* Footer & Buttons */
.guide-action-footer {
  text-align: center;
  padding-top: 2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.guide-btn {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(0, 103, 56, 1);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.guide-btn:hover {
  background: rgba(0, 103, 56, 0.65);
  color: #fff;
}

@media (max-width: 768px) {
  .layer-grid-container { grid-template-columns: 1fr; }
  .guide-btn { width: 100%; text-align: center; }
}

.deep-dive {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.deep-dive summary {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: #555;
  list-style: none; /* Removes default arrow in some browsers */
}

.deep-dive summary::-webkit-details-marker {
  display: none; /* Removes default arrow in Safari */
}

.deep-dive summary:after {
  content: " +";
}

.deep-dive[open] summary:after {
  content: " -";
}

.dive-content {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #666;
  padding: 10px 0;
  background: #f9f9f9;
  border-radius: 4px;
  margin-top: 5px;
  padding: 10px;
}