.detail-image{
    max-width:900px;
    margin:0 auto;
}

.detail-image img{
    width:100%;
    max-height:550px;
    object-fit:contain;
    border-radius:20px;
    background:#f8fafc;
}

.detail-thumbnails{
    display:flex;
    gap:12px;
    margin-top:16px;
    justify-content:center;
    flex-wrap:wrap;
}

.thumb-image{
    width:100px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.2s;
}

.thumb-image:hover{
    border-color:#0d3b82;
    transform:translateY(-2px);
}