/* =============================================
   BadX.ai - Shared Styles
   Version 1.0
   ============================================= */

/* CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   Design Tokens / CSS Variables
   ============================================= */
:root {
    /* Colors - Dark Theme (Default) */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #161616;
    --bg-hover: #1a1a1a;
    --bg-input: #1a1a1f;

    --border-primary: rgba(255, 255, 255, 0.1);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-input: #3f3f46;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-placeholder: #71717a;

    /* Brand Colors */
    --accent-pink: #ff3366;
    --accent-purple: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --accent-pink-solid: #f472b6;

    /* Semantic Colors */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Typography */
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 15px;
    --font-size-lg: 17px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);

    /* Layout */
    --header-height: 72px;
    --header-height-mobile: 56px;
    --max-width: 1400px;
    --spacing-page: clamp(16px, 5vw, 80px);

    /* Z-index layers */
    --z-dropdown: 100;
    --z-header: 1000;
    --z-mobile-menu: 1001;
    --z-modal-backdrop: 10000;
    --z-modal: 10001;
}

/* Light Theme */
html[data-theme="light"] {
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --bg-hover: #f0f0f0;
    --bg-input: #f4f4f5;

    --border-primary: rgba(0, 0, 0, 0.1);
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-input: #e4e4e7;

    --text-primary: #18181b;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --text-muted: rgba(0, 0, 0, 0.4);
    --text-placeholder: #a1a1aa;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* =============================================
   Base Styles
   ============================================= */
html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =============================================
   Header
   ============================================= */
.badx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 9998;
    pointer-events: auto;
}

html[data-theme="light"] .badx-header {
    background: rgba(255, 255, 255, 0.9);
}

.badx-header-inner {
    height: 100%;
    padding: 0 var(--spacing-page);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.badx-logo {
    display: flex;
    align-items: center;
}

.badx-logo-img {
    height: 36px;
    width: auto;
}

.badx-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.badx-logo-mark svg {
    width: 24px;
    height: 24px;
    color: white;
}

.badx-logo-text {
    color: var(--text-primary);
}

.badx-logo-text span {
    background: linear-gradient(135deg, #ff3366, #ff6b3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.badx-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.badx-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color 0.15s ease;
}

.badx-nav-link svg {
    width: 20px;
    height: 20px;
}

.badx-nav-link:hover,
.badx-nav-link.active {
    color: var(--text-primary);
}

.badx-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-pink);
    border-radius: 2px;
}

/* Header Actions */
.badx-header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.badx-theme-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.badx-theme-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.badx-theme-btn svg {
    width: 20px;
    height: 20px;
}

.badx-btn-signin {
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    transition: all 0.15s ease;
}

.badx-btn-signin:hover {
    background: var(--bg-hover);
}

.badx-btn-signup {
    padding: 10px var(--spacing-xl);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    transition: all 0.15s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.badx-btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.badx-btn-signup .sub {
    font-size: var(--font-size-xs);
    font-weight: 500;
    opacity: 0.9;
}

/* Hamburger */
.badx-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.badx-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.badx-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.badx-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.badx-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Header */
.badx-mobile-signup {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    background: white;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: var(--radius-full);
    color: #1a1a1a;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.1;
}

html[data-theme="dark"] .badx-mobile-signup {
    background: #1a1a1a;
    background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: white;
}

.badx-mobile-signup .sub {
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   Mobile Menu
   ============================================= */
.badx-mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: var(--z-mobile-menu);
    padding: var(--spacing-xl);
    flex-direction: column;
    gap: var(--spacing-sm);
    overflow-y: auto;
}

.badx-mobile-menu.active {
    display: flex;
}

.badx-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.badx-mobile-menu-link:hover {
    background: var(--bg-hover);
}

.badx-mobile-menu-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.badx-mobile-menu-link.active {
    color: var(--accent-pink);
}

.badx-mobile-menu-link.active svg {
    color: var(--accent-pink);
}

.badx-mobile-menu-divider {
    height: 1px;
    background: var(--border-primary);
    margin: var(--spacing-md) 0;
}

.badx-mobile-menu-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
    padding-top: var(--spacing-lg);
}

