/* Gift Card Wallet Module - Frontend Styles */

/* Wallet balance widget in cart */
.wallet-balance-widget {
    background: #e8f4f8;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.wallet-balance-widget h5 {
    color: #0c5460;
    margin-bottom: 10px;
}

.wallet-balance-widget .balance-amount {
    font-size: 1.2em;
    font-weight: bold;
    color: #0c5460;
}

/* Claim page styles */
.gift-card-claim-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Checkout summary wallet payment styles */
.order-confirmation-table tr.wallet-payment td {
    color: #28a745;
    font-weight: 600;
    padding-top: 10px;
}

.order-confirmation-table tr.balance-to-pay td {
    border-top: 2px solid #333;
    padding-top: 10px;
    font-size: 1.1em;
}

/* Wallet payment pending notification */
.wallet-pending-payment {
    margin-top: 15px;
}

/* Account page wallet widget */
.wallet-account-widget {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.wallet-account-widget h4 {
    margin-bottom: 15px;
    color: #333;
}

.wallet-account-widget .wallet-balance {
    font-size: 2em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 20px;
}

.wallet-account-widget .btn {
    margin: 5px;
}

/* Gift card display styles */
.gift-card-confirmation {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
}

.gift-card-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
}

.gift-card-code {
    font-family: monospace;
    font-size: 1.3em;
    background: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin: 10px 0;
}

/* Gift card design preview */
.gift-card-design-preview {
    max-width: 300px;
    margin: 10px 0;
}

.gift-card-design-preview img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Cart hover wallet payment styles */
.cart-hover-content .wallet-payment {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-hover-content .wallet-payment .label {
    color: #28a745;
    font-weight: 600;
}

.cart-hover-content .wallet-payment .value {
    color: #28a745;
    font-weight: 600;
}

.cart-hover-content .balance-to-pay {
    border-top: 2px solid #333;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-hover-content .balance-to-pay .label {
    font-weight: bold;
    text-transform: uppercase;
}

.cart-hover-content .balance-to-pay .value {
    font-weight: bold;
    font-size: 1.1em;
}