/** Shopify CDN: Minification failed

Line 284:0 All "@import" rules must come first

**/
/* ============================================
   FICHA VARIETAL — Mundo Vinícola
   ============================================ */

.ficha-varietal {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Hero --- */
.fv-hero {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
}

.fv-hero__img {
  width: 280px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #aa391a;
}

.fv-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.fv-hero__img img.fv-img--loading {
  opacity: 0;
}

.fv-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  text-align: center;
}

.fv-hero__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-hero__title {
  font-size: 28px;
  font-weight: 100;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
  color: var(--color-foreground, #1a1a1a);
}

.fv-hero__clone-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  background: #aa391a28;
  color: #aa391a;
  margin-bottom: 16px;
  width: fit-content;
}

.fv-hero__origin {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0 0 16px;
}

.fv-hero__origin strong {
  color: var(--color-foreground, #1a1a1a);
  font-weight: 500;
}

.fv-hero__desc {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.65;
  margin: 0;
}

/* --- Section titles --- */
.fv-section-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-foreground, #1a1a1a);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* --- Metrics grid --- */
.fv-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.fv-metric-card {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 14px 16px;
}

.fv-metric-card__label {
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fv-metric-card__track {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.fv-metric-card__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.fv-metric-card__fill--produccion,
.fv-metric-card__fill--vigor {
  background: #aa391a;
}

.fv-metric-card__fill--compacidad,
.fv-metric-card__fill--acidez {
  background: #aa391a;
}

.fv-metric-card__value {
  font-size: 12px;
  color: #6b6b6b;
  text-align: right;
}

/* --- Disease grid --- */
.fv-disease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.fv-disease-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f7f7f5;
  border-radius: 8px;
}

.fv-disease-row__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-foreground, #1a1a1a);
  min-width: 70px;
}

.fv-disease-row__dots {
  display: flex;
  gap: 5px;
  flex: 1;
}

.fv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.fv-dot--filled {
  background: #aa391a;
}

.fv-dot--empty {
  background: rgba(0, 0, 0, 0.08);
}

.fv-disease-row__level {
  font-size: 11px;
  color: #6b6b6b;
  min-width: 50px;
  text-align: right;
}

/* --- Clones --- */
.fv-clones {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fv-clone-btn {
  padding: 8px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.fv-clone-btn--active {
  background: var(--color-foreground, #1a1a1a);
  color: var(--color-background, #fff);
}

.fv-clone-btn--inactive {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #6b6b6b;
}

.fv-clone-btn--inactive:hover {
  background: #f7f7f5;
  color: var(--color-foreground, #1a1a1a);
}

.fv-legend {
  font-size: 11px;
  color: #999;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 680px) {
  .fv-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fv-hero__img {
    width: 100%;
    max-width: 400px;
    height: 320px;
    background: #f7f7f5;
  }

  .fv-hero__img img {
    object-fit: contain;
  }

  .fv-hero__clone-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .fv-metrics-grid,
  .fv-disease-grid {
    grid-template-columns: 1fr;
  }
}

/* Importación de fuentes de marca */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&family=Trirong:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* --- ESTILOS GLOBALES DE LA FICHA --- */
.ficha-varietal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 20px;
  font-family: 'Red Hat Display', sans-serif;
  color: #1e293b;
}

/* --- ENCABEZADOS Y ÉNFASIS (Trirong) --- */
.fv-hero__title, 
.fv-section-title, 
.fv-buy-title, 
.fv-step-title,
.fv-hero__origin strong {
  font-family: 'Trirong', serif;
  font-weight: 700;
}

.fv-hero__title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.fv-hero__desc {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
}

/* --- SUBTÍTULOS Y CUERPO (Red Hat Display) --- */
.fv-hero__clone-tag,
.fv-buy-subtitle,
.fv-step-number,
.fv-metric-card__label,
.fv-disease-row__name,
.fv-step-desc,
.fv-legend {
  font-family: 'Red Hat Display', sans-serif;
}

.fv-buy-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #94a3b8;
}

/* --- ACORDEÓN DE COMPRA --- */
.fv-how-to-buy {
  margin-top: 4rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.fv-buy-header {
  width: 100%;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.fv-buy-title {
  font-size: 1.75rem;
  font-style: italic;
  color: #1e293b;
}

.fv-step-number {
  font-weight: 800;
  color: #3d4a3e;
  letter-spacing: 0.2em;
}

.fv-step-desc {
  font-weight: 400;
  color: #64748b;
}

/* --- ESTILOS DE LA SECCIÓN DE COMPRA --- */
.fv-purchase-section {
  margin-top: 15px;
  padding-top: 0;
  margin-bottom: 60px;
}

/* Sellos de confianza */
.fv-trust-badges { 
  display: flex; 
  gap: 20px; 
  margin-bottom: 15px;
  padding: 10px 0;
  background: transparent;
  border-radius: 12px; 
  justify-content: center;
}

.fv-badge { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 11px; 
  font-family: 'Red Hat Display', sans-serif; 
  font-weight: 700; 
  color: #475569; 
  text-transform: uppercase; 
}

.fv-badge svg { 
  color: #3d4a3e; 
}

/* Botón CTA */
.fv-cta-button {
  display: flex !important; 
  align-items: center; 
  justify-content: center; 
  gap: 12px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background: #aa391a; 
  color: white !important; 
  padding: 20px;
  border-radius: 10px; 
  font-family: 'Red Hat Display', sans-serif; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 2px;
  text-decoration: none !important; 
  transition: all 0.3s ease; 
  font-size: 13px;
}

.fv-cta-button svg {
  flex-shrink: 0;
}

.fv-cta-button:hover { 
  background: #8b2d14; 
  transform: translateY(-2px); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}