/* ================================================================
   NEXERP APP STORE — Dedicated Styles
   (Complements corporate_website.css)
================================================================ */

/* ── Page body padding for fixed header ── */
.nx_page_body {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-void);
}

/* ================================================================
   APPS HERO
================================================================ */
.apps_hero {
    position: relative;
    padding: 7rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
    background: var(--grad-hero);
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

.apps_hero_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(123, 47, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated mesh grid */
.apps_hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.apps_hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.apps_hero_title {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.grad_text {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShimmer 4s linear infinite;
}

.apps_hero_sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Hero search bar */
.apps_hero_search {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search_input_wrap {
    display: flex;
    align-items: center;
    background: rgba(13, 25, 41, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search_input_wrap:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.search_icon {
    color: var(--text-dim);
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.apps_search_input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    caret-color: var(--neon-cyan);
    min-width: 0;
}

.apps_search_input::placeholder {
    color: var(--text-dim);
}

.search_submit_btn {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    border-radius: 50px;
    color: var(--bg-void);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    flex-shrink: 0;
}

.search_submit_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.4);
}

/* ================================================================
   FEATURED BAND
================================================================ */
.featured_band {
    background: linear-gradient(180deg, var(--bg-mid), var(--bg-dark));
    border-bottom: 1px solid rgba(0, 245, 255, 0.06);
    padding: 3rem 2rem;
}

.featured_band_inner {
    max-width: 1300px;
    margin: 0 auto;
}

.featured_label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.featured_label i {
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(0, 245, 255, 0.6));
}

.featured_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.featured_card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.35s var(--ease-spring);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.featured_card:hover {
    border-color: rgba(0, 245, 255, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--glow-cyan);
}

.featured_card_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.featured_card_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured_card_icon i {
    font-size: 1.6rem;
    color: var(--neon-cyan);
}

.featured_card_body {
    flex: 1;
    min-width: 0;
}

.featured_card_body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_card_body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_arrow {
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.featured_card:hover .featured_arrow {
    color: var(--neon-cyan);
    transform: translateX(4px);
}

/* ================================================================
   STORE BODY (Sidebar + Main Grid)
================================================================ */
.store_body {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: start;
}

/* ── Sidebar ── */
.store_sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: 2rem;
}

.filter_group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.filter_group_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.filter_pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s var(--ease-smooth);
    border: 1px solid transparent;
    cursor: pointer;
}

.filter_pill:hover {
    background: rgba(0, 245, 255, 0.05);
    color: var(--text-white);
    border-color: rgba(0, 245, 255, 0.15);
}

.filter_pill.active {
    background: rgba(0, 245, 255, 0.08);
    color: var(--neon-cyan);
    border-color: rgba(0, 245, 255, 0.3);
}

.filter_pill.green.active {
    color: var(--neon-green);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.pill_count {
    margin-left: auto;
    font-size: 0.75rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    border-radius: 20px;
    padding: 0.1rem 0.55rem;
    font-weight: 700;
}

/* ── Main Area ── */
.store_main {
    min-width: 0;
}

/* Results Bar */
.results_bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.06);
}

.results_count {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.active_filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.active_filter_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 245, 255, 0.07);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.chip_remove {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 0.25rem;
    transition: color 0.2s;
}

.chip_remove:hover {
    color: var(--neon-pink);
}

.clear_filters_btn {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.25rem 0.9rem;
    transition: all 0.2s ease;
}

.clear_filters_btn:hover {
    color: var(--neon-cyan);
    border-color: rgba(0, 245, 255, 0.3);
}

/* ── Empty State ── */
.empty_state {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-muted);
}

.empty_icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty_state h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.empty_state p {
    margin-bottom: 2rem;
}

/* ── Apps Grid ── */
.apps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── App Card ── */
.app_card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: pointer;
}

.app_card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 245, 255, 0.1);
}

/* Top neon accent line per card */
.app_card_line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
}

.app_card:hover .app_card_line {
    transform: scaleX(1);
}

.app_card_top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app_card_icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
}

.app_card:hover .app_card_icon {
    transform: scale(1.1) rotate(-5deg);
}

.app_card_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app_card_icon i {
    font-size: 1.6rem;
}

.app_card_meta {
    flex: 1;
    min-width: 0;
}

