/* ====================================
   NIRVANA MOBILE VERSION CSS
   Mobil cihazlar üçün tamamilə ayrı dizayn
   ==================================== */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --border-color: #dee2e6;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ====================================
   BASIC RESET & TYPOGRAPHY
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 88px !important;
    margin-bottom: 0 !important;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ====================================
   MOBILE HEADER
   ==================================== */
.mobile-header {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: var(--white);
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.mobile-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

/* ====================================
   MOBILE FOOTER NAVIGATION - ENHANCED & FIXED
   ==================================== */
/* Note: Main navigation styles are now in mobile_footer_nav.php for better control */

/* Backup styles to ensure navigation stays fixed */
.mobile-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* Ensure body always has proper padding for navigation */
body {
    padding-bottom: 88px !important;
    margin-bottom: 0 !important;
}

/* Responsive body padding adjustments */
@media (max-width: 375px) {
    body {
        padding-bottom: 80px !important;
    }
}

@media (min-width: 576px) {
    body {
        padding-bottom: 96px !important;
    }
}

/* Override any conflicting navigation styles */
.mobile-nav,
.mobile-footer-nav,
.bottom-nav,
.footer-nav {
    position: fixed !important;
    bottom: 0 !important;
    z-index: 9999 !important;
}

/* Ensure main content doesn't overlap with navigation */
.mobile-main,
.main-content,
.content {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    color: #8e8e93;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 16px;
    margin: 0 2px;
    min-height: 56px;
}

.mobile-nav-item:hover {
    background: rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
    color: #007AFF;
}

.mobile-nav-item.active {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    transform: translateY(-3px);
}

.mobile-nav-item.active:hover {
    background: linear-gradient(135deg, #0051D5, #4C44D6);
    transform: translateY(-3px);
    color: white;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-item.active i {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.mobile-nav-item span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    opacity: 0.9;
    text-align: center;
    line-height: 1.2;
}

.mobile-nav-item.active span {
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cart-count {
    position: absolute;
    top: 6px;
    right: 12px;
    background: linear-gradient(135deg, #FF3B30, #FF9500);
    color: white;
    border-radius: 12px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.4);
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ====================================
   MOBILE BANNER SLIDER - ENHANCED
   ==================================== */
.mobile-banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 200px;
    width: 100%;
    background: var(--light-color);
    display: block;
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
}

.mobile-banner-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
    position: relative;
    will-change: transform;
}

.mobile-banner-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.mobile-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--light-color);
    border: none;
    outline: none;
}

.mobile-banner-slide img:hover {
    transform: scale(1.02);
}

.mobile-banner-slide img:active {
    transform: scale(0.98);
}

.mobile-banner-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 4px 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.mobile-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
}

.mobile-banner-dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 2px 8px rgba(255,255,255,0.3);
}

.mobile-banner-dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.mobile-banner-dot:active {
    transform: scale(0.9);
}

/* Banner responsive */
@media (max-width: 375px) {
    .mobile-banner-slider {
        height: 160px;
    }
    
    .mobile-banner-dot {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 576px) {
    .mobile-banner-slider {
        height: 220px;
    }
}

/* ====================================
   MAIN CONTENT AREA
   ==================================== */
.mobile-main {
    padding-top: 70px;
    padding-bottom: 88px;
    min-height: 100vh;
}

/* ====================================
   MOBILE PRODUCT GRID
   ==================================== */
.mobile-products-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

.mobile-product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 120px;
}

.mobile-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mobile-product-image {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 120px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dee2e6"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') center/contain no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.mobile-product-image.loaded::before {
    display: none;
}

/* Enhanced Image Loading States */
.mobile-product-image.loading {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.mobile-product-image.loading::before {
    display: none;
}

.mobile-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
    padding: 8px;
    opacity: 1; /* Həmişə göstərilir - lazy loading YOX */
    display: block;
}

/* Lazy loading state-ləri SİLİNDİ - artıq lazy loading yoxdur */
.mobile-product-image img.loaded {
    opacity: 1;
    filter: none;
}

