/**
 * WC Gift Cards Frontend Styles
 *
 * This file contains all frontend styles for the gift card functionality.
 * Moved from inline styles to external file for better browser caching.
 */

/* Gift Card Form Container */
.wc-gift-card-form {
    background: #f7f7f7;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.wc-gift-card-form h3 {
    margin-top: 0;
    color: #333;
}

/* Gift Card Input Wrapper */
.gift-card-input-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.gift-card-input-wrapper input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.gift-card-input-wrapper .button {
    white-space: nowrap;
}

/* Applied Gift Cards */
.applied-gift-cards {
    margin: 15px 0;
}

.applied-gift-cards h4 {
    margin-bottom: 10px;
    color: #333;
}

.gift-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.gift-card-item span {
    font-weight: bold;
}

.gift-card-item .remove-gift-card {
    background: #dc3232;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.gift-card-item .remove-gift-card:hover {
    background: #a82020;
}

/* Gift Card Messages */
#gift_card_message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 3px;
    display: none;
}

#gift_card_message.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    display: block;
}

#gift_card_message.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Gift Card Fields */
.gift-card-fields {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.gift-card-fields h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.gift-card-fields label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.gift-card-fields input,
.gift-card-fields select,
.gift-card-fields textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.gift-card-fields input:focus,
.gift-card-fields select:focus,
.gift-card-fields textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

.gift-card-fields textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gift-card-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .gift-card-input-wrapper input {
        width: 100%;
    }

    .gift-card-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
