﻿/* Hogwarts magic card style */
.producto-card-hover {
    border-radius: 1rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.3s;
    border: 2px solid #d2b86644;
}

    .producto-card-hover:hover {
        box-shadow: 0 8px 32px #cbb03c77, 0 0 0 3px #f6e58d99;
        transform: translateY(-4px) scale(1.025) rotate(-1.5deg);
        border-color: #bfa73c;
    }

.btn-comprar-magic {
    background: linear-gradient(90deg, #d8be6a 60%, #a88914 100%);
    color: #fff !important;
    box-shadow: 0 1px 8px #bfa73c33;
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

    .btn-comprar-magic:hover, .btn-comprar-magic:focus {
        background: linear-gradient(90deg, #a88914 40%, #ffd700 100%);
        color: #333 !important;
        transform: scale(1.05) rotate(-2deg);
        box-shadow: 0 2px 18px #bfa73c66;
    }