.mobile-product-image img.error {
    opacity: 0.6;
    filter: grayscale(1);
}

.mobile-product-card:hover .mobile-product-image img.loaded {
    transform: scale(1.05);
}

.mobile-product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.mobile-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    color: var(--dark-color);
}

.mobile-product-description {
    font-size: 12px;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: rgba(0, 123, 255, 0.03);
    padding: 8px 10px;
    border-radius: 6px;
    border-left: 3px solid rgba(0, 123, 255, 0.2);
    font-style: italic;
}

.mobile-product-category {
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
}

.mobile-product-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.mobile-product-old-price {
    font-size: 12px;
    color: var(--secondary-color);
    text-decoration: line-through;
    font-weight: normal;
}

.mobile-product-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 8px;
    gap: 10px;
}

.mobile-product-cart-btn {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 90px;
    justify-content: center;
    height: 36px;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.mobile-product-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.mobile-product-cart-btn:active {
    transform: translateY(0);
}

.mobile-product-cart-btn i {
    font-size: 12px;
}

/* ====================================
   MOBILE BUTTONS
   ==================================== */
.mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px; /* Touch-friendly */
}

.mobile-btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-btn-primary:hover {
    background: #0056b3;
}

.mobile-btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.mobile-btn-success {
    background: var(--success-color);
    color: var(--white);
}

.mobile-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.mobile-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-btn-full {
    width: 100%;
}

/* ====================================
   MOBILE FORM ELEMENTS
   ==================================== */
.mobile-form-group {
    margin-bottom: 20px;
}

.mobile-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.mobile-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 16px; /* Prevent zoom on iOS */
    background: var(--white);
    transition: var(--transition);
}

.mobile-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* ====================================
   MOBILE CARD COMPONENTS
   ==================================== */
.mobile-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.mobile-card-header {
    padding: 15px 20px;
    background: var(--light-color);
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.mobile-card-body {
    padding: 20px;
}

.mobile-card-footer {
    padding: 15px 20px;
    background: var(--light-color);
    border-top: 1px solid #e9ecef;
}

/* ====================================
   MOBILE ALERTS & NOTIFICATIONS
   ==================================== */
.mobile-alert {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-left: 4px solid;
}

.mobile-alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success-color);
    color: #155724;
}

.mobile-alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--danger-color);
    color: #721c24;
}

.mobile-alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--warning-color);
    color: #856404;
}

.mobile-alert-info {
    background: rgba(23, 162, 184, 0.1);
    border-color: var(--info-color);
    color: #0c5460;
}

/* ====================================
   MOBILE LOADING & SKELETON
   ==================================== */
.mobile-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: var(--secondary-color);
}

.mobile-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mobile-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ====================================
   MOBILE UTILITIES
   ==================================== */
.mobile-text-center { text-align: center; }
.mobile-text-left { text-align: left; }
.mobile-text-right { text-align: right; }

.mobile-mt-0 { margin-top: 0; }
.mobile-mt-1 { margin-top: 10px; }
.mobile-mt-2 { margin-top: 20px; }
.mobile-mt-3 { margin-top: 30px; }

.mobile-mb-0 { margin-bottom: 0; }
.mobile-mb-1 { margin-bottom: 10px; }
.mobile-mb-2 { margin-bottom: 20px; }
.mobile-mb-3 { margin-bottom: 30px; }

.mobile-p-0 { padding: 0; }
.mobile-p-1 { padding: 10px; }
.mobile-p-2 { padding: 20px; }
.mobile-p-3 { padding: 30px; }

.mobile-hidden { display: none; }
.mobile-visible { display: block; }

.mobile-flex { display: flex; }
.mobile-flex-center { justify-content: center; align-items: center; }
.mobile-flex-between { justify-content: space-between; }
.mobile-flex-column { flex-direction: column; }

/* ====================================
   MOBILE RESPONSIVE BREAKPOINTS
   ==================================== */
