/* ============================================================
   Método Francesca · Ligera en 15 Días
   Custom styles (complementan Tailwind)
   ============================================================ */

/* -------- Base -------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
}

/* Fraunces display serif — optical sizing + soft contrast for an editorial feel */
.font-display-lg,
.font-display-lg-mobile,
.font-headline-md,
.font-headline-sm {
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40, "WONK" 0;
}

/* Phosphor icons inherit text color; align to text baseline */
i[class^="ph"],
i[class*=" ph"] {
  display: inline-flex;
  vertical-align: middle;
  line-height: 1;
}

/* -------- Paper grain (subtle film texture, sits above content uniformly) -------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* -------- Shared utilities -------- */
.soft-shadow {
  box-shadow: 0 10px 40px -10px rgba(62, 54, 49, 0.08);
}

.soft-shadow-strong {
  box-shadow: 0 20px 60px -15px rgba(62, 54, 49, 0.18);
}

.glass-nav {
  background: rgba(255, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* -------- CTAs -------- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #526049;
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(82, 96, 73, 0.45);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.cta-primary:hover {
  background: #3d4b35;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(82, 96, 73, 0.55);
}

.cta-primary:active {
  transform: scale(0.97);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #526049;
  color: #526049;
  padding: 16px 34px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: rgba(82, 96, 73, 0.06);
  transform: translateY(-1px);
}

.cta-secondary:active {
  transform: scale(0.97);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526049;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: gap 0.2s ease;
  padding: 12px 0; /* min 24px touch height, OK as text link */
  min-height: 44px; /* WCAG AA touch target */
  border-bottom: 1.5px solid currentColor;
}

/* Ensure all primary tap targets meet 44px minimum (WCAG 2.5.5 / Apple HIG 48px) */
.cta-primary,
.cta-secondary,
#stickyMobileCta a,
header a[data-checkout-link] {
  min-height: 48px;
}

.cta-link:hover {
  gap: 14px;
}

/* -------- Problem cards -------- */
.problem-card {
  background: #fff8f5;
  border: 1px solid rgba(197, 200, 190, 0.5);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.25s ease;
}

.problem-card:hover {
  border-color: rgba(82, 96, 73, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(62, 54, 49, 0.1);
}

/* -------- Feature cards -------- */
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.4);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(62, 54, 49, 0.12);
  border-color: rgba(82, 96, 73, 0.3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #d8e8ca;
  color: #3d4b35;
  margin-bottom: 16px;
}

.feature-icon i {
  font-size: 24px;
}

/* -------- Timeline cards -------- */
.timeline-card {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.4);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(62, 54, 49, 0.12);
}

.timeline-step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #526049;
  color: #ffffff;
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px -6px rgba(82, 96, 73, 0.4);
}

/* -------- Experience cards -------- */
.experience-card {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.4);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(62, 54, 49, 0.12);
}

.experience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffdbcd;
  color: #805440;
  margin-bottom: 18px;
}

.experience-icon i {
  font-size: 28px;
}

/* -------- Preview gallery -------- */
.preview-card {
  margin: 0;
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
}

.preview-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(216, 232, 202, 0.6) 0%, rgba(247, 221, 212, 0.55) 100%);
  border: 1px solid rgba(197, 200, 190, 0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -12px rgba(62, 54, 49, 0.12);
}

.preview-image::before {
  content: attr(data-placeholder-label);
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-style: italic;
  color: #526049;
  font-size: 18px;
  text-align: center;
  padding: 16px;
}

.preview-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82, 96, 73, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 96, 73, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

/* When real image is dropped in, replace background with image */
.preview-image.has-image::before,
.preview-image.has-image::after {
  display: none;
}

