/* =========================================
   Easypass WP - Frontend Styles (Dark Mode Harmonized)
   ========================================= */

/* --- 1. Base Layout Offset --- */

/* Apply offset ONLY to internal pages, excluding Home/Landing/Pricing/Register/Organize/Product/Events/Checkout */
body:not(.home):not(.front-page):not([class*="pricing"]):not([class*="register"]):not([class*="organize"]):not([class*="landing-product"]):not(.archive):not([class*="single-ep_event"]):not(.woocommerce-checkout) .ep-main-content {
    padding-top: 140px; 
    min-height: 80vh;
}

/* Specific resets for templates that handle their own header spacing */
body[class*="pricing"] .ep-main-content,
body[class*="register"] .ep-main-content,
body[class*="organize"] .ep-main-content,
body[class*="landing-product"] .ep-main-content,
body.archive .ep-main-content,
body[class*="single-ep_event"] .ep-main-content {
    padding-top: 0 !important;
}

/* Checkout Specific Spacing */
body.woocommerce-checkout .ep-main-content {
    padding-top: 75px !important;
}

/* Fix for Admin Bar on internal pages */
body:not(.home):not(.front-page):not([class*="pricing"]):not([class*="register"]):not([class*="organize"]):not([class*="landing-product"]):not(.archive):not([class*="single-ep_event"]):not(.woocommerce-checkout).admin-bar .ep-main-content {
    padding-top: 172px;
}

/* Admin Bar Fix for Checkout (75px base + 32px admin bar) */
body.woocommerce-checkout.admin-bar .ep-main-content {
    padding-top: 107px !important;
}

@media (max-width: 782px) {
    /* Base padding for internal pages without admin bar on mobile */
    body:not(.home):not(.front-page):not([class*="pricing"]):not([class*="register"]):not([class*="organize"]):not([class*="landing-product"]):not(.archive):not([class*="single-ep_event"]):not(.woocommerce-checkout) .ep-main-content {
        padding-top: 80px;
    }

    body:not(.home):not(.front-page):not([class*="pricing"]):not([class*="register"]):not([class*="organize"]):not([class*="landing-product"]):not(.archive):not([class*="single-ep_event"]):not(.woocommerce-checkout).admin-bar .ep-main-content {
        padding-top: 126px; /* 80px + 46px admin bar */
    }
    
    body.woocommerce-checkout.admin-bar .ep-main-content {
        padding-top: 121px !important; /* 75px + 46px admin bar mobile */
    }
}

/* --- 2. Event & Ticket Cards (Base) --- */

.ep-event-tickets {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0; 
    background: transparent; 
    border: none;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    width: 100%;
}

.ep-tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 24px;
    margin-bottom: 24px;
}

.ep-ticket-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid var(--ep-border-color);
    transition: transform 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}

.ep-ticket-card:hover {
    border-color: var(--ep-brand);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.ep-ticket-info { flex: 1; min-width: 0; }
.ep-ticket-name { margin: 0 0 6px 0; font-weight: 700; color: var(--ep-text-main); font-size: 1.2rem; }
.ep-ticket-price { margin: 0; font-size: 1.2rem; color: var(--ep-brand); font-weight: 800; }
.ep-ticket-description { font-size: 0.9rem; color: var(--ep-text-muted); margin-top: 6px; }

.ep-ticket-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }

.ep-ticket-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 12px;
    padding: 4px;
    background: var(--ep-bg-input);
    border: 1px solid var(--ep-border-color);
    min-width: 120px;
    justify-content: space-between;
}

.ep-qty-btn {
    border: none;
    background: var(--ep-bg-surface);
    width: 36px; height: 36px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--ep-text-main);
    transition: all 0.2s ease;
}
.ep-qty-btn:hover { background: var(--ep-brand); color: #fff; }

.ep-ticket-qty-control input[type="number"] {
    width: 50px; text-align: center; border: none; background: transparent;
    color: var(--ep-text-main); font-size: 1.1rem; font-weight: 700; padding: 0;
}

.ep-submit {
    padding: 1.2rem 2.5rem !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, var(--ep-brand), var(--ep-brand-glow)) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100%; cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1.5rem; text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
.ep-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5); filter: brightness(1.1); }

/* --- 2. My Account Structure & Navigation (RESTORED) --- */