@media (max-width: 375px) {
    .mobile-products-grid {
        gap: 12px;
    }
    
    .mobile-product-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
    }
    
    .mobile-product-info {
        padding: 12px;
    }
    
    .mobile-product-title {
        font-size: 14px;
    }
    
    .mobile-product-description {
        font-size: 11px;
        padding: 6px 8px;
        -webkit-line-clamp: 2;
    }
    
    .mobile-product-cart-btn {
        padding: 6px 12px;
        min-width: 80px;
        font-size: 11px;
        height: 32px;
    }
    
    .container {
        padding: 0 12px;
    }
}

@media (min-width: 576px) {
    .mobile-product-image {
        width: 140px;
        min-width: 140px;
        height: 140px;
    }
    
    .mobile-product-info {
        padding: 18px;
    }
    
    .mobile-product-title {
        font-size: 16px;
    }
    
    .mobile-product-description {
        font-size: 13px;
        padding: 10px 12px;
        -webkit-line-clamp: 3;
    }
    
    .mobile-product-cart-btn {
        padding: 10px 20px;
        min-width: 100px;
        font-size: 13px;
        height: 40px;
    }
}

@media (min-width: 768px) {
    .mobile-products-grid {
        max-width: 800px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .mobile-product-image {
        width: 160px;
        min-width: 160px;
        height: 160px;
    }
    
    .mobile-product-info {
        padding: 20px;
    }
    
    .mobile-product-title {
        font-size: 17px;
    }
    
    .mobile-product-description {
        font-size: 13px;
        padding: 12px 14px;
        -webkit-line-clamp: 4;
    }
    
    .mobile-product-cart-btn {
        padding: 12px 24px;
        min-width: 110px;
        font-size: 14px;
        height: 44px;
    }
    
    .mobile-category-quick-link img {
        display: none !important;
    }
}

/* ====================================
   MOBILE DARK MODE SUPPORT
   ==================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #2c3e50;
        --dark-color: #ecf0f1;
    }
    
    body {
        background-color: #1a1a1a;
        color: var(--dark-color);
    }
    
    .mobile-card,
    .mobile-form-input {
        background: #2c3e50;
        color: var(--dark-color);
        border-color: #34495e;
    }
}

/* ====================================
   MOBILE ACCESSIBILITY
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus indicators for keyboard navigation */
.mobile-btn:focus,
.mobile-form-input:focus,
.mobile-nav-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-card {
        border: 2px solid var(--dark-color);
    }
    
    .mobile-btn-primary {
        border: 2px solid var(--white);
    }
}

/* ====================================
   LOAD MORE STYLES
   ==================================== */
.mobile-load-more-container {
    text-align: center;
    margin: 25px 0 15px 0;
    padding: 0 15px;
}

.mobile-load-more-btn {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.mobile-load-more-btn:active {
    transform: translateY(0);
}

.mobile-load-more-count {
    font-size: 12px;
    opacity: 0.9;
    font-weight: normal;
}

.mobile-load-more-loading,
.mobile-load-more-end {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-load-more-loading {
    color: var(--primary-color);
}

.mobile-load-more-end {
    color: var(--success-color);
}

.mobile-load-more-loading i {
    color: var(--primary-color);
}

.mobile-load-more-end i {
    color: var(--success-color);
}

/* Product card wrapper for cart button */
.mobile-product-card-wrapper {
    position: relative;
}

.mobile-product-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Category Quick Links Styles */
.mobile-category-quick-link {
    text-decoration: none;
    color: inherit;
}

.mobile-category-quick-link:hover > div {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.mobile-category-quick-link:hover .fas {
    color: white !important;
}

/* Toast Animation */
@keyframes slideInOut {
    0% { opacity: 0; transform: translate(-50%, -20px); }
    10% { opacity: 1; transform: translate(-50%, 0); }
    90% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* ====================================
   FLOATING CART STYLES
   ==================================== */
.floating-cart {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    user-select: none;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.floating-cart:active {
    transform: scale(0.95);
}

.floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
}

.floating-cart.hidden {
    display: none;
}

/* Cart pulse animation */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.floating-cart.pulse {
    animation: cartPulse 0.6s ease;
} 