/* ========================================
   EXAGHOST SERVICES & CHECKOUT - OPTIMIZED CSS
   VERSION: 5.0 | FIXED & CONSOLIDATED
   ======================================== */

/*===========================================
   1. CSS RESET & BASE
===========================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*===========================================
   2. GLOBAL VARIABLES
===========================================*/
:root {
    --color-bg: #FFF5F0;
    --color-surface: #FFFFFF;
    --color-primary: #FF6B35;
    --color-primary-dark: #E55A2B;
    --color-primary-light: rgba(255, 107, 53, 0.1);
    --color-secondary: #D946EF;
    --color-text: #1A1A2E;
    --color-text-secondary: #8A8AA8;
    --color-success: #10B981;
    --color-success-light: rgba(16, 185, 129, 0.1);
    --color-error: #EF4444;
    --color-error-light: rgba(239, 68, 68, 0.1);
    --color-border: #F5EFEB;
    --color-text-light: #6B7280;
    --color-bg-light: #F9FAFB;
    
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow-primary: 0 10px 22px rgba(255, 107, 53, 0.3);
    
    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 15px;
    --space-lg: 20px;
    --space-xl: 24px;
    --space-2xl: 32px;
    
    --transition: 0.25s ease;
    --z-float: 100;
    --z-overlay: 999;
    --z-sidebar: 1000;
    --z-toast: 1001;
    
    --cart-sidebar-width: 450px;
    --user-avatar-size: 48px;
}

/* ============================================
  3. HEADER BASE STYLES
   ============================================ */
.exa-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    margin: 0 20px 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.exa-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--space-md);
}

/* ============================================
   LOGO STYLES
   ============================================ */
.exa-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.exa-logo svg {
    width: 36px;
    height: 36px;
}

.exa-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-text) 30%, #16213E 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exa-logo-text span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.exa-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.exa-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.exa-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.95rem;
}

.exa-nav-link:hover {
    color: var(--color-primary);
    background: rgba(255, 107, 53, 0.08);
}

.exa-nav-link svg {
    flex-shrink: 0;
}

/* ============================================
   MEGA DROPDOWN MENU
   ============================================ */
.exa-dropdown {
    position: relative;
}

.dropdown-trigger .exa-arrow {
    transition: transform 0.2s ease;
}

.exa-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-xl);
    min-width: 780px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 100;
    border: 1px solid var(--color-border);
}

.exa-dropdown:hover .exa-mega {
    opacity: 1;
    visibility: visible;
    /*transform: translateX(-50%) translateY(0);*/
    pointer-events: auto;
}

/* Mega Menu Columns */
.exa-col {
    min-width: 160px;
}

.exa-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    text-decoration: none;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 12px;
}

.exa-col-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.exa-mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin: 4px 0;
}

.exa-mega-link:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
    transform: translateX(4px);
}

.exa-mega-link span {
    margin-left: auto;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.85rem;
}

/* Mega Menu Offer Banner */
.exa-offer {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-width: 180px;
    display: flex;
    align-items: center;
}

.exa-offer > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.exa-offer svg {
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 50%;
}

.exa-offer strong {
    color: white;
    font-size: 1rem;
    display: block;
}

.exa-offer small {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
}

.exa-offer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.exa-offer a:hover {
    background: white;
    color: var(--color-primary);
}

/* ============================================
   AUTH BUTTONS (Desktop)
   ============================================ */
.exa-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.exa-signin-btn,
.exa-signup-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.exa-signin-btn {
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
}

.exa-signin-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 107, 53, 0.05);
}

.exa-signup-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
}

.exa-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* User Menu Dropdown */
.exa-user-menu {
    position: relative;
}

.exa-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 8px;
    background: var(--color-bg-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.exa-user-btn:hover {
    background: white;
    border-color: var(--color-primary);
}

.exa-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.exa-user-name {
    font-weight: 500;
    color: var(--color-text);
}

.exa-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(-8px);
    z-index: 100;
    border: 1px solid var(--color-border);
}

.exa-user-menu:hover .exa-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.exa-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
}

.exa-user-dropdown a:last-child {
    border-bottom: none;
    color: #dc2626;
}

.exa-user-dropdown a:hover {
    background: var(--color-bg-light);
    color: var(--color-primary);
}

