/* Base Styles & Resets */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Hide Mute Button & Volume */
.vjs-mute-control, .vjs-volume-panel {
    display: none !important;
}

.site-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* ==================
   HEADER STYLES (WELT)
   ================== */
:root {
    --welt-blue: #003a5c;
    --welt-orange: #ea7a00;
}

.welt-header {
    background-color: var(--welt-blue);
    color: #ffffff;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo text {
    font-family: 'Arial Black', Gadget, sans-serif;
    font-weight: 900;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-link {
    color: #ffffff;
    opacity: 0.9;
}

.icon-link:hover {
    opacity: 1;
}

.btn-abonnement {
    border: 1px solid var(--welt-orange);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
}

.header-nav {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-main {
    display: flex;
    gap: 20px;
}

.nav-main a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 15px 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-main a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--welt-orange);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--welt-orange);
    border-radius: 50%;
    margin-right: 6px;
}

.nav-produkte {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.nav-produkte a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    padding: 15px 0;
}



/* News Ticker */
.news-ticker {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 40s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Main Container */
.jl-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

/* VSL Section */
.vsl-box {
    text-align: center;
    margin-bottom: 40px;
}

.vsl-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-bottom: 25px;
}

.vsl-heading .highlight {
    color: #ff00ff;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto 20px;
    background: #000;
    border: 3px solid #eee; /* Added a clean border */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-js {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}


/* VSL Badge */
.vsl-badge {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border: 1px solid #faebcc;
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.vsl-live {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-dot-red {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.vsl-logos {
    max-width: 450px;
    width: 100%;
    margin: 25px auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Testimonials / Sections */
.jl-box {
    margin-bottom: 40px;
}

.jl-box h2 {
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

.jl-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jl-test-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #eee;
}

.jl-test-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.jl-test-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.jl-test-name {
    font-weight: 700;
    font-size: 15px;
}

.jl-test-loc {
    font-size: 12px;
    color: #777;
}

.jl-test-stars {
    color: #fbc02d;
    margin-left: auto;
}

.jl-test-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.jl-test-card p {
    font-size: 14px;
    color: #444;
}

/* FAQ */
.jl-faq-item {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
}

.faq-answer {
    padding: 0 20px 15px;
    display: none;
    font-size: 14px;
    color: #555;
}

.jl-faq-item.active .faq-answer {
    display: block;
}

.jl-faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Doctor Box */
.jl-doc-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
}

.jl-doc-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
}

/* Comments Section (Facebook Style) */
.comments-section {
    max-width: 700px;
    margin: 40px auto;
}

.comments-header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.comment-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-bubble {
    background: #f0f2f5;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative; /* Fixed: Parent must be relative for absolute children */
}

.comment-author {
    font-weight: 700;
    color: #385898;
    font-size: 13px;
    margin-bottom: 2px;
}

.comment-text {
    font-size: 14px;
}

.comment-actions {
    font-size: 12px;
    color: #65676b;
    margin-top: 5px;
    padding-left: 10px;
}

.comment-actions span {
    cursor: pointer;
    margin-right: 10px;
}

.comment-actions span:hover {
    text-decoration: underline;
}

/* ==================
   FOOTER STYLES (WELT)
   ================== */
.welt-footer {
    background-color: var(--welt-blue);
    color: #ffffff;
    padding: 60px 24px 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 40px;
}

.footer-row {
    margin-bottom: 30px;
}

.footer-row h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom b {
    color: #ffffff;
}
/* Reaction Pill in Comments */
.reaction-pill {
    position: absolute;
    bottom: -10px;
    right: 5px;
    background: #ffffff;
    border-radius: 12px;
    padding: 2px 4px 2px 2px;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border: 1px solid #e9ebee;
}

.react-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #ffffff;
}

.react-icon.like {
    background: #1877f2;
}

.react-icon.heart {
    background: #f02849;
    margin-left: -4px;
    border: 1.5px solid #ffffff;
}

.react-count {
    font-size: 11px;
    color: #65676b;
    margin-left: 2px;
    font-weight: 500;
}

/* XYBERO RENDA OFFER STYLES */
.xr-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
}

.xr-header-text {
    background: #4a148c;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 30px;
}

.xr-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.xr-box h2 {
    color: #4a148c;
    margin-bottom: 20px;
    font-size: 28px;
}

.xr-stock-badge {
    background: #fff3e0;
    color: #e65100;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
}

.xr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.xr-pricing-card {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease;
}

.xr-pricing-card:hover {
    transform: translateY(-5px);
}

.xr-pricing-card.best-offer {
    border-color: #4a148c;
    background: #f3e5f5;
    transform: scale(1.05);
    z-index: 2;
}

.xr-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a148c;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.xr-pricing-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.xr-supply {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.xr-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.xr-price-new {
    font-size: 42px;
    font-weight: 900;
    color: #4a148c;
    margin: 5px 0;
}

.xr-price-per {
    font-weight: 700;
    color: #333;
}

.xr-save-badge {
    background: #4a148c;
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin: 15px 0;
}

.xr-btn-purple {
    background: #4a148c;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin: 15px 0;
    transition: background 0.3s;
}

.xr-btn-purple:hover {
    background: #6a1b9a;
}

.xr-features {
    font-size: 12px;
    color: #2e7d32;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.xr-dark-box {
    background: #4a148c;
    color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.xr-dark-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.xr-dark-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.xr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.xr-test-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

.xr-test-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.xr-test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.xr-test-name {
    font-weight: 700;
}

.xr-test-loc {
    font-size: 12px;
    color: #666;
}

.xr-test-stars {
    color: #ffb300;
    margin-left: auto;
}

.xr-test-card h4 {
    margin-bottom: 10px;
    color: #4a148c;
}

.xr-test-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.xr-faq-item {
    text-align: left;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #333;
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-answer {
    padding-top: 10px;
    color: #666;
    font-size: 14px;
    display: none;
}

.xr-faq-item.active .faq-answer {
    display: block;
}

.xr-faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .xr-pricing-card.best-offer {
        transform: none;
    }
    .xr-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* HIDE VIDEO SEEK BAR FOR VSL */
.vjs-vsl-skin .vjs-progress-control {
    display: none !important;
}
.vjs-vsl-skin .vjs-remaining-time, 
.vjs-vsl-skin .vjs-current-time, 
.vjs-vsl-skin .vjs-duration-display {
    display: none !important;
}
/* Professional VSL Loading Spinner */
.vjs-vsl-skin .vjs-loading-spinner {
    border: 6px solid rgba(74, 20, 140, 0.2) !important;
    border-top-color: #4a148c !important;
}

/* SOCIAL CIRCLES IN FOOTER */
.social-circle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-circle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}
