 .btn-easy-buy {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 8px 18px;
     background: linear-gradient(145deg, #B22222, #8B0000);
     color: white;
     text-decoration: none;
     border-radius: 8px;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 4px 20px rgba(178, 34, 34, 0.4);
     border: none;
     cursor: pointer;
 }

     /* Hover Effect */
     .btn-easy-buy:hover {
         background: linear-gradient(145deg, #8B0000, #B22222);
         transform: translateY(-3px) scale(1.05);
         box-shadow: 0 8px 30px rgba(178, 34, 34, 0.6);
         color: white;
     }

     /* Active Effect */
     .btn-easy-buy:active {
         transform: translateY(-1px) scale(1.02);
         box-shadow: 0 4px 15px rgba(178, 34, 34, 0.4);
     }

     /* آیکن */
     .btn-easy-buy i {
         font-size: 20px;
         transition: transform 0.3s ease;
     }

     /* انیمیشن آیکن در Hover */
     .btn-easy-buy:hover i {
         transform: rotate(15deg) scale(1.2);
     }

  
 @keyframes pulse {
     0%

 {
     transform: rotate(20deg) scale(1.3);
 }

 50% {
     transform: rotate(20deg) scale(1.15);
 }

 100% {
     transform: rotate(20deg) scale(1.3);
 }

 }

 .add-to-cart-panel {
     display:none !important;
 }
 .overview-buttons {
     display:none !important;
 }
.buttons-upper {
    display: none !important;
}
.buttons-lower {
    display: none !important;
}