/* Unique class name to prevent conflicts */
.unique-golden-badge {
    /* Font & Text Properties */
    font-family: 'Manrope', 'Manrope Fallback', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    /* Dark brown text for high contrast against the gold */
    color: #3B2B20;
    white-space: nowrap;

    /* Golden Gradient Background */
    /* Blends a lighter gold/beige into a darker bronze, just like the image */
    background: linear-gradient(135deg, #DFBC7C 0%, #E8CD94 40%, #C49C51 100%);

    /* Box & Positioning */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 8px 32px;
    box-sizing: border-box;

    /* Shape / Border Radius (Same as previous request) */
    /* Top-Left: fully rounded, Top-Right: small curve, Bottom-Right: fully rounded, Bottom-Left: small curve */
    border-radius: 9999px 14px 9999px 14px;

    /* Subtle drop shadow to give it a slightly raised effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Transitions */
    transition: all 0.3s ease;
}

/* Optional hover effect to make the gold "shine" slightly */
.unique-golden-badge:hover {
    background: linear-gradient(135deg, #E8CD94 0%, #F1DEAE 40%, #DFBC7C 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}