/* ===================================================
   香烟产品详情页样式
   引入基础样式: base-product-detail.css
   =================================================== */

@import url('base-product-detail.css');

/* 页面特定样式覆盖 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Han Serif SC', 'SimSun', serif;
    background: var(--paper-white);
    color: var(--ink-black);
    line-height: 1.6;
}

/* SVG 渐变 */
.score-ring-fill {
    stroke: url(#scoreGradient);
}

/* 动画类 */
.tasting-card,
.comment-item,
.bamboo-slip,
.related-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.tasting-card.animate-in,
.comment-item.animate-in,
.bamboo-slip.animate-in,
.related-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.comment-item {
    transform: translateX(-20px);
}

.bamboo-slip {
    transform: translateX(30px);
}

.score-circle:not(.animate-score) .score-ring-fill {
    stroke-dasharray: 0, 283 !important;
}

/* 响应式覆盖 */
@media (max-width: 768px) {
    .bamboo-string { display: none; }
    .bamboo-slip { padding-left: 20px; margin-left: 0; }
    .bamboo-slip::before { display: none; }
}

/* 滚动条样式 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--paper-cream); }
::-webkit-scrollbar-thumb { background: var(--ink-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-gray); }