/* -------- Image placeholders (fallback when images missing) -------- */
.placeholder-hero {
  background:
    linear-gradient(135deg, #d8e8ca 0%, #f7ddd4 60%, #ffdbcd 100%);
  position: relative;
}

.placeholder-hero::before {
  content: "Mockup e-book";
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-style: italic;
  color: #3d4b35;
  font-size: 24px;
  text-align: center;
  opacity: 0.55;
}

/* ============================================================
   Hero cover — real photographic product mockup. The image
   already carries its own warm styled background, so it just
   needs rounded corners and a soft grounding shadow.
   ============================================================ */
.cover-scene {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.cover-photo {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow:
    0 2px 6px rgba(33, 26, 22, 0.10),
    0 20px 44px -18px rgba(33, 26, 22, 0.32);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Lifts a touch on hover (desktop delight). */
.cover-scene:hover .cover-photo {
  transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
  .cover-photo {
    transition: none;
  }
}

/* Ebook mockup placeholder (hero) — shown when ebook-mockup.jpg is missing */
.ebook-mockup-placeholder:not(:has(img)) {
  background: rgba(255, 219, 205, 0.25);
  border: 2px dashed #805440;
}

.ebook-mockup-placeholder:not(:has(img))::before {
  content: "[ Mockup 3D del e-book\A 'Ligera en 15 Días' ]";
  white-space: pre;
  position: absolute;
  inset: 24px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #805440;
  opacity: 0.85;
}

.placeholder-portrait {
  background:
    linear-gradient(160deg, #ffdbcd 0%, #f3baa2 50%, #dac1b9 100%);
}

.placeholder-portrait::before {
  content: "Foto de Francesca";
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-style: italic;
  color: #653d2b;
  font-size: 22px;
  text-align: center;
  opacity: 0.6;
}

/* -------- FAQ -------- */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(82, 96, 73, 0.35);
  box-shadow: 0 8px 24px -10px rgba(62, 54, 49, 0.1);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #211a16;
  transition: background 0.2s ease;
}

.faq-summary:hover {
  background: rgba(82, 96, 73, 0.03);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: #526049;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 22px;
  color: #444840;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------- Reveal-on-scroll -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Sticky mobile CTA -------- */
#stickyMobileCta.visible {
  transform: translateY(0);
}

/* Add bottom padding to body when sticky CTA visible (so footer/content not hidden) */
@media (max-width: 767px) {
  body.has-sticky-cta {
    padding-bottom: 80px;
  }
}

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* -------- Focus styles (accesibilidad) -------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #526049;
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- Skip link (a11y) -------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: #526049;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================================
   v2 CRO COMPONENTS
   ============================================================ */

/* -------- Price Anchor (used in hero, value stack, oferta) -------- */
.price-anchor {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(186, 26, 26, 0.65);
  color: #757870;
  font-weight: 500;
  margin-right: 4px;
}

.price-current {
  color: #526049;
  font-weight: 700;
}

.price-stack-total {
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-size: 28px;
  color: #211a16;
}

.price-stack-total .price-anchor {
  font-size: 22px;
}

.price-stack-total .price-current {
  font-size: 36px;
}

/* -------- Countdown Timer -------- */
.countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.countdown__group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 44px;
}

.countdown__num {
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-size: 22px;
  line-height: 1;
}

.countdown__label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}

.countdown--inline {
  gap: 4px;
}

.countdown--inline .countdown__group {
  padding: 2px 6px;
  min-width: 32px;
}

.countdown--inline .countdown__num {
  font-size: 16px;
}

.countdown--expired {
  opacity: 0.7;
  font-style: italic;
}

/* -------- Video Facade (loads iframe only on click) -------- */
.video-facade {
  position: relative;
  width: 100%;
  /* Fallback for iOS Safari < 15.4 / older Android: 16:9 box via padding-top */
  padding-top: 56.25%;
  height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  box-shadow: 0 20px 60px -15px rgba(62, 54, 49, 0.25);
}

/* Modern browsers: aspect-ratio handles sizing, drop the padding hack */
@supports (aspect-ratio: 16 / 9) {
  .video-facade {
    padding-top: 0;
    height: auto;
  }
}

/* Vertical 9:16 variant for VSL section */
.video-facade--vertical {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* fallback 9:16 */
  height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #d8e8ca 0%, #f7ddd4 100%);
  box-shadow: 0 24px 70px -18px rgba(82, 96, 73, 0.35);
}

@supports (aspect-ratio: 9 / 16) {
  .video-facade--vertical {
    padding-top: 0;
    height: auto;
  }
}

.video-facade--vertical .video-facade__placeholder {
  background: transparent;
  flex-direction: column;
  padding: 32px;
  text-align: center;
}

.video-facade__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.video-facade:hover .video-facade__poster {
  opacity: 0.85;
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.video-facade:hover .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-facade__play::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #526049;
  margin-left: 4px;
}

.video-facade__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d8e8ca 0%, #f7ddd4 100%);
  color: #3d4b35;
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 18px;
}

