/* ===== Theme tokens (NEW) ===== */
:root {
    --bg: #0b0c10;
    --panel: #0f1117;
    --text: #f4f6ff;
    --muted: rgba(244, 246, 255, .68);
    --logo-bg: #c7c2bf;
    --line: rgba(255, 255, 255, .10);
    --bg-nav: rgba(11, 12, 16, .75);
    --shadow: 0 30px 80px rgba(0, 0, 0, .55);
    --r: 22px;

    /* Back-compat for existing rules */
    --border: var(--line);
    --divider: var(--line);
}


hr,
#footer,
#wordpress_footer {
    display: none !important;
}


/*==========================
======HEADER=(new markup)===
============================*/

.navbar__brand {
    overflow: hidden;
    height: 66px;
    padding: 10px 20px;
    font-weight: 500;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-family: "Roboto Flex", sans-serif;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    background-color: var(--bg-nav);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site_header a {
    color: inherit;
    text-decoration: none;
}

.site_header a:hover {
    text-decoration: underline solid;
}

.nav_toggle {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 40px;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}

.nav-logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: var(--logo-bg);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
}

.nav-links a {
    color: var(--text);
}

.nav-pill {
    border: 2px solid var(--text);
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
}

.wk-icon {
    cursor: pointer;
    fill: var(--text);
    transition: transform 0.2s ease;
    width: 15px;
    height: 15px;
}

.wk-icon:hover {
    transform: scale(1.2);
}

/* =========================
DRAWER (mobile)
  ========================= */

.drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.drawer[hidden] {
    display: none;
}

.drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.logo__sm {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.close_btn {
    font-size: 24px;
    line-height: 1;
    background: none;
    border: 0;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text);
}

.drawer__ctas {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
}

.first_btn,
.second_btn {
    display: block;
    text-align: center;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--r);
}

.first_btn {
    background-color: var(--text);
    color: var(--bg);
}

.second_btn {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.drawer__nav {
    padding: 8px 16px;
    overflow: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__item {
    border-bottom: 1px solid var(--line);
}

.menu__link {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}

.drawer__footer {
    padding: 16px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
}

.social {
    margin-top: 8px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.drawer-svg {
    color: var(--text);
    width: 20px;
    height: 19px;
}

/* =========================
  FOOTER (new markup)
  ========================= */

footer {
    font-family: "Roboto Flex", sans-serif;
}

.footer-container {
    padding: 20px 20px;
    border-top: 1px solid var(--line);
    background-color: var(--bg);
    z-index: 999;
    position: relative;
    flex-shrink: 1;
    gap: 10px;
}

.footer-container a {
    color: var(--text);
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}

.footer-sections {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    height: 200px;
    color: var(--text);
}

.footer-sections a {
    margin: 15px;
}

.footer-sections p {
    margin-bottom: 15px;
}

.programs-services-section,
.support-section,
.cta-membership-footer {
    display: grid;
}

.programs-services-section span,
.support-section span {
    margin: 5px;
}

.cta-membership-footer p {
    margin-bottom: 5px;
}

.cta-membership-footer form {
    display: grid;
}

.cta-membership-footer input {
    box-sizing: border-box;
    border-radius: 12px;
    padding: 0 0 0 16px;
    height: 38px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid var(--line);
    width: 350px;
}

.cta-membership-footer button {
    background: var(--text);
    border-radius: var(--r);
    border: 0;
    color: var(--bg);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: center;
    cursor: pointer;
    height: auto;
    width: 100%;
    margin-top: 10px;
}

.cta-membership-footer button:hover {
    filter: brightness(0.9);
    text-decoration: none;
}

.social-icons-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 25px;
}

.social-icons {
    width: 190px;
    display: flex;
    justify-content: space-evenly;
    color: var(--text);
}

.social-icons a {
    margin-left: 15px;
    transition: transform 0.2s ease;
    display: flex;
}

.social-svg {
    width: 20px;
    height: 20px;
}

.social-icons svg:hover {
    transform: scale(1.2);
}

.free-gift-promo {
    width: fit-content;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: var(--r) var(--r) 0 0;
    background-color: var(--panel);
    border: 1px solid var(--line);
    height: 69px;
    padding: 8px 8px 2px 8px;
    display: flex;
    position: absolute;
    cursor: pointer;
    width: 184px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, margin-top 0.3s ease;
    z-index: 999;
}

.free-gift-text {
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    color: var(--text);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: bold;
}

.copyright {
    display: flex;
    justify-content: center;
    height: 25px;
    margin: 5px;
    border-top: 1px solid var(--line);
    padding-top: 3rem;
}

.copyright p {
    color: var(--muted);
    font-size: small;
    text-transform: capitalize;
    font-weight: 300;
    word-spacing: 2px;
    margin: auto;
}

/* =========================
  POPUP (free gift)
  ========================= */

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6);
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
}

