/**
 * Kuiba GiftCards - Frontend Styles
 *
 * @package Kuiba_GiftCards
 * @version 1.0.0
 */

/* GiftCard Product Form */
.kv-giftcard-form {
    margin: 20px 0;
}

.kv-giftcard-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* Amount Selection */
.kv-giftcard-amount-section {
    margin-bottom: 25px;
}

/* Preset Buttons */
.kv-giftcard-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.kv-giftcard-preset {
    padding: 12px 20px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
}

.kv-giftcard-preset:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.kv-giftcard-preset.active {
    border-color: #667eea;
    background: #667eea;
    color: #fff;
}

/* Stepper Input */
.kv-giftcard-stepper {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 200px;
    margin-top: 15px;
}

.kv-giftcard-stepper-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.kv-giftcard-stepper-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.kv-giftcard-stepper-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.kv-giftcard-stepper-input {
    width: 100px;
    height: 44px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    -moz-appearance: textfield;
}

.kv-giftcard-stepper-input::-webkit-outer-spin-button,
.kv-giftcard-stepper-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Recipient Section */
.kv-giftcard-recipient-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.kv-giftcard-recipient-section .form-row {
    margin-bottom: 15px;
}

.kv-giftcard-recipient-section .form-row:last-child {
    margin-bottom: 0;
}

.kv-giftcard-recipient-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.kv-giftcard-recipient-section .input-text,
.kv-giftcard-recipient-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.kv-giftcard-recipient-section .input-text:focus,
.kv-giftcard-recipient-section textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.kv-giftcard-recipient-section .description {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Cart GiftCard Input */
.kv-giftcard-row td {
    padding: 15px !important;
}

.kv-giftcard-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kv-giftcard-input-wrapper input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    max-width: 200px;
}

.kv-giftcard-input-wrapper .kv-giftcard-apply {
    padding: 10px 20px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.kv-giftcard-input-wrapper .kv-giftcard-apply:hover {
    background: #5568d8;
}

.kv-giftcard-input-wrapper .kv-giftcard-apply:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.kv-giftcard-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.kv-giftcard-message.success {
    background: #d4edda;
    color: #155724;
}

.kv-giftcard-message.error {
    background: #f8d7da;
    color: #721c24;
}

.kv-giftcard-message.loading {
    background: #fff3cd;
    color: #856404;
}

/* Applied GiftCard Display */
.kv-giftcard-applied {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.kv-giftcard-applied .kv-giftcard-code {
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
}

.kv-giftcard-applied .kv-giftcard-balance {
    color: #27ae60;
    font-weight: 500;
}

.kv-giftcard-applied .kv-giftcard-remove {
    padding: 5px 12px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s ease;
}

.kv-giftcard-applied .kv-giftcard-remove:hover {
    background: #c82333;
}

/* Cashback Message on Product Page */
.kv-cashback-message {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #27ae60;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #155724;
}

/* Order Details GiftCard Section */
.kv-giftcard-order-details {
    margin: 30px 0;
}

.kv-giftcard-order-details h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.kv-giftcard-order-details table {
    width: auto;
    min-width: 300px;
}

/* Responsive */
@media (max-width: 600px) {
    .kv-giftcard-presets {
        justify-content: center;
    }

    .kv-giftcard-preset {
        flex: 1 1 calc(33.333% - 10px);
        min-width: auto;
    }

    .kv-giftcard-stepper {
        max-width: 100%;
    }

    .kv-giftcard-input-wrapper {
        flex-direction: column;
    }

    .kv-giftcard-input-wrapper input[type="text"] {
        max-width: 100%;
    }

    .kv-giftcard-applied {
        flex-direction: column;
        align-items: flex-start;
    }
}
