:root {
    /* High Contrast Minimalist White/Black Palette */
    --bg-dark: #ffffff;
    /* Body background is now white */
    --bg-panel: #ffffff;
    /* Panel is white */
    --bg-card: #f9fafb;
    /* Card background is off-white */
    --text-main: #06070a;
    /* Clean black text */
    --text-muted: #4b5563;
    /* Medium-dark gray for muted text */
    --accent-pink: #E87A5D;
    /* The peachy orange accent */
    --accent-pink-rgb: 232, 122, 93;
    --accent-purple: #111827;
    /* Primary detail color */
    --accent-purple-rgb: 17, 24, 39;
    --accent-white: #ffffff;
    --border-strong: rgba(0, 0, 0, 0.12);
    /* Clean dark 1px border */

    --highlight-bg: rgba(232, 122, 93, 0.08);
    --highlight-fg: #E87A5D;

    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.02);

    --font-heading: 'Work Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

section {
    scroll-margin-top: 140px;
}

/* Ambient Cyber Static Noise */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    /* Slightly reduced opacity for light mode readability */
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--highlight-fg);
    display: inline-block;
    background: var(--highlight-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 0px;
    border: 1px solid rgba(var(--accent-pink-rgb), 0.15);
    box-shadow: 0 0 15px rgba(var(--accent-pink-rgb), 0.05);
}

/* Marquee / Ticker */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #E87A5D;
    color: #000000;
    border-bottom: 2px solid #000000;
    border-top: 2px solid #000000;
    padding: 0.8rem 0;
    position: relative;
    z-index: 900;
    margin-top: 102px;
}

.marquee-content {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 120s linear infinite;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-content span {
    padding-right: 80px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Flat Rectangular Navbar - Solid Black */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 2rem;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) !important;
    /* Force logo to solid white */
}




.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 0.4rem 0.8rem;
}

.nav-links a:hover:not(.btn-buy-nav) {
    color: #ffffff;
    text-shadow: none;
}

.btn-buy-nav {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    border-radius: 0px;
    padding: 0.4rem 1.2rem !important;
    color: #000000 !important;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
}

.btn-buy-nav:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    /* White hamburger menu spans for black header */
    transition: all 0.3s ease;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 11, 14, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-strong);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.close-sidebar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-link:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 2rem 5rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-split-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0 auto;
    text-align: left;
}

.hero-split-container .hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    font-family: var(--font-body);
    line-height: 1.7;
}

.hero-visuals {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* Stacked hero images style */
.hero-images-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 380px;
    margin: 0 auto;
}

.hero-images-stack img.plugin-mockup {
    position: absolute;
    width: 78%;
    height: auto;
    border: 4px solid var(--border-strong) !important;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.4) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s ease, box-shadow 0.3s ease !important;
    background-color: var(--bg-card);
}

.hero-images-stack .mockup-widedist {
    top: 20px;
    left: 10px;
    z-index: 2;
    transform: rotate(-4deg);
}

.hero-images-stack .mockup-afterglow {
    bottom: 90px;
    right: 10px;
    z-index: 1;
    transform: rotate(5deg);
}

/* Hover effects */
.hero-images-stack:hover .mockup-widedist {
    transform: translate(-15px, -15px) rotate(-7deg);
}

.hero-images-stack:hover .mockup-afterglow {
    transform: translate(15px, 15px) rotate(8deg);
    z-index: 3;
}

.hero-images-stack img.plugin-mockup:hover {
    z-index: 10 !important;
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 12px 12px 0px var(--accent-pink) !important;
}

.plugin-mockup {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    background-color: rgba(18, 20, 28, 0.4);
    box-shadow: var(--shadow-large);
    transition: transform 0.5s ease;
}

.plugin-mockup:hover {
    transform: translateY(-5px);
}

.next-photo-btn {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    background: rgba(13, 15, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 0px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.next-photo-btn:hover {
    background: var(--accent-pink);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-pink);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
    width: 100%;
}

/* Premium Buttons */
.btn-primary {
    background: #06070a;
    color: #ffffff;
    border: 1px solid #06070a;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #06070a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background: #E87A5D;
    color: #ffffff;
    border-color: #E87A5D;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #06070a;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: #06070a;
    border: 1px solid #06070a;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #06070a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: #06070a;
    color: #ffffff;
    border-color: #06070a;
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px #E87A5D;
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--border-strong);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--accent-pink-rgb), 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--accent-pink-rgb), 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Listen / Player Section */
.listen {
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, rgba(6, 7, 10, 0) 70%);
    border-top: 1px solid var(--border-strong);
    border-bottom: 1px solid var(--border-strong);
}

.listen-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.listen-info h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    text-align: center;
}

.listen-info p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Futuristic hardware-inspired audio player */
.audio-player {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 2.5rem;
    box-shadow: var(--shadow-large);
    width: 100%;
    max-width: 620px;
    backdrop-filter: blur(20px);
}

.track-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem;
    border-radius: 0px;
    border: 1px solid var(--border-strong);
}

