.colorme-sync-list form {
    padding: clamp(1em, 5%, 2em) 5%;
}

.colorme-sync-search {
    display: grid;
    grid-template-columns: 5fr 1fr;
    align-items: center;
    gap: 0.5em;
}

.keyword-links a {
    text-decoration: none;
}

.colorme-sync-list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    list-style: none;
    margin: 1em 0;
    padding: 0;
}

@media (min-width:600px) {
    .colorme-sync-list-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width:900px) {
    .colorme-sync-list-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* single */
.product-info {
    display: block;
    grid-template-columns: 1fr 1fr;
}

.product h1 {
    word-break: break-all;
}

@media (min-width:768px) {
    .product-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2vw;
    }
}

/*
.product-image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.main-image-area img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

.thumbnails-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: start;
    gap: 2px;
    margin-top: 2px;
}

.thumbnail-wrapper {
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    display: inline-block;
}

.thumbnail-wrapper.selected-thumb {
    border-color: #0073aa;
}

.thumbnail-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
*/
.colorme-product-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
}

.colorme-product-options a {
    display: block;
    text-decoration: none;
}

.colorme-product-options img {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
}