.woocommerce-account .ep-main-content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Navigation Tabs */
.woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--ep-border-color);
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 0;
    padding-bottom: 15px; /* Space for border */
}

.woocommerce-MyAccount-navigation li { margin: 0; }

.woocommerce-MyAccount-navigation a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 99px;
    color: var(--ep-text-muted);
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.02);
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--ep-brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.woocommerce-MyAccount-navigation a:hover:not(.is-active a) {
    background: rgba(255,255,255,0.05);
    color: var(--ep-text-main);
}

/* Content Area */
.woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
}

/* --- 3. Login / Register Forms (Enhanced) --- */

/* WooCommerce Notices (Global) */
.woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message,
.ep-alert {
    padding: 18px 25px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
    list-style: none !important;
    font-weight: 600 !important;
    display: block !important;
    border: 1px solid transparent !important;
    position: relative;
    padding-left: 60px !important;
}

.woocommerce-error::before { content: '⚠️'; position: absolute; left: 20px; font-size: 1.2rem; }
.woocommerce-info::before { content: 'ℹ️'; position: absolute; left: 20px; font-size: 1.2rem; }
.woocommerce-message::before { content: '✅'; position: absolute; left: 20px; font-size: 1.2rem; }

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
}

.woocommerce-info {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
}

.woocommerce-message {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
}

.woocommerce-error li { margin: 0 !important; }

#customer_login .u-columns {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { #customer_login .u-columns { grid-template-columns: 1fr; } }
.u-column1, .u-column2 { width: 100% !important; }

#customer_login .woocommerce-form-login, 
#customer_login .woocommerce-form-register,
.woocommerce-form-login, 
.woocommerce-form-register {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ep-border-color);
    padding: 40px; border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative; overflow: hidden;
}

/* Glow Effect Removed */

#customer_login h2 {
    font-size: 1.8rem; margin-bottom: 30px; font-weight: 800; text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--ep-brand) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block; width: 100%;
}

.woocommerce-form-row label {
    display: block; margin-bottom: 0.6rem; color: var(--ep-text-main); font-weight: 600;
}

.woocommerce-Input, input.woocommerce-Input, #customer_login input.input-text {
    width: 100%; padding: 14px 18px !important; border-radius: 14px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid var(--ep-border-color) !important;
    color: #fff !important; outline: none; box-shadow: none !important;
}

.woocommerce-Input:focus, #customer_login input.input-text:focus {
    border-color: var(--ep-brand) !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
}

.woocommerce-Button, #customer_login button[type="submit"] {
    width: 100%; padding: 14px !important; border-radius: 14px !important;
    font-weight: 800 !important; font-size: 1.1rem !important;
    background: linear-gradient(135deg, var(--ep-brand), var(--ep-brand-glow)) !important;
    color: #fff !important; border: none !important;
    cursor: pointer; text-transform: uppercase; margin-top: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* --- 4. Dashboard Accordion Styles --- */

.ep-dashboard-orders-list { display: flex; flex-direction: column; gap: 15px; }

.ep-order-accordion-item {
    background: var(--ep-bg-card);
    border: 1px solid var(--ep-border-color);
    border-radius: 16px; overflow: hidden;
    transition: all 0.2s ease;
}
.ep-order-accordion-item:hover { border-color: var(--ep-brand); }

.ep-order-trigger {
    padding: 20px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; background: rgba(255,255,255,0.01);
}
.ep-order-trigger:hover { background: rgba(255,255,255,0.03); }
.ep-order-trigger.active { background: rgba(255,255,255,0.05); border-bottom: 1px solid var(--ep-border-color); }

.ep-trigger-title { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 700; color: var(--ep-text-main); }
.ep-trigger-meta { font-size: 0.85rem; color: var(--ep-text-muted); display: flex; gap: 15px; }
.ep-trigger-status { display: flex; align-items: center; gap: 15px; }

