/*** TIENDA CSS ***/
   /* Estilos para el carrito desplegable */
        .cart-sidebar {
            height: 100%;
            width: 0;
            position: fixed;
            top: 0;
            right: 0;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            overflow-x: hidden;
            transition: 0.3s;
            z-index: 9999;
            padding-top: 60px;
        }
        
        .cart-sidebar.open {
            width: 400px;
        }
        
        .cart-header {
            position: absolute;
            top: 0;
            width: 100%;
            padding: 15px 20px;
            background: #061429;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-header h4 {
            margin: 0;
            color: white;
        }
        
        .close-cart {
            color: white;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .cart-items {
            padding: 20px;
            max-height: calc(100vh - 200px);
            overflow-y: auto;
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .cart-item-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 10px;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .cart-item-price {
            color: #061429;
            font-weight: bold;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 40px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 5px;
            border-radius: 3px;
        }
        
        .remove-item {
            color: #dc3545;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .btn-checkout {
            width: 100%;
            padding: 10px;
            background: #061429;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .btn-checkout:hover {
            background: #0a1a3a;
        }
        
        /* Estilos para productos */
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .product-img-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 10px;
            cursor: pointer;
            width: 100%;
            padding-top: 100%;
            background-color: #f8f9fa;
        }
        
        .product-img-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
            background-color: white;
            padding: 5px;
        }
        
        .product-img-container img:hover {
            transform: scale(1.05);
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 600;
            margin: 10px 0 5px;
            color: #333;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-details {
            font-size: 14px;
            color: #666;
            margin: 5px 0;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.4;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #061429;
            margin: 10px 0;
        }
        
        .btn-add-cart {
            width: 100%;
            padding: 8px;
            background: #061429;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-add-cart:hover {
            background: #0a1a3a;
        }
        
        /* Estilos para el modal de producto */
        .product-detail-img {
            max-height: 300px;
            object-fit: contain;
        }
        
        /* Estilos para el carrusel */
        .carousel-item img {
            height: 200px;
            object-fit: cover;
        }
        
        /* Botón flotante del carrito */
        .cart-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #061429;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 999;
            border: none;
        }
        
        .cart-float span {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cart-sidebar.open {
                width: 100%;
            }
        }
         .product-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .color-badge {
            display: inline-block;
            padding: 3px 8px;
            margin: 2px;
            background-color: #f0f0f0;
            border-radius: 3px;
            font-size: 0.8rem;
        }
        .caja-info {
            font-size: 0.85rem;
            color: #666;
            margin: 5px 0;
        }
        .caja-info i {
            color: #007bff;
            margin-right: 3px;
        }
        .tipo-pedido-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .tipo-pedido-btn {
            flex: 1;
            padding: 8px;
            border: 2px solid #dee2e6;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .tipo-pedido-btn.active {
            border-color: #007bff;
            background: #007bff;
            color: white;
        }
        .tipo-pedido-btn i {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .color-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
            padding: 10px;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }
        .color-option {
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .color-option:hover {
            background: #e9ecef;
        }
        .color-option.selected {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }
        .precio-detalle {
            font-size: 1.2rem;
            font-weight: bold;
            color: #007bff;
        }
        .precio-original {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }
        .ahorro-badge {
            background: #28a745;
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 0.8rem;
        }

/***  PAGINA CAMBIOS  ***/
 /* Estilos para el carrito desplegable */
        .cart-sidebar {
            height: 100%;
            width: 0;
            position: fixed;
            top: 0;
            right: 0;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            overflow-x: hidden;
            transition: 0.3s;
            z-index: 9999;
            padding-top: 60px;
        }
        
        .cart-sidebar.open {
            width: 400px;
        }
        
        .cart-header {
            position: absolute;
            top: 0;
            width: 100%;
            padding: 15px 20px;
            background: #061429;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-header h4 {
            margin: 0;
            color: white;
        }
        
        .close-cart {
            color: white;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .cart-items {
            padding: 20px;
            max-height: calc(100vh - 200px);
            overflow-y: auto;
        }
        
        .cart-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .cart-item-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 10px;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-title {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .cart-item-price {
            color: #061429;
            font-weight: bold;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 3px;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 40px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 5px;
            border-radius: 3px;
        }
        
        .remove-item {
            color: #dc3545;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .btn-checkout {
            width: 100%;
            padding: 10px;
            background: #061429;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .btn-checkout:hover {
            background: #0a1a3a;
        }
        
        /* Estilos para productos */
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .product-img-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 10px;
            cursor: pointer;
            width: 100%;
            padding-top: 100%;
            background-color: #f8f9fa;
        }
        
        .product-img-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
            background-color: white;
            padding: 5px;
        }
        
        .product-img-container img:hover {
            transform: scale(1.05);
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 600;
            margin: 10px 0 5px;
            color: #333;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .product-details {
            font-size: 14px;
            color: #666;
            margin: 5px 0;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            line-height: 1.4;
        }
        
        .product-price {
            font-size: 18px;
            font-weight: bold;
            color: #061429;
            margin: 10px 0;
        }
        
        .btn-add-cart {
            width: 100%;
            padding: 8px;
            background: #061429;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-add-cart:hover {
            background: #0a1a3a;
        }
        
        /* Estilos para el modal de producto */
        .product-detail-img {
            max-height: 300px;
            object-fit: contain;
        }
        
        /* Estilos para el carrusel */
        .carousel-item img {
            height: 200px;
            object-fit: cover;
        }
        
        /* Botón flotante del carrito */
        .cart-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #061429;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 999;
            border: none;
        }
        
        .cart-float span {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cart-sidebar.open {
                width: 100%;
            }
        }


             /* Estilos adicionales */
        .tipo-pedido-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 5px;
        }
        .tipo-unidad {
            background-color: #e3f2fd;
            color: #0d6efd;
        }
        .tipo-caja {
            background-color: #fff3cd;
            color: #856404;
        }
        .color-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            background-color: #6f42c1;
            color: white;
            font-size: 0.75rem;
            margin-left: 5px;
        }
        .pedido-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            margin-bottom: 20px;
            background: white;
            overflow: hidden;
        }
        .pedido-header {
            background-color: #f8f9fa;
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .producto-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
            gap: 15px;
        }
        .producto-imagen {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }
        .producto-detalles {
            flex: 1;
        }
        .producto-nombre {
            font-weight: 600;
            margin-bottom: 5px;
        }
        .producto-precio {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .producto-opciones {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .select-tipo {
            width: 100px;
            padding: 5px;
            border-radius: 5px;
            border: 1px solid #dee2e6;
        }
        .select-color {
            width: 120px;
            padding: 5px;
            border-radius: 5px;
            border: 1px solid #dee2e6;
        }
        .cantidad-control {
            display: flex;
            align-items: center;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            overflow: hidden;
        }
        .cantidad-btn {
            width: 30px;
            height: 30px;
            border: none;
            background-color: #f8f9fa;
            cursor: pointer;
            font-weight: bold;
        }
        .cantidad-btn:hover {
            background-color: #e9ecef;
        }
        .cantidad-input {
            width: 50px;
            height: 30px;
            border: none;
            border-left: 1px solid #dee2e6;
            border-right: 1px solid #dee2e6;
            text-align: center;
        }
        .btn-eliminar {
            background: none;
            border: none;
            color: #dc3545;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .btn-eliminar:hover {
            color: #bd2130;
        }
        .resumen-pedido {
            padding: 15px;
            background-color: #f8f9fa;
            border-top: 2px solid #dee2e6;
        }
        .total-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .btn-actualizar {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .btn-actualizar:hover {
            background-color: #218838;
        }
        .btn-actualizar:disabled {
            background-color: #6c757d;
            cursor: not-allowed;
        }
        .btn-cancelar {
            background-color: #dc3545;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-right: 10px;
        }
        .btn-cancelar:hover {
            background-color: #c82333;
        }
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }