/* Subpage styles */
.page-content {
  padding: 2.5rem 0 4rem;
  min-height: 50vh;
}
.page-content h1 {
  font-size: 2rem;
  color: #127f7c;
  margin-bottom: 1.5rem;
}
.page-content h2 {
  font-size: 1.4rem;
  color: #222;
  margin: 2rem 0 0.8rem;
}
.page-content h3 {
  font-size: 1.15rem;
  color: #333;
  margin: 1.5rem 0 0.6rem;
}
.page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #444;
}
.page-content ul, .page-content ol {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}
.page-content li {
  margin-bottom: 0.3rem;
  line-height: 1.6;
}
.page-content img {
  border-radius: 6px;
  margin: 1rem 0;
}
.page-content a {
  color: #127f7c;
  text-decoration: underline;
}
.page-content a:hover {
  color: #0e6563;
}
.page-content a.btn {
  color: #fff;
  text-decoration: none;
}
.page-content a.btn.btn-outline {
  color: #127f7c;
}
.page-content a.btn.btn-outline:hover {
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #127f7c;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.2rem;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}
.product-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
}
.product-card .price {
  font-weight: 700;
  color: #127f7c;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.6rem;
}
.product-card .price small {
  font-weight: 400;
  font-size: 0.8rem;
  color: #888;
}
.product-card .add-to-cart {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  margin-top: auto;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card a {
  text-decoration: none;
  color: inherit;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr }
}

/* Content sections with side images */
.content-with-image {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}
.content-with-image img {
  flex: 0 0 300px;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .content-with-image {
    flex-direction: column;
  }
  .content-with-image img { flex: none; width: 100% }
}

/* Subpage footer - flat top, no slant */
.page-content ~ .footer {
  margin-top: 3rem;
}
