:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.031);
    --card-border: rgba(255, 255, 255, 0.1);
    --primary-color: #00D1FF;
    --secondary-color: #00FFA3;
    --accent-color: #8C52FF;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 25px;
    /* Offset for fixed header + gap */
}

button,
a,
label,
summary,
input[type="checkbox"],
input[type="radio"],
input[type="submit"] {
    cursor: pointer;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    will-change: transform, opacity;
}

.glow-orb-1 {
    top: 50%;
    left: 15%;
    width: 31vw;
    height: 31vw;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.4), transparent 70%);
    transform: translate(-50%, -50%);
}

.glow-orb-2 {
    top: 30%;
    left: 85%;
    width: 26vw;
    height: 26vw;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
}

.glow-orb-3 {
    top: 80%;
    left: 50%;
    width: 36vw;
    height: 31vw;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.2), transparent 70%);
    transform: translate(-50%, -50%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: none;
    z-index: -1;
    pointer-events: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 163, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-links .btn {
    padding: 0.6rem 1.4rem;
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 163, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 163, 0.2);
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Video Container - Figure/Media Styles */
.media-video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 255, 163, 0.15);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.media-video:hover {
    box-shadow: 0 30px 60px rgba(0, 255, 163, 0.25);
    border-color: var(--primary-color);
}

.media-video span {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-video:hover span {
    transform: scale(1.05);
}

/* Play Button Overlay */
.media-video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300FFA3'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
    z-index: 2;
}

.media-video:hover::after {
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.4);
}

/* Aspect Ratio - 16:9 */
.equal-16-9 {
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

/* Hero Matrix Visual (Legacy/Recycled) */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 300px;
    height: 300px;
    transform: rotateX(45deg) rotateZ(45deg);
    position: relative;
    z-index: 2;
}

.grid-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    animation: pulse 4s infinite alternate;
}

.grid-item.active {
    background: var(--primary-color);
    box-shadow: 0 0 40px var(--primary-color);
    border-color: var(--primary-color);
}

.glowing-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* Recycled Matrix Visual Styles */
.banner-visual {
    position: relative;
    height: 200px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.small-grid {
    width: 150px;
    height: 150px;
    gap: 0.8rem;
}

.small-orb {
    width: 150px;
    height: 150px;
    opacity: 0.6;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Steps Section */
.steps-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--card-border);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(0, 255, 163, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-inline: auto;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link:hover {
    text-decoration: underline;
}

/* Order Section */
.order-section {
    padding: 4rem 0;
}

.full-width {
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

.form-row-address {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1.5rem;
}

.form-row-location {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.form-row-name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
}

.full-width-btn {
    justify-content: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
}

/* Downloads Section */
.downloads-section {
    padding: 6rem 0;
}

.glass-banner {
    background: linear-gradient(90deg, rgba(140, 82, 255, 0.1), rgba(0, 255, 163, 0.1));
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.download-banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.banner-content {
    flex: 1;
}

.download-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

/* Partners & Footer */
.partners {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--card-border);
}

.partner-logos {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.partner-link {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.partner-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.divider {
    color: var(--card-border);
}

/* Tutorials Page */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.tutorial-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tutorial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.2);
}

.tutorial-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tutorial-card:hover img {
    transform: scale(1.05);
}

.tutorial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: 1px solid white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center 52%;
    opacity: 0.8;
    transition: var(--transition);
}

.tutorial-card:hover::after {
    opacity: 1;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 992px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
}

/* Showcase Section */
.showcase-section {
    padding: 2rem 0 6rem;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.slide-item {
    padding: 0 0.5rem;
}

.img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.img-wrap:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
}

.img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Hide default TNS controls / nav if needed */
.tns-nav {
    text-align: center;
    margin-top: 1rem;
}

.tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    margin: 0 5px;
    padding: 0;
}

.tns-nav button.tns-nav-active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-privacy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    padding: 1rem;
    pointer-events: none;
}

.cookie-banner-inner {
    pointer-events: auto;
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(140, 82, 255, 0.12), rgba(0, 255, 163, 0.1));
    border: 1px solid var(--card-border);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    padding: 1rem;
    display: grid;
    gap: 1rem;
}

.cookie-banner-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-more-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-more-link:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-actions .btn {
    min-height: 44px;
    justify-content: center;
}

.cookie-banner-actions .btn-primary {
    color: #000;
}

body.cookie-banner-visible {
    padding-bottom: 150px;
}

@media (max-width: 768px) {
    .footer-privacy {
        padding: 0 1rem 1.5rem;
    }

    .cookie-banner {
        padding: 0.75rem;
    }

    .cookie-banner-inner {
        border-radius: 14px;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions .btn {
        width: 100%;
    }

    body.cookie-banner-visible {
        padding-bottom: 240px;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin-inline: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .download-banner-flex {
        flex-direction: column;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .banner-visual {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    border-left: 1px solid var(--card-border);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    transform: translateX(0);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    display: block;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

.mobile-order-btn {
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    color: #000 !important;
    /* Ensure text is black like desktop */
}

/* Order List Styles */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.item-info {
    display: flex;
    align-items: center;
}

/* Smallest breakpoint optimizations - Stack hero buttons */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .order-summary-box {
        padding: 1rem !important;
        /* Override inline style */
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .hero-btns .btn {
        width: auto;
        justify-content: center;
        min-width: 200px;
    }

    /* Order List Mobile Stacking */
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .item-value {
        padding-left: 1.6rem;
        /* Align with text (approx icon width) */
        font-size: 0.9em;
    }

    .order-item.total-row {
        gap: 0.5rem;
        /* More space for the total row */
    }

    .order-item.total-row .item-value {
        padding-left: 0;
        /* Total price can stay centered or left without indent */
        align-self: flex-end;
        /* Or keep it right aligned? User asked for 'value under item' specifically */
        align-self: flex-start;
        padding-left: 1.6rem;
    }
}