.datts-products .product-card:hover .product-card__submeta {
    color: #94d4f1;
}

.product-card__variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.variant-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 12px;
    border: 1px solid rgba(232, 195, 111, 0.25);
    border-radius: 6px;
    background: rgba(232, 195, 111, 0.04);
    color: rgba(246, 242, 233, 0.7);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.variant-pill:hover {
    border-color: rgba(232, 195, 111, 0.55);
    background: rgba(232, 195, 111, 0.1);
    color: #ffe096;
}

.variant-pill.is-active {
    border-color: rgba(232, 195, 111, 0.8);
    background: rgba(232, 195, 111, 0.15);
    color: #ffe096;
    font-weight: 500;
}
