/* LifetimeSelect Frontend Styles */

/* Preço */
.lts-price-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.lts-discount {
    background: #d4edda;
    color: #155724;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
}
.lts-price-current {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}
.lts-price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}
.lts-price-plus {
    font-size: 13px;
    color: #666;
    background: #fff3cd;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Botão */
.lts-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: opacity .2s;
}
.lts-btn-primary {
    background: #f4a623;
    color: #fff !important;
}
.lts-btn-primary:hover { opacity: .88; }

/* Rating */
.lts-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    font-size: 16px;
    color: #f4a623;
}
.lts-rating span { color: #555; font-size: 14px; }

/* TL;DR */
.lts-tldr-box {
    background: #eaf4fb;
    border-left: 4px solid #2271b1;
    padding: 16px 20px;
    border-radius: 6px;
    margin: 20px 0;
}
.lts-tldr-box h3 { margin: 0 0 10px; }
.lts-tldr li { margin: 6px 0; }

/* Vídeo */
.lts-video-wrap {
    margin: 24px 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.lts-video-wrap iframe { width:100%; height:100%; border:none; }

/* Galeria */
.lts-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 24px 0;
}
.lts-gallery figure { margin: 0; border-radius: 8px; overflow: hidden; }
.lts-gallery img { width: 100%; height: auto; display: block; }

/* Tabelas */
.lts-table, .lts-glance table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 14px;
}
.lts-table th, .lts-table td,
.lts-glance th, .lts-glance td {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.lts-table th, .lts-glance th {
    background: #f5f5f5;
    font-weight: 600;
    width: 160px;
}

/* Sections */
.lts-glance, .lts-comparison, .lts-faq,
.lts-reviews-summary, .lts-terms-box {
    margin: 32px 0;
}
.lts-glance h3, .lts-comparison h3, .lts-faq h3,
.lts-reviews-summary h3, .lts-terms-box h3 {
    font-size: 18px;
    border-bottom: 2px solid #f4a623;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

/* Veredicto */
.lts-verdict {
    background: linear-gradient(135deg, #fff8f0, #fff3e0);
    border: 2px solid #f4a623;
    border-radius: 10px;
    padding: 24px;
    margin: 32px 0;
}
.lts-verdict h3 { margin-top: 0; }

/* Terms */
.lts-terms li { margin: 6px 0; padding-left: 4px; }
.lts-terms li::before { content: "✓ "; color: #28a745; font-weight: 700; }

/* FAQ */
.lts-faq dt { font-weight: 600; margin: 12px 0 4px; }
.lts-faq dd { margin: 0 0 12px 16px; color: #444; }

/* Lang switcher */
.lts-lang-switcher { display:inline-flex; align-items:center; gap:6px; }
.lts-lang { text-decoration:none; font-weight:500; opacity:.7; transition:.2s; }
.lts-lang.active, .lts-lang:hover { opacity:1; }

/* Responsive */
@media (max-width: 768px) {
    .lts-price-box { flex-direction: column; align-items: flex-start; }
    .lts-gallery { grid-template-columns: 1fr 1fr; }
}