/* -------- Lightbox Modal -------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(33, 26, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: min(100%, 900px);
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

[data-lightbox-trigger] {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

[data-lightbox-trigger]:hover {
  transform: scale(1.02);
}

.lightbox__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(80%, 480px);
  /* Fallback for iOS Safari < 15.4: fixed min-height keeps panel visible */
  min-height: 400px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #d8e8ca 0%, #f7ddd4 100%);
  border-radius: 16px;
  padding: 32px;
  color: #3d4b35;
}

@supports (aspect-ratio: 4 / 5) {
  .lightbox__fallback {
    min-height: 0;
  }
}

.lightbox__fallback-icon {
  font-size: 48px;
  opacity: 0.7;
}

.lightbox__fallback-text {
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

/* -------- Guarantee Badge (editorial style) -------- */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(82, 96, 73, 0.25);
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3d4b35;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.guarantee-badge i {
  font-size: 18px;
  color: #526049;
}

.guarantee-badge--solid {
  background: #d8e8ca;
  border-color: rgba(82, 96, 73, 0.4);
}

/* Full guarantee section seal */
.guarantee-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #526049;
  color: #f7f1e6;
  flex-shrink: 0;
  box-shadow: 0 12px 36px -10px rgba(82, 96, 73, 0.45);
}

.guarantee-seal i {
  font-size: 52px;
  line-height: 1;
}

.guarantee-seal__days {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* -------- Value Stack -------- */
.value-stack {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.4);
  border-radius: 24px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 16px 50px -16px rgba(62, 54, 49, 0.12);
}

.value-stack__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(197, 200, 190, 0.35);
}

.value-stack__item:last-child {
  border-bottom: none;
}

.value-stack__name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: #211a16;
}

.value-stack__name i {
  font-size: 20px;
  color: #526049;
}

.value-stack__value {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #444840;
}

.value-stack__total {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 2px solid #526049;
  text-align: center;
}

.value-stack__total-label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #757870;
  margin-bottom: 6px;
}

.value-stack__total-amount {
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-size: 32px;
  color: #211a16;
}

.value-stack__cta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-top: 24px;
}

/* Bonus item highlight */
.value-stack__item--bonus {
  background: linear-gradient(90deg, rgba(255, 219, 205, 0.45) 0%, rgba(255, 219, 205, 0.15) 100%);
  border-radius: 12px;
  padding: 14px 12px;
  margin: 4px -12px;
  border-bottom: none !important;
}

.value-stack__bonus-badge {
  display: inline-block;
  background: #805440;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* -------- Testimonial Cards -------- */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(197, 200, 190, 0.4);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(62, 54, 49, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #526049;
  margin-bottom: 14px;
}

.testimonial-stars i {
  font-size: 18px;
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffdbcd 0%, #f3baa2 100%);
  color: #653d2b;
  font-family: "Fraunces", "Libre Caslon Text", serif;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 4px 10px;
  background: rgba(216, 232, 202, 0.55);
  color: #3d4b35;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  align-self: flex-start;
}

.testimonial-tag::before {
  content: "✓";
  font-weight: 700;
}
