/* Registro */    
    
    body {
        background-color: #f8f9fa;
    }
    .registration-container {
        max-width: 600px;
        margin: 50px auto;
        padding: 30px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .registration-title {
        text-align: center;
        margin-bottom: 30px;
        color: #343a40;
    }
    .form-label {
        font-weight: 500;
    }
    .btn-register {
        width: 100%;
        padding: 10px;
        font-weight: 600;
    }

    /***********************************/
    /**************INDEX****************/
    /***********************************/

    .card {
        transition: none !important;
        border-radius: 10px;
    }
    .card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    .card-img-top {
        height: 180px;
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    /***********************************/
    /**************PRODUCT**************/
    /***********************************/

    .product-header {
        border-bottom: 2px solid #eee;
        padding-bottom: 15px;
    }
    /* Floating price card */
    .price-card {
        position: sticky;
        top: 20px;
        width: 100%;
    }
    @media (max-width: 991.98px) {
        .price-card {
            position: static;
            margin-top: 30px;
        }
    }

    .hover-shadow:hover { box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.15)!important; }

    .color-badge {
        width: 24px;
        height: 24px;
        display: inline-block;
        border-radius: 50%;
        margin-right: 8px;
        border: 1px solid #dee2e6;
        cursor: help;
        transition: transform 0.2s;
        vertical-align: middle;
    }
    
    .color-badge:hover {
        transform: scale(1.1);
        box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }