@charset "utf-8";
/* =====================================
   JUMP RINGS – PRODUCT PAGE
   ===================================== */

.product-page {
  max-width: 980px;
  margin: 0 auto;
}

.product-header {
  margin-bottom: 2.5rem;
}

.product-subline {
  max-width: 680px;
}

.product-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.product-image img {
  max-width: 100%;
}

.variant-section h2 {
  margin-bottom: 1.5rem;
}

.variant-group {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.variant-group legend {
  font-weight: 700;
  padding: 0 0.5rem;
}

.variant-group label {
  display: block;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

/* =====================================
   JUMP RINGS – SELECTOR CARDS
   ===================================== */

.jump-ring-selector {
  margin-top: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ================================
   Jump Ring Size Reference
================================ */

.jump-ring-size-ref {
  max-width: 1200px;   /* match card grid width */
  margin: 1.5rem auto 2.5rem;
}


.jump-ring-size-ref {
  margin: 1.5rem 0 2.5rem;
}

.jump-ring-size-ref details {
  background: #f7f9fc;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.jump-ring-size-ref summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

.jump-ring-size-ref summary::-webkit-details-marker {
  display: none;
}

.jump-ring-size-ref summary::after {
  content: "▾";
  float: right;
  font-size: 1.35em;       /* increase arrow size */
  line-height: 1;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.jump-ring-size-ref details[open] summary::after {
  transform: rotate(180deg);
}

.size-chart-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

.size-chart {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.size-chart th,
.size-chart td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}

.size-chart th {
  font-weight: 600;
  color: #1a3456;
}

.size-chart td {
  color: #333;
}



.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.selector-card {
  display: block;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.4rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.selector-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.selector-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.selector-card h3 {
  margin-bottom: 0.4rem;
}

.selector-card p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.selector-cta {
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.selector-card:hover {
  border-color: rgba(197, 21, 42, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.selector-card:hover .selector-cta {
  opacity: 1;
  color: #c5152a;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .selector-grid {
    grid-template-columns: 1fr;
  }
}
