/* MonsterDrop — plantilla "Lung Clear" (bridge page salud respiratoria).
 * Sistema de diseño propio inspirado en layout de landing tipo Shopify/GemPages:
 * barra promocional oscura, hero con galería + panel de compra, bloques de
 * contenido alternando fondo claro/oscuro, timeline, comparativa y FAQ.
 * @package MonsterDrop
 */

.lc-page {
	--lc-dark: #0B2B1F;
	--lc-primary: #073B28;
	--lc-green: #00B259;
	--lc-green-hover: #008f47;
	--lc-mint-bg: #EAF7EE;
	--lc-mint-card: #F0FDF4;
	--lc-text: #1E293B;
	--lc-muted: #64748B;
	--lc-border: #E2E8F0;
	--lc-warn-bg: #FEF2F2;
	--lc-warn-border: #FCA5A5;
	--lc-gold: #FFB800;
	--lc-highlight: #4ADE80;
	--lc-radius-sm: 6px;
	--lc-radius-md: 12px;
	--lc-radius-lg: 20px;
	--lc-container: 1200px;
	--lc-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

	font-family: var(--lc-font);
	color: var(--lc-text);
	background: #FAFAFA;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.lc-page *, .lc-page *::before, .lc-page *::after { box-sizing: border-box; }
.lc-page img { max-width: 100%; display: block; }
.lc-page h1, .lc-page h2, .lc-page h3, .lc-page h4 { line-height: 1.25; margin: 0; }
.lc-page p { margin: 0; }
.lc-page ul { margin: 0; padding: 0; }

.lc-container {
	max-width: var(--lc-container);
	margin: 0 auto;
	padding: 0 20px;
}
.lc-center { text-align: center; }

/* TOP BAR */
.lc-top-bar {
	background: var(--lc-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 0;
}
.lc-top-bar-row {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

/* HEADER */
.lc-header {
	background: #fff;
	border-bottom: 1px solid var(--lc-border);
	padding: 15px 0;
}
.lc-header-row {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.lc-logo img { height: 26px; width: auto; }

/* PROMO / COUNTDOWN */
.lc-promo {
	background: var(--lc-dark);
	color: #fff;
	padding: 10px 0;
}
.lc-promo-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	text-align: center;
}
.lc-promo-text strong { display: block; }
.lc-promo-text span { opacity: .85; font-size: 13px; }
.lc-countdown { display: flex; align-items: center; gap: 6px; }
.lc-timer-box {
	background: var(--lc-green);
	padding: 2px 8px;
	border-radius: 4px;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	min-width: 34px;
}
.lc-timer-box small { font-size: 8px; font-weight: 500; }
.lc-colon { font-weight: 700; }

/* HERO */
.lc-hero { padding: 40px 0; background: #fff; }
.lc-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.lc-gallery-wrap { display: flex; gap: 15px; }
.lc-thumbs { display: flex; flex-direction: column; gap: 10px; }
.lc-thumb {
	width: 65px;
	height: 65px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	border: 2px solid transparent;
	opacity: .85;
}
.lc-thumb.is-active, .lc-thumb:hover { border-color: var(--lc-green); opacity: 1; }
.lc-main-image { flex: 1; }
.lc-main-image img { width: 100%; border-radius: var(--lc-radius-md); object-fit: cover; aspect-ratio: 1/1; }

.lc-testimonial-card {
	display: flex;
	gap: 15px;
	background: var(--lc-mint-bg);
	padding: 16px;
	border-radius: var(--lc-radius-md);
	margin-top: 20px;
	align-items: center;
}
.lc-testimonial-card .lc-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lc-stars { color: var(--lc-gold); letter-spacing: 1px; }
.lc-stars-lg { color: var(--lc-gold); font-size: 18px; }
.lc-quote { font-size: 14px; margin: 6px 0; }
.lc-author strong { font-size: 14px; }
.lc-verified { color: var(--lc-green); font-size: 12px; font-weight: 600; }

.lc-rating-row { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 8px; }
.lc-sub-headline { color: var(--lc-green); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .3px; }
.lc-title { font-size: 28px; font-weight: 800; margin: 10px 0; }
.lc-desc { color: var(--lc-muted); margin-bottom: 16px; }

.lc-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.lc-pill {
	background: var(--lc-mint-bg);
	color: var(--lc-primary);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
}

.lc-shipping-note {
	background: #F8FAFC;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 20px;
	border: 1px dashed #CBD5E1;
}

.lc-cta {
	display: block;
	width: 100%;
	background: var(--lc-green);
	color: #fff;
	text-align: center;
	padding: 18px;
	border-radius: 40px;
	font-weight: 800;
	font-size: 17px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 178, 89, 0.35);
	transition: transform .2s, background .2s;
}
.lc-cta:hover { background: var(--lc-green-hover); transform: translateY(-2px); }

.lc-guarantees-row { display: flex; justify-content: center; gap: 20px; font-size: 13px; font-weight: 600; margin-top: 15px; flex-wrap: wrap; }
.lc-payment-icons { text-align: center; margin-top: 10px; }
.lc-payment-icons img { max-width: 260px; margin: 0 auto; }

/* ACCORDION */
.lc-accordion-group { margin-top: 24px; }
.lc-accordion-group details { border-bottom: 1px solid var(--lc-border); padding: 12px 0; }
.lc-accordion-group summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 10px; }
.lc-accordion-group summary::-webkit-details-marker { display: none; }
.lc-accordion-group .lc-arrow { transition: transform .2s; color: var(--lc-muted); }
.lc-accordion-group details[open] .lc-arrow { transform: rotate(90deg); }
.lc-accordion-body { padding-top: 10px; font-size: 14px; color: var(--lc-muted); }
.lc-accordion-body ul { padding-left: 18px; }
.lc-accordion-body li { margin-bottom: 4px; }

/* REVIEW CARDS ROW (galería de imágenes en vez de video, no hay archivos de video locales) */
.lc-reviews-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 25px; }
.lc-review-photo { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 3/4; }
.lc-review-photo img { width: 100%; height: 100%; object-fit: cover; }

/* DARK SECTIONS */
.lc-dark-section { background: var(--lc-primary); color: #fff; padding: 60px 0; }
.lc-highlight { color: var(--lc-highlight); }
.lc-section-title { font-size: 30px; font-weight: 800; }
.lc-section-sub { margin-top: 10px; opacity: .9; max-width: 640px; margin-left: auto; margin-right: auto; }

.lc-pill-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 30px; }
.lc-pill-item {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px;
}

/* REVIEWS CAROUSEL SECTION */
.lc-reviews-section { padding: 60px 0; }
.lc-trust-badge { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; font-size: 14px; }
.lc-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.lc-review-card {
	background: #fff;
	border: 1px solid var(--lc-border);
	border-radius: var(--lc-radius-md);
	padding: 20px;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,.05);
	text-align: left;
}
.lc-review-card img.lc-card-img { width: 100%; height: 190px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.lc-review-card p { font-size: 14px; margin: 10px 0; }
.lc-tag-pills { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.lc-tag-pills span { background: var(--lc-mint-bg); color: var(--lc-primary); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 12px; }

/* PROBLEM SECTION */
.lc-problem-section { padding: 60px 0; }
.lc-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.lc-warning-list { list-style: none; margin-top: 15px; }
.lc-warning-list li { background: var(--lc-warn-bg); border: 1px solid var(--lc-warn-border); padding: 10px 14px; border-radius: 8px; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.lc-problem-text p { margin-bottom: 12px; color: var(--lc-muted); }
.lc-problem-text p strong { color: var(--lc-text); }
.lc-problem-graphic img { border-radius: var(--lc-radius-md); }
.lc-banner-red { background: #FEE2E2; color: #991B1B; padding: 12px; border-radius: 8px; font-weight: 700; margin-top: 10px; font-size: 14px; }
.lc-banner-green { background: #DCFCE7; color: #166534; padding: 12px; border-radius: 8px; font-weight: 700; margin-top: 8px; font-size: 14px; }

/* BADGES SECTION */
.lc-badge-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 30px 0; }
.lc-badge-item { background: rgba(255,255,255,.15); padding: 14px 24px; border-radius: var(--lc-radius-md); font-weight: 700; }
.lc-pills-inline { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; font-size: 14px; opacity: .8; }

/* STATS + CONTENT SECTION */
.lc-heal-section { padding: 60px 0; }
.lc-heal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.lc-stat-card { background: var(--lc-mint-bg); padding: 20px; border-radius: var(--lc-radius-md); margin-bottom: 15px; }
.lc-stat-number { font-size: 34px; font-weight: 800; color: var(--lc-green); }
.lc-stat-card p { font-size: 14px; margin-top: 4px; }
.lc-quote-box { background: var(--lc-mint-card); border: 1px solid var(--lc-border); padding: 16px; border-radius: var(--lc-radius-md); }
.lc-quote-box img { width: 100%; border-radius: 8px; margin-bottom: 10px; }
.lc-quote-box p { font-size: 14px; font-style: italic; }
.lc-quote-box small { color: var(--lc-muted); }
.lc-content-col h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.lc-content-col p { color: var(--lc-muted); margin-bottom: 12px; }
.lc-guarantee-text { margin-top: 12px; font-size: 13px; font-weight: 600; }

/* INGREDIENTS */
.lc-ingredients-section { padding: 60px 0; }
.lc-ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.lc-ingredient-card { background: #fff; border: 1px solid var(--lc-border); padding: 20px; border-radius: var(--lc-radius-md); text-align: left; }
.lc-ingredient-card img { width: 100%; height: 170px; object-fit: cover; border-radius: 8px; }
.lc-ingredient-card h3 { font-size: 18px; margin: 10px 0 4px; }
.lc-subtag { display: inline-block; background: #FEF3C7; color: #92400E; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-bottom: 8px; }
.lc-ingredient-card p { font-size: 13px; color: var(--lc-muted); }

/* TIMELINE */
.lc-timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.lc-timeline-img-col img { border-radius: var(--lc-radius-md); margin-bottom: 20px; }
.lc-timeline-img-col h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.lc-timeline-img-col p { opacity: .85; font-size: 14px; }
.lc-timeline-step { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 20px; border-radius: var(--lc-radius-md); margin-bottom: 15px; }
.lc-step-header { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.lc-step-header span { color: var(--lc-highlight); }
.lc-timeline-step ul { list-style: none; font-size: 14px; opacity: .9; }
.lc-timeline-step li { margin-bottom: 4px; }
.lc-step-stat { margin-top: 10px; background: rgba(74, 222, 128, .15); padding: 8px; border-radius: 6px; font-size: 13px; }

/* COMPARISON TABLE */
.lc-comparison-section { padding: 60px 0; }
.lc-table-wrap { overflow-x: auto; }
.lc-comparison-table { width: 100%; max-width: 800px; margin: 30px auto 0; border-collapse: collapse; background: #fff; border-radius: var(--lc-radius-md); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.lc-comparison-table th, .lc-comparison-table td { padding: 16px; border-bottom: 1px solid var(--lc-border); text-align: left; }
.lc-col-us { background: var(--lc-primary); color: #fff; text-align: center !important; font-weight: 800; }
.lc-col-them { text-align: center !important; opacity: .6; }

/* EXPERTS / ESPECIALISTAS */
.lc-experts-section { padding: 60px 0; }
.lc-experts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.lc-expert-card { background: var(--lc-mint-card); border: 1px solid var(--lc-border); padding: 20px; border-radius: var(--lc-radius-md); text-align: left; }
.lc-expert-header { display: flex; gap: 15px; align-items: center; margin-bottom: 12px; }
.lc-expert-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.lc-expert-header h4 { font-size: 15px; }
.lc-expert-header small { color: var(--lc-muted); }
.lc-expert-card p { font-size: 14px; color: var(--lc-muted); }
.lc-expert-note { margin-top: 24px; font-size: 12px; opacity: .7; max-width: 640px; margin-left: auto; margin-right: auto; }

/* FAQ */
.lc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; text-align: left; }
.lc-faq-grid details { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 16px; border-radius: 8px; margin-bottom: 10px; }
.lc-faq-grid summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 10px; }
.lc-faq-grid summary::-webkit-details-marker { display: none; }
.lc-faq-grid p { margin-top: 8px; font-size: 14px; opacity: .9; }

/* BOTTOM CTA */
.lc-bottom-cta-section { padding: 60px 0; }
.lc-cta-banner { background: var(--lc-primary); color: #fff; border-radius: var(--lc-radius-lg); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; align-items: center; }
.lc-cta-content { padding: 40px; }
.lc-cta-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.lc-cta-content p { opacity: .85; margin-bottom: 10px; }
.lc-cta-image img { width: 100%; height: 100%; object-fit: cover; }
.lc-delivery-box { background: rgba(255,255,255,.1); padding: 12px; border-radius: 8px; margin: 16px 0; font-size: 14px; }

/* FOOTER */
.lc-footer { border-top: 1px solid rgba(255,255,255,.1); padding-bottom: 30px; }
.lc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; padding-top: 50px; }
.lc-footer-brand img { height: 24px; margin-bottom: 12px; }
.lc-disclaimer { font-size: 12px; opacity: .65; margin-top: 15px; line-height: 1.5; }
.lc-footer-links h4 { margin-bottom: 15px; color: var(--lc-highlight); font-size: 14px; }
.lc-footer-links ul { list-style: none; }
.lc-footer-links li { margin-bottom: 8px; font-size: 14px; opacity: .85; }
.lc-footer-links a { color: #fff; text-decoration: none; }
.lc-footer-links a:hover { opacity: 1; text-decoration: underline; }
.lc-footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 13px; opacity: .7; flex-wrap: wrap; gap: 10px; }
.lc-footer-bottom img { height: 22px; }

/* Formulario COD embebido dentro del hero (hereda estilos de wp-cod-form-pro para el modal) */
.lc-buy-box .wp-cod-trigger-btn { width: 100%; }

/* Sección "Bloque de productos" (flexible content, layout product_block) —
 * grilla de productos reales de WooCommerce elegidos desde el admin de la
 * página. Compartida por las plantillas home (ver
 * template-parts/page/home-sections/product-block.php). */
.lc-wc-products-section { padding: 50px 0; }
.lc-wc-products-grid { display: grid; gap: 20px; margin-top: 30px; }
.lc-wc-products-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.lc-wc-products-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.lc-wc-products-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.lc-wc-product-card { background: #fff; border: 1px solid var(--lc-border); border-radius: var(--lc-radius-md); overflow: hidden; text-align: left; display: block; color: inherit; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.lc-wc-product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.lc-wc-product-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.lc-wc-product-card-body { padding: 14px 16px; }
.lc-wc-product-card-name { font-size: 14px; font-weight: 600; margin: 0 0 6px; color: var(--lc-text); }
.lc-wc-product-card-price { font-size: 15px; font-weight: 800; color: var(--lc-green); }
.lc-wc-product-card-price del { font-weight: 500; opacity: .6; margin-right: 6px; }

/* RESPONSIVE */
@media (max-width: 900px) {
	.lc-hero-grid, .lc-problem-grid, .lc-heal-grid, .lc-timeline-grid,
	.lc-experts-grid, .lc-faq-grid, .lc-cta-banner, .lc-footer-grid {
		grid-template-columns: 1fr;
	}
	.lc-cards-grid, .lc-ingredients-grid, .lc-reviews-strip { grid-template-columns: 1fr; }
	.lc-wc-products-grid[data-cols="3"], .lc-wc-products-grid[data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
	.lc-gallery-wrap { flex-direction: column-reverse; }
	.lc-thumbs { flex-direction: row; overflow-x: auto; }
	.lc-top-bar-row { font-size: 11px; gap: 12px; }
	.lc-cta-image { display: none; }
}
@media (max-width: 480px) {
	.lc-wc-products-grid[data-cols="2"], .lc-wc-products-grid[data-cols="3"], .lc-wc-products-grid[data-cols="4"] { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
	.lc-title { font-size: 22px; }
	.lc-section-title { font-size: 24px; }
}
