/* ═══════════════════════════════════════════════
   Landing Page & Best-Of Styles
   ═══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.landing-hero {
    text-align: center;
    padding: 48px 20px 40px;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 60%);
    border-bottom: 1px solid #f0e8e0;
}
.landing-hero__breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
}
.landing-hero__icon {
    display: block;
    font-size: 48px;
    margin-bottom: 12px;
}
.landing-hero__title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 auto 12px;
    max-width: 700px;
    line-height: 1.3;
}
.landing-hero__desc {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.landing-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 16px;
}
.landing-hero__trust-item {
    font-size: 13px;
    color: #666;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #e8e0d8;
    white-space: nowrap;
}

/* ── Landing Content ──────────────────────────── */
.landing-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px;
}
.landing-content h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF6B35;
    display: inline-block;
}
.landing-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 28px 0 12px;
}
.landing-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}
.landing-content ul, .landing-content ol {
    padding-right: 24px;
    margin-bottom: 20px;
}
.landing-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}
.landing-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.landing-content table th {
    background: #FF6B35;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: right;
}
.landing-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}
.landing-content table tr:last-child td {
    border-bottom: none;
}
.landing-content table tr:hover td {
    background: #fff8f3;
}

/* Landing section blocks */
.landing-section {
    margin-bottom: 32px;
}
.landing-section:first-child {
    margin-top: 0;
}

/* Tip box in landing pages */
.landing-content .tip-box,
.landing-content .landing-tip {
    background: linear-gradient(135deg, #fff8f3, #fff5ee);
    border: 1px solid #ffd4b8;
    border-right: 4px solid #FF6B35;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.7;
}
.landing-content .tip-box strong,
.landing-content .landing-tip strong {
    color: #FF6B35;
}

/* CTA button in content */
.landing-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a3d, #FF6B35);
    color: #fff !important;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.landing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,107,53,0.4);
}

/* ── FAQ ──────────────────────────────────────── */
.landing-faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}
.landing-faq__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}
.landing-faq__icon {
    margin-left: 8px;
}
.landing-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.landing-faq__item {
    background: #fff;
    border: 1px solid #e8e0d8;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.landing-faq__item[open] {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.landing-faq__q {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.landing-faq__q::-webkit-details-marker {
    display: none;
}
.landing-faq__arrow {
    font-size: 12px;
    color: #999;
    transition: transform 0.2s;
}
.landing-faq__item[open] .landing-faq__arrow {
    transform: rotate(180deg);
}
.landing-faq__a {
    padding: 0 20px 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ── Related Posts ────────────────────────────── */
.landing-related {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px;
}
.landing-related__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}
.landing-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.landing-related__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e0d8;
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-related__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.landing-related__card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.landing-related__card-title {
    padding: 8px 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

/* ── CTA Section ─────────────────────────────── */
.landing-cta-section {
    text-align: center;
    padding: 48px 20px;
    background: linear-gradient(135deg, #fff8f3 0%, #fff 100%);
    border-top: 1px solid #f0e8e0;
}
.landing-cta-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.landing-cta-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}
.landing-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.landing-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-cta-btn--primary {
    background: linear-gradient(135deg, #ff9a3d, #FF6B35);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.landing-cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,107,53,0.4);
}
.landing-cta-btn--secondary {
    background: #fff;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}
.landing-cta-btn--secondary:hover {
    background: #fff8f3;
    transform: translateY(-2px);
}

/* ── Best-Of Specific ────────────────────────── */
.landing-hero--bestof {
    background: linear-gradient(135deg, #fff8f3 0%, #ffe8d6 40%, #fff 100%);
}
.bestof-intro {
    padding-top: 40px;
}
.bestof-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 32px;
}
.bestof-product-wrap {
    position: relative;
}
.bestof-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #FF6B35;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}
.bestof-outro {
    padding-bottom: 20px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .landing-hero {
        padding: 32px 16px 28px;
    }
    .landing-hero__title {
        font-size: 22px;
    }
    .landing-hero__trust {
        gap: 8px 10px;
    }
    .landing-hero__trust-item {
        font-size: 12px;
        padding: 5px 10px;
    }
    .landing-content {
        padding: 20px 16px;
    }
    .landing-content h2 {
        font-size: 20px;
    }
    .landing-content table {
        font-size: 12px;
    }
    .landing-content table th,
    .landing-content table td {
        padding: 8px 10px;
    }
    .landing-faq {
        padding: 20px 16px 32px;
    }
    .landing-faq__q {
        font-size: 14px;
        padding: 14px 16px;
    }
    .landing-related__grid {
        grid-template-columns: 1fr 1fr;
    }
    .bestof-rank {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .landing-related__grid {
        grid-template-columns: 1fr;
    }
    .landing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .landing-cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