.track-btn {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.track-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-pink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.track-btn:hover:not(.active) {
    color: var(--text-main);
}

.track-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.9;
}

.waveform-visualizer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin-bottom: 2rem;
    gap: 3px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 0px;
    border: 1px solid var(--border-strong);
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    height: 10%;
    border-radius: 0px;
    transition: height 0.08s ease, background-color 0.3s ease;
}

.waveform-visualizer.playing.processed .bar {
    background: linear-gradient(to top, var(--accent-pink), var(--accent-purple));
}

.waveform-visualizer.playing.clean .bar {
    background: var(--text-main);
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border: none;
    color: var(--accent-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(var(--accent-pink-rgb), 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--accent-pink-rgb), 0.5);
}

.bypass-toggle {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.bypass-toggle .label {
    color: var(--text-muted);
    transition: color 0.3s;
}

.bypass-toggle .active-label {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(var(--accent-pink-rgb), 0.3);
}

/* Custom Sleek Slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    border-radius: 0px;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}

input:checked+.slider {
    background-color: rgba(var(--accent-pink-rgb), 0.1);
    border-color: rgba(var(--accent-pink-rgb), 0.3);
}

input:checked+.slider:before {
    transform: translateX(24px);
    background-color: var(--accent-pink);
    box-shadow: 0 0 10px var(--accent-pink);
}

/* DSP Signal Flow Diagram Redesign */
.tech-info {
    border-top: 1px solid var(--border-strong) !important;
}

.flow-badge {
    border: 1px solid var(--border-strong) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-main) !important;
    border-radius: 0px;
    padding: 0.8rem 2rem !important;
    box-shadow: none !important;
    font-size: 0.9rem !important;
    letter-spacing: 2px !important;
}

.flow-card {
    border: 1px solid var(--border-strong) !important;
    background: var(--bg-card) !important;
    border-radius: 0px;
    padding: 2.5rem !important;
    box-shadow: var(--shadow-medium) !important;
}

.flow-card-wide {
    box-shadow: var(--shadow-large) !important;
}

.flow-step-label {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple)) !important;
    border-radius: 0px;
    border: none !important;
    padding: 0.2rem 1rem !important;
    color: var(--accent-white) !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.7rem !important;
}

.flow-card h3,
.flow-card h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    text-transform: uppercase;
}

.flow-card p {
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--text-muted) !important;
    opacity: 0.5;
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.pricing-card {
    position: relative;
    z-index: 10;
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 4rem 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(20px);
    transition: border-color 0.3s;
}

.pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.pricing-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 1.5rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.tech-specs {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.tech-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-strong);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.checkout-btn,
.pricing-card .btn-primary.checkout-btn,
.buy-pricing-card .btn-primary.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.checkout-btn:hover,
.pricing-card .btn-primary.checkout-btn:hover,
.buy-pricing-card .btn-primary.checkout-btn:hover {
    background: #06070a !important;
    border-color: #06070a !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px var(--accent-pink) !important;
}

.secure-checkout {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Section */
footer {
    background: #ffffff;
    padding: 5rem 2rem;
    border-top: 1px solid #000000;
    text-align: center;
    color: #4b5563;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    display: block;
    filter: brightness(0) !important;
    /* Force logo to solid black */
}

.footer-content p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000000;
}

/* Auth UI / Navigation Groups */
.auth-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar .auth-group {
    margin-left: 1.5rem;
}

.btn-text {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: #ffffff;
}

.user-email {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    font-weight: 600;
    transition: border-color 0.2s;
}

.user-email:hover {
    border-color: #ffffff;
}

/* Glassmorphic Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 7, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 3.5rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-large);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-strong);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.8rem;
    cursor: pointer;
    transition: color 0.2s;
}

.tab-btn.active {
    color: var(--accent-pink);
    border-bottom: 2px solid var(--accent-pink);
}

.tab-btn:not(.active):hover {
    color: var(--text-main);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-strong);
    border-radius: 0px;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-pink);
}

.auth-submit {
    margin-top: 1rem;
}

.auth-error {
    color: #ef4444;
    font-size: 0.85rem;
    text-align: center;
}

.auth-success {
    color: #10b981;
    font-size: 0.85rem;
    text-align: center;
}

/* Cookie consent banner adjustments */
#cookieConsentBanner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 720px;
    background: var(--bg-panel) !important;
    border: 1px solid var(--border-strong) !important;
    box-shadow: var(--shadow-large) !important;
    border-radius: 0px;
    padding: 2rem;
    z-index: 10000;
    opacity: 0;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

#cookieConsentBanner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

.cookie-banner-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent-pink);
    margin: 0 0 0.5rem 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cookie-banner-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--text-main);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-dark);
    min-width: 100%;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-strong);
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 4px;
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-strong);
    transition: all 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Media Switcher (Image vs Video) */
.media-switcher {
    display: flex;
    gap: 0;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-strong);
    background: rgba(10, 11, 14, 0.95);
    padding: 2px;
    width: fit-content;
    z-index: 10;
    border-radius: 0px;
}

.media-btn {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0px;
}

