: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;
}

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

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

.navbar__brand ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar__brand ul li {
    display: flex;
    justify-content: center;
    margin: 10px;
    align-items: center;
}

.navbar__brand ul li a {
    color: white;
}

.site_header a {
    color: inherit;
}

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

.site_header h2 {
    color: black;

}

.site_header div h2 {
    font-size: 2.125rem;
    color: #1e1c1c;
}

.site_header span {
    margin-top: 5px;
}

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

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}


.left-side-navbar {
    display: flex;
    align-items: center;
}

.rightside-navbar {
    color: black;
    padding-right: 5rem;
}

.rightside-navbar li svg {
    cursor: pointer;
    fill: white;
    transition: width 0.5s ease;
    font-size: medium;
    width: 15px;
    height: 15px;
}

.rightside-navbar li svg:hover {
    transform: scale(1.2);
}

/* Drop Down Styling  */

.language-selector-wrapper button:hover,
.currency-selector-wrapper button:hover {
    text-decoration: underline;
}

.language-selector-wrapper {
    display: flex;
    align-items: center;
    height: auto;
    width: auto;
    cursor: pointer;
}

.currency-selector-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: auto;
    width: auto;
    cursor: pointer;
}

.language-selector {
    border: none;
    color: white;
    cursor: pointer;
    background: none;
}


.currency-selector {
    border: none;
    margin-right: 5px;
    color: white;
    background: none;
    align-items: center;
    background: none;
    cursor: pointer;
}

.page-indicator {
    text-decoration: underline solid;
    color: white;
}

/* popup cart for the overlay  */
/* Main popup cart */
#monster-cart-wrapper {
    height: 98%;
    position: fixed;
    right: 5px;
    top: 5px;
    z-index: 1000;
    color: rgb(22, 37, 67);
    background: rgb(255, 255, 255);
    font-size: 14px;
    font-family: Roboto, sans-serif;
    border-radius: 15px;
    width: 326px;
}

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

/* Header styles */
.popup-cart-header {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border-radius: 15px 15px 0 0;
    padding: 1rem;
}

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

/* Icon styles */
.header-icon {
    padding: 0.5rem;
    cursor: pointer;
}

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

/* Body styles */
.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: rgb(0, 0, 0);
    text-decoration: underline;
    cursor: pointer;
}

.popup-cart-overlay {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark background */
    z-index: 1000;
    /* Place it behind the popup cart */
    transition: opacity 0.3s ease;
    /* Smooth fade-in/out */
}

/* Initial state: Hidden */
.overlay {
    display: none;
    opacity: 0;
}

/* When the overlay is active */
.overlay.active {
    display: block;
    opacity: 1;
}

/* Popup cart z-index */
.popup-cart {
    z-index: 1000;
    /* Place the cart above the overlay */
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    /* Hidden by default */
    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 */
.popup-content {
    display: flex;
    background: #fff;
    border-radius: 4px;
    max-width: 800px;
    width: 90%;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

/* Left Section */
.popup-left {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

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

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

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

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

#popup-email {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-submit-btn {
    background: #000;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.popup-decline-btn {
    background: #fff;
    color: #000;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

/* Right Section */
.popup-right {
    min-width: 300px;
}

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

/* Close Button */
.popup-close-btn {
    display: flex;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


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

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

.footer-container {
    padding: 20px 20px;
    border-top: solid #212121;
    background-color: black;
    z-index: 999;
    position: relative;
    flex-shrink: 1;
    gap: 10px;
}

.footer-container a {
    color: white;
}


/* Footer Section */
.footer-sections {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    height: 200px;
    color: white;
}

.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: 999px;
    padding: 0px 0px 0px 16px;
    height: 38px;
    color: rgba(244, 246, 255, .45);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    background:rgba(244, 246, 255, .18);
    border: 1px solid rgb(148, 149, 150);
    width: 350px;
    outline: 0;
}

.cta-membership-footer button {
    background: rgb(0, 0, 0);
    border-radius: 15px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-width: 2px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    white-space: normal;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    height: auto;
    width: 100%;
    margin-top: 10px;
}


.cta-membership-footer button:hover {
    color: #ff4545;
    text-decoration: none;
}

.cta-membership-footer span {
    background: rgb(0, 0, 0);
    border-radius: 15px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-width: 2px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    white-space: normal;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    height: auto;
    width: 100%;
}

.cta-membership-footer span:hover {
    color: #ff4545;
    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: white;
}

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

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

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

.free-gift-promo {
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 4px 4px 0px 0px;
    background-color: rgb(255, 255, 255);
    height: 50px;
    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;
    bottom: 0;
}

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



/* The Copy Right Tagline */
.copyright {
    display: flex;
    justify-content: center;
    height: 25px;
    margin: 5px;
    border-top: solid rgba(75, 75, 75, 0.267);
    border-width: 1px;
    padding-top: 3rem;
}

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

/* Image For The Logo  */
.sneaker-logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #ccc;
}

.hp-page svg {
    width: 10px;
    height: 10px;
    transition: width 0.5s ease;
    overflow: visible;
}

.hp-page svg:hover {
    width: 15px;
}


#search-container {
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-2px);
    display: none;
}

.search-mag-wrapper {
    overflow: hidden;
    height: 66px;
    padding: 10px 20px;
    font-weight: 500;
    background-color: black;
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.search-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    box-sizing: border-box;
}

.search-bar label {
    position: fixed;
    top: 25px;
    margin-left: 15px;
}

.search-bar input {
    height: 45px;
    width: 745px;
    padding-left: 14px;
}

.search-bar-wrapper button {
    height: 45px;
    width: 50px;
    border: none;
    cursor: pointer;
    border: none;
    color: white;
    background: black;

}