/* 
 * Style Show Page Styles - 清理版本
 * 風格顯示頁面的專用樣式，移除與 application.css 重複的部分
 */

/* 標籤頁樣式 - 與 styles.css 保持一致 */
.tab {
    background: white;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.tab ul.order {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab ul.order li {
    margin: 0;
}

.tab ul.order li a {
    display: block;
    padding: 16px 24px;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.tab ul.order li a:hover {
    color: #FF6B6B;
    border-bottom-color: #FFE5E5;
    text-decoration: none;
}

.tab ul.order li a.active {
    color: #FF6B6B;
    border-bottom-color: #FF6B6B;
}

/* 風格頁面頭部樣式 - 與 styles.css 保持一致 */
.style-header {
    padding: 40px 0 20px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.style-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.style-header .style-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.style-header .style-meta span {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.style-header .style-meta i {
    color: #FF6B6B;
}

.style-header .hot-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .tab ul.order {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab ul.order li a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .style-header h1 {
        font-size: 2rem;
    }
    
    .style-header .style-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}
