* {
            box-sizing: border-box;
        }

        :root {
            --bg: #0f0f12;
            --panel: #18181d;
            --panel-2: #111116;
            --border: #24242c;
            --border-soft: #2a2a33;
            --text: #ffffff;
            --muted: #b7b7c2;
            --muted-2: #8f8f9a;
            --accent: #e53935;
            --pill: #20202a;
            --green: #2e7d32;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
        }

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

        .wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 12px 110px;
        }

        .hero {
            padding: 10px 0 22px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }

        .hero-logo {
            display: inline-flex;
            align-items: center;
        }

        .hero-logo img {
            width: auto;
            height: 78px;
            display: block;
        }

        .hero p {
            margin: 0;
            color: var(--muted);
            line-height: 1.5;
            max-width: 760px;
            font-size: 15px;
        }

        .hero-proof {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            padding: 7px 11px;
            border-radius: 999px;
            background: rgba(229,57,53,0.10);
            border: 1px solid rgba(229,57,53,0.32);
            color: #ffffff;
            font-size: 13px;
            font-weight: bold;
            line-height: 1.3;
        }

        .license-intro {
            margin: 18px 0 10px;
        }

        .license-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .license-card {
            display: block;
            background: linear-gradient(180deg, #18181d 0%, #111116 100%);
            border: 1px solid #24242c;
            border-radius: 16px;
            padding: 14px;
            transition: all 0.18s ease;
            position: relative;
            overflow: hidden;
        }

        .license-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(229,57,53,0.15), transparent 60%);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .license-card:hover {
            border-color: #e53935;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.35);
        }

        .license-card:hover::after {
            opacity: 1;
        }

        .license-card h3 {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .license-card p {
            font-size: 13px;
            color: #9f9fac;
        }

        .topbar {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 18px 0 18px;
        }

        .topbar-links {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cart-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #18181d;
            border: 1px solid #24242c;
            padding: 10px 14px;
            border-radius: 0;
            font-size: 14px;
            font-weight: bold;
        }

        .cart-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
            height: 24px;
            padding: 0 7px;
            border-radius: 0;
            background: var(--accent);
            color: #fff;
            font-size: 12px;
            line-height: 1;
        }

        .searchbox input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 2px;
            border: 1px solid var(--border-soft);
            background: var(--panel);
            color: var(--text);
            font-size: 16px;
            outline: none;
        }

        .searchbox input::placeholder {
            color: var(--muted-2);
        }

        .results-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .results-meta {
            color: var(--muted);
            font-size: 14px;
        }

        .sortbox select {
            width: 100%;
            min-width: 180px;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: #101015;
            color: var(--text);
            font-size: 14px;
        }

        .layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .sidebar,
        .content-box {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 2px;
            padding: 16px;
        }

        .sidebar h3,
        .content-box h3 {
            margin: 0 0 16px;
            font-size: 18px;
        }

        .sidebar {
            display: none;
        }

        .sidebar.mobile-open {
            display: block;
        }

        .mobile-filters {
            display: block;
            margin-bottom: 14px;
        }

        .mobile-filters button {
            width: 100%;
            padding: 14px 16px;
            border: 0;
            border-radius: 2px;
            background: var(--accent);
            color: #fff;
            font-weight: bold;
            font-size: 15px;
            cursor: pointer;
        }

        .filter-group {
            margin-bottom: 16px;
        }

        .filter-group label {
            display: block;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .filter-group input,
        .filter-group select {
            width: 100%;
            padding: 12px 12px;
            border-radius: 2px;
            border: 1px solid var(--border-soft);
            background: #101015;
            color: var(--text);
            font-size: 14px;
        }

        .filters-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .content-header .left {
            color: var(--muted);
            font-size: 14px;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .beat-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        }

        .beat-card:hover {
            transform: translateY(-4px);
            border-color: #3a3a47;
            box-shadow: 0 10px 30px rgba(0,0,0,0.35);
        }

        .beat-card.playing {
            border-color: #e53935;
            box-shadow: 0 0 0 1px #e53935 inset, 0 10px 30px rgba(0,0,0,0.4);
        }

        .beat-cover {
            position: relative;
            aspect-ratio: 1 / 1;
            background: linear-gradient(135deg, #20202a 0%, #2d2d3a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted-2);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            overflow: hidden;
        }

        .beat-cover img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.25s ease;
        }

        .beat-card:hover .beat-cover img {
            transform: scale(1.04);
        }

        .play-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            background: rgba(15,15,18,0.82);
            border: 1px solid rgba(255,255,255,0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
            line-height: 1;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            pointer-events: auto;
            user-select: none;
        }

        .play-btn::before {
            content: '';
            display: block;
            margin-left: 2px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 13px solid #ffffff;
        }

        .play-btn:hover {
            background: rgba(229,57,53,0.92);
            border-color: rgba(229,57,53,0.92);
        }

        .beat-card.playing .play-btn::before {
            width: 12px;
            height: 12px;
            margin-left: 0;
            border: 0;
            background: #ffffff;
            clip-path: polygon(0 0, 40% 0, 40% 100%, 0 100%, 0 0, 60% 0, 100% 0, 100% 100%, 60% 100%);
        }

        .beat-body {
            padding: 14px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .beat-title {
            margin: 0 0 7px;
            font-size: 20px;
            line-height: 1.15;
        }

        .beat-context {
            margin: 0 0 10px;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.35;
        }

        .beat-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }

        .pill {
            display: inline-block;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--pill);
            color: #d7d7de;
            font-size: 12px;
            line-height: 1.2;
        }

        .audio-box {
            margin-bottom: 14px;
        }

        .license-box {
            margin-bottom: 14px;
        }

        .license-select-card {
            width: 100%;
            padding: 12px 12px;
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: #101015;
            color: var(--text);
            font-size: 14px;
        }

        .beat-footer {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
            align-items: stretch;
        }

        .price-area {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-top: 2px;
        }

        .price {
            font-size: 26px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .value-copy {
            color: #d7d7de;
            font-size: 13px;
            line-height: 1.3;
        }

        .scarcity-copy {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            padding: 5px 9px;
            border-radius: 999px;
            background: rgba(229,57,53,0.12);
            border: 1px solid rgba(229,57,53,0.30);
            color: #ffb3b1;
            font-size: 12px;
            font-weight: bold;
            line-height: 1.2;
        }

        .scarcity-copy.is-hidden {
            display: none;
        }

        .trust-copy {
            color: var(--muted-2);
            font-size: 12px;
            line-height: 1.3;
            text-align: center;
        }

        .card-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .btn,
        .btn-cart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            min-height: 46px;
            border: 0;
            cursor: pointer;
            width: 100%;
            transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
        }

        .btn {
            background: #23232d;
            border: 1px solid #31313c;
            color: #d7d7de;
            min-height: 40px;
            font-size: 13px;
        }

        .btn:hover {
            background: #2a2a35;
            border-color: #3a3a47;
        }

        .btn-cart {
            background: var(--accent);
            border: 1px solid var(--accent);
            font-weight: 800;
            box-shadow: 0 8px 20px rgba(229,57,53,0.24);
        }

        .btn-cart:hover {
            background: #f04440;
            border-color: #f04440;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(229,57,53,0.30);
        }

        .btn-cart.in-cart {
            background: #2e7d32;
            border-color: #2e7d32;
            color: #fff;
            cursor: default;
            box-shadow: none;
            transform: none;
        }

        .btn-cart:disabled {
            opacity: 0.7;
            cursor: wait;
        }

        .empty-box {
            padding: 18px;
            border-radius: 16px;
            background: #111116;
            border: 1px solid var(--border);
            color: var(--muted);
        }

        .beat-audio {
            display: none;
        }


        .newsletter-section {
            margin: 24px 0 0;
            background: linear-gradient(180deg, #18181d 0%, #111116 100%);
            border: 1px solid #24242c;
            border-radius: 20px;
            padding: 18px;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(229,57,53,0.14), transparent 58%);
            pointer-events: none;
        }

        .newsletter-inner {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 14px;
        }

        .newsletter-copy h2 {
            margin: 0 0 7px;
            font-size: 22px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .newsletter-copy p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.5;
            max-width: 760px;
        }

        .newsletter-form {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .newsletter-form input[type="email"] {
            width: 100%;
            padding: 14px 16px;
            border-radius: 14px;
            border: 1px solid var(--border-soft);
            background: #101015;
            color: var(--text);
            font-size: 16px;
            outline: none;
        }

        .newsletter-form input[type="email"]::placeholder {
            color: var(--muted-2);
        }

        .newsletter-form button {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--accent);
            border-radius: 14px;
            background: var(--accent);
            color: #ffffff;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(229,57,53,0.24);
            transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
        }

        .newsletter-form button:hover {
            background: #f04440;
            border-color: #f04440;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(229,57,53,0.30);
        }


        .newsletter-form .cf-turnstile {
            width: 100%;
            overflow: hidden;
        }

        .newsletter-form .cf-turnstile iframe {
            max-width: 100%;
        }

        .newsletter-note {
            color: var(--muted-2);
            font-size: 12px;
            line-height: 1.4;
        }


        .hero h1 {
            margin: 14px 0 10px;
            font-size: clamp(30px, 6vw, 58px);
            line-height: 0.98;
            letter-spacing: -0.055em;
        }

        .hero-subtitle {
            max-width: 760px;
            margin: 0 auto;
            color: #d7d7de;
            font-size: clamp(16px, 2.8vw, 22px);
            line-height: 1.35;
        }

        .hero-micro {
            max-width: 660px;
            margin: 12px auto 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.45;
        }

        .hero-proof {
            display: inline-flex;
            max-width: 100%;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            align-items: center;
            justify-content: center;
            margin-top: 14px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(229,57,53,0.10);
            border: 1px solid rgba(229,57,53,0.28);
            color: #ffd0cf;
            font-size: 13px;
            line-height: 1.35;
            font-weight: 700;
        }

        .license-intro {
            margin-top: 26px;
        }

        .license-section-head {
            margin-bottom: 14px;
        }

        .license-section-head h2 {
            margin: 0 0 7px;
            font-size: 24px;
            line-height: 1.15;
            letter-spacing: -0.025em;
        }

        .license-section-head p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.5;
            max-width: 760px;
        }

        .newsletter-inline {
            grid-column: 1 / -1;
            margin: 4px 0;
        }

        @media (max-width: 700px) {
            .hero {
                padding-bottom: 8px;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero-proof {
                border-radius: 16px;
                font-size: 12px;
                padding: 8px 10px;
            }

            .license-card {
                padding: 14px;
            }

            .license-card h3 {
                margin-bottom: 6px;
            }

            .license-card p {
                font-size: 13px;
                line-height: 1.4;
            }
        }

        .footer-player {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.22s ease;
            background: rgba(15,15,18,0.96);
            border-top: 1px solid #24242c;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-player.visible {
            transform: translateY(0);
        }

        .footer-player-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px;
            display: grid;
            gap: 12px;
            align-items: center;
        }

        .footer-player-main {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .footer-player-toggle {
            flex: 0 0 46px;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            cursor: pointer;
            position: relative;
        }

        .footer-player-toggle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-42%, -50%);
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 13px solid #ffffff;
        }

        .footer-player-toggle.is-playing::before {
            width: 12px;
            height: 12px;
            border: 0;
            background: #ffffff;
            transform: translate(-50%, -50%);
            clip-path: polygon(0 0, 40% 0, 40% 100%, 0 100%, 0 0, 60% 0, 100% 0, 100% 100%, 60% 100%);
        }

        .footer-player-meta {
            min-width: 0;
        }

        .footer-player-title {
            font-size: 14px;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .footer-player-sub {
            font-size: 12px;
            color: #8f8f9a;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .footer-player-bar {
            display: grid;
            grid-template-columns: 44px 1fr 44px;
            gap: 10px;
            align-items: center;
        }

        .footer-player-time {
            font-size: 12px;
            color: #8f8f9a;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }

        .footer-player-progress {
            width: 100%;
            accent-color: #e53935;
            cursor: pointer;
        }

        .site-footer-new {
            background: #111116;
            border-top: 1px solid #24242c;
            margin-top: 40px;
            padding-bottom: 90px;
        }

        .site-footer-new-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px 12px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .site-footer-new-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .site-footer-brand h3 {
            margin: 0 0 6px;
            font-size: 16px;
        }

        .site-footer-brand p {
            margin: 0;
            font-size: 13px;
            color: #8f8f9a;
        }

        .site-footer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .site-footer-links a {
            font-size: 13px;
            color: #b7b7c2;
            text-decoration: none;
        }

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

        .site-footer-new-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #6f6f7a;
            border-top: 1px solid #24242c;
            padding-top: 12px;
        }

        .site-footer-links-social a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .topbar-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .topbar-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #18181d;
            border: 1px solid #24242c;
            padding: 6px;
            border-radius: 999px;
        }

        .lang-switcher a {
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 13px;
            color: #b7b7c2;
        }

        .lang-switcher a.is-active {
            background: #e53935;
            color: #fff;
        }

        @media (max-width: 700px) {
            .hero-logo img {
                height: 56px;
            }

            .topbar-actions {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .lang-switcher {
                width: fit-content;
            }

            .cart-link {
                width: 100%;
                justify-content: center;
            }

            .footer-player-inner {
                padding: 10px 12px 12px;
            }

            .footer-player-toggle {
                flex: 0 0 42px;
                width: 42px;
                height: 42px;
            }

            .footer-player-bar {
                grid-template-columns: 40px 1fr 40px;
                gap: 8px;
            }
        }

        @media (min-width: 700px) {
            .wrapper {
                padding: 22px 16px 48px 16px;
            }

            .grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .license-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .newsletter-inner {
                grid-template-columns: 1.4fr 1fr;
                align-items: center;
            }

            .newsletter-form {
                grid-template-columns: 1fr;
            }

            .newsletter-form button {
                width: 100%;
                min-width: 130px;
            }
        }

        @media (min-width: 800px) {
            .site-footer-new-top {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        @media (min-width: 980px) {
            .layout {
                grid-template-columns: 280px 1fr;
                gap: 24px;
            }

            .sidebar {
                display: block;
            }

            .mobile-filters {
                display: none;
            }

            .content-box,
            .sidebar {
                padding: 20px;
            }

            .grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
                gap: 18px;
            }
        }



        /* Hero compact final refinements */
        .hero {
            padding-top: 8px;
            padding-bottom: 10px;
            margin-bottom: 14px;
        }

        .hero-logo img {
            height: 54px;
        }

        .hero h1 {
            margin: 10px 0 8px;
            font-size: clamp(28px, 4vw, 44px);
            line-height: 1.03;
            letter-spacing: -0.04em;
        }

        .hero-subtitle {
            font-size: clamp(15px, 2vw, 18px);
            line-height: 1.35;
        }

        .hero-proof {
            margin-top: 10px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.045);
            border: 1px solid rgba(255,255,255,0.09);
            color: #d7d7de;
            font-size: 12px;
            line-height: 1.3;
            font-weight: 600;
        }

        .hero-micro {
            margin-top: 9px;
            font-size: 13px;
            line-height: 1.35;
        }

        .topbar {
            margin-top: 12px;
        }

        @media (max-width: 700px) {
            .wrapper {
                padding-top: 18px;
            }

            .hero {
                text-align: left;
                padding-top: 0;
                padding-bottom: 0;
                margin-bottom: 12px;
            }

            .hero-logo {
                display: inline-flex;
                margin-bottom: 10px;
            }

            .hero-logo img {
                height: 36px;
            }

            .hero h1 {
                margin: 0 0 7px;
                font-size: 25px;
                line-height: 1.05;
                letter-spacing: -0.032em;
            }

            .hero-subtitle {
                margin: 0;
                font-size: 14px;
                line-height: 1.32;
                max-width: 100%;
            }

            .hero-proof {
                display: inline-flex;
                width: auto;
                max-width: 100%;
                justify-content: flex-start;
                margin-top: 8px;
                padding: 5px 8px;
                border-radius: 999px;
                font-size: 11px;
                line-height: 1.25;
                font-weight: 600;
            }

            .hero-micro {
                margin: 8px 0 0;
                font-size: 13px;
                line-height: 1.3;
                max-width: 100%;
            }

            .topbar {
                margin-top: 16px;
            }

            .topbar-links {
                gap: 10px;
            }

            .topbar-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 8px;
                width: 100%;
            }

            .lang-switcher {
                width: 100%;
                justify-content: space-between;
                padding: 4px;
            }

            .lang-switcher a {
                flex: 1;
                text-align: center;
                padding: 8px 0;
                font-size: 12px;
            }

            .cart-link {
                min-height: 44px;
                border-radius: 0;
                font-size: 13px;
            }

            .searchbox input {
                min-height: 46px;
                font-size: 15px;
            }

            .mobile-filters {
                margin-bottom: 10px;
            }

            .mobile-filters button {
                padding: 12px 14px;
                font-size: 14px;
            }

            .sortbox {
                width: 100%;
            }

            .sortbox select {
                width: 100%;
                min-height: 44px;
                font-size: 13px;
            }
        }


        /* Topbar compact mobile refinements */
        @media (max-width: 700px) {
            .topbar {
                gap: 9px;
                margin: 12px 0 12px;
            }

            .topbar-links {
                gap: 8px;
            }

            .topbar-meta {
                width: 100%;
            }

            .results-meta {
                font-size: 13px;
                line-height: 1.25;
            }

            .topbar-meta .results-meta:first-child {
                font-size: 14px;
                font-weight: 700;
                color: #ffffff;
            }

            .topbar-meta .results-meta:last-child {
                font-size: 12px !important;
                margin-top: 2px;
            }

            .topbar-actions {
                gap: 7px;
            }

            .lang-switcher {
                padding: 3px;
            }

            .lang-switcher a {
                padding: 7px 0;
                font-size: 12px;
            }

            .cart-link {
                min-height: 40px;
                padding: 8px 12px;
                font-size: 13px;
            }

            .cart-count {
                min-width: 21px;
                height: 21px;
                font-size: 11px;
            }

            .searchbox input {
                min-height: 42px;
                padding: 11px 13px;
                border-radius: 2px;
                font-size: 14px;
            }

            .results-row {
                gap: 8px;
            }

            .sortbox select {
                min-height: 42px;
                padding: 10px 12px;
                border-radius: 2px;
                font-size: 13px;
            }

            .mobile-filters {
                margin-bottom: 8px;
            }

            .mobile-filters button {
                padding: 10px 12px;
                border-radius: 2px;
                font-size: 13px;
            }
        }


        /* Beat card mobile optimization */
        @media (max-width: 700px) {
            .content-box {
                padding: 12px;
                border-radius: 2px;
            }

            .content-header {
                margin-bottom: 12px;
            }

            .grid {
                gap: 14px;
            }

            .beat-card {
                border-radius: 2px;
            }

            .beat-cover {
                aspect-ratio: 1.22 / 1;
            }

            .play-btn {
                width: 40px;
                height: 40px;
                bottom: 9px;
                right: 9px;
            }

            .beat-body {
                padding: 12px;
            }

            .beat-title {
                margin: 0 0 5px;
                font-size: 18px;
                line-height: 1.12;
            }

            .beat-context {
                margin: 0 0 8px;
                font-size: 12px;
                line-height: 1.3;
            }

            .beat-meta {
                gap: 6px;
                margin-bottom: 10px;
            }

            .pill {
                padding: 5px 8px;
                font-size: 11px;
                line-height: 1.15;
            }

            .beat-tier-pill {
                opacity: 0.72;
            }

            .license-box {
                margin-bottom: 10px;
            }

            .license-select-card {
                padding: 10px 11px;
                border-radius: 11px;
                font-size: 13px;
            }

            .beat-footer {
                gap: 9px;
            }

            .price-area {
                gap: 4px;
            }

            .price {
                font-size: 22px;
            }

            .value-copy {
                font-size: 12px;
            }

            .scarcity-copy {
                padding: 4px 8px;
                font-size: 11px;
            }

            .card-actions {
                gap: 7px;
            }

            .btn-cart {
                min-height: 42px;
                padding: 10px 13px;
                border-radius: 11px;
                font-size: 13px;
            }

            .trust-copy {
                font-size: 11px;
                line-height: 1.25;
            }

            .btn {
                min-height: 38px;
                padding: 9px 12px;
                border-radius: 11px;
                font-size: 12px;
            }
        }
