/* wrapper sezione */
.catalog-section{
    background: transparent;
    padding: 34px 0 56px;
}
.catalog-wrap{
    background: transparent;
}

/* grid spacing (Bootstrap ok) */
.catalog-grid{
    row-gap: 24px;
}

/* card moderna */
.catalog-card{
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.92);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px) saturate(130%);
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.catalog-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.14);
    border-color: rgba(11,46,74,0.18);
}

/* thumb con hover */
.catalog-thumb{
    position: relative;
    display: block;
    overflow: hidden;
}
.catalog-thumb img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .35s ease;
}
.catalog-card:hover .catalog-thumb img{
    transform: scale(1.07);
}

/* badge gratuito */
.catalog-badge{
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff7416, #EEA928);
    color: #0B2E4A;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* body */
.catalog-body{
    padding: 16px 18px 14px;
}
.catalog-title{
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 10px 0;
}
.catalog-title a{
    color: #0B2E4A;
    text-decoration: none;
}
.catalog-title a:hover{ color:#ff7416; }

.catalog-meta{
    font-size: .92rem;
    color: rgba(31,41,51,.75);
    margin: 0 0 10px 0;
}

/* rating un filo più pulito */
.rating-stars{
    font-size: .92rem;
    opacity: .95;
}
.rating-stars span{
    margin-left: 6px;
    font-weight: 700;
    color: rgba(11,46,74,.75);
}

/* footer */
.catalog-footer{
    padding: 12px 14px 16px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}
.catalog-footer .button{
    border-radius: 999px !important;
    padding: 10px 14px !important;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* pulsante principale stile CTA */
.button-catalog-primary{
    background: #ff7416 !important;
    border-color: #ff7416 !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.button-catalog-primary:hover{
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}

/* pulsante outline */
.button-catalog-outline{
    background: transparent !important;
    border: 2px solid rgba(11,46,74,.20) !important;
    color: #0B2E4A !important;
}
.button-catalog-outline:hover{
    background: rgba(11,46,74,.06) !important;
}

/* responsive */
@media (max-width: 767.98px){
    .catalog-thumb img{  height: 240px; }
    .catalog-footer{ flex-direction: column; align-items: stretch; }
    .catalog-footer .button{ width: 100%; text-align: center; }
}