.elementor-3605 .elementor-element.elementor-element-163aef15{padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-41382de *//* الحاوية الأساسية للعداد */
.raz-qty-control {
    display: inline-flex;
    align-items: center;
    gap: 15px; /* مسافة بين العناصر */
    background: #fff0f3; /* خلفية بينك فاتحة جداً */
    padding: 8px 15px;
    border-radius: 100px;
    border: 2px solid #ff85a2;
}

/* الأزرار (الزائد والناقص) - هنا السر في شكل الدايرة */
.raz-qty-control button {
    width: 35px; /* عرض ثابت */
    height: 35px; /* نفس الطول بالظبط عشان تبقى دايرة */
    padding: 0;   /* شيل أي بادينج قديم مبوظ الشكل */
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-color: #ff85a2;
    color: white;
    border: none;
    border-radius: 50%; /* دايرة مثالية */
    
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 133, 162, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* تأثير الحركة عند الضغط */
.raz-qty-control button:active {
    transform: scale(0.9);
}

.raz-qty-control button:hover {
    background-color: #ff4d7d;
    box-shadow: 0 6px 15px rgba(255, 77, 125, 0.4);
}

/* تنسيق الرقم في النص */
.raz-qty-control input[type="number"] {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #ff4d7d;
    outline: none;
    appearance: none;
    -moz-appearance: textfield;
}

/* إخفاء أسهم المتصفح الرخمة */
.raz-qty-control input::-webkit-outer-spin-button,
.raz-qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}/* End custom CSS */