.ep-status-badge {
    padding: 4px 10px; border-radius: 99px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
}
.ep-status-badge.completed { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.ep-status-badge.processing { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.ep-status-badge.on-hold { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.ep-status-badge.cancelled { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

/* Dashboard Ticket Cards */
.ep-tickets-grid-dashboard {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
    padding: 20px; background: rgba(0,0,0,0.2);
}

.ep-dashboard-ticket-card {
    background: var(--ep-bg-surface);
    border: 1px solid var(--ep-border-color);
    border-radius: 12px; overflow: hidden;
    display: flex; flex-direction: row; align-items: center;
}

.ep-dash-qr {
    width: 100px; height: 100px; background: #fff; padding: 10px;
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.ep-dash-qr img { width: 100%; height: 100%; object-fit: contain; }

.ep-dash-details { padding: 15px; flex-grow: 1; }
.ep-dash-type { font-weight: 700; font-size: 1rem; margin-bottom: 5px; color: var(--ep-text-main); }
.ep-dash-code { font-family: monospace; font-size: 0.85rem; color: var(--ep-text-muted); margin-bottom: 10px; }

.ep-btn-download {
    background: transparent; border: 1px solid var(--ep-brand); color: var(--ep-brand);
    padding: 4px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; cursor: pointer;
}
.ep-btn-download:hover { background: var(--ep-brand); color: #fff; }

/* Used Ticket State */
.ep-ticket-used { opacity: 0.6; filter: grayscale(1); position: relative; }
.ep-ticket-used::after {
    content: 'USADO'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 2rem; font-weight: 900; color: #ef4444; border: 4px dashed #ef4444; padding: 5px 20px; opacity: 0.8;
}
.ep-ticket-used .ep-btn-download { display: none; }

/* Logout */
.ep-dashboard-footer {
    margin-top: 40px; border-top: 1px solid var(--ep-border-color); padding-top: 20px;
    display: flex; justify-content: flex-end;
}
.ep-btn-logout {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 12px;
    background: rgba(239, 68, 68, 0.1); color: #ef4444; font-weight: 600; border: 1px solid rgba(239, 68, 68, 0.2);
}
.ep-btn-logout:hover { background: rgba(239, 68, 68, 0.2); transform: translateY(-1px); }

/* --- 5. Orders Table (Tab View) --- */

.woocommerce-orders-table {
    width: 100%; border-collapse: separate; border-spacing: 0 20px; margin-top: -20px;
}
.woocommerce-orders-table thead { display: none; }

.woocommerce-orders-table__row {
    display: flex; flex-wrap: wrap; background: var(--ep-bg-card); border: 1px solid var(--ep-border-color);
    border-radius: 20px; padding: 25px; margin-bottom: 20px; align-items: center; justify-content: space-between;
}

.woocommerce-orders-table__cell { border: none !important; padding: 5px 0 !important; display: block; }

.woocommerce-orders-table__cell-order-number { width: 100%; margin-bottom: 15px; border-bottom: 1px dashed var(--ep-border-color); padding-bottom: 10px !important; }
.woocommerce-orders-table__cell-order-number a { font-weight: 800; font-size: 1.2rem; color: var(--ep-text-main); }
.woocommerce-orders-table__cell-order-number a::before { content: 'Orden #'; color: var(--ep-text-muted); font-size: 1rem; }

.woocommerce-orders-table__cell-order-date::before { content: 'Fecha'; }
.woocommerce-orders-table__cell-order-status::before { content: 'Estado'; }
.woocommerce-orders-table__cell-order-total::before { content: 'Total'; }
.woocommerce-orders-table__cell-order-date::before, .woocommerce-orders-table__cell-order-status::before, .woocommerce-orders-table__cell-order-total::before {
    display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--ep-text-muted); margin-bottom: 4px;
}

.woocommerce-button.view {
    display: inline-flex; align-items: center; padding: 8px 20px; border-radius: 10px;
    background: transparent; border: 1px solid var(--ep-brand); color: var(--ep-brand); font-weight: 600;
}
.woocommerce-button.view:hover { background: var(--ep-brand); color: #fff; }

/* --- 6. View Order Page - Premium Design --- */

.ep-view-order-wrapper {
    background: var(--ep-bg-card); border: 1px solid var(--ep-border-color);
    border-radius: 24px; padding: 40px; margin-top: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ep-view-order-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    border-bottom: 1px solid var(--ep-border-color); padding-bottom: 30px; margin-bottom: 30px;
}

.ep-header-main h1 {
    font-size: 2rem; font-weight: 800; margin-bottom: 5px;
    background: linear-gradient(135deg, #fff 0%, var(--ep-brand) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.ep-order-overview-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px;
}

.ep-overview-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--ep-border-color);
    padding: 20px; border-radius: 16px; text-align: center;
}

.ep-card-label { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--ep-text-muted); margin-bottom: 8px; }
.ep-card-value { font-size: 1.2rem; font-weight: 700; color: var(--ep-text-main); }

.ep-section-title { font-size: 1.3rem; font-weight: 700; margin: 40px 0 20px 0; color: var(--ep-text-main); }

.ep-view-order-details-box table { width: 100%; border-collapse: collapse; }
.ep-view-order-details-box th, .ep-view-order-details-box td { padding: 15px; border-bottom: 1px solid var(--ep-border-color); text-align: left; color: var(--ep-text-main); }
.ep-view-order-details-box thead th { color: var(--ep-text-muted); font-size: 0.8rem; text-transform: uppercase; }
.ep-view-order-details-box tfoot td { font-weight: 700; }
.ep-view-order-details-box tfoot tr:last-child td { font-size: 1.4rem; color: var(--ep-brand); }

/* =========================================
   7. New Custom Login / Register Styles (template)
   ========================================= */

.ep-login-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

#customer_login_group {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.ep-auth-card {
    background: var(--ep-bg-card); /* Fixed solid background */
    border: 1px solid var(--ep-border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px; /* Limit card width */
    margin: 0 auto;
}

.ep-auth-card:hover {
    border-color: var(--ep-brand);
}

.ep-auth-glow {
    display: none;
}

.ep-auth-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, var(--ep-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative; z-index: 1;
}

.ep-auth-subtitle {
    color: var(--ep-text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    position: relative; z-index: 1;
}

.ep-auth-card form {
    position: relative; z-index: 1;
}

.ep-auth-card label {
    font-weight: 600;
    color: var(--ep-text-main);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.ep-auth-card input.input-text {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.ep-auth-card input.input-text:focus {
    background: rgba(0,0,0,0.5);
    border-color: var(--ep-brand);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    outline: none;
}

.ep-submit-btn {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ep-brand), var(--ep-brand-glow));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.ep-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.ep-form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--ep-text-muted);
}

/* =========================================
   8. Final Layout Adjustments (Centering Fixes)
   ========================================= */

/* Fix Login Grid Centering */
.ep-login-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ep-login-grid {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.ep-login-col {
    flex: 1;
    min-width: 300px;
    max-width: 450px; /* Prevent over-stretching */
    display: flex;
    justify-content: center;
}

/* If only 1 column exists (e.g. Login only), ensure it doesn't stretch weirdly */
.ep-login-grid:only-child .ep-login-col {
    flex: 0 0 450px;
}

/* Fix View Order Wrapper Centering */
.ep-view-order-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    box-sizing: border-box;
    width: 100%;
}

@media (max-width: 768px) {
    .ep-view-order-wrapper {
        padding: 20px;
    }

    .ep-auth-card,
    .ep-login-card {
        padding: 16px !important;
    }

    .ep-login-container {
        padding: 0 !important;
    }
}

/* Ensure mobile responsiveness for grid */
@media (max-width: 768px) {
    .ep-login-grid {
        flex-direction: column;
        align-items: center;
    }
    .ep-login-col {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================
   9. Sticky Bottom Bar (Ticket Summary)
   ========================================= */

.ep-sticky-bar {
    position: fixed;
    bottom: -120px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    padding: 16px 0;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

.ep-sticky-bar.is-visible {
    bottom: 0;
}

.ep-sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px !important;
}

.ep-sticky-info {
    display: flex;
    flex-direction: column;
}

.ep-sticky-label {
    font-size: 0.85rem;
    color: var(--ep-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ep-sticky-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.ep-sticky-btn {
    padding: 14px 30px !important;
    font-size: 1.1rem !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5) !important;
    background: linear-gradient(135deg, var(--ep-brand), #2563eb) !important;
    color: #fff !important;
}

.ep-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6) !important;
}

/* Add padding to body so content isn't hidden behind bar */
body.has-sticky-bar {
    padding-bottom: 100px;
}

/* Mobile Adjustment */
@media (max-width: 600px) {
    .ep-sticky-bar { padding: 12px 0; }
    .ep-sticky-amount { font-size: 1.4rem; }
    .ep-sticky-btn { padding: 12px 20px !important; font-size: 1rem !important; }
    .ep-sticky-content { padding: 6px 26px; }
}