		.img-hoodie {
		  max-width: 35%;
		  height: auto;
		}
		
		.price {
		  font-size: 1.2rem;
		}
		
		.price-2 {
		  border: 1px solid #c4c4c4;
          display: inline-block;
          padding: 5px 20px 8px 20px;
          border-radius: 5px; /* Закругленные углы */
          font-size: 14px;
          font-weight: bold;
		  text-transform: uppercase;
		  background-color: rgba(250, 245, 221, 0.35);
		}
		
.flex-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
	margin-top: 10px;
}
		
		.list {
		  margin-left: 35px;
		}
		
		ul {
            list-style: none;
            padding: 0;
        }

        li {
            background: #;
            color: #333;
            padding: px;
            margin: 5px 0;
            border-radius: 5px;
            position: relative;
        }

        .border {

        }
		
		.role {
		  margin-left: 50%;
		}
		
		.ok {
		  font-size: 16px;
		  text-transform: uppercase;
		  margin-bottom: 0px;
		}
		
		.ticket {
		  font-size: 18px;
		  text-transform: uppercase;
		}
		
		.buy {
    display: inline-block;
    padding: 5px 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    border: 1px solid;
	border-radius: 5px;
    background: #333;
		}
		
		.buy:hover {
	transform: scale(1.05);
	cursor: pointer;
		}
		

		.real-world {
		  font-size: 14px;
		  text-transform: uppercase;
		  margin-top: 50px;
		}
		
.mobile-text {
  display: none; /* По умолчанию скрыто на десктопе */
}

@media (max-width: 768px) { /* Для мобильных устройств */
  .desktop-text {
    display: none;
  }
  .mobile-text {
    display: inline;
  }
}