﻿/* Estilos de la vista ProductoDesc */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quantity-button {
    background-color: #ffcc00;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    color: #1c1c1e;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .quantity-button:hover {
        background-color: #e6b800;
    }

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.product-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffcc00;
    text-align: center;
    margin-bottom: 1rem;
}

.product-description {
    color: #333333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    color: #00ccff;
    margin-bottom: 1.5rem;
}

.btn-custom {
    background-color: #ffcc00;
    color: #1c1c1e;
    border: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

    .btn-custom:hover {
        background-color: #e6b800;
    }

.small-image {
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

    .small-image:hover {
        transform: scale(1.1);
    }

.modal-content {
    background-color: #1c1c1e;
    color: white;
    border-radius: 0.75rem;
    padding: 1rem;
}

.table-responsive {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.btn-close {
    color: #fff;
    background-color: transparent;
    border: none;
}

.carousel-item img {
    width: 100%;
    object-fit: contain;
    max-height: 500px;
}

.floating-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ffcc00;
    z-index: 1000;
}

@media (max-width: 768px) {
    .carousel-item img {
        max-height: 300px; /* Ajusta la altura en pantallas móviles */
    }

    .product-title {
        font-size: 2rem;
    }

    .product-description,
    .product-price {
        font-size: 1.2rem;
    }

    .floating-dot {
        right: 10px;
        transform: translateX(50%);
    }
}
