@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Space+Mono:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Space Mono', monospace;
}

body {
    background: #000000;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Audiowide', sans-serif;
    letter-spacing: 3px;
}

/* Animated gradient background */
.grain-bg {
    background: linear-gradient(45deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    min-height: 100vh;
}

.grain-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='400' height='400' fill='%23000' /%3E%3Crect width='400' height='400' fill='%23fff' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 10;
}

/* Anchor sections - account for sticky header */
section[id] {
    scroll-margin-top: 80px;
}

/* Neon lines */
.neon-border {
    border: 2px solid;
    border-image: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5) 1;
    animation: neonPulse 3s infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Glitch effect */
.glitch {
    position: relative;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: #ff006e;
    z-index: -1;
    text-shadow: -2px 0 #8338ec;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: #3a86ff;
    z-index: -2;
    text-shadow: 2px 0 #06ffa5;
}

@keyframes glitch-1 {
    0% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 35%, 0% 100%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 50%);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 35%);
        transform: translate(2px, -2px);
    }
    60% {
        clip-path: polygon(0% 0%, 100% 100%, 100% 50%, 0% 0%);
        transform: translate(-2px, -2px);
    }
    80% {
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
        transform: translate(2px, 2px);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 35%, 0% 100%);
        transform: translate(0);
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 50%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0% 0%, 100% 100%, 100% 50%, 0% 0%);
        transform: translate(2px, -2px);
    }
    40% {
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 50%);
        transform: translate(-2px, 2px);
    }
    60% {
        clip-path: polygon(0% 50%, 100% 100%, 100% 50%, 0% 0%);
        transform: translate(2px, 2px);
    }
    80% {
        clip-path: polygon(0% 0%, 100% 50%, 100% 100%, 0% 100%);
        transform: translate(-2px, -2px);
    }
    100% {
        clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 50%);
        transform: translate(0);
    }
}

/* Cards with cyberpunk style */
.cyber-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    opacity: 0.15;
    transition: width 0.4s ease;
}

.cyber-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.2);
    transform: translateY(-5px);
}

.cyber-card:hover::before {
    width: 100%;
}

/* Holographic effect */
.holographic {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(51, 56, 236, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: #ffffff;
}

/* Buttons */
.btn-neo {
    background: #000;
    border: 2px solid #ff006e;
    color: #ff006e;
    padding: 12px 32px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
}

.btn-neo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff006e;
    z-index: -1;
    transition: left 0.3s ease;
}

.btn-neo:hover {
    color: #000;
}

.btn-neo:hover::before {
    left: 0;
}

.btn-neo-alt {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border: 2px solid transparent;
    color: #000;
    padding: 12px 32px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
}

.btn-neo-alt:hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    transform: scale(1.05);
}

/* Neon text */
.neon-text {
    text-shadow: 0 0 10px #ff006e, 0 0 20px #ff006e, 0 0 30px #ff006e, 0 0 40px #8338ec;
}

/* Stat number */
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid sections */
.grid-cols-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Scroll animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

/* Triangular dividers */
.triangle-divider {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid rgba(255, 0, 110, 0.2);
    margin: 2rem auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-overlay.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.neon-spinner {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background-image: linear-gradient(155deg, #ba42ff 35%, #00e1ff);
    animation: neon-spin 1.7s linear infinite;
    filter: blur(0.5px);
    box-shadow: 0 -5px 20px rgba(186, 66, 255, 0.7), 0 5px 20px rgba(0, 225, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-spinner::before {
    content: '';
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #1b1b1b;
    filter: blur(10px);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.6);
}

@keyframes neon-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===============================================
   WOOCOMMERCE STYLING
   =============================================== */

/* Product Grid - Equal Column Widths */
.products.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: auto;
    gap: 24px;
    width: 100%;
}

/* Responsive grid breakpoints for equal widths */
@media (max-width: 639px) {
    .products.grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .products.grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products.grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1536px) {
    .products.grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card Styling */
.wc-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.wc-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.25);
}

.wc-product-image-wrapper {
    overflow: hidden;
    position: relative;
}

.wc-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wc-product-card:hover .wc-product-image-wrapper img {
    transform: scale(1.1);
}

/* Product Title */
.wc-product-title h2,
.woocommerce-loop-product__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.3s ease;
}

.wc-product-card:hover .wc-product-title h2,
.wc-product-card:hover .woocommerce-loop-product__title {
    color: #ff006e;
}

/* Product Rating */
.wc-product-rating .star-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.woocommerce .star-rating span {
    color: #ff006e;
    font-size: 0.875rem;
}