.media-btn.active {
    background: var(--text-main);
    color: var(--bg-dark);
}

.media-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

/* Card-level media switcher minor sizing */
.card-image-wrapper .media-switcher {
    border-width: 1px;
    box-shadow: none;
}

.card-image-wrapper .media-btn {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
}

/* Floating CTA button for mobile (appears under top navbar on scroll) */
.mobile-floating-cta {
    position: fixed;
    top: 82px;
    right: 16px;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-10px);
}

.mobile-floating-cta.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-floating-cta button {
    border-radius: 0px !important;
    border: 1px solid var(--accent-pink) !important;
    background: var(--accent-pink) !important;
    color: #000000 !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
    padding: 0.4rem 0.9rem !important;
    cursor: pointer;
    box-shadow: 3px 3px 0px #000000 !important;
    transition: all 0.2s ease;
}

.mobile-floating-cta button:hover {
    background: #000000 !important;
    color: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
    box-shadow: 3px 3px 0px var(--accent-pink) !important;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-floating-cta {
        display: none !important;
    }
}

/* Media Queries for Responsive Layouts */
@media (max-width: 1024px) {

    /* Keep hero split container side-by-side */
    .hero-split-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .hero-split-container .hero-content {
        text-align: left;
    }

    .hero-subtitle {
        margin: 0 0 2.5rem 0;
    }

    .hero-ctas {
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        margin-right: 0;
    }

    .next-photo-btn {
        right: -25px;
    }
}

