/*
Theme Name: Fengshui Blog
Description: Modern clean WordPress theme
Version: 2.5
Author: World Institute of Fengshui
*/

/* ========================================
   GOOGLE FONTS IMPORT
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========================================
   CSS VARIABLES - PURPLE THEME
   ======================================== */

:root {
    /* Purple Color System */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Purple Brand Colors */
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a855f7;
    --accent: #f97316;
    
    /* Secondary Colors */
    --blue: #0ea5e9;
    --green: #10b981;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Container */
    --container-max: 1200px;
    --content-width: 70%;
    --sidebar-width: 28%;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.fengshui-theme {
    padding-top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   USER MENU STYLES - PURPLE THEME
   ======================================== */

.fengshui-user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.user-menu-guest,
.user-menu-logged-in {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.user-menu-separator {
    color: var(--gray-400);
    font-weight: 500;
    font-size: 14px;
}

.user-menu-link {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.user-menu-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(124, 58, 237, 0.2);
}

.user-menu-register {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.user-menu-register:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.user-menu-login {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.user-menu-login:hover {
    background: var(--primary);
    color: var(--white);
}

.user-menu-logout {
    background: var(--gray-200);
    color: var(--gray-600);
}

.user-menu-logout:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.user-menu-icon {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-menu-text {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
}

/* ========================================
   MAIN LAYOUT CONTAINER
   ======================================== */

.fengshui-main-container {
    max-width: var(--container-max);
    margin: 20px auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.fengshui-content {
    min-width: 0;
    overflow: hidden;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fengshui-sidebar {
    width: 300px;
    position: static;
    top: auto;
    max-height: none;
    overflow-y: visible;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* ========================================
   HOMEPAGE - BÀI VIẾT MỚI NHẤT
   ======================================== */

.fengshui-recent-posts-list {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.fengshui-recent-posts-list h2 {
    background: linear-gradient(135deg, #f8f4ff, #f3e8ff);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    text-align: center;
}

.fengshui-recent-list-container {
    position: relative;
    overflow: hidden;
}

.fengshui-recent-list-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.fengshui-recent-list-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.fengshui-recent-list-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    align-items: flex-start;
}

.fengshui-recent-list-item:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

/* ẢNH BÊN TRÁI - RECENT POSTS */
.fengshui-recent-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    order: -1;
}

.fengshui-recent-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 6px;
}

.fengshui-recent-list-item:hover .fengshui-recent-thumb img {
    transform: scale(1.05);
}

.fengshui-recent-content {
    flex: 1;
    min-width: 0;
}

.fengshui-recent-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1f2937;
}

.fengshui-recent-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fengshui-recent-title a:hover {
    color: var(--primary);
}

.fengshui-recent-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #6b7280;
    flex-wrap: wrap;
}

.fengshui-recent-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: #9ca3af;
}

.fengshui-recent-list-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f9fafb;
}

.fengshui-recent-list-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fengshui-recent-list-dot.active,
.fengshui-recent-list-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ========================================
   HOMEPAGE - PHÂN TÍCH NỔI BẬT
   ======================================== */

.fengshui-recent-posts {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.fengshui-recent-posts h2 {
    background: linear-gradient(135deg, #fef3e7, #fed7aa);
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ea580c;
    border-bottom: 2px solid #ea580c;
    text-align: center;
}

.fengshui-recent-slider {
    position: relative;
    overflow: hidden;
}

.fengshui-recent-slides {
    display: flex;
    transition: transform 0.6s ease;
}

.fengshui-recent-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.fengshui-slide-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #fffbeb;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #fde68a;
    align-items: flex-start;
}

.fengshui-slide-item:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

/* ẢNH BÊN TRÁI - FEATURED POSTS */
.fengshui-post-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    order: -1;
}

.fengshui-post-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 6px;
}

.fengshui-slide-item:hover .fengshui-post-thumb img {
    transform: scale(1.05);
}

.fengshui-post-info {
    flex: 1;
    min-width: 0;
}

.fengshui-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1f2937;
}

.fengshui-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fengshui-post-title a:hover {
    color: #f59e0b;
}

.fengshui-post-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #6b7280;
    flex-wrap: wrap;
}

.fengshui-post-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: #9ca3af;
}

.fengshui-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fffbeb;
}

.fengshui-slider-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.fengshui-slider-dot.active,
.fengshui-slider-dot:hover {
    background: #f59e0b;
    transform: scale(1.2);
    opacity: 1;
}

/* ========================================
   HOMEPAGE - CATEGORIES
   ======================================== */

.fengshui-categories {
    margin-bottom: 2rem;
}

.fengshui-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fengshui-category-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fengshui-category-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fengshui-category-title {
    background: linear-gradient(135deg, #f8f4ff, #f3e8ff);
    padding: 1rem;
    margin: 0;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.fengshui-category-title a {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* POST ITEMS TRONG CATEGORY */
.fengshui-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
    background: transparent;
    align-items: flex-start;
}

.fengshui-post-item:last-child {
    border-bottom: none;
}

.fengshui-post-item:hover {
    background: #f9fafb;
    transform: translateX(4px);
}

/* HOT POST - CHỈ CÓ ICON, KHÔNG CÓ BACKGROUND */
.fengshui-post-item.hot-post {
    background: transparent;
    border-left: none;
}

.fengshui-post-item.hot-post:hover {
    background: #f9fafb;
}

.fengshui-post-item.hot-post .fengshui-post-title::before {
    content: "🔥 ";
    color: #f59e0b;
}

/* ẢNH TRONG CATEGORY ITEMS - NHỎ HƠN */
.fengshui-post-item .fengshui-post-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
    order: -1;
}

.fengshui-post-item .fengshui-post-thumb img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.fengshui-post-item .fengshui-post-info {
    flex: 1;
    min-width: 0;
}

.fengshui-post-item .fengshui-post-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #1f2937;
}

