:root {
	--btnAmount: #faf5ff;
	--btnAmountBorder: #e9d5ff;
	--btnAmountHover: #f3e8ff;
	--btnAmountHoverBordar: #d8b4fe;
	--txtMob: #f0f8ff;
	--txtMobBorder: #7aa4dd;
	--txtMobHover: #7aa4dd;
	--txtMobHoverBorder: #ddefff;
}


body {
    background: #f3f4f6;
    margin: 0;
    font-family: "Vazirmatn", sans-serif;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.container {
    width: 430px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.amount-input,
.input,
.textarea {
    background: var(--txtMob);
    border: 2px solid var(--txtMobBorder);
    font-family: "Vazirmatn", sans-serif !important;
}


.label-title {
    margin: 25px 0 10px;
    font-size: 14px;
    color: #666;
}

.amount-box label {
    font-size: 14px;
    margin-bottom: 25px;
}

.amount-input {
    padding: 12px;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
}

.suggestions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.suggestions .item {
    padding: 12px 0;
    text-align: center;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    border: 2px solid var(--btnAmountBorder);
	background-color:var(--btnAmount);
    color: #7d2ae8;
    transition: 0.2s;
}

.suggestions .item:hover {
    background: #f3e6ff;
}

.guest {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.field-title {
    margin-top: 18px;
    font-size: 14px;
}

.required span {
    color: red;
    font-size: 12px;
}

.input, .textarea {
    width: 92%;
    padding: 12px 12px;
    border-radius: 12px;
    margin-top: 6px;
    outline: none;
    font-family: "Vazirmatn", sans-serif !important;
    font-size: 15px;
}

.textarea {
    height: 90px;
    resize: none;
    font-family: "Vazirmatn", sans-serif !important;
}

.error {
    font-size: 12px;
    color: red;
    margin-top: 4px;
    margin-bottom: 20px;
}

.btn {
    width: 98%;
    margin-top: 25px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #0061ff, #00a2ff);
    color: white;
    font-family: "Vazirmatn", sans-serif !important;
    font-size: 17px;
    cursor: pointer;
    opacity: 0.5;
}

.btn.enabled {
    opacity: 1;
}

.btn:disabled {
    cursor: not-allowed;
}

/* ریسپانسیو — کمتر از 650 پیکسل → دکمه‌ها ۲×۲ */
@media (max-width: 650px) {
    .suggestions {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        width: 90%;
        padding: 50px;
    }
}

.amount-wrapper {
    position: relative;
    width: 100%;
}

.amount-input {
    width: 100%;
    padding-left: 55px; /* جا برای کلمه ریال */
    box-sizing: border-box;
}

.currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #555;
    pointer-events: none; /* قابل کلیک نباشد */
}