@media (max-width: 768px) {

    /* General Scales */
    body {
        font-size: 13px !important;
    }

    section {
        scroll-margin-top: 50px !important;
    }

    .hero,
    .features,
    .listen,
    .pricing {
        padding: 1.5rem 1rem !important;
    }

    .tech-info {
        padding: 1.5rem 1rem 1rem 1rem !important;
    }

    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .section-header h2,
    .listen-info h2 {
        font-size: 1.5rem !important;
    }

    .section-header p {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
    }

    /* Fixed Header / Navbar - Big again & Logo Centered */
    .navbar {
        top: 0;
        padding: 0.8rem 1.5rem !important;
        border-radius: 0px;
    }

    .nav-content {
        position: relative !important;
        display: flex !important;
        justify-content: flex-end !important;
        width: 100% !important;
        height: 48px !important; /* Prevents container from collapsing due to absolutely-positioned logo */
    }

    .logo-link {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        z-index: 1002 !important;
    }

    .logo-img {
        height: 48px !important;
    }

    /* Moving Header (Marquee) - Keep small height/text */
    .marquee-container {
        margin-top: 72px !important;
        /* adjusted to match new navbar height and remove gap */
        padding: 0.15rem 0 !important;
        border-bottom: 1px solid #000000 !important;
        border-top: 1px solid #000000 !important;
    }

    .marquee-content {
        font-size: 0.5rem !important;
    }

    /* Navigation link rules (hamburger menu remains active) */
    .nav-links,
    .navbar .auth-group {
        display: none !important;
        /* Hidden on mobile/tablet: sidebar takes over */
    }

    .mobile-menu-btn {
        display: flex !important;
        z-index: 1003 !important;
    }



    /* Style mobile sidebar login links exactly like mobile links */
    .mobile-sidebar .btn-text,
    .mobile-sidebar .user-email {
        font-size: 1.1rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-family: var(--font-heading) !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        text-align: left !important;
        cursor: pointer !important;
        text-decoration: none !important;
    }

    .mobile-sidebar .btn-text:hover,
    .mobile-sidebar .user-email:hover {
        color: #ffffff !important;
    }

    /* Hero Section (Side-by-Side) */
    .hero {
        padding: 1.5rem 1rem !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }

    .hero-split-container {
        margin-top: 1.5rem !important;
        gap: 2rem !important;
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-split-container .hero-content {
        text-align: left !important;
        flex: 1 !important;
    }

    .hero-split-container .hero-visuals {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin: 0 0 1.8rem 0 !important;
    }

    .hero-ctas {
        justify-content: flex-start !important;
        margin-top: 1.5rem !important;
        gap: 0.8rem !important;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        box-shadow: 2px 2px 0px #06070a !important;
    }

    .next-photo-btn {
        width: 24px !important;
        height: 24px !important;
        right: -12px !important;
        font-size: 0.7rem !important;
    }

    .hero-images-stack {
        position: relative !important;
        width: 100% !important;
        height: 300px !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
    
    .hero-images-stack img.plugin-mockup {
        width: 90% !important;
        border-width: 2px !important;
        box-shadow: 4px 4px 0px rgba(0,0,0,0.4) !important;
    }

    .hero-images-stack .mockup-widedist {
        top: 10px !important;
        left: 0 !important;
        z-index: 2 !important;
    }

    .hero-images-stack .mockup-afterglow {
        top: 80px !important;
        right: 0 !important;
        left: auto !important;
        z-index: 1 !important;
    }


    /* Products Grid Carousel on Mobile */
    .products-grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 1rem 1.5rem !important;
        scroll-padding: 1.5rem !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .products-grid::-webkit-scrollbar {
        display: none !important;
    }

    .product-card {
        flex: 0 0 82% !important;
        scroll-snap-align: start !important;
        border-width: 3px !important;
        box-shadow: 4px 4px 0px var(--border-strong) !important;
        transform: none !important;
    }

    .product-card.bundle-highlight {
        border-width: 3px !important;
        box-shadow: 4px 4px 0px var(--accent-pink) !important;
    }

    .product-card.bundle-highlight:hover {
        box-shadow: 4px 4px 0px var(--accent-pink) !important;
    }

    .product-card:hover {
        transform: none !important;
        box-shadow: 4px 4px 0px var(--border-strong) !important;
    }

    .product-card-visual {
        height: 150px !important;
        border-bottom-width: 3px !important;
        padding: 0.8rem !important;
    }

    .product-card-img {
        max-width: 90% !important;
        max-height: 85% !important;
        border-width: 1.5px !important;
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5) !important;
    }

    .collage-img {
        border-width: 1.5px !important;
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.6) !important;
    }

    .product-card-info {
        padding: 1.2rem !important;
        gap: 0.8rem !important;
    }

    .product-card-info h3 {
        font-size: 1.1rem !important;
    }

    .product-card-desc {
        display: none !important;
    }

    .product-card-price {
        font-size: 0.95rem !important;
        gap: 0.5rem !important;
        margin-top: 0.2rem !important;
    }

    .price-orig {
        font-size: 0.85rem !important;
    }

    .price-val {
        font-size: 1rem !important;
    }

    .promo-applied-text {
        font-size: 0.65rem !important;
        margin-top: auto !important;
    }

    .bundle-badge {
        font-size: 0.65rem !important;
        top: -12px !important;
        right: 12px !important;
        padding: 0.15rem 0.6rem !important;
        border-width: 2px !important;
    }

    .product-card-actions {
        gap: 0.6rem !important;
        margin-top: 0.6rem !important;
    }

    .product-card-actions .btn-secondary,
    .product-card-actions .btn-primary {
        padding: 0.7rem 0.5rem !important;
        font-size: 0.8rem !important;
        border-width: 2px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 38px !important;
    }

    /* Features Grid Carousel on Mobile */
    .feature-grid,
    .buy-feature-grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 1rem 1.5rem !important;
        scroll-padding: 1.5rem !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .feature-grid::-webkit-scrollbar,
    .buy-feature-grid::-webkit-scrollbar {
        display: none !important;
    }

    .feature-grid .feature-card,
    .buy-feature-grid .feature-card {
        flex: 0 0 82% !important;
        scroll-snap-align: start !important;
        padding: 1.2rem !important;
        border-width: 3px !important;
        box-shadow: 4px 4px 0px #E87A5D !important;
    }

    .feature-icon {
        font-size: 1.6rem !important;
        margin-bottom: 0.6rem !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.6rem !important;
    }

    .feature-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* Audio Player - Smaller Scale */
    .audio-player {
        padding: 1rem !important;
        border-width: 2px !important;
        box-shadow: 4px 4px 0px #E87A5D !important;
    }

    .track-selector {
        margin-bottom: 0.8rem !important;
        padding: 0.2rem !important;
    }

    .track-btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.65rem !important;
    }

    .track-name {
        font-size: 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }

    .waveform-visualizer {
        height: 40px !important;
        margin-bottom: 1rem !important;
        padding: 5px 8px !important;
    }

    .play-btn {
        width: 38px !important;
        height: 38px !important;
    }

    .play-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .bypass-toggle {
        font-size: 0.7rem !important;
        gap: 0.6rem !important;
    }

    .switch {
        width: 38px !important;
        height: 20px !important;
    }

    .slider:before {
        height: 14px !important;
        width: 14px !important;
        left: 2px !important;
        bottom: 2px !important;
    }

    input:checked+.slider:before {
        transform: translateX(18px) !important;
    }

    /* DSP Signal Flow (Side-by-Side Branches) */
    .flow-branches {
        flex-direction: row !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
    }

    .flow-branch-left,
    .flow-branch-right {
        min-width: 0 !important;
        flex: 1 !important;
    }

    .flow-card,
    .flow-card-wide {
        padding: 0.8rem 0.5rem !important;
        border-width: 2px !important;
        box-shadow: 4px 4px 0px var(--border-strong) !important;
    }

    .flow-card h3,
    .flow-card h4 {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
    }

    .flow-card p {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
    }

    .flow-step-label,
    .flow-step-label-wide {
        font-size: 0.5rem !important;
        padding: 0.1rem 0.3rem !important;
        top: -8px !important;
        border-width: 1.5px !important;
    }

    .flow-step-label {
        left: 10px !important;
        transform: none !important;
    }

    .flow-step-label-wide {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .flow-badge {
        font-size: 0.6rem !important;
        padding: 0.4rem 1rem !important;
        border-width: 2px !important;
        box-shadow: 2px 2px 0px var(--accent-pink) !important;
        margin-bottom: 1rem !important;
    }

    .flow-arrow {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    /* Product Page Buy Pricing Card (Side-by-Side 2-Column Grid Layout) */
    .buy-pricing-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .buy-pricing-card {
        max-width: 480px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1.2rem !important;
        padding: 2rem 1.8rem !important;
        margin: 0 auto !important;
        border: 4px solid var(--border-strong) !important;
        box-shadow: 8px 8px 0px var(--text-main) !important;
        background: var(--bg-card) !important;
    }

    .buy-pricing-card .buy-pricing-title {
        text-align: center !important;
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        color: var(--text-main) !important;
        letter-spacing: 1.5px !important;
        border-bottom: 2px dashed var(--border-strong) !important;
        padding-bottom: 0.6rem !important;
        margin-bottom: 0.4rem !important;
    }

    .buy-pricing-card .pricing-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 0.2rem !important;
    }

    .buy-pricing-card .card-image-wrapper {
        margin-bottom: 0.4rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .buy-pricing-card .pricing-header div[style*="font-size: 4rem"] {
        display: none !important;
    }

    .buy-pricing-card .pricing-header .price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        font-size: 1.8rem !important;
        color: var(--text-main) !important;
    }

    .buy-pricing-card .pricing-header .price span {
        color: var(--text-main) !important;
        font-weight: 800 !important;
    }

    .buy-pricing-card .pricing-header .currency {
        color: var(--text-main) !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.2rem !important;
    }

    .buy-pricing-card .tech-specs {
        margin-bottom: 0.4rem !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding-left: 0 !important;
        list-style: none !important;
    }

    .buy-pricing-card .tech-specs li {
        padding: 0.4rem 0 !important;
        border-bottom: 1px dashed var(--border-strong) !important;
        color: var(--text-muted) !important;
        text-align: left !important;
    }

    .buy-pricing-card .coupon-container {
        margin-bottom: 0.2rem !important;
        width: 100% !important;
    }

    .buy-pricing-card .coupon-container input {
        width: 100% !important;
        padding: 0.8rem !important;
        font-size: 0.85rem !important;
        border: 4px solid var(--border-strong) !important;
        border-radius: 0px !important;
        background: var(--bg-dark) !important;
        color: var(--text-main) !important;
    }

    .buy-pricing-card .btn-primary.checkout-btn {
        margin-bottom: 0.2rem !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        border: 4px solid var(--border-strong) !important;
        background: var(--accent-pink) !important;
        color: #ffffff !important;
        box-shadow: 6px 6px 0px var(--border-strong) !important;
        width: 100% !important;
        transition: all 0.2s ease !important;
    }

    .buy-pricing-card .btn-primary.checkout-btn:hover {
        background: #06070a !important;
        color: #ffffff !important;
        box-shadow: 6px 6px 0px var(--accent-pink) !important;
    }

    .buy-pricing-card .secure-checkout {
        text-align: center !important;
        font-size: 0.75rem !important;
        color: var(--text-muted) !important;
        margin-top: 0.2rem !important;
    }

    /* Checkout Page Grid (Stacked on mobile) */
    .checkout-grid {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }

    .order-summary-pane {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .payment-form-pane {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        padding: 1.2rem 1.5rem !important;
        border-width: 2px !important;
        box-shadow: 4px 4px 0px var(--border-strong) !important;
    }

    .checkout-page main {
        padding-top: 20px !important;
    }

    .checkout-page .section-header h2 {
        font-size: 1.8rem !important;
    }

    .order-summary-pane h3 {
        font-size: 0.95rem !important;
        border-bottom-width: 2px !important;
        margin-bottom: 0.8rem !important;
    }

    #checkoutProductImg {
        width: 50px !important;
    }

    #checkoutProductTitle {
        font-size: 0.85rem !important;
    }

    .order-summary-pane div[style*="font-size: 0.9rem"] {
        font-size: 0.75rem !important;
        padding-top: 0.6rem !important;
    }

    .coupon-input-group {
        gap: 0.3rem !important;
    }

    .coupon-input-group input {
        font-size: 0.7rem !important;
        padding: 0.3rem !important;
        border-width: 1.5px !important;
    }

    .coupon-input-group button {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
        border-width: 1.5px !important;
    }

    .order-summary-pane div[style*="font-size: 1.2rem"] {
        font-size: 0.95rem !important;
        border-top-width: 2px !important;
        padding-top: 0.6rem !important;
    }

    .upsell-box {
        padding: 0.6rem !important;
        margin-top: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        border-width: 1.5px !important;
        box-shadow: 2px 2px 0px var(--text-main) !important;
    }

    .upsell-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
    }

    .upsell-text {
        font-size: 0.65rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
    }

    .upsell-btn {
        font-size: 0.7rem !important;
        padding: 0.4rem !important;
        border-width: 1.5px !important;
        box-shadow: 2px 2px 0px var(--text-main) !important;
    }

    #paymentElementForm {
        gap: 0.8rem !important;
    }

    #paymentFields {
        gap: 0.8rem !important;
    }

    #payment-element {
        min-height: 100px !important;
    }

    .form-group label {
        font-size: 0.7rem !important;
    }

    #checkoutEmailInput {
        padding: 0.5rem !important;
        font-size: 0.75rem !important;
    }

    #paymentSubmitBtn {
        font-size: 0.9rem !important;
        padding: 0.6rem !important;
        border-width: 2px !important;
        box-shadow: 3px 3px 0px var(--border-strong) !important;
    }

    #checkoutLoading {
        padding: 1rem 0 !important;
        font-size: 0.8rem !important;
    }

    /* Footer - Compact and inline */
    footer {
        padding: 1.5rem 1rem !important;
    }

    .footer-logo-img {
        height: 24px !important;
    }

    .footer-links {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        font-size: 0.7rem !important;
    }

    /* Modal - smaller padding */
    .modal-content {
        padding: 1.2rem !important;
        border-width: 2px !important;
    }

    .modal-content h2 {
        font-size: 1.4rem !important;
    }

    .form-group input {
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
    }

    /* Affiliate Dashboard Grid (Side-by-Side 3-column) */
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .stat-box {
        padding: 0.8rem !important;
        border-width: 1px !important;
        box-shadow: 3px 3px 0px #E87A5D !important;
    }

    .stat-box h4 {
        font-size: 0.55rem !important;
        margin-bottom: 0.2rem !important;
    }

    .stat-box .stat-val {
        font-size: 1.4rem !important;
    }

    .stat-box #valRatio {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .dash-table-container {
        padding: 1rem !important;
        border-width: 1px !important;
        box-shadow: 4px 4px 0px #E87A5D !important;
    }

    .dash-table th,
    .dash-table td {
        padding: 0.5rem !important;
        font-size: 0.7rem !important;
    }

    #generatorPromoInput {
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
    }

    #copyWidedistBtn,
    #copyAfterglowBtn {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
    }

    /* User Account page Dynamic key list */
    #pluginsContainer div {
        border-width: 2px !important;
        padding: 0.8rem !important;
        margin-top: 1rem !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    #pluginsContainer h4 {
        font-size: 0.95rem !important;
    }

    #pluginsContainer p {
        font-size: 0.7rem !important;
        margin-top: 0.2rem !important;
        word-break: break-all !important;
    }

    .copy-key-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
}

