.aurea-shine-button {
    --asb-top: #d1aa6d;
    --asb-bottom: #b78343;
    --asb-text: #ffffff;
    --asb-radius: 4px;
    --asb-font-size: 18px;
    --asb-letter-spacing: 0px;
    --asb-padding-y: 18px;
    --asb-padding-x: 28px;
    --asb-min-width: 420px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: auto;
    min-width: var(--asb-min-width);
    max-width: 100%;
    box-sizing: border-box;
    padding: var(--asb-padding-y) var(--asb-padding-x);
    border: 0;
    border-radius: var(--asb-radius);
    background: linear-gradient(135deg, var(--asb-top), var(--asb-bottom));
    box-shadow: 0 8px 24px rgba(133, 94, 46, .18);
    color: var(--asb-text) !important;
    text-decoration: none !important;
    text-transform: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--asb-font-size);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: var(--asb-letter-spacing);
    text-align: left;
    transition: transform .2s ease, filter .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.aurea-shine-button::before,
.aurea-shine-button::after {
    content: none !important;
    display: none !important;
    animation: none !important;
}

.aurea-shine-button:hover,
.aurea-shine-button:focus-visible {
    color: var(--asb-text) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.aurea-shine-button:active {
    color: var(--asb-text) !important;
    text-decoration: none !important;
    transform: translateY(0);
    filter: brightness(1.02);
}

.aurea-shine-button:focus-visible {
    outline: 2px solid rgba(183, 131, 67, .34);
    outline-offset: 3px;
}

.aurea-shine-button__label {
    min-width: 0;
}

.aurea-shine-button__arrow {
    flex: 0 0 auto;
    margin-left: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.22em;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    transform: translateY(-1px);
}

.aurea-shine-button:hover .aurea-shine-button__arrow,
.aurea-shine-button:focus-visible .aurea-shine-button__arrow {
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .aurea-shine-button {
        width: 100%;
        min-width: 0;
        gap: 20px;
        padding: 16px 22px;
        font-size: clamp(15px, 4.6vw, var(--asb-font-size));
    }
}

@media (prefers-reduced-motion: reduce) {
    .aurea-shine-button {
        transition: none;
    }

    .aurea-shine-button:hover,
    .aurea-shine-button:focus-visible,
    .aurea-shine-button:active {
        transform: none;
    }
}
