/* ========== 枢元堂 PageAdmin CMS - Style CSS ========== */
/* 此文件用于补充 base.css 未覆盖的样式 */
/* 首页所有样式已通过 @section PageCss 内联在 Index.cshtml 中 */
/* 子页面如需额外样式，可在此添加 */

/* 产品详情页 */
.sy-product-detail { padding: 40px 0 80px; }
.sy-product-gallery { border-radius: 16px; overflow: hidden; background: #F5EDE0; }
.sy-product-gallery img { width: 100%; }
.sy-product-info { padding: 20px 0; }
.sy-product-info h1 { font-size: 28px; color: #2C2416; margin-bottom: 12px; }
.sy-product-info .price-tag { font-size: 32px; font-weight: 700; color: #C45A20; margin-bottom: 16px; }
.sy-product-info .price-tag small { font-size: 16px; font-weight: 400; }
.sy-product-info .desc { font-size: 14px; color: #7A6B5D; line-height: 1.8; margin-bottom: 24px; }
.sy-product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sy-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: linear-gradient(135deg, #C45A20, #E8783F);
    color: #fff; border-radius: 50px; font-size: 15px; font-weight: 600;
    transition: all 0.3s ease; border: none; cursor: pointer; text-decoration: none;
}
.sy-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,90,32,0.3); color: #fff; }
.sy-product-attrs { margin-top: 24px; }
.sy-product-attrs dt { font-size: 14px; color: #7A6B5D; margin-bottom: 4px; }
.sy-product-attrs dd { font-size: 14px; color: #2C2416; font-weight: 500; margin-bottom: 12px; margin-left: 0; }

/* 图片居中 */
.sy-img-center { display: flex; align-items: center; justify-content: center; }

/* 清除浮动 */
.sy-clearfix::after { content: ''; display: table; clear: both; }