.fengshui-post-item .fengshui-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fengshui-post-item .fengshui-post-title a:hover {
    color: #0284c7;
}

.fengshui-post-item .fengshui-post-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #6b7280;
    flex-wrap: wrap;
}

.fengshui-post-item .fengshui-post-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
    color: #9ca3af;
}

/* ========================================
   AUTHOR PAGE - PURPLE THEME
   ======================================== */

.author-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.author-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.9);
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto 20px auto;
}

.author-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

/* VOTE WIDGET - PURPLE THEME */
div[style*="box-shadow: 0 4px 20px rgba(0,0,0,0.1)"] {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

h3[style*="color: #2c3e50"][style*="border-bottom: 2px solid #e74c3c"] {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

button[style*="background: linear-gradient(135deg, #28a745, #20c997)"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.3);
}

button[style*="background: linear-gradient(135deg, #28a745, #20c997)"]:hover {
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* POSTS TITLE - PURPLE */
div[style*="background: linear-gradient(135deg, #667eea, #764ba2)"] {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* ========================================
   SINGLE POST STYLING
   ======================================== */

.fengshui-single-post {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.single-post-header {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.single-post-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.single-post-meta {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.single-post-featured {
    margin-bottom: 30px;
    text-align: center;
}

.single-featured-image {
    max-width: 600px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.single-post-content {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 2rem;
}

.author-bio {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-bio-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

.post-navigation {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-link {
    display: block;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.nav-prev {
    border-left: 4px solid var(--primary);
}

.nav-next {
    border-right: 4px solid var(--primary);
    text-align: right;
}

.related-posts h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

/* ========================================
   PAGINATION
   ======================================== */

.page-numbers.current,
.current.page-numbers {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-numbers:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* ========================================
   FORMS
   ======================================== */

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    outline: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .fengshui-main-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 15px auto;
    }
    
    .fengshui-sidebar {
        width: 100%;
        order: 2;
    }
    
    .fengshui-content {
        order: 1;
        padding: 1.5rem;
    }
    
    .fengshui-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fengshui-recent-list-slide,
    .fengshui-recent-slide {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .fengshui-main-container {
        padding: 0 0.5rem;
        gap: 1rem;
        margin: 10px auto;
    }
    
    .fengshui-content {
        padding: 1rem;
    }
    
    .fengshui-recent-list-slide,
    .fengshui-recent-slide {
        padding: 1rem;
    }
    
    .fengshui-recent-list-item,
    .fengshui-slide-item {
        gap: 10px;
        padding: 12px;
    }
    
    .fengshui-recent-thumb,
    .fengshui-post-thumb {
        width: 60px;
        height: 45px;
    }
    
    .fengshui-recent-thumb img,
    .fengshui-post-thumb img {
        width: 60px;
        height: 45px;
    }
    
    .fengshui-post-item .fengshui-post-thumb {
        width: 50px;
        height: 40px;
    }
    
    .fengshui-post-item .fengshui-post-thumb img {
        width: 50px;
        height: 40px;
    }
    
    .fengshui-recent-title,
    .fengshui-post-title {
        font-size: 13px;
    }
    
    .fengshui-recent-meta,
    .fengshui-post-meta {
        font-size: 10px;
    }
    
    .fengshui-post-item .fengshui-post-title {
        font-size: 12px;
    }
    
    .fengshui-post-item .fengshui-post-meta {
        font-size: 10px;
    }
    
    .single-post-title {
        font-size: 1.5rem;
    }
    
    .single-post-meta {
        font-size: 12px;
        gap: 10px;
    }
    
    .single-post-content {
        font-size: 14px;
    }
    
    .single-featured-image {
        max-width: 100%;
        width: 100%;
    }
    
    .author-header img {
        width: 80px;
        height: 80px;
    }
    
    .author-header h1 {
        font-size: 24px;
    }
    
    .user-menu-text {
        display: none;
    }
    
    .user-menu-link {
        width: 32px;
        height: 32px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        min-width: 32px;
    }
}

@media (max-width: 480px) {
    .fengshui-main-container {
        padding: 0 0.25rem;
        margin: 5px auto;
    }
    
    .fengshui-content {
        padding: 0.75rem;
    }
    
    .fengshui-recent-posts-list h2,
    .fengshui-recent-posts h2 {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .fengshui-recent-list-slide,
    .fengshui-recent-slide {
        padding: 0.75rem;
    }
    
    .fengshui-recent-thumb,
    .fengshui-post-thumb {
        width: 50px;
        height: 40px;
    }
    
    .fengshui-recent-thumb img,
    .fengshui-post-thumb img {
        width: 50px;
        height: 40px;
    }
    
    .fengshui-post-item .fengshui-post-thumb {
        width: 45px;
        height: 35px;
    }
    
    .fengshui-post-item .fengshui-post-thumb img {
        width: 45px;
        height: 35px;
    }
    
    .single-post-title {
        font-size: 1.25rem;
    }
    
    .author-header img {
        width: 60px;
        height: 60px;
    }
    
    .author-header h1 {
        font-size: 20px;
    }
    
    .user-menu-link {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.text-primary { color: var(--primary); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

.bg-primary { background-color: var(--primary); }
.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .fengshui-sidebar,
    .fengshui-recent-list-dots,
    .fengshui-slider-dots {
        display: none;
    }
    
    .fengshui-main-container {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}