.exa-user-dropdown a:last-child:hover {
    background: #fef2f2;
    color: #dc2626;
}
#desktop-auth-buttons{
    display: flex;
    gap: 12px;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.exa-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.exa-mobile-btn span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.25s ease;
    border-radius: 2px;
}

.exa-mobile-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.exa-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.exa-mobile-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.exa-mobile-actions {
    display: none;
}
/*===========================================
   4. AUTH PAGES
===========================================*/
/* Auth Wrapper */
.exaghost-auth-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 24px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
}

/* Auth Grid Container - Split Layout */
.exaghost-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1150px;
    width: 100%;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Brand Side (Left Panel) */
.exaghost-auth-brand {
    background: linear-gradient(135deg, #FF6B35, #D946EF);
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exaghost-brand-content {
    display: flex;
    flex-direction: column;
}

.exaghost-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 55px;
}

.exaghost-brand-logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.exaghost-auth-brand h1 {
    font-size: 38px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
    line-height: 1.2;
}

.exaghost-auth-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Brand Features */
.exaghost-brand-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.feature-item svg {
    flex-shrink: 0;
    stroke: white;
}

/* Form Side (Right Panel) */
.exaghost-auth-form {
    background: var(--color-surface);
    padding: 55px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exaghost-form-container {
    width: 100%;
    max-width: 390px;
}

/* Form Header */
.exaghost-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.exaghost-form-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
}

.exaghost-form-header p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Input Groups */
.exaghost-input-group {
    margin-bottom: 20px;
}

.exaghost-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.exaghost-input-group small {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-top: 6px;
}

/* Input Field with Icon */
.exaghost-input-field {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-secondary);
    pointer-events: none;
}

.exaghost-input-field input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 44px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--color-bg);
    color: var(--color-text);
    transition: var(--transition);
}

.exaghost-input-field input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-light);
}

/* Password Toggle Button */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    padding: 0;
}

.password-toggle:hover {
    color: var(--color-primary);
}

/* Form Row (2 columns for Sign Up) */
.exaghost-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

/* Form Options (Remember & Forgot) */
.exaghost-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

/* Checkbox */
.exaghost-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 20px 0;
}

.exaghost-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.exaghost-checkbox a {
    color: var(--color-primary);
    text-decoration: none;
}

.exaghost-checkbox a:hover {
    text-decoration: underline;
}

/* Forgot Link */
.forgot-link {
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.exaghost-submit-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.exaghost-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.exaghost-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.exaghost-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.exaghost-submit-btn.loading span {
    opacity: 0;
}

.exaghost-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Divider */
.exaghost-divider {
    text-align: center;
    margin: 28px 0;
    position: relative;
}

.exaghost-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.exaghost-divider span {
    background: var(--color-surface);
    padding: 0 16px;
    position: relative;
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* Google Button */
.exaghost-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.exaghost-google-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-bg);
    transform: translateY(-2px);
}

/* Signup Prompt Links */
.exaghost-signup-prompt {
    text-align: center;
    margin-top: 24px;
}

.exaghost-signup-prompt p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.exaghost-signup-prompt a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.exaghost-signup-prompt a:hover {
    text-decoration: underline;
}

/* Alert Messages */
.exaghost-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exaghost-alert.error {
    background: var(--color-error-light);
    border-left: 4px solid var(--color-error);
    color: #B91C1C;
}

.exaghost-alert.success {
    background: var(--color-success-light);
    border-left: 4px solid var(--color-success);
    color: #065F46;
}

.exaghost-alert svg {
    flex-shrink: 0;
}
/*===========================================
   5. CART SIDEBAR
===========================================*/
.cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: var(--z-float);
    box-shadow: var(--shadow-glow-primary);
    transition: var(--transition);
    border: none;
}

.cart-float:hover {
    transform: scale(1.05);
}

.cart-float .cart-icon {
    position: relative;
}

.cart-float .cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--color-error);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 30px;
    min-width: 20px;
    text-align: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: var(--cart-sidebar-width);
    max-width: 90vw;
    height: 100vh;
    background: var(--color-surface);
    z-index: var(--z-sidebar);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 2px solid var(--color-primary);
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}
.user-profile-wrapper{
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-cart {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    /*width: 32px;*/
    /*height: 32px;*/
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-secondary);
}

.cart-item {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 107, 53, 0.15);
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.checkout-btn, .clear-cart-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-top: 0.75rem;
    cursor: pointer;
    border: none;
}

