body.single-product
.julius-purchase-box
.julius-buy-now-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    margin: 10px 0 0 !important;
    padding: 0 22px !important;

    color: #a87522 !important;
    background: #ffffff !important;
    border: 1px solid #c7922e !important;
    border-radius: 12px !important;

    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.045em;
    text-transform: uppercase;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

body.single-product
.julius-purchase-box
.julius-buy-now-button:hover {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            #ca9c4d 0%,
            #b98734 100%
        ) !important;

    border-color: #b98734 !important;
    transform: translateY(-1px);

    box-shadow:
        0 10px 22px rgba(172, 123, 42, 0.22)
        !important;
}

body.single-product
.julius-purchase-box
.julius-buy-now-button:focus-visible {
    outline: 3px solid rgba(199, 154, 75, 0.22);
    outline-offset: 3px;
}

body.single-product
.julius-purchase-box
.julius-buy-now-button:disabled {
    cursor: not-allowed;
    color: #a9a39a !important;
    background: #f7f5f1 !important;
    border-color: #ddd8d0 !important;
    opacity: 0.65;
    transform: none;
    box-shadow: none !important;
}

@media (max-width: 600px) {
    body.single-product
    .julius-purchase-box
    .julius-buy-now-button {
        min-height: 50px;
        padding: 0 16px !important;
        font-size: 12px !important;
    }
}