/* Professional Healthcare Product Page Styles moved to style.css */

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fbff 60%, #eaf4fa 100%);
  min-height: 100vh;
}
.medical-product-page {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, #f8fbff 60%, #eaf4fa 100%);
}
.sticky-image-card {
  flex: 0 0 45%;
  position: sticky;
  top: 3.5rem;
  height: fit-content;
  z-index: 2;
}
.scrollable-content {
  flex: 1 1 55%;
  flex: 1 1 540px;
  min-width: 340px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.image-card {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 16px 48px 0 rgba(45,93,161,0.18);
  border-left: 12px solid #2d5da1;
  padding: 3rem 3rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 480px;
  max-width: 600px;
}
.product-photo {
  width: 100%;
  max-width: 520px;
  max-height: 420px;
  object-fit: contain;
  border-radius: 1.5rem;
  box-shadow: 0 16px 48px 0 rgba(49,177,225,0.22);
  background: #f4f8fc;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.image-card:hover .product-photo {
  box-shadow: 0 24px 64px 0 rgba(49,177,225,0.28);
  transform: scale(1.03);
}
.image-caption {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d5da1;
  text-align: left;
  margin-top: 0.2rem;
  letter-spacing: -0.5px;
}
.content-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 8px 32px 0 rgba(45,93,161,0.13);
  margin-bottom: 0.5rem;
  min-width: 320px;
  max-width: 700px;
  position: relative;
}
.card-accent {
  width: 8px;
  background: #e52730;
  border-radius: 1.3rem 0 0 1.3rem;
  margin-right: 0.5rem;
}
.card-body {
  padding: 2rem 2rem 1.7rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2d5da1;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
}
.card-subheader {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2d5da1;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-description {
  font-size: 1.13rem;
  color: #2d3a4a;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.1rem;
  margin-top: 0.5rem;
}
.strength-box {
  background: linear-gradient(120deg, #f7fafd 80%, #eaf4fa 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 16px 0 rgba(49,177,225,0.10);
  padding: 1.1rem 1.2rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 160px;
  border-left: 4px solid #2d5da1;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.strength-box:hover {
  box-shadow: 0 8px 32px 0 rgba(49,177,225,0.18);
  border-left: 4px solid #e52730;
  transform: translateY(-4px) scale(1.03);
}
.strength-icon {
  font-size: 1.5rem;
  color: #2d5da1;
  margin-bottom: 0.2rem;
}
.strength-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2d5da1;
}
.strength-desc {
  font-size: 1.03rem;
  color: #2d3a4a;
  font-weight: 500;
}
.applications-list-med {
  margin: 0.5rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.applications-list-med li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1.05rem;
  color: #2d3a4a;
}
.applications-list-med li:before {
  content: '';
  position: absolute;
  left: 0.3rem;
  top: 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  background: #e52730;
  border-radius: 50%;
  opacity: 0.7;
}
@media (max-width: 1100px) {
  .medical-product-page {
    flex-direction: column;
    min-height: unset;
    gap: 1.7rem;
    padding: 2.5rem 0.5rem;
  }
  .sticky-image-card, .scrollable-content {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .medical-product-page {
    flex-direction: column;
    min-height: unset;
    gap: 1.2rem;
    padding: 1.2rem 0.2rem;
  }
  .sticky-image-card, .scrollable-content {
    padding: 0;
    border-radius: 1rem;
  }
  .card-title {
    font-size: 1.3rem;
  }
}
