body {
  margin: 0;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  background: linear-gradient(120deg, #f3f7f0 0%, #faf9f6 100%);
  color: #222;
}
.LISSHOIMAH-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(58,125,68,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.company-logo {
  width: 180px;
  height: 60px;
  background-image: url('img/company-logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.LISSHOIMAH-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.LISSHOIMAH-nav a {
  text-decoration: none;
  color: #3A7D44;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.LISSHOIMAH-nav a.active, .LISSHOIMAH-nav a:hover {
  background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
  color: #fff;
}
.LISSHOIMAH-breadcrumbs {
  max-width: 1200px;
  margin: 32px auto 0 auto;
  padding: 0 40px;
  font-size: 15px;
  color: #888;
  letter-spacing: 0.5px;
}
.LISSHOIMAH-breadcrumbs a {
  color: #3A7D44;
  text-decoration: none;
  transition: color 0.2s;
}
.LISSHOIMAH-breadcrumbs a:hover {
  color: #FFB347;
}
.LISSHOIMAH-section {
  max-width: 1200px;
  margin: 64px auto 0 auto;
  padding: 0 40px;
}
.LISSHOIMAH-product-detail-main {
  margin-top: 32px;
}
.LISSHOIMAH-product-detail-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 36px;
  /* box-shadow: 0 8px 32px rgba(58,125,68,0.10); */
  width: 100%;
  overflow: hidden;
  min-height: 220px;
  padding: 0;
}
.LISSHOIMAH-product-detail-img {
  width: 340px;
  height: 420px;
  /* object-fit: cover; */
  /* border-radius: 0 0 36px 0; */
  /* box-shadow: 0 4px 24px rgba(58,125,68,0.10); */
}
.LISSHOIMAH-product-detail-content {
  flex: 1 1 0;
  padding: 40px 48px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.LISSHOIMAH-product-detail-title {
  font-size: 30px;
  font-weight: 900;
  color: #3A7D44;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}
.LISSHOIMAH-product-detail-desc {
  font-size: 17px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
}
.LISSHOIMAH-product-detail-specs {
  margin-bottom: 18px;
}
.LISSHOIMAH-product-detail-spec-title {
  font-size: 16px;
  color: #3A7D44;
  font-weight: 700;
  margin-bottom: 6px;
}
.LISSHOIMAH-product-detail-specs ul {
  margin: 0 0 0 18px;
  padding: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.LISSHOIMAH-product-detail-price {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #3A7D44;
  display: flex;
  align-items: center;
  gap: 10px;
}
.LISSHOIMAH-product-detail-price-label {
  color: #888;
  font-size: 16px;
  font-weight: 600;
}
.LISSHOIMAH-product-detail-price-value {
  color: #FFB347;
  font-size: 22px;
  font-weight: 900;
}
.LISSHOIMAH-btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #3A7D44 60%, #FFB347 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(58,125,68,0.10);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  width: fit-content;
}
.LISSHOIMAH-btn-primary:hover {
  background: linear-gradient(90deg, #FFB347 60%, #3A7D44 100%);
  transform: translateY(-2px) scale(1.04);
}
/* 页脚样式与首页一致 */
.LISSHOIMAH-footer {
  background: linear-gradient(90deg, #f3f7f0 60%, #e6f4ea 100%);
  border-top: 1px solid #e6e6e6;
  margin-top: 64px;
  padding: 0;
}
.LISSHOIMAH-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 24px 40px;
  gap: 48px;
}
.LISSHOIMAH-footer-col {
  flex: 1 1 0;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.LISSHOIMAH-footer-brand {
  align-items: flex-start;
}
.LISSHOIMAH-footer-desc {
  color: #3A7D44;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.LISSHOIMAH-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #3A7D44;
  margin-bottom: 16px;
}
.LISSHOIMAH-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.LISSHOIMAH-footer-nav a {
  color: #444;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.LISSHOIMAH-footer-nav a:hover {
  color: #3A7D44;
}
.LISSHOIMAH-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.LISSHOIMAH-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3A7D44;
  font-size: 15px;
}
.LISSHOIMAH-footer-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F7F0;
  margin-right: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.LISSHOIMAH-footer-icon-svg svg {
  width: 22px;
  height: 22px;
  display: block;
}
.LISSHOIMAH-footer-icon-svg:hover, .LISSHOIMAH-footer-social a:hover {
  background: #FFB347;
  box-shadow: 0 2px 8px rgba(255,179,71,0.10);
}
.LISSHOIMAH-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.LISSHOIMAH-footer-social a {
  text-decoration: none;
}
.LISSHOIMAH-footer-divider {
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  margin: 0 auto;
}
.LISSHOIMAH-footer-copyright {
  color: #888;
  font-size: 15px;
  text-align: center;
  padding: 18px 0 12px 0;
}
@media (max-width: 900px) {
  .LISSHOIMAH-header-wrapper {
    flex-direction: column;
    height: auto;
    padding: 0 16px;
  }
  .LISSHOIMAH-nav ul {
    gap: 18px;
  }
  .LISSHOIMAH-breadcrumbs {
    padding: 0 8px;
  }
  .LISSHOIMAH-section {
    padding: 0 8px;
  }
  .LISSHOIMAH-product-detail-card {
    flex-direction: column;
    min-height: unset;
  }
  .LISSHOIMAH-product-detail-img {
    width: 100%;
    height: 180px;
    border-radius: 0;
  }
  .LISSHOIMAH-product-detail-content {
    padding: 24px 16px 16px 16px;
  }
  .LISSHOIMAH-footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 8px 16px 8px;
  }
  .LISSHOIMAH-footer-col {
    min-width: 0;
    align-items: flex-start;
  }
  .LISSHOIMAH-footer-social {
    margin-bottom: 8px;
  }
} 