.love-checkout-form {
    border: 1px solid #e2136e;
    padding: 20px;
    max-width: 420px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff5fa;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(226, 19, 110, 0.3);
}

.love-checkout-no-product-selected,
.love-checkout-product-not-found {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #e2136e;
    background: #fff5fa;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(226, 19, 110, 0.3);
}

.love-checkout-no-product-icon,
.love-checkout-error-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.love-checkout-no-product-message h3,
.love-checkout-error-message h3 {
    color: #e2136e;
    margin: 0 0 10px;
    font-size: 1.5em;
}

.love-checkout-no-product-message p,
.love-checkout-error-message p {
    color: #666;
    margin: 0;
    font-size: 1.1em;
}

.love-checkout-badge {
    display: block;
    background: #f7d1dd;
    color: #b3175f;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    margin: 0 auto 20px;
    user-select: none;
    box-shadow: 0 0 8px rgba(179, 23, 95, 0.4);
}

.love-checkout-product-name {
    text-align: center;
    color: #b3175f;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.3em;
    font-style: italic;
    letter-spacing: 0.03em;
}

.love-checkout-image {
    text-align: center;
    margin-bottom: 20px;
}

.love-checkout-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.love-checkout-price {
    text-align: center;
    font-size: 18px;
    margin: 15px 0;
    font-weight: 600;
    color: #444;
}

.love-checkout-normal-price {
    color: #28a745;
    font-weight: bold;
}

.love-checkout-normal-price.has-sale-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.love-checkout-sale-price {
    color: #dc3545;
    font-weight: bold;
}

.love-checkout-form-element {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.love-checkout-field {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    transition: border-color 0.3s ease;
}

.love-checkout-field:focus-within {
    border-color: #e2136e;
    box-shadow: 0 0 5px #e2136e88;
}

.love-checkout-icon {
    padding: 8px 12px;
    font-size: 18px;
    background: #f7e5f0;
    color: #e2136e;
    border-radius: 6px 0 0 6px;
    user-select: none;
}

.love-checkout-form-element input,
.love-checkout-form-element textarea {
    flex: 1;
    padding: 10px 12px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border-radius: 0 6px 6px 0;
    resize: vertical;
    font-family: inherit;
}

.love-checkout-form-element textarea {
    min-height: 60px;
}

.love-checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2136e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 15px;
    max-width: 250px;
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.love-checkout-button:hover {
    background: #c41161;
}

.love-checkout-button-text {
    margin-right: 8px;
}

.love-checkout-logo {
    width: 48px;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 3px;
}