/* 钱包地址字段样式 */
.wallet-address-field {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.wallet-address-field h3 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.wallet-address-field .form-row {
    margin-bottom: 15px;
}

.wallet-address-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.wallet-address-field .input-text {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transition: border-color 0.3s;
}

.wallet-address-field .input-text:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,124,186,0.2);
}

.wallet-address-field small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.wallet-address-field .validation-section {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.wallet-address-field .validation-section h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
}

/* 购物车和订单中的地址显示 */
.cart_item .wallet-address,
.order_item .wallet-address {
    margin-top: 10px;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 3px;
}

.cart_item .wallet-address strong,
.order_item .wallet-address strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
}

.cart_item .wallet-address code,
.order_item .wallet-address code {
    display: block;
    padding: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

/* 短代码样式 */
.wallet-input-shortcode {
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    margin: 10px 0;
}

.wallet-input-shortcode h4 {
    margin-top: 0;
    color: #333;
}
/* ETH购买选项样式 */
.att-eth-purchase-field {
    margin-bottom: 20px;
    padding: 15px;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 6px;
}

.att-eth-purchase-field h4 {
    margin: 0 0 10px 0;
    color: #613400;
    font-size: 16px;
}

.att-eth-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* 价格计算样式 */
#att_price_calculation {
    margin-top: 20px;
    padding: 15px;
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 6px;
}

#att_price_calculation h4 {
    margin: 0 0 10px 0;
    color: #003a8c;
    font-size: 15px;
}

/* 购物车中ETH选项显示 */
.wc-item-meta .eth-purchase {
    color: #d48806;
    font-weight: 600;
}