/* JRA Buy Page Sub-Tabs — ID 19656 */

.jra-buy-tabs-19656 {
  background: #F5F4F0;
  padding: 80px 20px;
  font-family: 'Epilogue', Arial, sans-serif;
}

.jra-tabs-container-19656 {
  max-width: 1100px;
  margin: 0 auto;
}

.jra-tabs-header-19656 {
  text-align: center;
  margin-bottom: 48px;
}

.jra-tabs-header-19656 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 12px;
  font-family: 'Epilogue', Arial, sans-serif;
}

.jra-tabs-header-19656 p {
  font-size: 17px;
  color: #555;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hide radio inputs */
.jra-buy-tabs-19656 input[type="radio"] {
  display: none;
}

/* Tab nav */
.jra-tab-nav-19656 {
  display: flex;
  background: #0D0D0D;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.jra-tab-nav-19656 label {
  flex: 1;
  text-align: center;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #aaa;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Epilogue', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.jra-tab-nav-19656 label:hover {
  color: #C8A96E;
}

/* Active tab states via CSS sibling selectors */
#jra-t1-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-nav-19656 label[for="jra-t1-19656"],
#jra-t2-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-nav-19656 label[for="jra-t2-19656"],
#jra-t3-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-nav-19656 label[for="jra-t3-19656"] {
  color: #C8A96E;
  border-bottom: 3px solid #C8A96E;
  background: rgba(200, 169, 110, 0.08);
}

/* Tab panels container */
.jra-tab-panels-19656 {
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 32px rgba(13, 13, 13, 0.08);
}

/* Individual panels — hidden by default */
.jra-tab-panel-19656 {
  display: none;
  padding: 52px 48px;
  animation: jraFadeIn19656 0.35s ease;
}

@keyframes jraFadeIn19656 {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Show active panel */
#jra-t1-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-panels-19656 #jra-p1-19656,
#jra-t2-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-panels-19656 #jra-p2-19656,
#jra-t3-19656:checked ~ .jra-tabs-wrapper-19656 .jra-tab-panels-19656 #jra-p3-19656 {
  display: block;
}

/* Panel headings */
.jra-tab-panel-19656 h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0D0D0D;
  margin-bottom: 16px;
  font-family: 'Epilogue', Arial, sans-serif;
}

/* Panel intro text */
.jra-intro-19656 {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 720px;
}

/* Feature list */
.jra-features-19656 {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.jra-features-19656 li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.jra-features-19656 li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: #C8A96E;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  flex-shrink: 0;
}

/* CTA Button */
.jra-cta-btn-19656 {
  display: inline-block;
  padding: 14px 36px;
  background: #C8A96E;
  color: #0D0D0D;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Epilogue', Arial, sans-serif;
  letter-spacing: 0.3px;
}

.jra-cta-btn-19656:hover {
  background: #b8945a;
  transform: translateY(-2px);
  color: #0D0D0D;
}

/* Note text */
.jra-note-19656 {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .jra-tab-nav-19656 label {
    font-size: 11px;
    padding: 12px 6px;
    letter-spacing: 0;
  }

  .jra-tab-panel-19656 {
    padding: 32px 20px;
  }

  .jra-tab-panel-19656 h3 {
    font-size: 22px;
  }

  .jra-features-19656 {
    grid-template-columns: 1fr;
  }

  .jra-tabs-header-19656 h2 {
    font-size: 28px;
  }
}
