.kekenta-spreadsheet-purchase-form {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.kekenta-product-info {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #e0e0e0;
}
.kekenta-product-title {
color: #333;
margin-bottom: 15px;
font-size: 24px;
font-weight: bold;
}
.kekenta-product-description {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}
.kekenta-product-detail {
color: #666;
line-height: 1.6;
margin-bottom: 10px;
}
.kekenta-product-price {
text-align: center;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
}
.kekenta-price {
font-size: 28px;
font-weight: bold;
color: #2c3e50;
} .kekenta-form-row {
margin-bottom: 20px;
}
.kekenta-form-label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #333;
}
.kekenta-form-input {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s ease;
box-sizing: border-box;
}
.kekenta-form-input:focus {
outline: none;
border-color: #007cba;
box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
} .kekenta-card-element {
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
background: #fff;
transition: border-color 0.3s ease;
}
.kekenta-card-element.StripeElement--focus {
border-color: #007cba;
box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
.kekenta-card-element.StripeElement--invalid {
border-color: #dc3545;
}
.kekenta-card-errors {
color: #dc3545;
font-size: 14px;
margin-top: 8px;
min-height: 20px;
} .kekenta-submit-button {
width: 100%;
padding: 15px;
background: #007cba;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
position: relative;
}
.kekenta-submit-button:hover:not(:disabled) {
background: #005a87;
}
.kekenta-submit-button:disabled {
background: #ccc;
cursor: not-allowed;
}
.kekenta-button-text {
display: inline-block;
}
.kekenta-spinner {
display: inline-block;
width: 20px;
height: 20px;
border: 2px solid #ffffff;
border-radius: 50%;
border-top-color: transparent;
animation: kekenta-spin 1s ease-in-out infinite;
}
@keyframes kekenta-spin {
to { transform: rotate(360deg); }
}
.hidden {
display: none !important;
} .kekenta-payment-message {
margin-top: 20px;
padding: 12px;
border-radius: 4px;
text-align: center;
font-weight: 600;
}
.kekenta-payment-message.success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.kekenta-payment-message.error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
} @media (max-width: 768px) {
.kekenta-spreadsheet-purchase-form {
margin: 10px;
padding: 15px;
}
.kekenta-product-title {
font-size: 20px;
}
.kekenta-price {
font-size: 24px;
}
} .kekenta-loading {
opacity: 0.6;
pointer-events: none;
} .kekenta-success-animation {
animation: kekenta-successPulse 0.6s ease-in-out;
}
@keyframes kekenta-successPulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}