body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #0f0f0f;
  color: white;
}

header {
  display: flex;
  align-items: center;
  padding: 15px;
  background: transparent;
  border-bottom: 1px solid #222;
}

header .logo {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

header h1 {
  font-size: 20px;
  font-weight: normal;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px;
}

.card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card:hover {
  transform: scale(1.02);
  transition: 0.2s;
}

.coming-soon {
  font-size: 14px;
  color: #aaa;
}

.coming-soon span {
  text-transform: uppercase;
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-img {
  width: 100%;
  border-radius: 8px;
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
}

.price {
  font-weight: bold;
  margin: 10px 0;
}

.chat-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff3c00;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
.chat-btn:hover {
  background: #e63700;
}
