/** Shopify CDN: Minification failed

Line 30:8 Unexpected "{"
Line 30:17 Expected ":"

**/
/* === 产品页整体背景，建议用一个浅色替换原本的深绿色 === */
.product-template__layout {
  background-color: #f3f9f6 !important; /* 柔和浅绿色背景，可自行改成白色 #fff 或其它 */
  padding: 20px; /* 给页面四周留点空隙，避免紧贴边缘 */
}

/* === 商品外部容器：可让其居中、留白、加阴影等 === */
.product-template__container {
  background-color: #ffffff;   /* 中心区域白色背景 */
  border-radius: 10px;        /* 四角圆润 */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* 淡淡的阴影 */
  padding: 20px;
}

/* === 标题的配色与排版，避免在绿色背景上太暗淡 === */
.product-template__title {
  color: #2f4f2f; /* 深一些的墨绿色文字，可根据喜好修改 */
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

/* === 价格区块，可以让字体更大、更突出 === */
#price-{{ section.id }} .price--large {
  font-size: 22px;
  color: #1a3d1a; /* 比标题略深一点的颜色 */
}

/* === 产品描述文字，让它更舒适易读 === */
.product-template__description {
  font-size: 15px;
  line-height: 1.8;
  color: #444;  /* 避免太淡，可用接近黑色 */
  margin-top: 20px;
}

/* === 如果想修改输入框、按钮等细节，也可追加以下示例 === */

/* 按钮美化 */
.product-form__buttons .button--primary {
  background-color: #4da870;   /* 绿色主色按钮 */
  border-color: #4da870;
  color: #fff;
  transition: background-color 0.3s ease;
}
.product-form__buttons .button--primary:hover {
  background-color: #3f8b5e;
  border-color: #3f8b5e;
}

/* 输入框美化（数量输入、文本框等） */
.quantity__input,
.product-form__input select,
.product-form__input input[type="text"],
.product-form__input input[type="email"],
.product-form__input input[type="number"] {
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
}
