/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Video Section */
.video-section {
    flex: 1;
    display: flex;
    
    justify-content: center;
    
    padding: 20px;
}

.video-container {
    width: 100%;
    max-width: 900px;

    border-radius: 8px;
    overflow: hidden;
}

/* Vturb Video Player */
vturb-smartplayer {
    width: 100%;
    display: block;
}

/* CTA Button - Hidden by default since Vturb has built-in CTA */
.cta-container {
    display: none;
    justify-content: center;
    margin-top: 30px;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: #f5c542;
    color: #1a1a2e;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.4);
}

.cta-button:hover {
    background-color: #e6b635;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 197, 66, 0.5);
}

/* Footer */
.footer {
    background-color: #0A3161;
    padding: 12px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #f4c542;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.footer-disclaimer {
    color: #cbcbcb;
    font-size: 13px;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto 15px;
}

.footer-support {
    color: white;
    font-size: 11px;
    margin-bottom: 15px;
}

.footer-support a {
    color: #f5a623;
    text-decoration: none;
    font-weight: 700;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 11px;
    margin-bottom: 0;
}

.footer-copyright span {
    color: #f5a623;
}

/* Digistore Footer */
.digistore-footer {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.digistore-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.digistore-logo img {
    height: 30px;
}

.digistore-logo .separator {
    display: block;
    width: 1px;
    height: 28px;
    background-color: #ccc;
}

.secure-order {
    display: flex;
    align-items: center;
  
    color: #c36;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.secure-order .lock-icon {
    width: 22px;
    height: 22px;
    margin-top: -7px;
}

.digistore-text {
    color: #555;
    font-size: 12px;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
    padding: 1px;
}

.digistore-text a {
    color: #c36;
    text-decoration: none;
}

/* Footer Mobile Menu */
.footer-menu-wrapper {
    display: none;
}

.footer-mobile-toggle {
    width: 35px;
    height: 35px;

    border-radius: 8px;
    cursor: pointer;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-mobile-toggle svg {
    width: 24px;
    height: 24px;
    fill: #f5a623;
}

.footer-mobile-toggle .close-icon {
    display: none;
}

.footer-mobile-toggle.active .hamburger-icon {
    display: none;
}

.footer-mobile-toggle.active .close-icon {
    display: block;
    
}

.footer-mobile-menu {
    display: none;
    flex-direction: column;
    
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.footer-mobile-menu.active {
    display: flex;
}

.footer-mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #33373d;
    text-decoration: none;
    padding: 18px 20px;
    border-bottom: none;
    text-align: left;
    background-color: #ffffff;
}

.footer-mobile-menu a.active {
    background-color: #4a4a4a;
    color: #ffffff;
}

.footer-mobile-menu a:hover {
    background-color: #f0f0f0;
    color: #0A3161;
}

.footer-mobile-menu a.active:hover {
    background-color: #5a5a5a;
    color: #ffffff;
}

/* Mobile Responsive (768px) */
@media (max-width: 768px) {
    .footer-menu-wrapper {
        display: block;
    }

    .footer-links {
        display: none;
    }

    .footer {
        padding: 0px 10px;
    }

    .video-section {
        padding: 10px;
    }

    .footer-disclaimer {
        display: block;
        font-size: 11px;
        padding-top: 10px;
        color: white;
        margin: 10px 0px;
        line-height: 1.7;
    }

    .footer-support {
        display: block;
        font-size: 11px;
        color: #9ca3af;
        margin-bottom: 10px;
    }

    .footer-support a {
        color: #f4c542;
        font-weight: 600;
        text-decoration: none;
    }

    .footer-copyright {
        display: block;
        font-size: 11px;
        color: #6b7280;
        margin-bottom: 0;
    }

    .footer-copyright span {
        color: #9ca3af;
    }

    /* Digistore Footer Mobile */
    .digistore-footer {
        padding: 10px 10px;
    }

    .digistore-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        max-width: 100%;
        margin-bottom: 15px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .digistore-logo img {
        height: 22px;
    }

    .digistore-logo .separator {
        display: block;
        width: 1px;
        height: 22px;
        background-color: #ccc;
    }

    .secure-order {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #c36;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .secure-order .lock-icon {
        width: 19px;
        height: 19px;
    }

    .digistore-text {
        font-size: 11px;
        line-height: 1.6;
        color: #555;
        padding: 0 10px;
        max-width: 100%;
    }

    .digistore-text a {
        color: #c36;
        text-decoration: none;
        font-weight: 400;
    }

    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
}

/* ============================================
   DIGISTORE24 POPUP MODAL
   ============================================ */
.ds24-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
}

.ds24-popup-overlay.active {
    display: flex;
}

.ds24-popup {
    max-width: 558px;
    margin: 0 auto;
    border: 1px solid #ccc;
    color: #2f485c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    top: 30px;
    position: relative;
    background-color: #fff;
    animation: popupFadeIn 0.2s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ds24-popup-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.ds24-popup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ds24-popup-logo-img {
    height: 22px;
    width: auto;
}

.ds24-popup-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a6e;
    letter-spacing: -0.5px;
}

.ds24-popup-divider {
    width: 1px;
    height: 24px;
    background-color: #cccccc;
    margin: 0 16px;
}

.ds24-popup-secure {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds24-popup-lock {
    font-size: 16px;
    color: #f5a623;
}

.ds24-popup-secure-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0.5px;
}

.ds24-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #cc3366;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    transition: opacity 0.2s;
}

.ds24-popup-close:hover {
    opacity: 0.7;
}

.ds24-popup-body {
    padding: 15px;
    font-size: 12px;
    line-height: 1.5em;
}

.ds24-popup-title {
    font-family: Open Sans, Arial, sans-serif !important;
    font-size: 14px;
    margin: 0 0 17px 0;
    line-height: 1.4;
}

.ds24-popup-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.ds24-popup-logo a,
.ds24-popup-secure a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds24-popup-title a,
.ds24-popup-text a {
    color: #1a3a6e;
    text-decoration: none;
    font-weight: 600;
}

.ds24-popup-title a:hover,
.ds24-popup-text a:hover {
    text-decoration: underline;
}

/* Popup Mobile Responsive */
@media (max-width: 480px) {
    .ds24-popup {
        width: 95%;
        margin: 10px;
    }

    .ds24-popup-header {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .ds24-popup-brand {
        font-size: 16px;
    }

    .ds24-popup-secure-text {
        font-size: 12px;
    }

    .ds24-popup-close {
        top: 10px;
        right: 12px;
        font-size: 24px;
    }

    .ds24-popup-body {
        padding: 16px 18px 24px;
    }

    .ds24-popup-title {
        font-size: 14px;
    }

    .ds24-popup-text {
        font-size: 13px;
    }
}

/* Secure Order Clickable */
.secure-order {
    cursor: pointer;
}
