h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

button {
  font-family: "Hind", sans-serif;
  border-radius: 5px;
}

/* ==========================================================================
   Hero Header
   ========================================================================== */

.hssb-header {
  display: flex;
  align-items: center;
  /* padding: 0 0 0 2em; */
  height: 650px;
}

.hssb-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  /* margin-bottom: 20px; */
  line-height: 1.2;
}

.hssb-header__desc {
  font-size: 22px;
  color: #353535;
  /* margin-bottom: 30px; */
}

.hssb-header__buttons {
  display: flex;
  gap: 1em;
}

.hssb-landing__btn {
  /* background-color: #4a1b25; */
  background-color: #09b983;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 1em;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.hssb-landing__btn:link,
.testimonials-cta-button:link {
  text-decoration: none;
}

.hssb-landing__btn--secondary {
  background-color: #67777f;
  color: #fff;
}

.hssb-landing__btn:hover {
  background-color: #0b835e;
  color: #fff;
}

.hssb-landing__btn--secondary:hover {
  background-color: #334750;
  color: #fff;
}

.hssb-header__content {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(1.5em, 8vw, 10em) 0 clamp(1.5em, 4vw, 5em);
  background: #b5bec3;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 10%,
    rgba(181, 190, 195, 1) 52%,
    rgba(181, 190, 195, 1) 100%
  );
}

.hssb-header__content__additional {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 0.5em;
  font-weight: bold;
}

.hssb-header__content__additional p {
  font-size: 18px;
  color: #69454c;
}

.hssb-header__image {
  flex: 1;
  background-color: #b5bec3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  padding-right: clamp(1.5em, 4vw, 5em);
}

.hssb-header__image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}

.hssb-header__btn {
  background-color: #2c8a71;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 10px;
}

.hssb-header__btn:hover {
  background-color: #238a61;
}

/* ==========================================================================
   Section Shell
   ========================================================================== */

.hssb-section {
  margin: 0 auto;
  padding: 80px 20px;
}

.hssb-section--alt {
  background: #f9f9f9;
}

.hssb-cta-container {
  text-align: center;
}

.hssb-cta-title {
  font-size: 32px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hssb-cta-text {
  font-size: 1.25rem;
  color: #353535;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hssb-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.hssb-section__label {
  color: #5c2737;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px;
  margin-top: 2em;
  margin-bottom: 10px;
}

.hssb-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hssb-cta-text {
    max-width: 100%;
  }
}

/* Section Shell | Support Text */

.hssb-section__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Header | Responsive */

@media (max-width: 1400px) {
  .hssb-header__content {
    padding: 0 clamp(1.5em, 6vw, 8em) 0 clamp(1.5em, 3vw, 4em);
  }

  .hssb-header__image {
    padding-right: clamp(1.5em, 3vw, 4em);
  }
}

@media (max-width: 1200px) {
  .hssb-header__content {
    padding: 0 clamp(1.5em, 5vw, 6em) 0 clamp(1.5em, 2.5vw, 3em);
  }

  .hssb-header__image {
    padding-right: clamp(1.5em, 2.5vw, 3em);
  }
}

