
body {
  background-color: #b7551c;
  color: #ededed;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.shop-template {
  padding: 0;
  margin: 0;
}

.template-content {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Image column */
.template-image {
  flex: 1 1 50%;
  background-image: url('/images/layouts/shop/blanket.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.template-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0;
}

/* Text column */
.template-details {
  background-color: #b7551c;
  flex: 1 1 50%;
  max-width: 600px;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* optional: keeps inner content centered horizontally too */
  text-align: center;
}

.template-details h1 {
  font-family: 'Homemade Apple', cursive;
  font-size: 3.7rem;
  color: #cdf1e1;
  font-weight: 300;
}

.template-details h3 {
  font-size: 1.7rem;
  color: #cdf1ea;
  text-transform: uppercase;
}

.template-details h4 {
  margin: .25rem 0;
  font-size: 1.25rem;
  color: #45d5c2;
  font-style: italic;
  text-transform: uppercase;
}

.template-details .tagline {
  font-style: italic;
  font-weight: 500;
}

.crafted-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  color: #45d5c2;
  padding-top: 10px;
  margin-bottom: 1.5rem;
}

.crafted-by img {
  width: 20%;
  height: auto;
  border-radius: 50%;
}

.template-details h2,
.template-details h3,
.template-details h4,
.contact-link,
.contact-button {
  margin-bottom: 2.5rem;
}

.contact-link {
  margin-top: 1rem;
  font-size: 1rem;
  color: #ededed;
  font-weight: 600;
}
.contact-link:hover {
  color: #ededed;
}

.email-link {
  margin-top: 1rem;
  font-size: 1rem;
  color: #45d5c2;
  font-weight: 500;
}
.email-link:hover {
  color: #ededed;
}

/* Unified button styles */
.button {
  display: inline-block;
  background-color: #62f6e1;
  color: #222;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  background-color: #45d5c2;
  transform: scale(1.05);
}

/* Optional: if you want to slightly separate the button area */
.button-group.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

/* Responsive stack */
@media (max-width: 768px) {
  .template-content {
    flex-direction: column;
    text-align: center;
  }

  .template-details {
    padding: 2rem 1rem;
  }

  .crafted-by {
    flex-direction: column;
  }
}