/* ==================== PRICE BOTTOM BAR ==================== */

.price-bottom-bar {
    display: none; /* Hidden by default (desktop) */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #fdf7ff;
}

.price-bottom-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* ==================== PRICES SECTION ==================== */

.price-bottom-bar-prices {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.price-bottom-bar-current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    white-space: nowrap;
    font-family: 'PlusJakartaSans', -apple-system, sans-serif;
}

.price-bottom-bar-original-price {
    font-size: 1rem;
    font-weight: 500;
    color: #94A3B8;
    text-decoration: line-through;
    margin: 0;
    white-space: nowrap;
    font-family: 'PlusJakartaSans', -apple-system, sans-serif;
}

/* ==================== BUTTON ==================== */



/* ==================== MOBILE RESPONSIVE (max-width: 1020px) ==================== */

@media (max-width: 1020px) {
    .price-bottom-bar {
        display: block; /* Show on mobile */
    }
}

/* ==================== MOBILE (max-width: 768px) ==================== */

@media (max-width: 768px) {
    .price-bottom-bar {
        padding: 0.875rem 1rem;
    }

    .price-bottom-bar-current-price {
        font-size: 1.125rem;
    }

    .price-bottom-bar-original-price {
        font-size: 0.9375rem;
    }

}

/* ==================== SMALL MOBILE (max-width: 480px) ==================== */

@media (max-width: 480px) {
    .price-bottom-bar {
        padding: 0.75rem 0.875rem;
        bottom: 56px;
    }

    .price-bottom-bar-content {
        gap: 0.75rem;
    }

    .price-bottom-bar-current-price {
        font-size: 1rem;
    }

    .price-bottom-bar-original-price {
        font-size: 0.875rem;
    }

    
}

/* ==================== ACCESSIBILITY ==================== */

@media (prefers-contrast: high) {
    .price-bottom-bar {
        border-top-width: 2px;
        border-top-color: #000;
    }
}

@media (prefers-reduced-motion: reduce) {
    .price-bottom-bar {
        transition: none;
    }
}
