/* DELETE button — HIGHLY VISIBLE & NO CROPPING */
.thumb-with-color {
    position: relative;
    display: inline-block;
    margin: 0 12px;
    padding-top: 50px; /* Creates space for the button above */
}

.color-choice-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 8px;
    border: solid 1px #ff4444;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 30;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.color-choice-btn:hover {
    background: #cc0000;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.5);
    color:white;
}

.color-choice-btn a {
    color: white !important;
    text-decoration: none;
}
.vcolor-choice{
    width:85px; height:85px;border:solid 2px #F0F0F0;border-radius:5px;overflow:hidden;padding:3px;
}
.color-choice-img{
    width:100%;height:80px;object-fit: cover;object-position: center;display: block;border-radius:5px;
}
/* Arrow pointing down to thumbnail */
.color-choice-btn::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff4444;
}

/* Mobile & Tablet */
@media (max-width: 900px) {
    .thumb-with-color {
        padding-top: 45px;
    }
    .color-choice-btn {
        font-size: 12px;
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    .thumb-with-color {
        padding-top: 40px;
    }
    .color-choice-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}