.aqua-theme {
    font-family: tahoma, sans-serif; /* یا فونت قالب */
    max-width: 600px;
    margin: 0 auto;
    direction: rtl;
}

.aqua-calc-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #cbebff 100%);
    border: 1px solid #bce0fd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.aqua-calc-box h3 {
    text-align: center;
    color: #0277bd;
    margin-bottom: 20px;
    font-size: 22px;
}

.aqua-section {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.aqua-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}

.aqua-dims-inputs {
    display: flex;
    gap: 10px;
}

.aqua-dims-inputs input {
    width: 33%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.aqua-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.aqua-radio-group label {
    font-weight: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-error {
    border: 2px solid #ff4d4d !important;
    border-radius: 5px;
    padding: 5px;
}

.aqua-btn, .aqua-btn-success, .aqua-btn-confirm {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.aqua-btn {
    background: #0288d1;
    color: #fff;
}
.aqua-btn:hover { background: #0277bd; }

.aqua-btn-success {
    background: #2e7d32; /* سبز تیره */
    color: #fff;
    margin-left: 10px;
    flex: 1;
}
.aqua-btn-success:hover { background: #1b5e20; }

.aqua-btn-confirm {
    background: #009688;
    color: #fff;
    margin-top: 15px;
}

#aqua-result-box {
    margin-top: 20px;
    background: #e0f2f1;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-display {
    font-size: 18px;
    color: #00695c;
    font-weight: bold;
}

/* Modal Styles */
.aqua-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.aqua-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.aqua-close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.form-row { margin-bottom: 15px; }
.form-row input[type=text],
.form-row input[type=tel],
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.bank-card-ui {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}
.bank-title { font-size: 12px; opacity: 0.8; margin-bottom: 5px; }
.card-number { font-size: 22px; margin: 10px 0; font-family: monospace; direction: ltr; }
.card-details { display: flex; justify-content: space-between; font-size: 12px; opacity: 0.9; }

.success-content { text-align: center; }
.checkmark-circle { width: 50px; height: 50px; margin: 0 auto 20px; }
/* CSS for checkmark animation can be added here for extra flair */

/* --- استایل طرح کارت بانکی --- */

/* کانتینر اصلی شبیه کارت بانکی */
.aqua-bank-info-container {
    /* گرادینت سرمه‌ای به آبی روشن (طرح مدرن بانکی) */
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 15px; /* گوشه‌های گرد کارت */
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.4); /* سایه نرم و زیبا */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* افکت نورانی روی کارت (اختیاری برای زیبایی بیشتر) */
.aqua-bank-info-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* عنوان "اطلاعات واریز" */
.aqua-bank-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9); /* سفید مات */
    font-weight: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ردیف‌های اطلاعات (حالت شیشه‌ای) */
.aqua-bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2); /* پس‌زمینه تیره و شفاف */
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.aqua-bank-label {
    font-size: 13px;
    color: #e0e0e0; /* خاکستری خیلی روشن */
    font-weight: normal;
}

/* نگهدارنده عدد و دکمه */
.aqua-bank-value-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.aqua-bank-value {
    font-family: 'Courier New', monospace; /* فونت شبیه کارت بانکی */
    font-size: 19px; /* اعداد بزرگتر */
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* سایه متن برای برجستگی */
    letter-spacing: 2px;
}

.aqua-bank-value.small-font {
    font-size: 14px; /* شبا کمی کوچکتر */
    letter-spacing: 1px;
}

/* دکمه کپی (سفید و شفاف) */
.aqua-copy-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    width: 34px;
    height: 34px;
    position: relative;
}

.aqua-copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.aqua-copy-btn svg {
    stroke: #fff; /* آیکون سفید */
}

/* استایل وقتی کپی شد (سبز روشن) */
.aqua-copy-btn.copied {
    background-color: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 0 10px #4caf50;
}

/* تولتیپ */
.aqua-tooltip {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    pointer-events: none;
    font-family: tahoma;
}
.aqua-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.aqua-copy-btn.copied .aqua-tooltip {
    opacity: 1;
    visibility: visible;
}

/* نام صاحب حساب */
.aqua-bank-owner {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    padding-right: 10px;
    text-transform: uppercase; /* برای زیبایی بیشتر اگر انگلیسی بود */
}
.owner-label {
    font-size: 11px;
    opacity: 0.7;
    margin-left: 5px;
}
.owner-name {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