/* High Contrast White Modular System */
.feature-card,
.pricing-card,
.audio-player,
.flow-card,
.flow-card-wide,
.modal-content {
    background: #ffffff !important;
    color: #06070a !important;
    border: 1px solid #000000 !important;
    /* solid black border */
    box-shadow: 6px 6px 0px #E87A5D !important;
    /* flat peachy-orange offset shadow */
}

/* Typography inside white components */
.feature-card h3,
.feature-card p,
.pricing-card h2,
.pricing-card p,
.pricing-card li,
.pricing-card span,
.audio-player h2,
.audio-player p,
.audio-player .track-name,
.audio-player .label,
.flow-card h3,
.flow-card h4,
.flow-card p,
.modal-content h2,
.modal-content label,
.cookie-banner-text h4,
.cookie-banner-text p {
    color: #06070a !important;
}

.pricing-card .pricing-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.pricing-card .tech-specs li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15) !important;
    color: #374151 !important;
}

.pricing-card .currency {
    color: #4b5563 !important;
}

/* Buttons inside white components */
.pricing-card .btn-primary,
.modal-content .btn-primary {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-primary:hover,
.modal-content .btn-primary:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    border-color: #E87A5D !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-secondary,
.modal-content .btn-secondary {
    background: transparent !important;
    color: #06070a !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.pricing-card .btn-secondary:hover,
.modal-content .btn-secondary:hover {
    background: #06070a !important;
    color: #ffffff !important;
    border-color: #06070a !important;
    box-shadow: 4px 4px 0px #E87A5D !important;
}

/* Form inputs inside white components */
.pricing-card input,
.modal-content input {
    background: #ffffff !important;
    border: 1px solid #06070a !important;
    color: #06070a !important;
}

.pricing-card input:focus,
.modal-content input:focus {
    border-color: #E87A5D !important;
    outline: none;
}

/* Audio Player components inside white player */
.audio-player .track-selector {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.audio-player .track-btn {
    color: #4b5563 !important;
}

.audio-player .track-btn.active {
    background: #06070a !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.audio-player .track-btn:hover:not(.active) {
    color: #06070a !important;
}

.audio-player .waveform-visualizer {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.audio-player .bar {
    background: rgba(0, 0, 0, 0.12) !important;
}

.audio-player .waveform-visualizer.playing.processed .bar {
    background: #E87A5D !important;
    /* Orange bars for processed */
}

.audio-player .waveform-visualizer.playing.clean .bar {
    background: #06070a !important;
    /* Black bars for clean */
}

.audio-player .play-btn {
    background: #06070a !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15) !important;
}

.audio-player .play-btn:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px #06070a !important;
    transform: scale(1.05);
}

.audio-player .slider {
    background-color: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.audio-player .slider:before {
    background-color: #4b5563 !important;
}

.audio-player input:checked+.slider {
    background-color: rgba(232, 122, 93, 0.08) !important;
    border-color: #E87A5D !important;
}

.audio-player input:checked+.slider:before {
    background-color: #E87A5D !important;
}

/* Flow branches adjustments */
.flow-badge {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #000000 !important;
    box-shadow: 4px 4px 0px #E87A5D !important;
}

.flow-step-label {
    background: #E87A5D !important;
    color: #000000 !important;
    font-weight: 800 !important;
    border: 1px solid #000000 !important;
}

/* Modals extra contrast */
.modal-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
}

.modal-content .tab-btn {
    color: #4b5563 !important;
}

.modal-content .tab-btn.active {
    color: #06070a !important;
    border-bottom: 2px solid #06070a !important;
}

.modal-content .modal-close {
    color: #4b5563 !important;
}

.modal-content .modal-close:hover {
    color: #06070a !important;
}

/* Dropdowns peachy orange hover option */
.dropdown-content {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
}

.dropdown-content a {
    color: #06070a !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.dropdown-content a:hover {
    background-color: #E87A5D !important;
    color: #000000 !important;
}

/* Buy Page centered layout and wide box */
.buy-pricing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    width: 100%;
}

.buy-hero-image {
    display: none !important;
    /* Hide mockup image on the side */
}


.buy-pricing-card {
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
}

.buy-pricing-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .buy-pricing-card {
        max-width: 1000px;
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 1.5rem 3.5rem;
        text-align: left;
        padding: 4rem;
    }

    .buy-pricing-card .buy-pricing-title {
        grid-column: 1 / span 2;
        grid-row: 1;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .buy-pricing-card .pricing-header {
        grid-column: 1;
        grid-row: 2 / span 4;
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .buy-pricing-card .card-image-wrapper {
        margin: 1.5rem auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .buy-pricing-card .pricing-header .price {
        justify-content: center;
        align-items: center !important;
        width: 100%;
    }

    .buy-pricing-card .tech-specs {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: 0;
    }

    .buy-pricing-card .coupon-container {
        grid-column: 2;
        grid-row: 3;
        margin-bottom: 0;
    }

    .buy-pricing-card .checkout-btn {
        grid-column: 2;
        grid-row: 4;
        margin-bottom: 0;
    }

    .buy-pricing-card .secure-checkout {
        grid-column: 2;
        grid-row: 5;
        text-align: center;
    }
}

/* Media switcher (Image/Video) overrides */
.media-switcher {
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    padding: 0 !important;
}

.media-btn {
    background: transparent !important;
    color: #06070a !important;
    border: none !important;
    border-right: 1px solid #000000 !important;
}

.media-btn:last-child {
    border-right: none !important;
}

.media-btn.active {
    background: #06070a !important;
    color: #ffffff !important;
}

.media-btn:not(.active):hover {
    background: #E87A5D !important;
    color: #000000 !important;
}

/* Mockup Image overrides for high-contrast */
.plugin-mockup {
    border: 3px solid #000000 !important;
    box-shadow: 6px 6px 0px #E87A5D !important;
    background-color: #ffffff !important;
}

/* Checkout Page terminal pane and button overrides */
.payment-form-pane {
    background: #ffffff !important;
    color: #06070a !important;
    border: 1px solid #000000 !important;
    box-shadow: 6px 6px 0px #E87A5D !important;
}

#paymentSubmitBtn {
    background: #06070a !important;
    color: #ffffff !important;
    border: 1px solid #06070a !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

#paymentSubmitBtn:hover {
    background: #E87A5D !important;
    color: #ffffff !important;
    border-color: #E87A5D !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

/* Fullscreen Image Magnify Overlay */
.image-magnify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 7, 10, 0.95) !important;
    z-index: 99999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-magnify-overlay.active {
    opacity: 1;
}

.image-magnify-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid #ffffff;
    box-shadow: 12px 12px 0px #E87A5D;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-magnify-overlay.active img {
    transform: scale(1);
}

/* Product Landing Page styles */
.buy-hero-section {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.buy-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

@media (max-width: 768px) {
    .buy-hero-title {
        font-size: 1.8rem;
    }
    .buy-hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding: 0 1.2rem !important;
        max-width: 500px !important;
    }
}

.buy-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

.buy-hero-visual {
    width: 100%;
    max-width: 540px;
    margin: 1rem auto 1.5rem auto;
    position: relative;
    padding: 0 1rem;
}

.buy-hero-visual .plugin-mockup {
    width: 100%;
    height: auto;
    border: 4px solid var(--text-main);
    box-shadow: 12px 12px 0px var(--accent-pink);
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-hero-visual .plugin-mockup:hover {
    transform: translate(-2px, -2px);
    box-shadow: 14px 14px 0px var(--accent-pink);
}

.buy-hero-ctas {
    margin: 0;
    width: 100%;
}

.buy-hero-cta-btn {
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    display: inline-block;
    background: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px #06070a !important;
}

.buy-hero-cta-btn:hover {
    background: #06070a !important;
    border-color: #06070a !important;
    color: #ffffff !important;
    box-shadow: 4px 4px 0px var(--accent-pink) !important;
}

/* Feature Grid overrides for Product Pages */
.buy-features-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    border-top: 4px dashed var(--border-strong);
}

.buy-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: left;
}

.buy-feature-grid .feature-card {
    background: #ffffff !important;
    border: 1px solid #000000 !important;
    box-shadow: 6px 6px 0px #E87A5D !important;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.buy-feature-grid .feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #E87A5D !important;
}

.buy-feature-grid .feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.buy-feature-grid .feature-card .feature-icon {
    font-size: 2rem;
    color: #E87A5D;
    line-height: 1;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
}

.buy-feature-grid .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Redesigned Checkout Section styling */
.buy-checkout-title-bar {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.buy-checkout-title-bar h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-pricing-section {
    scroll-margin-top: 80px;
    /* Offset fixed header on scroll */
}

/* Homepage "Our Products" Section styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    border: 4px solid var(--border-strong);
    background: var(--bg-card);
    box-shadow: 8px 8px 0px var(--border-strong);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--border-strong);
}

.product-card.bundle-highlight {
    border-color: var(--accent-pink);
    box-shadow: 8px 8px 0px var(--accent-pink);
}

.product-card.bundle-highlight:hover {
    box-shadow: 12px 12px 0px var(--accent-pink);
}

.product-card-visual {
    background: #0d0e12;
    border-bottom: 4px solid var(--border-strong);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 1rem;
    box-sizing: border-box;
}

.product-card-img {
    max-width: 90%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid var(--border-strong);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.5);
}

/* Bundle collage */
.bundle-collage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-img {
    position: absolute;
    width: 50%;
    height: auto;
    object-fit: contain;
    border: 2px solid var(--border-strong);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s ease;
}

.collage-widedist {
    transform: rotate(-8deg) translate(-25%, -5%);
    z-index: 1;
}

.collage-afterglow {
    transform: rotate(6deg) translate(25%, 5%);
    z-index: 2;
}

.product-card:hover .collage-widedist {
    transform: rotate(-12deg) translate(-35%, -10%) scale(1.05);
}

.product-card:hover .collage-afterglow {
    transform: rotate(10deg) translate(35%, 10%) scale(1.05);
}

.product-card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    box-sizing: border-box;
    align-items: stretch;
}

.product-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-main);
}

