/* 口感变化 - 新增详细样式 */
.taste-header-info h3 {
    font-size: 32px;
    color: #2d5a27;
  margin-bottom: 15px;
}

.taste-time {
    color: #666;
  margin-bottom: 10px;
    font-size: 16px;
}

.taste-level {
    color: #f39c12;
    font-weight: bold;
  margin-bottom: 20px;
    font-size: 18px;
}

.taste-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2d5a27;
}

.taste-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  margin: 30px 0;
}

.taste-detail-card {
  background: #f8f9fa;
  padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.taste-detail-card h4 {
    font-size: 20px;
    color: #2d5a27;
  margin-bottom: 15px;
}

.taste-detail-card ul {
    list-style: none;
  padding: 0;
}

.taste-detail-card li {
    font-size: 15px;
    color: #333;
  margin-bottom: 10px;
  padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.taste-detail-card li:before {
    content: "•";
    color: #2d5a27;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.taste-chemical {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.taste-chemical h4 {
    font-size: 20px;
    color: #333;
  margin-bottom: 20px;
}

.chemical-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chemical-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.chemical-label {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.chemical-bar {
  height: 20px;
  background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.chemical-fill {
  height: 100%;
  background: linear-gradient(90deg, #2d5a27 0%, #3d7a37 100%);
    transition: width 0.5s ease;
}

.chemical-value {
    font-size: 14px;
    color: #2d5a27;
    font-weight: bold;
}

.taste-brewing {
  margin: 30px 0;
  padding: 25px;
  background: #fff8f0;
    border-radius: 12px;
    border: 2px dashed #f39c12;
}

.taste-brewing h4 {
    font-size: 20px;
    color: #f39c12;
  margin-bottom: 20px;
}

.brewing-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
  padding: 15px;
  background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tip-icon {
    font-size: 24px;
}

.tip-item span {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.taste-suggestion {
  margin-top: 30px;
  padding: 20px;
  background: #fff3cd;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.taste-suggestion h4 {
    font-size: 18px;
    color: #856404;
  margin-bottom: 15px;
}

.taste-suggestion p {
    font-size: 14px;
    color: #856404;
  margin-bottom: 10px;
}

.taste-suggestion ul {
    list-style: none;
  padding: 0;
}

.taste-suggestion li {
    font-size: 14px;
    color: #856404;
  margin-bottom: 8px;
  padding-left: 20px;
    position: relative;
}

.taste-suggestion li:before {
    content: "→";
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.taste-feature-box {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border: 2px solid #28a745;
}

.taste-feature-box h4 {
    font-size: 18px;
    color: #155724;
  margin-bottom: 15px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
  padding: 12px;
  background: white;
    border-radius: 8px;
}

.feature-dot {
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
}

.feature-item span {
    font-size: 14px;
    color: #155724;
    font-weight: 500;
}

.comparison-table-section {
  margin-top: 50px;
}

.table-title {
    font-size: 24px;
    color: #2d5a27;
  text-align: center;
  margin-bottom: 30px;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
  background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background: linear-gradient(135deg, #2d5a27 0%, #3d7a37 100%);
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.comparison-table tr:hover {
  background: #f8f9fa;
}

.period-name {
    font-weight: bold;
    color: #2d5a27;
}

.stars {
    color: #f39c12;
    letter-spacing: 2px;
}

/* 响应式调整 - 口感部分 */
@media (max-width: 768px) {
    .taste-content {
     padding: 20px;
    }
    
    .taste-header-info h3 {
        font-size: 24px;
    }
    
    .taste-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .chemical-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .brewing-tips {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
     padding: 10px;
        font-size: 13px;
    }
}