.badx-mobile-menu-btn {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.badx-mobile-menu-btn.primary {
    background: var(--accent-gradient);
    color: white;
}

.badx-mobile-menu-btn.secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
}

/* Mobile Menu Section Links */
.badx-mobile-menu-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--spacing-md);
}

.badx-mobile-menu-section-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-secondary);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
    transition: background 0.2s ease;
}

.badx-mobile-menu-section-link:last-child {
    border-bottom: none;
}

.badx-mobile-menu-section-link:hover {
    background: var(--bg-hover);
}

.badx-mobile-menu-section-link .link-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.badx-mobile-menu-section-link svg {
    width: 18px;
    height: 18px;
}

.badx-mobile-menu-section-link .chevron {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.badx-mobile-menu-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--text-primary);
}

.badx-theme-toggle {
    width: 44px;
    height: 28px;
    border-radius: 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.badx-theme-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

html[data-theme="light"] .badx-theme-toggle .sun-icon { display: none; }
html[data-theme="light"] .badx-theme-toggle .moon-icon { display: block; }
html[data-theme="dark"] .badx-theme-toggle .sun-icon { display: block; }
html[data-theme="dark"] .badx-theme-toggle .moon-icon { display: none; }

.badx-mobile-menu-footer {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-lg);
    margin-top: auto;
}

.badx-mobile-menu-footer a {
    font-size: 10px;
    color: var(--text-muted);
}

.badx-mobile-menu-footer span {
    color: var(--text-muted);
}

/* =============================================
   Auth Modal
   ============================================= */
.badx-auth-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
    padding: var(--spacing-lg);
    overflow-y: auto;
}

.badx-auth-backdrop.active {
    display: flex;
}

/* Light theme backdrop */
html[data-theme="light"] .badx-auth-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.badx-auth-modal {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 380px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
}

html[data-theme="light"] .badx-auth-modal {
    box-shadow: var(--shadow-lg);
}

.badx-auth-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
    z-index: 10;
}

.badx-auth-close:hover {
    color: var(--text-primary);
}

.badx-auth-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

/* Promo Section */
.badx-auth-promo {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.badx-auth-promo-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.badx-auth-promo-check {
    color: var(--success);
    font-weight: 600;
}

/* Auth Form */
.badx-auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.badx-auth-input {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: var(--radius-md);
    padding: 0 var(--spacing-md);
    transition: all 0.2s;
}

.badx-auth-input:focus-within {
    border-color: var(--accent-purple);
}

.badx-auth-input svg {
    color: var(--text-placeholder);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.badx-auth-input input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px var(--spacing-md);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
}

.badx-auth-input input::placeholder {
    color: var(--text-placeholder);
}

.badx-password-toggle {
    padding: var(--spacing-xs);
    color: var(--text-placeholder);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badx-password-toggle:hover {
    color: var(--text-secondary);
}

.badx-auth-helper {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: -4px;
}

.badx-auth-forgot {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    text-decoration: underline;
}

.badx-auth-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent-pink-solid);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: white;
    margin-top: var(--spacing-xs);
    transition: background 0.2s;
}

.badx-auth-submit:hover {
    background: #ec4899;
}

.badx-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Social Auth */
.badx-auth-divider {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.badx-auth-divider::before,
.badx-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-input);
}

.badx-social-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.badx-social-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.badx-social-btn:hover {
    transform: translateY(-2px);
}

.badx-social-btn.google {
    background: white;
    border: 1px solid #e5e7eb;
}

.badx-social-btn.discord {
    background: #5865F2;
    color: white;
}

.badx-social-btn.x {
    background: white;
    border: 1px solid #e5e7eb;
    color: #000;
}

