.product-attr-wrapper {
    background: linear-gradient(7deg, #fff, #38b057);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
}

.product-attr-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-attr-title::before {
    content: "✨";
    font-size: 16px;
}

.product-attr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.attr-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.attr-name {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.attr-value {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.green { color:#047857; }
.gold { color:#047857; }
.blue { color:#047857; }
.purple { color:#047857; }
.gray { color:#047857; }
