.acqs-container {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 60px !important;
    background: transparent !important;
    border-radius: 0 !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif !important;
}

/* wrapper برای چیدمان افقی همه چیز */
.acqs-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 60px !important;
    flex-wrap: nowrap !important;
}

/* هر بخش (رنگ یا تعداد) */
.acqs-section {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
}

/* برچسب‌ها */
.acqs-label {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}

/* ==== بخش تعداد ==== */
.acqs-quantity-controls {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.acqs-qty-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: white !important;
    border: none !important;
    font-size: 24px !important;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* hover/active بدون خراب کردن hitbox */
.acqs-qty-btn:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important; }
.acqs-qty-btn:active { transform: scale(0.96) !important; }

/* ورودی تعداد — غیر قابل ویرایش مستقیم */
.acqs-qty-input {
    min-width: 50px !important;
    font-size: 20px !important; /* سایز عمومی برای ورودی تعداد */
    font-weight: bold !important;
    color: #000 !important;
    background: transparent !important;
    border: none !important;
    pointer-events: none !important;
    text-align: center !important;
    line-height: 1 !important;
}

/* ==== بخش رنگ ==== */
.acqs-color-options {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.acqs-color-wrapper {
    display: inline-flex !important;
}

.acqs-color-button {
    width: 40px !important; /* سایز کوچکتر دکمه رنگ */
    height: 40px !important; /* سایز کوچکتر دکمه رنگ */
    padding: 0 !important;
    border: 2px solid transparent !important; /* حاشیه پیش‌فرض دکمه (شفاف) */
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    background: transparent !important;
    transition: transform 0.12s, box-shadow 0.12s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* hover روی دکمه رنگ (اگر انتخاب نشده) */
.acqs-color-button:hover:not(.acqs-selected) {
    transform: scale(1.06) !important;
}

/* دایره داخلی رنگ — کاملاً گرد */
.acqs-color-circle {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border: 2px solid currentColor !important; /* حاشیه 2 پیکسلی برای دایره داخلی (رنگ خودش) */
}

/* وقتی رنگ انتخاب شده */
.acqs-color-button.acqs-selected {
    /* مرز بیرونی دکمه (نه دایره) برای مشخص کردن انتخاب */
    border: 2px solid #A7AFC31A !important; /* حاشیه 2 پیکسلی با رنگ مشخص شده */
}

/* تیک وسط دایره — همیشه روی دایره و خوانا */
.acqs-color-button.acqs-selected::after {
    content: "✓" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important; /* سایز کوچک تیک */
    font-weight: bold !important;
    color: white !important; /* رنگ سفید برای تیک */
    text-shadow: 0 0 2px rgba(0,0,0,0.4) !important; /* سایه ملایم‌تر برای خوانایی */
    z-index: 2 !important;
    pointer-events: none !important;
}

/* برای رنگ‌های تیره: اطمینان از خوانایی تیک (اگر لازم باشه با JS می‌تونیم رنگ تیک رو تنظیم کنیم) */
.acqs-color-button.acqs-selected[data-dark="1"]::after {
    color: rgba(255,255,255,0.95) !important;
}

/* آیکون unavailable داخل دایره (در صورت نبودن موجودی) */
.acqs-unavailable-icon {
    width: 14px; /* سایز کوچک ضربدر */
    height: 14px; /* سایز کوچک ضربدر */
    fill: none;
    stroke: #D32F2F; /* رنگ قرمز برای ضربدر */
    stroke-width: 2;
}

/* مخفی کردن همه چیز اضافی */
.acqs-color-tooltip,
.acqs-color-name-mobile,
.acqs-max-qty-tooltip,
.acqs-divider {
    display: none !important;
}

/* ==== موبایل — اندازه‌ها کمی کوچکتر ولی همچنان یک خطی تا جای ممکن ==== */
@media (max-width: 768px) {
    .acqs-wrapper {
        flex-direction: column !important;
        gap: 25px !important;
        align-items: flex-start !important;
    }
    .acqs-section {
        gap: 12px !important;
    }
    .acqs-qty-btn,
    .acqs-color-button {
        width: 38px !important; /* سایز دکمه‌ها در موبایل */
        height: 38px !important; /* سایز دکمه‌ها در موبایل */
    }
    .acqs-label {
        font-size: 18px !important; /* سایز عنوان در موبایل */
    }
    .acqs-qty-input {
        font-size: 18px !important; /* سایز ورودی تعداد در موبایل */
    }
}