.presentes-page{
    margin-top: 1rem;
}

#itens .card{
    height: 100%;
    border: 2px solid #00000014 !important;
    transition: box-shadow .25s ease, transform .25s ease;
    overflow: hidden;
}

#itens .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

#itens .card-header{
    padding: 0;
    background-color: #fff;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

#itens .card-body{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#itens .card-body .card-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 3rem;
}

#itens .card-body .desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    min-height: 3.6rem;
}

#itens img{
    width: auto;
    height: 100%;
    transition: transform .35s ease;
}

#itens .card:hover img{ transform: scale(1.05); }

/* Preço e CTA */
#itens .card-body .price{
    color: #160060;
    font-weight: 700;
}
#itens .card-body .alternativa{
    margin: .25rem 0 0;
    color: #6b6b6b;
    font-size: .95rem;
}
#itens .card-body .btn{
    width: 100%;
}

.card-title{
    font-weight: bold;
}

#paymentModal{
    text-align: center;
    justify-content: center;
    align-items: center;
}

#paymentModal .modal-header{
    background-color: #a406ff;
    color: #fff;
    justify-content: center;
}

#paymentModal .modal-header h5{
    font-weight: bold;
}

#ordenacao{
    padding-right: 1rem !important;
}

/* Filtros */
.filtros-card {
    border: 2px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-radius: 14px;
}

.filtros-card .form-control, .filtros-card .input-group-text {
    height: 3rem;
}

.row-filtros{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skeletons */
.skeleton-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eef3ff;
}

.skeleton-thumb { height: 200px; background: #eef3ff; }
.skeleton-line { height: 14px; width: 80%; background: #f3f6ff; border-radius: 8px; margin: 10px auto; }
.skeleton-line.short { width: 50%; }

/* shimmer */
.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.6s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }

.loader {
            border-top-color: #009ee3;
            -webkit-animation: spinner 1.5s linear infinite;
            animation: spinner 1.5s linear infinite;
        }

        @-webkit-keyframes spinner {
            0% { -webkit-transform: rotate(0deg); }
            100% { -webkit-transform: rotate(360deg); }
        }

        @keyframes spinner {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }