@import url("/styles/design-system.css");
@import url("/css/style.css");

.reading-hero {
  padding: 80px 40px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.reading-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.reading-hero .reading-image {
  height: auto;
  overflow: visible;
}

.reading-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.reading-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.reading-details h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.reading-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
}

.reading-price {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 30px;
}

.reading-description {
  margin-bottom: 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.whats-included {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  padding: 30px;
  margin-bottom: 40px;
}

.whats-included h3 {
  color: #d4af37;
  margin-bottom: 20px;
}

.whats-included ul {
  list-style: none;
  padding: 0;
}

.whats-included li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.whats-included li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.purchase-reading-button {
  width: 100%;
  background: #d4af37;
  color: #0f0c29;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.purchase-reading-button:hover {
  background: #f0c659;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.product-detail-simple {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.product-detail-simple img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 32px;
}

.product-detail-simple ul {
  list-style: disc;
  margin: 0 auto 32px;
  padding-left: 22px;
  max-width: 540px;
  text-align: left;
}

.product-detail-simple li {
  margin-bottom: 12px;
}

.product-detail-simple .purchase-reading-button {
  width: auto;
  padding-left: 36px;
  padding-right: 36px;
}

@media (max-width: 900px) {
  .reading-container {
    grid-template-columns: 1fr;
  }
}

.compatibility-hero {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 20px;
}

.price {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 700;
  margin-top: 10px;
}

.hero-description {
  margin-top: 40px;
  line-height: 1.9;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description p {
  margin-bottom: 20px;
}

.what-youll-discover {
  padding: 100px 40px;
  background: rgba(10, 8, 32, 0.6);
}

.what-youll-discover h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.discovery-card {
  background: rgba(10, 8, 32, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.discovery-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.discovery-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.discovery-card h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.discovery-card p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.certificate-preview {
  padding: 100px 40px;
}

.certificate-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
}

.certificate-details {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.detail-item h3 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.detail-item p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.why-matters {
  padding: 100px 40px;
  background: rgba(212, 175, 55, 0.05);
}

.why-matters h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 40px;
}

.matters-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
}

.matters-content ul {
  margin: 30px 0;
  list-style: none;
  padding: 0;
}

.matters-content li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.matters-content strong {
  color: #d4af37;
}

.perfect-for {
  padding: 100px 40px;
}

.perfect-for h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
}

.perfect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.perfect-card {
  background: rgba(10, 8, 32, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
}

.perfect-card h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #d4af37;
  padding: 35px;
  border-radius: 8px;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.author {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  color: #d4af37;
  font-size: 1.1rem;
  margin-top: 10px;
}

.how-it-works {
  padding: 100px 40px;
  background: rgba(10, 8, 32, 0.5);
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #d4af37;
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 20px;
}

.step h3 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq {
  padding: 100px 40px;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.faq-item p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta {
  padding: 120px 40px;
  background: linear-gradient(135deg, #302b63, #24243e, #0f0c29);
  text-align: center;
}

.final-cta h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.final-cta > p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.purchase-button {
  background: #d4af37;
  color: #0f0c29;
  padding: 20px 60px;
  border: none;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.purchase-button:hover {
  background: #f0c659;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.guarantee {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-style: italic;
}

.why-upgrade,
.unboxing,
.investment-piece,
.frame-options,
.ultimate-expression,
.display-ideas,
.when-to-gift {
  padding: 100px 40px;
}

.why-upgrade h2,
.unboxing h2,
.investment-piece h2,
.frame-options h2,
.ultimate-expression h2,
.display-ideas h2,
.when-to-gift h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #d4af37;
  margin-bottom: 30px;
}

.why-upgrade .intro,
.investment-piece .lead,
.ultimate-expression .lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.upgrade-reasons,
.investment-grid,
.frame-grid,
.unboxing-steps,
.display-grid,
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.reason,
.investment-point,
.frame-option,
.unbox-step,
.display-idea,
.occasion {
  background: rgba(10, 8, 32, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.frame-option img,
.unbox-step img,
.display-idea img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.frame-option h3,
.investment-point h3,
.reason h3,
.display-idea h3,
.occasion h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

.frame-option p,
.investment-point p,
.reason p,
.unbox-step p,
.display-idea p,
.occasion p,
.twin-flames-concept p {
  line-height: 1.7;
}

.unboxing {
  background: rgba(212, 175, 55, 0.05);
}

.twin-flames-concept {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 8, 32, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 40px;
}

.twin-flames-concept h3 {
  color: #d4af37;
  margin: 25px 0 15px;
}

.twin-flames-concept ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.twin-flames-concept li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 900px) {
  .hero-container,
  .discovery-grid,
  .certificate-details,
  .perfect-grid,
  .testimonial-grid,
  .steps-grid,
  .upgrade-reasons,
  .unboxing-steps,
  .investment-grid,
  .frame-grid,
  .display-grid,
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   ENHANCED MOBILE RESPONSIVE STYLES FOR ORACLE/READING PAGES
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Reading Hero Section */
  .reading-hero {
    padding: 40px 20px !important;
  }

  .reading-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .reading-image img {
    max-height: 350px !important;
    object-fit: contain !important;
  }

  .reading-details h1 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }

  .reading-tagline {
    font-size: 1rem !important;
  }

  .reading-price {
    font-size: 1.5rem !important;
  }

  .whats-included {
    padding: 20px 15px !important;
    margin-bottom: 25px !important;
  }

  .whats-included h3 {
    font-size: 1.1rem !important;
  }

  .whats-included li {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
  }

  .purchase-reading-button {
    padding: 16px 30px !important;
    font-size: 1rem !important;
    min-height: 50px !important;
  }

  /* Compatibility Hero */
  .compatibility-hero {
    padding: 50px 20px !important;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hero-image img {
    max-height: 350px !important;
    object-fit: contain !important;
  }

  .tagline {
    font-size: 1.1rem !important;
  }

  .price {
    font-size: 1.5rem !important;
  }

  .hero-description {
    font-size: 1rem !important;
  }

  /* Discovery Grid */
  .what-youll-discover {
    padding: 50px 20px !important;
  }

  .what-youll-discover h2 {
    font-size: 1.6rem !important;
    margin-bottom: 40px !important;
  }

  .discovery-grid {
    gap: 25px !important;
  }

  .discovery-card {
    padding: 25px 20px !important;
  }

  .discovery-card .icon {
    font-size: 2.5rem !important;
  }

  .discovery-card h3 {
    font-size: 1.1rem !important;
  }

  /* Certificate Preview */
  .certificate-preview {
    padding: 50px 20px !important;
  }

  .certificate-preview h2 {
    font-size: 1.6rem !important;
  }

  .certificate-details {
    gap: 30px !important;
  }

  .detail-item h3 {
    font-size: 1.2rem !important;
  }

  /* Why Matters */
  .why-matters {
    padding: 50px 20px !important;
  }

  .why-matters h2 {
    font-size: 1.6rem !important;
  }

  .matters-content {
    font-size: 1rem !important;
  }

  /* Perfect For */
  .perfect-for {
    padding: 50px 20px !important;
  }

  .perfect-for h2 {
    font-size: 1.6rem !important;
  }

  .perfect-grid {
    gap: 20px !important;
  }

  .perfect-card {
    padding: 25px 20px !important;
  }

  /* Testimonials */
  .testimonial-grid {
    gap: 25px !important;
  }

  .testimonial {
    padding: 25px 20px !important;
  }

  .quote {
    font-size: 1rem !important;
  }

  /* How It Works */
  .how-it-works {
    padding: 50px 20px !important;
  }

  .how-it-works h2 {
    font-size: 1.6rem !important;
  }

  .steps-grid {
    gap: 30px !important;
  }

  .step-number {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    line-height: 46px !important;
  }

  .step h3 {
    font-size: 1.1rem !important;
  }

  /* FAQ */
  .faq {
    padding: 50px 20px !important;
  }

  .faq h2 {
    font-size: 1.6rem !important;
  }

  .faq-item h3 {
    font-size: 1.1rem !important;
  }

  /* Final CTA */
  .final-cta {
    padding: 60px 20px !important;
  }

  .final-cta h2 {
    font-size: 1.8rem !important;
  }

  .final-cta > p {
    font-size: 1rem !important;
  }

  .purchase-button {
    width: 100% !important;
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    min-height: 50px !important;
  }

  /* Upgrade/Frame sections */
  .why-upgrade,
  .unboxing,
  .investment-piece,
  .frame-options,
  .ultimate-expression,
  .display-ideas,
  .when-to-gift {
    padding: 50px 20px !important;
  }

  .why-upgrade h2,
  .unboxing h2,
  .investment-piece h2,
  .frame-options h2,
  .ultimate-expression h2,
  .display-ideas h2,
  .when-to-gift h2 {
    font-size: 1.5rem !important;
  }

  .upgrade-reasons,
  .investment-grid,
  .frame-grid,
  .unboxing-steps,
  .display-grid,
  .occasions-grid {
    gap: 20px !important;
  }

  .reason,
  .investment-point,
  .frame-option,
  .unbox-step,
  .display-idea,
  .occasion {
    padding: 20px !important;
  }

  /* Twin Flames Concept */
  .twin-flames-concept {
    padding: 25px 20px !important;
  }
}

/* EXTRA SMALL SCREENS - 320px */
@media (max-width: 374px) {
  .reading-details h1 {
    font-size: 1.4rem !important;
  }

  .reading-price {
    font-size: 1.3rem !important;
  }

  .purchase-reading-button,
  .purchase-button {
    font-size: 0.95rem !important;
    padding: 14px 20px !important;
  }

  .what-youll-discover h2,
  .certificate-preview h2,
  .why-matters h2,
  .perfect-for h2,
  .how-it-works h2,
  .faq h2,
  .final-cta h2 {
    font-size: 1.4rem !important;
  }
}