.checkout-btn {
    background: var(--gradient-primary);
    color: white;
}

.clear-cart-btn {
    background: transparent;
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    /*visibility: visible;*/
}

/*===========================================
   6. CHECKOUT PAGE
===========================================*/
.exaghost-checkout {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    padding: 40px 20px;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.step {
    width: 150px;
    height: 50px;
    background: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-text-secondary);
}

.step.active {
    background: var(--color-primary);
    color: white;
}

.step.completed {
    background: var(--color-success);
    color: white;
}

.line {
    width: 60px;
    height: 2px;
    background: var(--color-border);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.form-card h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.input-field {
    margin-bottom: 20px;
}

.input-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.input-field input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.error-msg {
    color: var(--color-error);
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.payment-methods-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option-horizontal.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.crypto-section {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.crypto-address-box {
    margin: 15px 0;
}

.crypto-address-input {
    width: 100%;
    padding: 12px;
    font-family: monospace;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
}

.place-order-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.summary-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--color-border);
    color: var(--color-primary);
}

.platform-field {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-primary);
}

/*===========================================
   7. SERVICES PAGE
===========================================*/
.insta-services {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    padding: 60px 20px;
}

.services-hero {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.services-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    text-align: center;
    color: white;
}

.services-hero .hero-badge {
    display: inline-block;
    background: var(--color-primary);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero h1 span {
    background: var(--gradient-primary);
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.insta-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.insta-header {
    text-align: center;
    margin-top:-2rem ;
    margin-bottom: 40px;
}

.insta-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.insta-header h1 span {
    color: var(--color-primary);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.service-tab.active {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Quality Tabs */
.quality-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.quality-tab {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.quality-tab:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.quality-tab.active {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: white;
}

.quality-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.quality-option {
    padding: 12px 28px;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.quality-option.active {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.pricing-card.selected {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-glow-primary);
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 10px 0;
}

.platforms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
     display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.platform-section {
    margin-bottom: 60px;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border);
}

.platform-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
}

.platform-header h2 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin: 0;
}

/* Platform Card Container */
.platform-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.platform-card .card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platform-card .card-header .platform-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.platform-card .card-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.platform-card .card-header p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Card Services Section */
.platform-card .card-services {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Service Item */
.platform-card .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.platform-card .service-item:hover {
    background: #fff;
    border-color: #ff6b6b;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Service Info */
.platform-card .service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-card .service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.platform-card .service-desc {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Discount Chip */
.discount-chip {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
}

/* Service Buttons */
.platform-card .service-buttons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.btn-buy-small {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-small:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.btn-buy-small.added {
    background: #10B981;
}

.btn-buy-small.processing {
    opacity: 0.6;
    cursor: wait;
}

.btn-detail-small {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-detail-small:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* Service Price */
.platform-card .service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
    white-space: nowrap;
}

/* Card Footer */
.platform-card .card-footer {
    padding: 15px 20px 25px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.view-all-btn {
    background: var(--color-primary-light);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.card-features li {
    font-size: 0.85rem;
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li:hover {
    transform: translateX(5px);
    color: var(--color-primary);
}



/*===========================================
   PROFILE PAGE CONTAINER
===========================================*/
.exaghost-profile-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/*===========================================
   PROFILE HEADER
===========================================*/
.exaghost-profile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.exaghost-profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.exaghost-profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.exaghost-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin: 0 auto;
}

.exaghost-change-avatar {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.exaghost-change-avatar:hover {
    transform: scale(1.1);
}

.exaghost-profile-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.exaghost-profile-header p {
    font-size: 14px;
    opacity: 0.9;
}

/*===========================================
   MESSAGES (SUCCESS & ERROR)
===========================================*/
.exaghost-success-message,
.exaghost-error-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.exaghost-success-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.exaghost-error-message {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}



/*===========================================
   PROFILE CARD
===========================================*/
.exaghost-profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.exaghost-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.exaghost-section-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/*===========================================
   INFO GRID (VIEW MODE)
===========================================*/
.exaghost-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.exaghost-info-item {
    display: flex;
    flex-direction: column;
}

.exaghost-info-item.full-width {
    grid-column: span 2;
}

.exaghost-info-item label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 8px;
}

.exaghost-info-item value {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}

/*===========================================
   FORM GRID (EDIT MODE)
===========================================*/
.exaghost-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.exaghost-form-group {
    display: flex;
    flex-direction: column;
}

.exaghost-form-group.full-width {
    grid-column: span 2;
}

.exaghost-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.exaghost-form-group input,
.exaghost-form-group select,
.exaghost-form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.exaghost-form-group input:focus,
.exaghost-form-group select:focus,
.exaghost-form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.exaghost-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.exaghost-readonly-field {
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

/*===========================================
   BUTTONS
===========================================*/
.exaghost-btn-primary,
.exaghost-btn-secondary {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.exaghost-btn-primary {
    background: linear-gradient(135deg, #FF6B35, #D946EF);
    color: white;
}

.exaghost-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 107, 53, 0.3);
}

.exaghost-btn-secondary {
    background: white !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary-light) !important;
}

.exaghost-btn-secondary:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

.exaghost-actions {
    display: flex;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

/*===========================================
   ACTION BUTTONS SECTION
===========================================*/
.exaghost-profile-page > div:last-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/*===========================================
   LOADING STATE
===========================================*/
.exaghost-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-size: 18px;
}

.exaghost-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

/*===========================================
   8. ANIMATIONS
===========================================*/
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.platform-card {
    animation: fadeInUp 0.5s ease forwards;
}

.exaghost-profile-card {
    animation: fadeIn 0.4s ease;
}

/* Scrollbar Styling */
.exaghost-profile-page ::-webkit-scrollbar {
    width: 8px;
}

.exaghost-profile-page ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.exaghost-profile-page ::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 10px;
}

.exaghost-profile-page ::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/*===========================================
   9. RESPONSIVE DESIGN
===========================================*/

@media (max-width: 1024px) {
    .exa-container {
        padding: 0 var(--space-md);
        height: 65px;
    }
    
    .exa-nav-link {
        padding: 6px 12px;
        gap: 6px;
        font-size: 0.85rem;
    }
    
    .exa-nav-link span:not(.exa-arrow) {
        display: none;
    }
    
    .exa-nav-link svg {
        width: 18px;
        height: 18px;
    }
    
    .exa-signin-btn span,
    .exa-signup-btn span {
        display: inline;
    }
    
    .exa-signin-btn,
    .exa-signup-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .exa-signin-btn span {
        display: inline;
    }
    
    .exa-mega {
        min-width: 600px;
        gap: var(--space-lg);
        padding: 20px;
    }
    
    .exa-col {
        min-width: 130px;
    }
    
    .exa-offer {
        min-width: 150px;
    }
    .platforms-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .exaghost-auth-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
    
    .exaghost-auth-brand {
        padding: 45px 32px;
        text-align: center;
    }
    
    .exaghost-brand-logo {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .exaghost-brand-features {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .exaghost-auth-form {
        padding: 45px 32px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    
    .exaghost-auth-wrapper {
        padding: 40px 16px;
    }
    
      .platforms-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    .exaghost-auth-grid {
        max-width: 500px;
    }
    
    .exaghost-auth-brand {
        padding: 40px 30px;
    }
    
    .exaghost-auth-brand h1 {
        font-size: 28px;
    }
    
    .exaghost-auth-form {
        padding: 40px 30px;
    }
    
    .exaghost-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .exaghost-form-row .exaghost-input-group {
        margin-bottom: 20px;
    }
    
    .exaghost-form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .exaghost-form-header h2 {
        font-size: 26px;
    }
    .exa-mobile-btn {
        display: flex;
    }
    
     .exa-header {
        margin: 0 12px 8px;
        border-radius: var(--radius-lg);
    }
    
    .exa-container {
        padding: 0 var(--space-md);
        height: 60px;
    }
    
    .exa-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .exa-logo-text {
        font-size: 1.2rem;
    }
    
    /* Hide desktop nav, show mobile button */
    .exa-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 30px;
        transition: left 0.3s ease;
        z-index: 100;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .exa-nav.active {
        left: 0;
    }
    
    .exa-nav-list {
        flex-direction: column;
        align-items: flex-start !important;
        
        width: 100%;
        gap: 8px;
    }
    
    .exa-nav-link {
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .exa-nav-link span:not(.exa-arrow) {
        display: inline;
    }
    
    .exa-arrow {
        margin-left: auto;
    }
    /*.dropdown-trigger{*/
    /*    padding-left: 53px;*/
    /*}*/
    
    /* Mobile Dropdown */
    .exa-dropdown .exa-mega {
        position: static;
        transform: none;
        min-width: 100%;
        flex-direction: column;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        display: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 8px;
        gap: 20px;
    }
    
    .exa-dropdown.active .exa-mega {
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .exa-col {
        min-width: 100%;
    }
    
    .exa-col-header {
        padding: 10px 0;
    }
    
    .exa-mega-link {
        padding: 10px 16px;
        margin: 4px 0;
    }
    
    .exa-offer {
        margin-top: 16px;
        padding: 16px;
    }
    
    /* Hide desktop auth, show mobile auth */
    .exa-actions {
        display: none;
    }
    
    .exa-mobile-actions {
        display: block;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--color-border);
    }
    
    .exa-mobile-btn {
        display: flex;
    }
    
    /* Mobile Auth Buttons */
    .exa-mobile-signin,
    .exa-mobile-signup {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: var(--radius-full);
        text-decoration: none;
        font-weight: 600;
        margin: 10px 0;
        width: 100%;
    }
    
    .exa-mobile-signin {
        background: transparent;
        border: 1px solid var(--color-border);
        color: var(--color-text);
    }
    
    .exa-mobile-signup {
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: white;
    }
    
    /* Mobile User Profile */
    .exa-mobile-user {
        text-align: center;
        padding: 10px;
    }
    
    .exa-mobile-user-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 12px;
    }
    
    .exa-mobile-user-name {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .exa-mobile-user-email {
        color: var(--color-text-light);
        font-size: 0.8rem;
        margin-bottom: 16px;
        word-break: break-all;
    }
    
    .exa-mobile-logout {
        width: 100%;
        padding: 10px;
        background: transparent;
        border: 1px solid #dc2626;
        color: #dc2626;
        border-radius: var(--radius-full);
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        margin-top: 8px;
    }
    
    .exa-mobile-logout:hover {
        background: #dc2626;
        color: white;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    .insta-header {
        margin-top: -2rem;
    }
    
    .insta-header h1 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .exaghost-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
      .exaghost-profile-page {
        margin: 20px auto;
    }
    
    .exaghost-profile-header {
        padding: 20px;
    }
    
    .exaghost-profile-avatar img,
    .exaghost-avatar-placeholder {
        width: 90px;
        height: 90px;
    }
    
    .exaghost-avatar-placeholder {
        font-size: 36px;
    }
    
    .exaghost-profile-header h1 {
        font-size: 24px;
    }
    
    .exaghost-section-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .exaghost-info-grid,
    .exaghost-form-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .exaghost-info-item.full-width,
    .exaghost-form-group.full-width {
        grid-column: span 1;
    }
    
    .exaghost-actions {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .exaghost-btn-primary,
    .exaghost-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .exaghost-profile-page > div:last-of-type {
        flex-direction: column;
    }
    
    .exaghost-profile-page > div:last-of-type > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .exaghost-profile-page > div:last-of-type .exaghost-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    #signout-btn {
        width: 100%;
    }
       .platform-card .card-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .platform-card .card-header p {
        margin-left: 0;
    }
    
    .platform-card .service-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .platform-card .service-info {
        text-align: center;
    }
    
    .platform-card .discount-chip {
        margin: 0 auto;
    }
    
    .platform-card .service-buttons {
        justify-content: center;
    }
    
    .platform-card .service-price {
        text-align: center;
    }
}

@media (max-width: 480px) {
    
    .exa-header {
        margin: 0 8px 6px;
    }
    .platform-card .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .insta-header{
        margin-top: -2rem;
    }
    .exa-container {
        padding: 0 12px;
        height: 55px;
    }
    
    .exa-logo svg {
        width: 26px;
        height: 26px;
    }
    
    .exa-logo-text {
        font-size: 1rem;
    }
    
    .exa-nav {
        width: 100%;
        max-width: none;
        padding: 70px 16px 20px;
    }
    
    .exa-nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .exa-mobile-signin,
    .exa-mobile-signup {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .exa-offer strong {
        font-size: 0.85rem;
    }
    
    .exa-offer small {
        font-size: 0.65rem;
    }
    
     .exaghost-auth-wrapper {
        padding: 40px 16px;
    }
    
    .exaghost-auth-brand {
        padding: 30px 20px;
    }
    
    .exaghost-auth-form {
        padding: 30px 20px;
    }
    
    .exaghost-form-header h2 {
        font-size: 24px;
    }
    
    .exaghost-auth-brand h1 {
        font-size: 28px;
    }
    .cart-float {
        padding: 8px 14px;
        bottom: 20px;
        right: 20px;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .payment-methods-horizontal {
        gap: 8px;
    }
    
    .payment-option-horizontal {
        padding: 8px 12px;
        font-size: 12px;
    }
     .exaghost-profile-page {
        padding: 0 15px;
    }
    
    .exaghost-info-item label {
        font-size: 11px;
    }
    
    .exaghost-info-item value {
        font-size: 14px;
    }
    
    .exaghost-form-group input,
    .exaghost-form-group select,
    .exaghost-form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
      .platform-card .card-header h2 {
        font-size: 1.4rem;
    }
    
    .platform-card .service-item {
        padding: 12px 15px;
    }
    
    .btn-buy-small, 
    .btn-detail-small {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
    
    .platform-card .service-price {
        font-size: 1.1rem;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


/* Special styling for specific platforms */
.platform-card[data-platform="instagram"] .card-header {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.platform-card[data-platform="facebook"] .card-header {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
}

.platform-card[data-platform="youtube"] .card-header {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.platform-card[data-platform="tiktok"] .card-header {
    background: linear-gradient(135deg, #000000, #161616, #00f2ea, #ff004f);
}

/*===========================================
   10. DARK MODE
===========================================*/
@media (prefers-color-scheme: dark) {
    
     .exaghost-auth-grid {
        background: #1F2937;
    }
    
    .exaghost-auth-form {
        background: #1F2937;
    }
    
    .exaghost-form-header h2 {
        color: #F3F4F6;
    }
    
    .exaghost-input-field input {
        background: #374151;
        border-color: #4B5563;
        color: #F3F4F6;
    }
    
    .exaghost-google-btn {
        background: #374151;
        border-color: #4B5563;
        color: #F3F4F6;
    }
    
    .exaghost-google-btn:hover {
        background: #4B5563;
    }
    
    .exaghost-divider span {
        background: #1F2937;
    }
    
    .cart-sidebar,
    .form-card,
    .summary-card,
    .pricing-card {
        background: #1F2937;
    }
    
    .cart-sidebar-header h3,
    .form-card h3,
    .insta-header h1 {
        color: #F3F4F6;
    }
    
    .cart-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .input-field input,
    .platform-field input {
        background: #374151;
        border-color: #4B5563;
        color: #F3F4F6;
    }
    
    .quality-option {
        background: #1F2937;
        color: #F3F4F6;
    }
    
    .exaghost-profile-card {
        background: #1f2937;
    }
    
    .exaghost-section-header {
        background: #111827;
        border-bottom-color: #374151;
    }
    
    .exaghost-section-header h3 {
        color: #f3f4f6;
    }
    
    .exaghost-info-item label {
        color: #9ca3af;
    }
    
    .exaghost-info-item value {
        color: #f3f4f6;
    }
    
    .exaghost-form-group label {
        color: #e5e7eb;
    }
    
    .exaghost-form-group input,
    .exaghost-form-group select,
    .exaghost-form-group textarea {
        background: #374151;
        border-color: #4b5563;
        color: #f3f4f6;
    }
    
    .exaghost-readonly-field {
        background: #111827;
        color: #9ca3af;
    }
    
    .exaghost-btn-secondary {
        background: #374151;
        border-color: #4b5563;
        color: #f3f4f6;
    }
    
    .exaghost-btn-secondary:hover {
        background: #4b5563;
        border-color: #FF6B35;
    }
    
    .exaghost-actions {
        background: #111827;
        border-top-color: #374151;
    }
    
    .exaghost-success-message {
        background: #064e3b;
        color: #a7f3d0;
        border-left-color: #10b981;
    }
    
    .exaghost-error-message {
        background: #7f1d1d;
        color: #fecaca;
        border-left-color: #ef4444;
    }
}

/*===========================================
   11. UTILITIES
===========================================*/
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    z-index: var(--z-toast);
    animation: slideUp 0.3s ease;
    white-space: nowrap;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-top: 4px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.exa-no-scroll {
    overflow: hidden;
}
.cart-sidebar,
.cart-overlay {
    z-index: 10001 !important;
}