/* Single product display page - image, tag, title, description only */
.product-single {
  max-width: 720px;
  margin: 120px auto 80px;
  padding: 0 24px;
  text-align: center;
}
.product-single__image {
  margin-bottom: 1.5rem;
}
.product-single__image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.product-single__tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary, #1a5f7a);
  margin-bottom: 0.75rem;
}
.product-single__title {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.product-single__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #444;
}
.product-single__back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--brand-primary, #1a5f7a);
  text-decoration: none;
}
.product-single__back:hover {
  text-decoration: underline;
}
footer {
  background-color: #100C0B;
}

footer a{
  color:#fff;
}
