/* Buttons */
.btn-primary {
    background-color: #FF6B35;
    border-color: #FF6B35;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #FF6B35;
    border-color: #FF6B35;
    border-radius: 25px;
    font-weight: 500;
}

.btn-success:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.btn-outline-info {
    color: #FF6B35;
    border-color: #FF6B35;
    border-radius: 25px;
}

.btn-outline-info:hover {
    background-color: #FF6B35;
    border-color: #FF6B35;
    color: #ffffff;
}

.btn-outline-secondary {
    color: #cccccc;
    border-color: #555;
}

.btn-outline-secondary:hover {
    background-color: #555;
    border-color: #555;
    color: #ffffff;
}

.btn-outline-danger {
    color: #ff4757;
    border-color: #ff4757;
}

.btn-outline-danger:hover {
    background-color: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
}

/* Floating cart */
.carrito-flotante {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: #2d2d2d;
    border: 2px solid #FF6B35;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.3);
    max-width: 350px;
    display: none;
}

.carrito-contador {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.card-header {
    background-color: #3d3d3d;
    border-bottom: 1px solid #555;
    color: #ffffff;
}

/* Carousel styling */
.carousel-item img {
    height: 685px;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    background: rgba(45, 45, 45, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #FF6B35;
}

.carousel-caption h3 {
    color: #ffffff;
    font-weight: bold;
}

.carousel-caption p {
    color: #cccccc;
}

/* Sections */
.seccion1 {
    margin-bottom: 50px;
}

.seccion2 {
    padding: 50px 0;
    background: #1a1a1a;
}

/* Category filters */
.filtroProducto {
    margin-bottom: 30px;
}

.filtroProducto .nav-link {
    color: #cccccc;
    font-weight: 500;
    border-radius: 25px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: 2px solid #555;
    background-color: #2d2d2d;
}

.filtroProducto .nav-link:hover,
.filtroProducto .nav-link.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    transform: translateY(-2px);
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: #fff;
    font-size: 2rem;
    transition: color 0.2s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    color: #FF6B35; /* Azul en hover */
}

.carousel-control-prev:active .carousel-control-prev-icon,
.carousel-control-next:active .carousel-control-next-icon {
    color: #ff4757; /* Verde en active */
}

.carousel-control-prev-icon::before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.carousel-control-next-icon::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}