p, pre {
    margin: 0;
    text-align: center;
}




/*-----------لعلامة الواتس ------------------*/
.wa-selia {
    width: 50px;
    height: 50px;
    background-color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sm-shake 2s infinite, waves-whatsapp 3s linear infinite; /*   تطبيق تأثير الموجة والاهتزاز بشكل دايما */
    transition: background-color 0.2s; /* لتغيير اللون بسهوله*/ 
}

@keyframes sm-shake {
    0%  { transform: rotate(0) scale(1) skew(0.017rad); }
    25% { transform: rotate(0) scale(1) skew(0.017rad); }
    35% { transform: rotate(-0.3rad) scale(1) skew(0.017rad); }
    45% { transform: rotate(0.3rad) scale(1) skew(0.017rad); }
    55% { transform: rotate(-0.3rad) scale(1) skew(0.017rad); }
    65% { transform: rotate(0.3rad) scale(1) skew(0.017rad); }
    75% { transform: rotate(0) scale(1) skew(0.017rad); }
    100% { transform: rotate(0) scale(1) skew(0.017rad); }
}

@keyframes waves-whatsapp {
  0% {
    box-shadow: 0 8px 10px rgba(34, 197, 94, 0.3), 0 0 0 0 rgba(34, 197, 94, 0.2), 0 0 0 0 rgba(34, 197, 94, 0.2);
  }
  40% {
    box-shadow: 0 8px 10px rgba(34, 197, 94, 0.3), 0 0 0 35px rgba(34, 197, 94, 0.2), 0 0 0 0 rgba(34, 197, 94, 0.2);
  }
  80% {
    box-shadow: 0 8px 10px rgba(34, 197, 94, 0.3), 0 0 0 55px rgba(34, 197, 94, 0), 0 0 0 26.7px rgba(34, 197, 94, 0.067);
  }
  100% {
    box-shadow: 0 8px 10px rgba(34, 197, 94, 0.3), 0 0 0 80px rgba(34, 197, 94, 0), 0 0 0 40px rgba(34, 197, 94, 0.0);
  }
}

  /*-------------للخط الفاصل-----------*/
.enhanced-title-border {
  display: none;
  }
 
 
/*-------------لبطاقة المنتج------------------*/
.product-card--primary-buttons button{
    background-color: #000 ; 
    color: #faeacd !important; 
    border-color: #000 !important;
    border-radius: 10px; 
    border: none;
   

}

.product-card--primary-buttons button i.sicon-shopping {
    color: #faeacd !important; 
}

.product-card--primary-buttons button:hover {
    background-color: #d2a63f; 
    color: #fff !important; 
}

/* تغيير لون الأيقونة عند التمرير */
.product-card--primary-buttons button:hover i.sicon-shopping {
    color: #fff !important; 
}

.s-button-outline{   
    border-radius: 10px;
    border:2px solid #000;
    
    
}

/*------------------النافذة المنثقبة--------*/

.fixed-button {
    display: block;
    position: fixed;
    height: 33px;
    cursor: pointer;
    font-family: "Open Sans";
    font-size: 18px;
    padding-block: 0.5em;
    padding-inline: 1em;
    background:#e9bb48;
    bottom: 0px;
    left: 50%;
    border-radius: 4px 4px 0px 0px;
    transform: translateX(-50%);
    z-index: 1000;
}

.fixed-button:hover {
    background-color: #e8c56e; 
    color: #000; 
}


.popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}


.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}



.whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #616161;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content .close-btn:hover {
    color: #e74c3c;
}

.whatsapp-link:hover {
    background-color: #444; 
    color: #fff; 
}

 .popup-content h2 {
    margin: 15px 0; /* مسافة بين النصوص */
}

.popup-content img {
    margin-bottom: 15px; /* مسافة تحت الصورة */
}
 /*-------------اشعارات----------------------*/
 
.notification {
    position: fixed;
    top: 20px;  
    left: 20px; 
    width: 300px; 
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    border: 2px solid #000;
}

.notification img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.notification .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.notification .title {
    font-size: 16px;
    font-weight: bold;
    color:#000;
}

.notification .time,
.notification .footer {
    font-size: 14px;
    color: #666;
}

.notification .close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    margin-left: auto;
    top: 1px;
    right: 5px;
 
}
/*---------------للوقو في الاعلى-----*/
.navbar-brand img.logo-normal {
    max-height: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    width: auto !important;
}
@media (max-width: 768px) {
  .navbar-brand img.logo-normal {
    max-height: 220px !important;
    max-width: 150px !important;
    height: auto !important;
    width: auto !important;
}
  }
/*---------------لأسفل الصفحة--------*/
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #000000;
}

.footer-is-custom .store-footer .store-footer__inner, .footer-is-custom .store-footer .store-footer__contacts-row, .footer-is-custom .store-footer .store-footer__newsletter {
    background-color: var(--footer-bg);
    --tw-border-opacity: 1;
    border-bottom-color: rgb(0 0 0);
}



/*---------------------للنجوم--------------*/
/* أنماط النجوم */
.product-rating {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
}

.star {
  font-size: 2em;
  color: #fbbf24; /* لون النجوم */
  margin-right: 5px;
}


.rating-count {
  font-size: 1.3em;
  color: #333;
  margin-right: 10px;
  
  }
  
@media (max-width: 460px) {
  .rating-count {
    font-size: 1rem;
  }
  .star {
  font-size: 1.5em;
  color: #fbbf24; 
  margin-right: 5px;
}
}

.s-rating-stars-wrapper{
display: none;
}

/*-------------------اراء العملاء--------------*/
.shadow-\[rgba\(50\2c _50\2c _105\2c _0\.15\)_0px_2px_5px_0px\2c _rgba\(0\2c _0\2c _0\2c _0\.05\)_0px_1px_1px_0px\] {
    
    background-color: #f6f5f5;
    border: 1px #000 solid;
}


/*------------اهم الاسئلة--------------*/
.s-block--faq,.s-block--custom-reviews,.special-product.has-bg,.s-block--testimonials.enhanced{
margin-top: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        padding: 15px 15px 8px;
       
    }
    }
    
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 13px;
    background: rgba(195 193 193 / 53%);
   
}
.text-store-text-secondary {
   
    border: none;
}

.single-faq {
    border: 3px solid transparent; 
    border-right: 3px solid #636363; 
    transition: all 0.3s ease-in-out; 


.single-faq.open {
    border: 3px solid #c3c1c1;
}