.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 2px solid #4e4e4e;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  border-radius: 10px;
  padding: 20px;
  background-color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFFF00;
}

.product-description {
  font-size: 16px;
  color: #FFFFFF;
}

.store-container {
  max-width: 800px;
  margin: 0 auto;
}

.store-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFFF00;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.store-button:hover {
  background-color: #FF0000;
  color: #FFFFFF;
}

.special-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.special-card::after {
  content: "-70%";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 30px;
  background-color: #FF0000;
  color: #FFFFFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-card::before {
  content: "+200 бонус";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 30px;
  background-color: #FFFF00;
  color: #000000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-section {
  background-color: #000000;
  color: #FFFF00;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.battle-pass {
  color: rgb(255, 0, 255);
}

.cart-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.cart-items li {
  margin-bottom: 5px;
}

.cart-total {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.checkout-button {
  display: block;
  padding: 10px 20px;
  background-color: #ffff00;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
  text-align: center;
}

.checkout-button:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.delete-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.delete-button:hover {
  background-color: #990000;
}

.delete-button:active {
  transform: scale(0.95);
}

.delete-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ff0000;
}

/*--------------------------*/
/*СТИЛИ ДЛЯ ПОИСКА ПОЛЬЗОВАТЕЛЕЙ ПО ID*/
/*--------------------------*/
/* Стиль для секции user-profile */
.user-profile {
  padding: 20px;
  background-color: #000;
  border: 1px solid #fff;
  margin: 20px auto;
  max-width: 500px;
}

.userlogin-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #FFFF00;
  font-size: 24px;
  text-transform: uppercase;
}

.user-search-form {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.username-input {
  padding: 12px;
  border: 2px solid #FFFF00;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.username-input:focus {
  border-color: #fff;
}

.search-button {
  background-color: #FFFF00;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: 100%;
  box-sizing: border-box;
}

.search-button:hover {
  background-color: #000;
  color: #FFFF00;
}

.search-result {
  margin-top: 20px;
  text-align: center;
}

.search-result p {
  color: #FFFF00;
  margin-bottom: 10px;
  font-size: 18px;
}

.store-button {
  background-color: #ffcc00;
  color: #000;
  padding: 8px 16px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.store-button:hover {
  background-color: #000000;
  color: #ffcc00;
}