/* Cart button */
.btn-carrito {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FF6B35;
    border: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.btn-carrito:hover {
    transform: scale(1.1);
    background: #e55a2b;
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 2px solid #FF6B35;
}

/* Stock badge */
.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF6B35;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.stock-low {
    background: #ffc107;
    color: #333;
}

/* Price styling */
.precio-destacado {
    font-size: 1.25em;
    font-weight: bold;
    color: #FF6B35;
}

/* Alerts */
.alert-success {
    background-color: rgb(255, 107, 53);
    border-color: #FF6B35;
    color: #ffffff;
}

.alert-danger {
    background-color: rgba(255, 71, 87, 0.1);
    border-color: #ff4757;
    color: #ff4757;
}

.alert-warning {
    background-color: rgb(255, 193, 7);
    border-color: #ffc107;
    color: #f0f0f0;
}

.alert-info {
    background-color: rgb(255, 107, 53);
    border-color: #FF6B35;
    color: #ffffff;
}

/* Modal styling */
.modal-content {
    background-color: #2d2d2d;
    border: 2px solid #FF6B35;
    color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid #555;
}

.modal-footer {
    border-top: 1px solid #555;
}

.btn-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.2rem;
}

.btn-close:hover {
    color: #FF6B35;
}

/* List group styling */
.list-group-item {
    background-color: #3d3d3d;
    border-color: #555;
    color: #ffffff;
}

.bg-light {
    background-color: #2d2d2d !important;
}

/* Text colors */  
.text-success {
    color: #FF6B35 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carrito-flotante {
        max-width: 300px;
        right: 10px;
        top: 10px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .filtroProducto .nav-link {
        margin: 2px;
        font-size: 0.9rem;
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}