.app_card_name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.app_card_category {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Price badge */
.app_price_badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.app_price_badge.free {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.app_price_badge.paid {
    background: rgba(0, 102, 255, 0.1);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Tagline */
.app_card_tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Version pills */
.app_card_versions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.version_pill {
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.15);
    color: var(--text-dim);
    border-radius: 50px;
    padding: 0.15rem 0.65rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.03em;
}

/* Card CTA */
.app_card_cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s var(--ease-spring);
}

.app_card:hover .app_card_cta {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   APP DETAIL PAGE
================================================================ */

/* Breadcrumb */
.app_breadcrumb {
    background: var(--bg-deep);
    border-bottom: 1px solid rgba(0, 245, 255, 0.06);
    padding: 0.85rem 2rem;
}

.breadcrumb_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.breadcrumb_inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb_inner a:hover {
    color: var(--neon-cyan);
}

.breadcrumb_inner i {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.breadcrumb_inner span {
    color: var(--text-white);
    font-weight: 500;
}

/* App Hero */
.app_detail_hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
    padding: 4rem 2rem;
    overflow: hidden;
}

.app_detail_hero_bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(var(--app-color, 0, 245, 255), 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.app_detail_hero_inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.app_detail_icon_wrap {
    flex-shrink: 0;
}

.app_detail_icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    object-fit: cover;
    border: 2px solid rgba(0, 245, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 245, 255, 0.1);
}

.app_detail_icon_placeholder {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    background: rgba(0, 245, 255, 0.06);
    border: 2px solid rgba(0, 245, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--neon-cyan);
}

.app_detail_info {
    flex: 1;
    min-width: 0;
}

.app_detail_meta_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.app_cat_badge {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
}

.featured_chip {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    padding: 0.2rem 0.8rem;
}

.app_detail_title {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.app_detail_tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Versions */
.app_detail_versions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.versions_label {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.version_chip {
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    color: var(--neon-cyan);
    border-radius: 50px;
    padding: 0.2rem 0.75rem;
    font-family: 'Orbitron', monospace;
}

/* Actions row */
.app_detail_actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.app_detail_price_display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail_price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.detail_price.free {
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.detail_price.paid {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price_note {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.action_buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.module_key_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.module_key_code {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    color: var(--neon-cyan);
}

.installs_row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.installs_row i {
    color: var(--neon-cyan);
}

/* ── App Detail Body ── */
.app_detail_body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    align-items: start;
}

/* Detail Cards */
.detail_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem;
    backdrop-filter: blur(20px);
    margin-bottom: 1.75rem;
    transition: border-color 0.3s ease;
}

.detail_card:hover {
    border-color: rgba(0, 245, 255, 0.2);
}

.detail_card_title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.detail_card_title i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 4px rgba(0, 245, 255, 0.5));
}

/* Features list */
.features_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature_bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.5;
}

.feature_check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature_check i {
    font-size: 0.65rem;
    color: var(--neon-green);
}

/* App description body */
.app_description_body {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.98rem;
}

.app_description_body p {
    margin-bottom: 1rem;
}

.app_description_body h2,
.app_description_body h3 {
    color: var(--text-white);
    margin: 1.5rem 0 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Tags */
.tag_cloud {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tag_chip {
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(123, 47, 255, 0.08);
    border: 1px solid rgba(123, 47, 255, 0.2);
    color: var(--neon-purple);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
}

/* ── Sidebar Cards ── */
.sidebar_card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    margin-bottom: 1.25rem;
    transition: border-color 0.3s ease;
}

.sidebar_card:hover {
    border-color: rgba(0, 245, 255, 0.2);
}

.sidebar_card_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.25rem;
}

/* Info rows */
.info_rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.info_row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.05);
}

.info_row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info_label {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 80px;
    flex-shrink: 0;
}

.info_label i {
    color: var(--neon-cyan);
    font-size: 0.75rem;
}

.info_value {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.module_code {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
}

/* Support card */
.sidebar_support_text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.sidebar_contact_btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.7rem;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s var(--ease-spring);
}

.sidebar_contact_btn:hover {
    background: rgba(0, 245, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.15);
}

/* Related apps */
.related_apps_list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related_app_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(0, 245, 255, 0.02);
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related_app_item:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.15);
    transform: translateX(4px);
}

.related_app_icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 245, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.related_app_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related_app_icon i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.related_app_info {
    flex: 1;
    min-width: 0;
}

.related_app_name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related_app_price {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.related_app_price.free {
    color: var(--neon-green);
}

.related_app_price.paid {
    color: var(--neon-blue);
}

.related_app_arrow {
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.related_app_item:hover .related_app_arrow {
    color: var(--neon-cyan);
}

/* Price badges (detail hero shared) */
.price_badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.price_badge.free {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.price_badge.paid {
    background: rgba(0, 102, 255, 0.1);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
    .store_body {
        grid-template-columns: 220px 1fr;
    }

    .app_detail_body {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 900px) {
    .store_body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .store_sidebar {
        position: static;
        padding-right: 0;
    }

    .filter_group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filter_group_title {
        width: 100%;
    }

    .app_detail_hero_inner {
        flex-direction: column;
        gap: 1.5rem;
    }

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

@media (max-width: 640px) {
    .apps_hero {
        padding: 5rem 1.5rem 3rem;
    }

    .apps_hero_title {
        font-size: 2rem;
    }

    .app_detail_actions {
        flex-direction: column;
        align-items: flex-start;
    }
}