.product-page {
  padding: 10px 0 90px;
}

.product-frame {
  max-width: 560px;
  margin: 0 auto;
}

.product-hero {
  position: relative;
  padding: 12px 12px 0;
}

.product-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.product-hero-actions {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.product-hero-actions .icon-btn {
  pointer-events: auto;
}

.product-hero-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn.light {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #2b2b2b;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.12);
  font-size: 16px;
}

.detail {
  margin: -24px 12px 0;
}

.detail p {
  color: #5f6065;
  font-size: 13px;
  line-height: 1.5;
}

.detail .meta {
  align-items: center;
}

.detail .price {
  font-size: 20px;
}

.actions .btn.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (min-width: 1024px) {
  .product-page {
    padding-top: 24px;
  }

  .product-frame {
    max-width: 1120px;
    display: grid;
    grid-template-columns: minmax(420px, 1.1fr) minmax(360px, 0.9fr);
    gap: 28px;
    align-items: start;
  }

  .product-hero {
    padding: 0 0 0 16px;
  }

  .product-hero img {
    height: 520px;
    border-radius: 22px;
  }

  .product-hero-actions {
    top: 14px;
    left: 30px;
    right: 30px;
  }

  .detail {
    margin: 0;
    padding: 18px 16px 0 0;
    border-radius: 0;
    box-shadow: none;
  }

  .detail h2 {
    font-size: 26px;
  }

  .detail p {
    font-size: 14px;
  }

  .actions {
    grid-template-columns: 1fr 1fr;
  }
}
