.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
  }

  .notification.show {
    opacity: 1;
    transform: translateY(0);
  }

  .notification.success {
    background-color: #4caf50;
  }
  
  .notification.error {
    background-color: #f44336;
  }
  
  .notification.info {
    background-color: #2196f3;
  }
  
  .notification.warning {
    background-color: #ff9800;
  }
  /* Адаптивные изображения */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Кнопки */
  a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  a.button:hover {
    background-color: #1e3a8a;
  }
  
  /* Карточки товаров */
  .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }    