.product-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title-link:hover {
    color: var(--accent-pink);
}

.product-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
    margin-top: 0.5rem;
}

.price-val {
    font-size: 1.5rem;
    color: #E87A5D;
}

.price-orig {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.bundle-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-pink);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border: 3px solid var(--border-strong);
    z-index: 10;
}

.product-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.product-card-actions .btn-secondary,
.product-card-actions .btn-primary {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 0.8rem;
    font-size: 0.95rem;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
}

.promo-applied-text {
    font-size: 0.72rem;
    color: var(--accent-pink);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    display: block;
}

.upsell-box {
    border: 2px solid var(--text-main);
    background: rgba(0, 0, 0, 0.02);
    padding: 1.2rem;
    margin: 0.5rem 0 1.5rem 0;
    box-shadow: 4px 4px 0px var(--text-main);
}

.upsell-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.upsell-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-main);
    margin: 0 0 1rem 0;
}

.upsell-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    width: 100%;
    box-shadow: 3px 3px 0px var(--text-main);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-btn:hover {
    background: var(--text-main);
    color: #ffffff;
    box-shadow: 3px 3px 0px var(--accent-pink);
    transform: translateY(-1px);
}

.upsell-btn:active {
    transform: translateY(0);
}

/* Coupon Input Group in Checkout */
.coupon-input-group input {
    transition: border-color 0.2s;
}

