/*
 * == CCG Leather Feature - Final Consolidated Stylesheet ==
 */

/* --- Part 1: Your Original Styles (Unchanged) --- */
.leather-used-wrapper {
    margin: 15px 0;
}
.leather-used-wrapper label {
    font-weight: 600; font-size: 14px; color: HSL(210, 7%,46%); text-transform: uppercase;
}
.leather-used-list {
    display: flex; gap: 15px; flex-wrap: wrap;
}
.leather-item {
    position: relative;
}
.leather-item img {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #373737;
    padding: 2px;
    transition: border-color 0.3s;
}
.leather-item img:hover,
.leather-item img:focus {
    border-color: #686565;
}