.colors-wrapper {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem 3rem;
}

.color-box {
    height: 120px;
    border-radius: 1rem;
    cursor: pointer;
    border: 1px solid #eee;
    transition: transform .15s ease, box-shadow .15s ease;
}

.color-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.color-name {
    text-align: center;
    margin-top: .75rem;
    font-weight: 600;
    color: #322e22;
    font-size: .9rem;
}

#copyToast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #322e22;
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: .75rem;
    opacity: 0;
    display: none;
    transition: opacity .3s ease;
    z-index: 9999;
}

@media (max-width: 768px) {
    .colors-wrapper {
        padding: 2.5rem 1.5rem;
    }
}