/* Auth Footer */
.badx-auth-terms {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--spacing-lg);
}

.badx-auth-terms a {
    color: var(--text-primary);
    text-decoration: underline;
}

.badx-auth-switch {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-subtle);
}

.badx-auth-switch button {
    color: var(--accent-pink-solid);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.badx-auth-switch button:hover {
    text-decoration: underline;
}

.badx-auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    color: #fca5a5;
    font-size: var(--font-size-sm);
    text-align: center;
    display: none;
}

/* =============================================
   Footer
   ============================================= */
.badx-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 40px var(--spacing-page) 30px;
}

.badx-footer-inner {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 30px;
    align-items: start;
    max-width: 1250px;
    margin: 0 auto;
}

/* Left: Brand Info */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.footer-company-info {
    margin-top: 8px;
}

.footer-company {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.footer-address {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    margin: 8px 0 0 0;
}

/* Middle: Link Columns */
.footer-links-grid {
    display: flex;
    gap: 36px;
    justify-content: flex-start;
}

.footer-section {
    min-width: 100px;
}

.footer-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    cursor: default;
}

.footer-plus {
    display: none;
}

.footer-section.open .footer-plus {
    transform: rotate(45deg);
}

.footer-section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section-links a {
    font-size: 14px;
    color: var(--text-primary);
    transition: color 0.2s;
}

.footer-section-links a:hover {
    color: var(--accent-pink);
}

/* Right: Social & Payments */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-social-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transition: background 0.2s, color 0.2s;
}

.footer-social-icon:hover {
    background: var(--accent-pink);
    color: white;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Payment Logos */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
}

.payment-logo {
    height: 32px;
    width: auto;
}

/* Mobile Only Info - hidden on desktop */
.footer-mobile-info {
    display: none;
}

/* =============================================
   Responsive - Mobile
   ============================================= */
@media (max-width: 768px) {
    :root {
        --header-height: var(--header-height-mobile);
    }

    .badx-header-inner {
        padding: 0 var(--spacing-sm);
    }

    .badx-nav,
    .badx-header-actions,
    .badx-logo.desktop-only {
        display: none;
    }

    .badx-hamburger,
    .badx-mobile-signup {
        display: flex;
    }

    .badx-logo-mark {
        width: 36px;
        height: 36px;
    }

    .badx-logo-mark svg {
        width: 20px;
        height: 20px;
    }

    .badx-logo {
        font-size: var(--font-size-xl);
    }

    .badx-logo-img {
        height: 28px;
    }

    .badx-footer {
        padding: 24px var(--spacing-page) 100px;
    }

    .badx-footer-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Hide brand section on mobile */
    .footer-brand {
        display: none;
    }

    /* Link columns as accordion on mobile */
    .footer-links-grid {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .footer-section {
        border-bottom: 1px solid var(--border-subtle);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section-title {
        padding: 14px 0;
        cursor: pointer;
        margin-bottom: 0;
    }

    .footer-plus {
        display: block;
        font-size: 20px;
        color: var(--text-secondary);
        transition: transform 0.2s;
    }

    .footer-section-links {
        display: none;
        padding: 0 0 14px 0;
    }

    .footer-section.open .footer-section-links {
        display: flex;
    }

    /* Right section adjustments */
    .footer-right {
        align-items: center;
        width: 100%;
    }

    .footer-social-section {
        align-items: center;
    }

    .footer-payments {
        margin-top: 8px;
    }

    /* Show mobile info section */
    .footer-mobile-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        padding-top: 16px;
        border-top: 1px solid var(--border-subtle);
    }

    .footer-mobile-info .footer-company {
        font-size: 12px;
    }

    .footer-mobile-info .footer-address {
        font-size: 11px;
    }

    .footer-mobile-info .footer-copyright {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* =============================================
   Utility Classes
   ============================================= */
.touch-action-manipulation {
    touch-action: manipulation;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