/* Product Price */
.wc-product-price .price,
.woocommerce .price {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.woocommerce .price del {
    opacity: 0.6;
    text-decoration: line-through;
    background: none;
    -webkit-text-fill-color: unset;
    color: rgba(255, 255, 255, 0.5);
}

.woocommerce .price ins {
    text-decoration: none;
    background: none;
}

/* Add to Cart Button */
.woocommerce .button.add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.woocommerce button.button {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border: 2px solid transparent;
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.woocommerce .button.add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button:hover {
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
    transform: scale(1.02);
}

/* Quantity Input */
.woocommerce .quantity input.qty,
.woocommerce input[type="number"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.woocommerce .quantity input.qty:focus,
.woocommerce input[type="number"]:focus {
    border-color: #ff006e;
    background: rgba(255, 0, 110, 0.05);
}

/* Quantity Buttons */
.woocommerce .quantity .qty-plus,
.woocommerce .quantity .qty-minus {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
}

.woocommerce .quantity .qty-plus:hover,
.woocommerce .quantity .qty-minus:hover {
    background: #ff006e;
    border-color: #ff006e;
}

/* Product Description */
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-product-details__short-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-tabs ul.tabs {
    border: none;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-tabs ul.tabs li a {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
    color: #ff006e;
    border-bottom: 2px solid #ff006e;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff;
}

/* Tab Content */
.woocommerce-tabs .panel {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

/* Product Meta */
.woocommerce-product-meta,
.product_meta {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-product-meta span,
.product_meta span {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.woocommerce-product-meta a,
.product_meta a {
    color: #ff006e;
    transition: color 0.3s ease;
}

.woocommerce-product-meta a:hover,
.product_meta a:hover {
    color: #8338ec;
}

/* Stock Status */
.woocommerce .stock {
    color: #06ffa5;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce .outofstock {
    color: #ff006e;
}

/* Star Rating */
.woocommerce .comment-form-rating .stars {
    margin: 1rem 0;
}

.woocommerce .comment-form-rating .stars span a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.woocommerce .comment-form-rating .stars span a:hover,
.woocommerce .comment-form-rating .stars span a.active {
    color: #ff006e;
}

/* Review Section */
.woocommerce #reviews #reply-title,
.woocommerce #review_form_wrapper h3,
.comment-form-rating label {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce .commentlist li .comment-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1.5rem;
}

.woocommerce .commentlist li .comment-text p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

/* Sort Dropdown */
.woocommerce-ordering,
.woocommerce form.woocommerce-ordering {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-ordering select,
.woocommerce form.woocommerce-ordering select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover,
.woocommerce form.woocommerce-ordering select:hover {
    border-color: #ff006e;
}

.woocommerce-ordering select option,
.woocommerce form.woocommerce-ordering select option {
    background: #000;
    color: #ffffff;
}

/* Category Filters */
.woocommerce-widget-area .woocommerce-widget-layered-nav a {
    color: #ff006e;
    transition: color 0.3s ease;
}

.woocommerce-widget-area .woocommerce-widget-layered-nav a:hover {
    color: #8338ec;
}

/* Single Product Layout */
.woocommerce div.product {
    background: transparent;
}

.woocommerce div.product .woocommerce-product-gallery {
    width: 100%;
    margin-bottom: 2rem;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

/* Product Image Gallery */
.product-images a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-images a:hover img {
    transform: scale(1.05);
}

/* Product Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-thumbnails > div {
    flex: 0 0 calc(25% - 0.5625rem);
    aspect-ratio: 1;
}

@media (max-width: 768px) {
    .product-thumbnails > div {
        flex: 0 0 calc(20% - 0.6rem);
    }
}

/* Error/Success Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.woocommerce-message {
    border-color: rgba(6, 255, 165, 0.3);
}

.woocommerce-error {
    border-color: rgba(255, 0, 110, 0.3);
}

/* Cart Page */
.woocommerce table.shop_table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.woocommerce table.shop_table th {
    background: rgba(255, 0, 110, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
}

.woocommerce table.shop_table td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.woocommerce table.shop_table tbody tr:hover {
    background: rgba(255, 0, 110, 0.05);
}

/* Responsive WooCommerce */
@media (max-width: 768px) {
    .wc-product-image-wrapper {
        height: auto !important;
    }
    
    .woocommerce-tabs ul.tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .woocommerce nav.woocommerce-pagination {
        flex-wrap: wrap;
    }
}

/* Responsive navigation */
.desktop-nav-container,
.desktop-button {
    display: none;
}

#hamburger-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 60;
}

#hamburger-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#hamburger-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

#hamburger-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#hamburger-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

@media (max-width: 1023px) {
    .desktop-nav-container,
    .desktop-button {
        display: none !important;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 50;
    }

    .mobile-menu.show {
        max-height: 90vh;
    }

    .mobile-menu .mobile-nav-container {
        margin: 0;
        padding: 16px 0;
    }

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

    .mobile-menu .mobile-nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu .mobile-nav-menu > li:last-child {
        border-bottom: 0;
    }

    .mobile-menu .mobile-nav-menu a {
        display: block;
        padding: 16px 24px;
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.15em;
    }

    .mobile-menu .mobile-nav-menu a:hover {
        color: #ff006e;
    }

    .mobile-menu .btn-neo {
        width: calc(100% - 48px);
        margin: 16px 24px 0;
    }
}

@media (min-width: 1024px) {
    .desktop-nav-container {
        display: block;
    }

    .desktop-button {
        display: inline-flex;
    }

    .mobile-menu {
        display: none !important;
    }

    #hamburger-toggle {
        display: none;
    }
}
