/* =====================================================================
   TUNVOLO — READ MORE MODAL STYLES
   Link this after your site's main stylesheet:
   <link rel="stylesheet" href="read-more-modal.css">
   Adjust colors/fonts to match your existing brand — these are safe
   generic defaults that won't clash with most layouts.
   ===================================================================== */

#readmore-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#readmore-overlay.readmore-open {
  display: flex;
}

#readmore-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  color: #222;
}

#readmore-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}

#readmore-close:hover {
  color: #111;
}

#readmore-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

#readmore-title {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.25;
  padding-right: 32px;
  color: #111;
}

#readmore-tagline {
  margin: 0 0 14px;
  color: #555;
  font-size: 15px;
}

#readmore-meta {
  margin-bottom: 20px;
  font-size: 15px;
  color: #333;
}

.readmore-price-old {
  text-decoration: line-through;
  color: #999;
}

.readmore-price {
  font-weight: 700;
  font-size: 18px;
  color: #111;
}

.readmore-pricenote,
.readmore-duration {
  color: #666;
}

#readmore-body {
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

#readmore-body p {
  margin: 0 0 12px;
}

#readmore-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

#readmore-body li {
  margin-bottom: 6px;
}

#readmore-cta {
  display: inline-block;
  margin-top: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

#readmore-cta:hover {
  background: #333;
}
