/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
.cart-submit-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-primary);
    z-index: 190;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cart-submit {
    width: calc(100% - 30px);
    max-width: 100%;
    margin: 0 auto;
    display: block;
    font-size: 18px;
    height: 40px; /* تم تقليل الارتفاع هنا */
    background-color: var(--color-primary);
    color: var(--bg-primary);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cart-submit:hover {
    background-color: var(--color-primary-dark);
}