/* 咖啡页面样式 */
.coffee-header {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.section-desc {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: -20px;
    margin-bottom: 30px;
}

/* 咖啡馆详情卡片 */
.cafe-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cafe-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cafe-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cafe-image-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cafe-tag {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.cafe-info {
    padding: 25px;
}

.cafe-info h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
    color: #333;
}

.cafe-location {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 15px;
}

.cafe-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature {
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    color: #555;
}

.cafe-products, .cafe-aesthetic {
    margin-bottom: 20px;
}

.cafe-products h4, .cafe-aesthetic h4 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.cafe-products ul {
    list-style: none;
    padding: 0;
}

.cafe-products li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.cafe-products li:last-child {
    border-bottom: none;
}

.cafe-products strong {
    color: #333;
}

.cafe-aesthetic p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

/* 美学网格 */
.aesthetic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.aesthetic-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.aesthetic-card:hover {
    transform: translateY(-3px);
}

.aesthetic-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.aesthetic-card h3 {
    color: #8B4513;
    margin-bottom: 10px;
}

.aesthetic-card p {
    color: #666;
    font-size: 0.95em;
}

/* 内容区块 */
.content-section .section-title {
    border-left-color: #8B4513;
}

/* 响应式 */
@media (max-width: 768px) {
    .cafe-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .cafe-features {
        flex-direction: column;
    }
    
    .aesthetic-grid {
        grid-template-columns: 1fr;
    }
}
