/* Product Modal Styles */

.modal__content--product {
  max-width: 800px;
  width: 95%;
  padding: 0;
  overflow: hidden;
}

.product-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.product-modal__image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f7f4 0%, #fff5e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-modal__title {
  font-size: 28px;
  font-family: var(--font-display);
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.2;
}

.product-modal__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.product-modal__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #f9f7f4;
  border-radius: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.detail-label {
  font-weight: 600;
  color: #666;
}

.detail-value {
  color: var(--secondary-color);
  font-weight: 500;
}

.product-modal__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-display);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal__content--product {
    max-width: 95%;
    margin: 10px auto;
  }

  .product-modal {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .product-modal__image {
    height: 280px;
  }

  .product-modal__title {
    font-size: 22px;
  }

  .product-modal__desc {
    font-size: 14px;
  }

  .product-modal__price {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .product-modal {
    padding: 16px;
    gap: 16px;
  }

  .product-modal__image {
    height: 220px;
  }

  .product-modal__title {
    font-size: 20px;
  }

  .product-modal__details {
    padding: 16px;
    gap: 8px;
  }

  .detail-row {
    font-size: 14px;
  }

  .product-modal__price {
    font-size: 24px;
  }
}
