.fic-inline-checkout {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.fic-inline-checkout__placeholder {
    text-align: center;
    color: #525252;
    font-size: 14px;
}

.fic-inline-checkout__spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.fic-inline-checkout__spinner::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #a4cddd;
    border-top-color: transparent;
    animation: fic-spin 0.8s linear infinite;
}

@keyframes fic-spin {
    to {
        transform: rotate(360deg);
    }
}

.fic-inline-checkout__form .woocommerce {
    margin-bottom: 0;
}

.fic-inline-checkout__form .woocommerce-checkout-review-order-table thead th,
.fic-inline-checkout__form .woocommerce-checkout-review-order-table td {
    font-size: 14px;
}

.fic-inline-checkout__form .place-order {
    margin-top: 1.5rem;
}

/* Hide add to cart button */
.single_add_to_cart_button,
button.single_add_to_cart_button,
input.single_add_to_cart_button,
.variations_button .single_add_to_cart_button {
    display: none !important;
}

/* Hide quantity selector if needed */
.ux-quantity,
.quantity {
    display: none !important;
}

/* Hide spinner/loading message */
.fic-inline-checkout__spinner {
    display: none !important;
}

