
        /* Estilos para la moneda en el menú */
        .ofipunto-menu-item {
            margin-left: 15px;
        }
        
        .ofipunto-moneda-link {
            display: flex;
            align-items: center;
            text-decoration: none !important;
        }
        
        .ofipunto-moneda {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #8B4513;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .ofipunto-moneda:hover {
            transform: scale(1.1);
        }
        
        .ofipunto-simbolo {
            font-size: 20px;
        }
        
        .ofipunto-cantidad {
            position: absolute;
            bottom: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Estilos para la tienda */
        .ofipunto-tienda-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .ofipunto-saldo-actual {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .ofipunto-saldo-titulo {
            font-size: 18px;
            color: #6c757d;
            margin-bottom: 10px;
        }
        
        .ofipunto-saldo-monto {
            font-size: 32px;
            font-weight: bold;
        }
        
        .ofipunto-moneda-tienda {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .ofipunto-simbolo-tienda {
            color: #ffd700;
            font-size: 28px;
        }
        
        .ofipunto-cantidad-tienda {
            color: #28a745;
        }
        
        .ofipunto-productos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .ofipunto-producto-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .ofipunto-producto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        
        .ofipunto-producto-imagen {
            height: 200px;
            overflow: hidden;
        }
        
        .ofipunto-producto-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ofipunto-producto-info {
            padding: 20px;
        }
        
        .ofipunto-producto-info h3 {
            margin-top: 0;
            color: #343a40;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .ofipunto-producto-descripcion {
            color: #6c757d;
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .ofipunto-producto-puntos {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #28a745;
        }
        
        .ofipunto-precio {
            color: #ffc107;
            font-size: 24px;
        }
        
        .ofipunto-producto-stock {
            margin-bottom: 15px;
            color: #6c757d;
            font-size: 14px;
        }
        
        .ofipunto-btn-canje {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
            width: 100%;
            font-size: 16px;
        }
        
        .ofipunto-btn-canje:hover {
            background: #218838;
        }
        
        .ofipunto-btn-canje:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }
        
        .ofipunto-sin-productos {
            text-align: center;
            padding: 40px;
            color: #6c757d;
            font-size: 18px;
            grid-column: 1 / -1;
        }
        
        /* Modal */
        .ofipunto-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        
        .ofipunto-modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        
        .ofipunto-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #6c757d;
        }
        
        .ofipunto-close:hover {
            color: #343a40;
        }
        
        .ofipunto-modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .ofipunto-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .ofipunto-btn-primary {
            background: #28a745;
            color: white;
        }
        
        .ofipunto-btn-primary:hover {
            background: #218838;
        }
        
        .ofipunto-btn-secondary {
            background: #6c757d;
            color: white;
        }
        
        .ofipunto-btn-secondary:hover {
            background: #5a6268;
        }
        
        .ofipunto-acceso-denegado {
            text-align: center;
            padding: 40px;
            background: #f8d7da;
            color: #721c24;
            border-radius: 10px;
            margin: 20px;
        }
        
        @media (max-width: 768px) {
            .ofipunto-productos-grid {
                grid-template-columns: 1fr;
            }
            
            .ofipunto-modal-actions {
                flex-direction: column;
            }
        }
        