/* ============================================================
   FKS FITKEL SENSUALE - NUCLEAR CSS FIX (V3)
   Purpose: Force remove footer lines, whitespace, and fix mobile menu.
   Apply THIS ONE if previous didn't work.
   ============================================================ */
/* 1. FORCE REMOVE FOOTER LINES & SHADOWS */
html body .site-footer,
html body footer,
html body #colophon,
html body .elementor-location-footer {
    border-top: 0px solid transparent !important;
    border-bottom: 0px solid transparent !important;
    box-shadow: none !important;
    background-image: none !important;
    /* Remove potential gradients/patterns */
}
/* Specific Elementor Divider Kill Switch */
html body .elementor-widget-divider {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
/* Remove borders from widgets inside footer */
html body .footer-widgets,
html body .site-info,
html body .ast-footer-overlay,
html body .elementor-element {
    border: none !important;
    outline: none !important;
}
/* 2. KILL WHITESPACE (NUCLEAR OPTION) */
/* Target specific Elementor section padding */
html body .elementor-section {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* Reduce gap between columns */
html body .elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
/* Remove theme content margins & padding-top from main wrappers */
html body .site-content,
html body #content,
html body .page-content,
html body .entry-content,
html body .ast-container,
html body .elementor-location-header+.elementor-section-wrap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* 3. MOBILE MENU FIX (Force Display & Background) */
@media (max-width: 768px) {
    /* Force background color on Elementor Dropdown so it's not transparent */
    .elementor-nav-menu--dropdown {
        background-color: #090609 !important;
        /* Dark Black/Wine */
        border: 1px solid rgba(212, 164, 90, 0.2) !important;
        padding-top: 20px !important;
        z-index: 999999 !important;
        /* Top of everything */
    }
    /* Target the container that holds the menu */
    .elementor-nav-menu__container.elementor-nav-menu--dropdown {
        margin-top: 0 !important;
        /* Fix potential gap */
        top: 100% !important;
        /* Ensure it sits right below header */
    }
    /* Ensure links are white and visible */
    .elementor-nav-menu--dropdown a,
    .elementor-nav-menu--dropdown .elementor-item {
        color: #ffffff !important;
        background-color: transparent !important;
        font-size: 16px !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    /* Active State Highlight */
    .elementor-nav-menu--dropdown a:hover,
    .elementor-nav-menu--dropdown a:focus {
        color: #d4a45a !important;
        /* Gold */
    }
    /* Hamburger Toggle Color */
    .elementor-menu-toggle {
        color: #d4a45a !important;
    }
    .elementor-menu-toggle svg {
        fill: #d4a45a !important;
    }
}
/* 4. POPUP ADJUSTMENT (5% OFF Default) */
/* Clean up any visual artifact lines in popup */
.fks-exit-content {
    border: 2px solid rgba(212, 164, 90, 0.3) !important;
    /* Gold border */
}