.popup-content {
    display: flex;
    background: var(--panel);
    color: var(--text);
    border-radius: var(--r);
    max-width: 800px;
    width: 90%;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.popup-left {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.popup-logo {
    max-width: 75px;
    margin-bottom: 10px;
}

.popup-left h1 {
    font-size: 24px;
    font-weight: bold;
	color:white;
}

.popup-left p {
    font-size: 16px;
    margin: 10px 0;
	color:white;
}

#popup-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#popup-email {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    color: var(--text);
}

.popup-submit-btn {
    background: var(--text);
    color: var(--bg);
    padding: 10px;
    margin-bottom: 10px;
    border: 0;
    border-radius: var(--r);
    cursor: pointer;
    font-weight: 800;
}

.popup-decline-btn {
    background: transparent;
    color: var(--text);
    padding: 10px;
    border: 2px solid var(--text);
    border-radius: var(--r);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.popup-right {
    min-width: 300px;
	background-color:white;
}

.popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-close-btn {
    display: flex;
    background: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: black;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================
=========CART=OVERLAY=======
============================ */

#monster-cart-wrapper {
    height: 98%;
    position: fixed;
    right: 5px;
    top: 5px;
    z-index: 1000;
    color: var(--text);
    background: var(--panel);
    font-size: 14px;
    font-family: Roboto, sans-serif;
    border-radius: var(--r);
    width: 326px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.popup-cart-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    position: relative;
}

.popup-cart-header {
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--text);
    border-radius: var(--r) var(--r) 0 0;
    padding: 1rem;
}

.mu-cart-header {
    flex-grow: 1;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
}

.header-icon {
    padding: 0.5rem;
    cursor: pointer;
}

.header-icon svg {
    width: 15px;
    height: 15px;
}

.popup-cart-body {
    flex: 1;
    margin-bottom: 15px;
    overflow-y: auto;
}

.mu-empty-cart {
    text-align: center;
    padding: 1rem;
}

.continue-shopping {
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    font-size: 1em;
    font-weight: 400;
    color: var(--text);
    text-decoration: underline;
    cursor: pointer;
}

.popup-cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: opacity 0.3s ease;
}


/* =========================
========RESPONSIVE==========
============================*/

/* Tablet */
@media (min-width: 767px) and (max-width: 1023px) {

    .nav_toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .lp-hero-inner {
        display: block;
    }

    .lp-hero-media {
        margin-top: 50px;
    }

    .lp-grid {
        display: block;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }

    .footer-sections {
        display: grid;
        gap: 10px;
        place-items: center;
        height: auto;
    }

    .free-gift-promo {
        display: none;
    }

    .social-icons svg:hover {
        transform: scale(1);
    }

    /* Products Page */
    .products {
        margin-top: 75px;
    }

    .shop-card-img {
        display: flex;
        justify-content: center;
    }


    /* FAQ-CONTACT PAGE  */

    .wk-aside {
        margin-top: 75px;
    }
}

/* Mobile */
@media (max-width: 766px) {

    .nav_toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-pill {
        display: none;
    }

    .lp-hero-inner {
        display: block;
    }

    .lp-hero-media {
        margin-top: 50px;
    }

    .lp-grid {
        display: block;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .footer-sections {
        display: grid;
        gap: 10px;
        place-items: center;
        height: auto;
    }

    .free-gift-promo {
        display: none;
    }

    .lp-grid img {
        display: flex;
        justify-content: center;
    }


    /* Products Page */
    .products {
        margin-top: 75px;
    }

    .shop-card-img {
        display: flex;
    }


    /* FAQ-CONTACT PAGE  */
    .wk-aside {
        margin-top: 75px;
    }

}