@media (max-width: 1240px) {
  .hssb-header {
    flex-direction: column;
    height: auto;
    min-height: 600px;
  }

  .hssb-header__content {
    order: 2;
    background: linear-gradient(
      357deg,
      rgba(255, 255, 255, 1) 10%,
      rgba(181, 190, 195, 1) 52%,
      rgba(181, 190, 195, 1) 100%
    );
  }

  .hssb-header__image {
    flex: none;
    width: 100%;
    height: 400px;
    padding-top: 2em;
    padding-right: 0;
    order: 1;
  }

  .hssb-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hssb-header__desc {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .hssb-header__buttons {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hssb-header {
    min-height: auto;
  }

  .hssb-header__content {
    padding: 2em 1.5em 2em 1.5em;
  }

  .hssb-header__image {
    height: 300px;
  }

  .hssb-header h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hssb-header__desc {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hssb-header__buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75em;
  }

  .hssb-landing__btn {
    margin-right: 0;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hssb-header__content__additional {
    flex-wrap: wrap;
    gap: 0.5em;
    margin-top: 15px;
  }

  .hssb-header__content__additional p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hssb-header__content {
    padding: 1.5em 1em 1.5em 1em;
  }

  .hssb-header__image {
    height: 250px;
  }

  .hssb-header h1 {
    font-size: 24px;
  }

  .hssb-header__desc {
    font-size: 16px;
  }

  .hssb-landing__btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hssb-header__content__additional p {
    font-size: 14px;
  }
}

/* ==========================================================================
   Translation Comparison
   ========================================================================== */

.comparison-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d2d9dd;
  color: white;
}

.comparison-header-item {
  padding: 20px 30px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  font-family: "Hind", sans-serif;
  color: #1f2528;
}

.comparison-header-item:first-child {
  border-right: 1px dotted #d9d9d9;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px dotted #d9d9d9;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 30px;
}

.comparison-cell:first-child {
  /* background: #fff5f5; */
  background: #fff;
  border-right: 1px dotted #d9d9d9;
}

.comparison-cell:last-child {
  background: #fff;
}

.verse-reference {
  display: flex;
  font-weight: 700;
  color: #777777;
  letter-spacing: 0.5px;
  gap: 0.5em;
  align-items: center;
}

.verse-reference p {
  margin: 0;
  font-family: "Hind", sans-serif;
  color: #4c4c4c;
}

.verse-reference p:first-child {
  /* color: #5c2737; */
  color: #1f2528;
  text-transform: uppercase;
}

.verse-text {
  color: #313335;
}

/* Translation Comparison | Highlights */

.highlight {
  background: #f3aaaa;
  color: rgb(77, 26, 26);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.highlight-hssb {
  background: #9deba8;
  color: rgb(15 35 18);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.translation-label {
  background: #ecf3f7;
  color: #dae8e3;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
}

/* Translation Comparison | Insight Callout */

.insight-box {
  display: flex;
  background: linear-gradient(312deg, #d2d9dd 0%, #ecf3f7 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin: 50px auto 0 auto;
  max-width: 900px;
  color: #293c58;
}

.insight-icon {
  font-size: 48px;
}

.insight-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.insight-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 auto;
}

/* Translation Comparison | Primary CTA */

.cta-button {
  display: inline-block;
  background: #09b983;
  color: white;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgb(202 202 202);
}

.cta-button:hover {
  background: #0b835e;
  transform: translateY(2px);
  box-shadow: 0 6px 20px #249472;
  color: white;
}

@media (max-width: 768px) {
  .cta-button {
    max-width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Translation Comparison | Tab Controls */

.tab-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-button {
  background: white;
  border: 2px solid #c4cbcf;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #586268;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  border-color: #364953;
  color: #364953;
}

.tab-button.active {
  background: #364953;
  border-color: #364953;
  color: white;
}

/* Translation Comparison | Responsive */

@media (max-width: 768px) {
  .hssb-section__title {
    font-size: 32px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header-item:first-child,
  .comparison-cell:first-child {
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
  }

  .comparison-cell {
    padding: 20px;
  }

  .insight-box {
    padding: 30px 20px;
  }

  .tab-container {
    gap: 5px;
  }

  /* .tab-button {
    padding: 10px 20px;
    font-size: 14px;
  } */
}

/* ==========================================================================
   Feature Highlights
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: solid 5px #ab9ea2;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: #e9dfe2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: #5c2737;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: -8px;
  line-height: 1.4;
}

.feature-description {
  color: #555;
  line-height: 1.6;
}

/* Feature Highlights | Responsive */

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Product Showcase & Gallery
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 0;
}

.product-image {
  flex: 0 0 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.product-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f2f2f2;
}

/* Image Gallery Styles */
.product-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
  position: relative;
}

.gallery-slide {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px 20px 40px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
}

.gallery-slide img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #6b3e4a;
  color: #6b3e4a;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
  background: #6b3e4a;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(107, 62, 74, 0.4);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav--prev {
  left: 10px;
}

.gallery-nav--next {
  right: 10px;
}

.gallery-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 0 10px;
}

.gallery-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2d2d2;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-indicator:hover {
  background: #999;
  transform: scale(1.2);
}

.gallery-indicator.active {
  background: #6b3e4a;
  transform: scale(1.3);
  border-color: #6b3e4a;
}

/* Product Showcase | Responsive ≤1024px */

@media (max-width: 1024px) {
  .product-card {
    flex-direction: column;
  }

  .product-image {
    flex: none;
    width: 100%;
    min-height: 400px;
  }

  .product-content {
    padding: 30px;
  }
}

/* Product Showcase | Responsive ≤768px */

@media (max-width: 768px) {
  .product-image {
    padding: 20px 15px;
    min-height: 350px;
  }

  .product-content {
    padding: 25px 20px;
  }

  .product-title {
    font-size: 22px;
  }

  .gallery-slide {
    padding: 15px 30px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .gallery-nav--prev {
    left: 30px;
  }

  .gallery-nav--next {
    right: 30px;
  }

  .gallery-slide img {
    max-height: 300px;
  }

  .product-footer {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  /* .cta-button {
    width: 100%;
  } */
}

/* Product Showcase | Responsive ≤480px */

@media (max-width: 480px) {
  .product-image {
    padding: 15px 10px;
    min-height: 300px;
  }

  .product-content {
    padding: 20px 15px;
  }

  .product-title {
    font-size: 20px;
  }

  .gallery-slide {
    padding: 15px 25px;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .gallery-nav--prev {
    left: 3px;
  }

  .gallery-nav--next {
    right: 3px;
  }

  .gallery-slide img {
    max-height: 250px;
  }
}

/* Product Showcase | Image Modal */

body.modal-open {
  overflow: hidden;
}

.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.image-modal.is-visible {
  display: flex;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}

.image-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.image-modal__dialog img {
  max-width: 80vw;
  max-height: 70vh;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.image-modal__caption {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin: 0;
}

.image-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

.image-modal__close:focus {
  outline: 2px solid #6b3e4a;
  outline-offset: 2px;
}

/* Product Showcase | Content */

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: -3px;
  line-height: 1.3;
}

.features-list {
  list-style: none;
  margin-top: -5px;
  margin-bottom: 20px;
}

.features-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
}

.features-list li:last-child {
  border-bottom: none;
}

.checkmark {
  color: #6b3e4a;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.price-section {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: #666;
  margin-top: 0;
  margin-bottom: 5px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #6b3e4a;
}

/* Product Showcase | CTA
   Note: overrides the general `.cta-button` styles within the product card. */

.cta-button {
  display: inline-block;
  background: #09b983;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background: #0b835e;
}

/* Product Showcase | Responsive ≤900px */

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Showcase | Responsive ≤500px */

@media (max-width: 500px) {
  .bible-cover h1 {
    font-size: 1.5em;
  }

  .bible-cover h2 {
    font-size: 1.7em;
  }

  .bible-cover h3 {
    font-size: 1.1em;
  }

  .product-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  /* 
  .cta-button {
    width: 100%;
  } */
}

/* ==========================================================================
   About the Translator
   ========================================================================== */

.translator {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 2em;
}

.translator-image img {
  width: auto;
  height: 380px;
  border-radius: 10px;
}

.translator-desc {
  max-width: 600px;
}

.translator-desc p:first-child {
  margin-top: 0px;
}

@media (max-width: 768px) {
  .translator {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .translator-image img {
    height: 200px;
  }
}

@media (max-width: 320px) {
  .translator-image img {
    height: 150px;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars .star {
  color: #f4d03f;
  font-size: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.author-location {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.testimonials-cta {
  text-align: center;
  margin-top: 70px;
}

/* Testimonials | Responsive */

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonials-cta-button {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
  }
}

/* ==========================================================================
   Video Feature
   ========================================================================== */

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe,
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover {
  opacity: 0.9;
}

.video-play-button {
  width: 80px;
  height: 80px;
  background: rgba(107, 62, 74, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 62, 74, 0.4);
}

.video-placeholder:hover .video-play-button {
  background: rgba(107, 62, 74, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(107, 62, 74, 0.6);
}

.video-play-button svg {
  width: 40px;
  height: 40px;
  margin-left: 4px; /* Slight offset for visual centering */
}

.video-placeholder-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Video Feature | Responsive */

@media (max-width: 768px) {
  .video-container {
    border-radius: 8px;
  }

  .video-container iframe,
  .video-placeholder {
    border-radius: 8px;
  }

  .video-play-button {
    width: 60px;
    height: 60px;
  }

  .video-play-button svg {
    width: 30px;
    height: 30px;
  }

  .video-placeholder-text {
    font-size: 16px;
  }
}

/* ==========================================================================
   Authenticity Stamp
   ========================================================================== */

.stamp-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-direction: row-reverse;
}

.stamp-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stamp-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: #f9f9f9;
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stamp-placeholder svg {
  width: 100%;
  height: 100%;
}

.stamp-description {
  flex: 1;
  max-width: 600px;
}

.stamp-label {
  color: #5c2737;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.stamp-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.stamp-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.stamp-text a {
  color: #6b3e4a;
  font-size: 17px;
  text-decoration: underline;
}

.stamp-text a:hover {
  color: #6b3e4a;
  text-decoration: underline;
}

.stamp-text strong {
  color: #6b3e4a;
  font-weight: 600;
}

/* Authenticity Stamp | Responsive ≤1000px */

@media (max-width: 1000px) {
  .stamp-section {
    flex-direction: column;
    gap: 40px;
  }

  .stamp-image {
    max-width: 100%;
  }

  .stamp-placeholder {
    max-width: 350px;
  }

  .stamp-description {
    max-width: 100%;
  }
}

/* Authenticity Stamp | Responsive ≤768px */

@media (max-width: 768px) {
  .stamp-title {
    font-size: 28px;
  }

  .stamp-text {
    font-size: 16px;
  }

  .stamp-placeholder {
    max-width: 300px;
    padding: 30px;
  }
}

/* ==========================================================================
   Epistle Comparison
   ========================================================================== */

.epistle-comparison-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.epistle-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d2d9dd;
  color: white;
}

.epistle-comparison-header-item {
  padding: 20px 30px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  font-family: "Hind", sans-serif;
  color: #1f2528;
}

.epistle-comparison-header-item:first-child {
  border-right: 1px dotted #d9d9d9;
}

.epistle-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.epistle-comparison-cell {
  padding: 30px;
}

.epistle-comparison-cell:first-child {
  background: #fff;
  border-right: 1px dotted #d9d9d9;
}

.epistle-comparison-cell:last-child {
  background: #fff;
}

.epistle-text {
  margin-top: 20px;
}

.epistle-text-kjv p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin: 0;
}

.epistle-text-hssb {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.epistle-verse {
  margin: 0;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a1a1a;
}

.epistle-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px 0;
}

.epistle-list-level1 {
  padding-left: 30px;
  margin-bottom: 12px;
}

.epistle-list li {
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
  color: #333;
}

.epistle-list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #2c8a71;
  border-radius: 50%;
}

/* Epistle Comparison | Responsive */

@media (max-width: 768px) {
  .epistle-comparison-header,
  .epistle-comparison-row {
    grid-template-columns: 1fr;
  }

  .epistle-comparison-header-item:first-child,
  .epistle-comparison-cell:first-child {
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
  }

  .epistle-comparison-cell {
    padding: 20px;
  }

  .epistle-list-level1 {
    padding-left: 20px;
  }
}

.verse-number {
  color: #555;
  vertical-align: super;
  font-size: 0.75em;
  /* margin-right: -3.5px; */
}

.indent-one {
  margin-left: 1em;
}

.verse-text .indent-one {
  margin-top: -0.5em;
  margin-left: 1em;
}

.epistle-text .indent-one {
  margin-top: -0.5em;
  margin-left: 1em;
}

.indent-two {
  margin-top: -0.5em;
  margin-left: 2em;
}

.indent-three {
  margin-top: -0.5em;
  margin-left: 3em;
}

.indent-four {
  margin-left: 4em;
  margin-top: -0.5em;
}

.stamp-image img {
  box-shadow: 0 4px 15px rgb(202 202 202);
  height: 700px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stamp-image a:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .stamp-image img {
    height: 400px;
  }
}

footer {
  margin-top: -1em;
}

.price-label-test {
  font-size: 22px;
  margin-left: 5px;
  font-weight: 400;
  opacity: 0.8;
  font-family: "Hind", sans-serif;
  color: #381f25;
}