.coupon-input-group input:focus {
    border-color: var(--accent-pink) !important;
    outline: none;
}

.coupon-input-group button:hover {
    background: var(--accent-pink) !important;
    border-color: var(--accent-pink) !important;
    color: var(--text-main) !important;
}

/* Collapsible Sections */
.collapsible-section {
    width: 100%;
}

.section-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    transition: color 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 0;
}

.section-toggle-header:hover {
    color: var(--accent-pink);
}

.section-toggle-header h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.expand-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid var(--border-strong);
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 3px 3px 0px var(--border-strong);
    transition: all 0.2s ease;
    border-radius: 0 !important;
}

.section-toggle-header:hover .expand-btn {
    background: var(--accent-pink);
    color: #000000;
    border-color: #000000;
    box-shadow: 3px 3px 0px #000000;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    padding: 0;
}

.collapsible-section.expanded .collapsible-content {
    max-height: 2500px; /* High enough to fit the dsp flow structure */
    opacity: 1;
    padding-top: 2rem;
}

.collapsible-section.expanded .expand-btn {
    background: var(--accent-pink);
    color: #000000;
    box-shadow: 3px 3px 0px #000000;
}

@media (max-width: 768px) {
    .section-toggle-header h2 {
        font-size: 1.1rem !important;
    }
    
    .expand-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}