STYLE YOUR SHADES
Upload your sunglasses
Tap a charm to add it, then drag to place
Tap a charm to add. Drag to position. Remove one or clear all.
/* Charm Grid Container */
.charm-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
margin-top: 14px;
}
/* Charm Box */
.charm-box {
border: 1px solid #e7e7e7;
border-radius: 10px;
padding: 10px 8px;
text-align: center;
background: #fff;
cursor: pointer;
}
/* Charm Images Bigger */
.charm-box img {
width: 46px;
height: auto;
margin-bottom: 6px;
}
/* Text Style Adjustments */
.charm-box-title,
.charm-box-price,
.charm-box-link {
font-size: 13px;
line-height: 1.2;
color: #000 !important; /* makes text black */
}
/* Price */
.charm-box-price {
font-weight: 600;
}
/* View Product Link */
.charm-box-link {
font-size: 12px;
text-decoration: underline;
}