#sbcb-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 10px 15px; /* تم تصغير padding */
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; /* تقليل المسافة بين السعر والزر */
    box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    font-family: inherit;
}

#sbcb-sticky-bar.sbcb-hidden {
    transform: translateY(100%);
}

#sbcb-price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px; /* تقليل المسافة بين الملصق والقيمة */
    font-weight: bold;
}

#sbcb-price-label {
    color: #000;
    font-size: 14px; /* تصغير النص */
}

#sbcb-price-container {
    color: #000 !important;
    font-size: 14px; /* تصغير النص */
    font-weight: bold;
}

#sbcb-buy-now {
    padding: 10px 20px; /* تصغير padding الزر */
    font-size: 14px;    /* تصغير النص داخل الزر */
    font-weight: bold;
    border: none;
    border-radius: 12px;
    background: #28a745;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40,167,69,0.4);
    white-space: nowrap; /* يمنع التفاف النص داخل الزر */
}

#sbcb-buy-now:hover {
    background: #218838;
    transform: translateY(-2px);
}

#sbcb-buy-now.loading .sbcb-loader {
    display: inline-block;
}

.sbcb-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* تعديل للشاشات الكبيرة */
@media (min-width: 768px) {
    #sbcb-price-label { font-size: 15px; }
    #sbcb-price-container { font-size: 18px; }
    #sbcb-buy-now { padding: 12px 28px; font-size: 15px; }
}
