/* === СТРАНИЦА ПРОДУКТА === */

main {
  padding: 30px;
}

.product-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
}

.product-image img {
  width: 300px;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.product-info {
  flex: 1;
  background: #fffaf0;
  border: 1px solid #e5d3a3;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-info h2 {
  color: #4a2f00;
  border-bottom: 2px solid #dcb37a;
  padding-bottom: 5px;
}

.product-info p {
  margin: 8px 0;
  line-height: 1.5;
}

.product-info strong {
  color: #333;
}

button {
  background-color: #e7be77;
  color: #333;
  font-size: 16px;
  padding: 10px 20px;
  margin: 5% auto;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #dcb37a;
}

/* Галерея */
.gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.gallery img {
    width: 70px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: 0.3s;
}
.gallery img:hover {
    border-color: #d6a556;
}

/* Увеличение (ZOOM) */
#zoomModal {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}
#zoomModal img {
    max-width: 80%;
    max-height: 90%;
    border-radius: 10px;
}
#zoomClose {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.product-image img {
    cursor: zoom-in;
}