/*
Theme Name:           Simplyzen
Theme URI:            https://simplyzen.dev
Author:               Simplyzen Development Team
Author URI:           https://simplyzen.dev
Description:          AI-Powered Multipurpose Responsive WooCommerce Theme - Enhanced with built-in analytics dashboard, real-time visitor tracking, A/B testing, performance monitoring, intelligent chatbot, smart search, personalized recommendations, AI content generation, and SEO optimization.
Version:              1.5.6
Requires at least:    6.0
Requires PHP:         8.0
WC requires at least: 7.0
Text Domain:          simplyzen
License:              GPL v2 or later
License URI:          https://www.gnu.org/licenses/gpl-2.0.html
Tags:                 woocommerce, e-commerce, ai-powered, responsive, multipurpose, customizable, rtl-language-support, translation-ready
*/

/* ============================================================================
   SIMPLYZEN CSS FRAMEWORK
   ============================================================================ */

:root {
    /* Primary Colors */
    --sz-primary: #6366f1;
    --sz-primary-light: #818cf8;
    --sz-primary-dark: #4f46e5;
    
    /* Secondary Colors */
    --sz-secondary: #10b981;
    --sz-secondary-light: #34d399;
    --sz-secondary-dark: #059669;
    
    /* Accent Colors */
    --sz-accent: #f59e0b;
    --sz-accent-light: #fbbf24;
    --sz-accent-dark: #d97706;
    
    /* Neutral Colors */
    --sz-white: #ffffff;
    --sz-black: #000000;
    --sz-gray-50: #f9fafb;
    --sz-gray-100: #f3f4f6;
    --sz-gray-200: #e5e7eb;
    --sz-gray-300: #d1d5db;
    --sz-gray-400: #9ca3af;
    --sz-gray-500: #6b7280;
    --sz-gray-600: #4b5563;
    --sz-gray-700: #374151;
    --sz-gray-800: #1f2937;
    --sz-gray-900: #111827;
    
    /* Semantic Colors */
    --sz-success: #22c55e;
    --sz-warning: #f59e0b;
    --sz-error: #ef4444;
    --sz-info: #3b82f6;
    
    /* Typography */
    --sz-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sz-font-serif: 'DM Serif Display', Georgia, serif;
    --sz-font-mono: 'JetBrains Mono', Consolas, monospace;
    
    /* Font Sizes */
    --sz-text-xs: 0.75rem;
    --sz-text-sm: 0.875rem;
    --sz-text-base: 1rem;
    --sz-text-lg: 1.125rem;
    --sz-text-xl: 1.25rem;
    --sz-text-2xl: 1.5rem;
    --sz-text-3xl: 1.875rem;
    --sz-text-4xl: 2.25rem;
    --sz-text-5xl: 3rem;
    
    /* Spacing */
    --sz-space-1: 0.25rem;
    --sz-space-2: 0.5rem;
    --sz-space-3: 0.75rem;
    --sz-space-4: 1rem;
    --sz-space-5: 1.25rem;
    --sz-space-6: 1.5rem;
    --sz-space-8: 2rem;
    --sz-space-10: 2.5rem;
    --sz-space-12: 3rem;
    --sz-space-16: 4rem;
    
    /* Border Radius */
    --sz-radius-sm: 0.125rem;
    --sz-radius-base: 0.25rem;
    --sz-radius-md: 0.375rem;
    --sz-radius-lg: 0.5rem;
    --sz-radius-xl: 0.75rem;
    --sz-radius-2xl: 1rem;
    --sz-radius-full: 9999px;
    
    /* Shadows */
    --sz-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --sz-shadow-base: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --sz-shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --sz-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --sz-shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    
    /* Transitions */
    --sz-transition-fast: 150ms ease;
    --sz-transition-base: 200ms ease;
    --sz-transition-slow: 300ms ease;
    
    /* Z-Index */
    --sz-z-dropdown: 1000;
    --sz-z-sticky: 1020;
    --sz-z-modal: 1050;
    --sz-z-chatbot: 1080;
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sz-font-sans); line-height: 1.5; color: var(--sz-gray-800); background: var(--sz-white); }
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sz-primary); text-decoration: none; transition: color var(--sz-transition-fast); }
a:hover { color: var(--sz-primary-dark); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--sz-font-serif); font-weight: 700; line-height: 1.25; color: var(--sz-gray-900); margin-bottom: var(--sz-space-4); }
h1 { font-size: var(--sz-text-5xl); }
h2 { font-size: var(--sz-text-4xl); }
h3 { font-size: var(--sz-text-3xl); }
h4 { font-size: var(--sz-text-2xl); }
h5 { font-size: var(--sz-text-xl); }
h6 { font-size: var(--sz-text-lg); }
p { margin-bottom: var(--sz-space-4); }

/* Container */
.sz-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--sz-space-4); }
.sz-container-fluid { width: 100%; padding: 0 var(--sz-space-4); }

/* Grid */
.sz-grid { display: grid; gap: var(--sz-space-6); }
.sz-grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.sz-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sz-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sz-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sz-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.sz-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .sz-grid-cols-4, .sz-grid-cols-5, .sz-grid-cols-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .sz-grid-cols-2, .sz-grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .sz-grid-cols-4, .sz-grid-cols-5, .sz-grid-cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sz-grid-cols-2, .sz-grid-cols-3, .sz-grid-cols-4, .sz-grid-cols-5, .sz-grid-cols-6 { grid-template-columns: 1fr; }
}

/* Flex */
.sz-flex { display: flex; }
.sz-flex-col { flex-direction: column; }
.sz-items-center { align-items: center; }
.sz-items-start { align-items: flex-start; }
.sz-items-end { align-items: flex-end; }
.sz-justify-center { justify-content: center; }
.sz-justify-between { justify-content: space-between; }
.sz-justify-end { justify-content: flex-end; }
.sz-flex-wrap { flex-wrap: wrap; }
.sz-gap-2 { gap: var(--sz-space-2); }
.sz-gap-4 { gap: var(--sz-space-4); }
.sz-gap-6 { gap: var(--sz-space-6); }

/* Buttons */
.sz-btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--sz-space-2); padding: var(--sz-space-3) var(--sz-space-6); font-size: var(--sz-text-sm); font-weight: 500; line-height: 1; border-radius: var(--sz-radius-lg); border: 2px solid transparent; cursor: pointer; transition: all var(--sz-transition-base); text-decoration: none; }
.sz-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3); }
.sz-btn-primary { background: var(--sz-primary); color: var(--sz-white); }
.sz-btn-primary:hover { background: var(--sz-primary-dark); color: var(--sz-white); }
.sz-btn-secondary { background: var(--sz-secondary); color: var(--sz-white); }
.sz-btn-secondary:hover { background: var(--sz-secondary-dark); color: var(--sz-white); }
.sz-btn-outline { background: transparent; border-color: var(--sz-primary); color: var(--sz-primary); }
.sz-btn-outline:hover { background: var(--sz-primary); color: var(--sz-white); }
.sz-btn-ghost { background: transparent; color: var(--sz-gray-700); }
.sz-btn-ghost:hover { background: var(--sz-gray-100); }
.sz-btn-sm { padding: var(--sz-space-2) var(--sz-space-4); font-size: var(--sz-text-xs); }
.sz-btn-lg { padding: var(--sz-space-4) var(--sz-space-8); font-size: var(--sz-text-base); }

/* Cards */
.sz-card { background: var(--sz-white); border-radius: var(--sz-radius-xl); box-shadow: var(--sz-shadow-sm); overflow: hidden; transition: all var(--sz-transition-base); }
.sz-card:hover { box-shadow: var(--sz-shadow-md); transform: translateY(-2px); }
.sz-card-body { padding: var(--sz-space-6); }
.sz-card-header { padding: var(--sz-space-4) var(--sz-space-6); border-bottom: 1px solid var(--sz-gray-200); }
.sz-card-footer { padding: var(--sz-space-4) var(--sz-space-6); border-top: 1px solid var(--sz-gray-200); background: var(--sz-gray-50); }

/* Forms */
.sz-input, .sz-select, .sz-textarea { width: 100%; padding: var(--sz-space-3) var(--sz-space-4); font-size: var(--sz-text-base); border: 2px solid var(--sz-gray-300); border-radius: var(--sz-radius-lg); background: var(--sz-white); transition: all var(--sz-transition-fast); }
.sz-input:focus, .sz-select:focus, .sz-textarea:focus { outline: none; border-color: var(--sz-primary); box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); }
.sz-input::placeholder { color: var(--sz-gray-400); }
.sz-label { display: block; margin-bottom: var(--sz-space-2); font-size: var(--sz-text-sm); font-weight: 500; color: var(--sz-gray-700); }

/* Badges */
.sz-badge { display: inline-flex; align-items: center; padding: var(--sz-space-1) var(--sz-space-3); font-size: var(--sz-text-xs); font-weight: 500; border-radius: var(--sz-radius-full); }
.sz-badge-primary { background: rgba(99, 102, 241, 0.1); color: var(--sz-primary-dark); }
.sz-badge-secondary { background: rgba(16, 185, 129, 0.1); color: var(--sz-secondary-dark); }
.sz-badge-success { background: rgba(34, 197, 94, 0.1); color: #15803d; }
.sz-badge-warning { background: rgba(245, 158, 11, 0.1); color: #b45309; }
.sz-badge-error { background: rgba(239, 68, 68, 0.1); color: #dc2626; }

/* Product Card */
.sz-product-card { background: var(--sz-white); border-radius: var(--sz-radius-xl); overflow: hidden; transition: all var(--sz-transition-base); position: relative; }
.sz-product-card:hover { box-shadow: var(--sz-shadow-lg); transform: translateY(-4px); }
.sz-product-card .sz-product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.sz-product-card .sz-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--sz-transition-slow); }
.sz-product-card:hover .sz-product-image img { transform: scale(1.05); }
.sz-product-card .sz-product-badges { position: absolute; top: var(--sz-space-3); left: var(--sz-space-3); display: flex; flex-direction: column; gap: var(--sz-space-2); }
.sz-product-card .sz-product-info { padding: var(--sz-space-4); }
.sz-product-card .sz-product-title { font-size: var(--sz-text-base); font-weight: 600; color: var(--sz-gray-900); margin-bottom: var(--sz-space-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sz-product-card .sz-product-price { display: flex; align-items: center; gap: var(--sz-space-2); }
.sz-product-card .sz-price-current { font-size: var(--sz-text-lg); font-weight: 700; color: var(--sz-primary); }
.sz-product-card .sz-price-original { font-size: var(--sz-text-sm); color: var(--sz-gray-400); text-decoration: line-through; }
.sz-product-card .sz-quick-actions { position: absolute; right: var(--sz-space-3); top: var(--sz-space-3); display: flex; flex-direction: column; gap: var(--sz-space-2); opacity: 0; transform: translateX(10px); transition: all var(--sz-transition-base); }
.sz-product-card:hover .sz-quick-actions { opacity: 1; transform: translateX(0); }
.sz-product-card .sz-quick-action-btn { width: 40px; height: 40px; border-radius: var(--sz-radius-full); background: var(--sz-white); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--sz-shadow-md); transition: all var(--sz-transition-fast); }
.sz-product-card .sz-quick-action-btn:hover { background: var(--sz-primary); color: var(--sz-white); }

.sz-sale-badge { background: var(--sz-error); color: var(--sz-white); padding: var(--sz-space-1) var(--sz-space-3); font-size: var(--sz-text-xs); font-weight: 700; border-radius: var(--sz-radius-full); }
.sz-new-badge { background: var(--sz-secondary); color: var(--sz-white); padding: var(--sz-space-1) var(--sz-space-3); font-size: var(--sz-text-xs); font-weight: 700; border-radius: var(--sz-radius-full); }

/* AI Chatbot */
.sz-chatbot-container { position: fixed; bottom: var(--sz-space-6); right: var(--sz-space-6); z-index: var(--sz-z-chatbot); font-family: var(--sz-font-sans); }
.sz-chatbot-toggle { width: 60px; height: 60px; border-radius: var(--sz-radius-full); background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-primary-dark) 100%); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--sz-shadow-lg); transition: all var(--sz-transition-base); color: var(--sz-white); }
.sz-chatbot-toggle:hover { transform: scale(1.1); box-shadow: var(--sz-shadow-xl); }
.sz-chatbot-toggle svg { width: 28px; height: 28px; }
.sz-chatbot-window { position: absolute; bottom: 80px; right: 0; width: 380px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 120px); background: var(--sz-white); border-radius: var(--sz-radius-2xl); box-shadow: var(--sz-shadow-xl); display: none; flex-direction: column; overflow: hidden; animation: sz-chatbot-open 0.3s ease; }
.sz-chatbot-window.active { display: flex; }
@keyframes sz-chatbot-open { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.sz-chatbot-header { padding: var(--sz-space-4) var(--sz-space-5); background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-primary-dark) 100%); color: var(--sz-white); display: flex; align-items: center; justify-content: space-between; }
.sz-chatbot-header-info { display: flex; align-items: center; gap: var(--sz-space-3); }
.sz-chatbot-avatar { width: 40px; height: 40px; border-radius: var(--sz-radius-full); background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; }
.sz-chatbot-name { font-weight: 600; }
.sz-chatbot-status { font-size: var(--sz-text-xs); opacity: 0.8; display: flex; align-items: center; gap: var(--sz-space-1); }
.sz-chatbot-status::before { content: ''; width: 8px; height: 8px; background: var(--sz-secondary); border-radius: var(--sz-radius-full); }
.sz-chatbot-close { background: none; border: none; color: var(--sz-white); cursor: pointer; padding: var(--sz-space-2); opacity: 0.8; transition: opacity var(--sz-transition-fast); }
.sz-chatbot-close:hover { opacity: 1; }
.sz-chatbot-messages { flex: 1; overflow-y: auto; padding: var(--sz-space-4); display: flex; flex-direction: column; gap: var(--sz-space-4); }
.sz-chatbot-message { display: flex; gap: var(--sz-space-3); max-width: 85%; }
.sz-chatbot-message.user { flex-direction: row-reverse; align-self: flex-end; }
.sz-chatbot-message-avatar { width: 32px; height: 32px; border-radius: var(--sz-radius-full); background: var(--sz-gray-200); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sz-chatbot-message.bot .sz-chatbot-message-avatar { background: rgba(99, 102, 241, 0.1); color: var(--sz-primary); }
.sz-chatbot-message-content { padding: var(--sz-space-3) var(--sz-space-4); border-radius: var(--sz-radius-xl); font-size: var(--sz-text-sm); line-height: 1.6; }
.sz-chatbot-message.bot .sz-chatbot-message-content { background: var(--sz-gray-100); color: var(--sz-gray-800); border-bottom-left-radius: var(--sz-radius-sm); }
.sz-chatbot-message.user .sz-chatbot-message-content { background: var(--sz-primary); color: var(--sz-white); border-bottom-right-radius: var(--sz-radius-sm); }
.sz-chatbot-suggestions { display: flex; flex-wrap: wrap; gap: var(--sz-space-2); padding: 0 var(--sz-space-4); margin-bottom: var(--sz-space-3); }
.sz-chatbot-suggestion { padding: var(--sz-space-2) var(--sz-space-4); background: var(--sz-gray-100); border: 1px solid var(--sz-gray-200); border-radius: var(--sz-radius-full); font-size: var(--sz-text-xs); cursor: pointer; transition: all var(--sz-transition-fast); }
.sz-chatbot-suggestion:hover { background: rgba(99, 102, 241, 0.1); border-color: var(--sz-primary); color: var(--sz-primary-dark); }
.sz-chatbot-input-container { padding: var(--sz-space-4); border-top: 1px solid var(--sz-gray-200); display: flex; gap: var(--sz-space-3); }
.sz-chatbot-input { flex: 1; padding: var(--sz-space-3) var(--sz-space-4); border: 2px solid var(--sz-gray-200); border-radius: var(--sz-radius-full); font-size: var(--sz-text-sm); transition: border-color var(--sz-transition-fast); }
.sz-chatbot-input:focus { outline: none; border-color: var(--sz-primary); }
.sz-chatbot-send { width: 44px; height: 44px; border-radius: var(--sz-radius-full); background: var(--sz-primary); border: none; color: var(--sz-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--sz-transition-fast); }
.sz-chatbot-send:hover { background: var(--sz-primary-dark); }
.sz-chatbot-send:disabled { background: var(--sz-gray-300); cursor: not-allowed; }

/* Smart Search */
.sz-smart-search-container { position: relative; width: 100%; max-width: 600px; }
.sz-smart-search-input-wrapper { position: relative; display: flex; align-items: center; }
.sz-smart-search-input { width: 100%; padding: var(--sz-space-4) var(--sz-space-5); padding-left: var(--sz-space-12); padding-right: var(--sz-space-12); font-size: var(--sz-text-base); border: 2px solid var(--sz-gray-200); border-radius: var(--sz-radius-full); background: var(--sz-white); transition: all var(--sz-transition-fast); }
.sz-smart-search-input:focus { outline: none; border-color: var(--sz-primary); box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); }
.sz-smart-search-icon { position: absolute; left: var(--sz-space-5); color: var(--sz-gray-400); pointer-events: none; }
.sz-smart-search-ai-badge { position: absolute; right: var(--sz-space-4); padding: var(--sz-space-1) var(--sz-space-3); background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-secondary) 100%); color: var(--sz-white); font-size: var(--sz-text-xs); font-weight: 600; border-radius: var(--sz-radius-full); }
.sz-smart-search-results { position: absolute; top: calc(100% + var(--sz-space-2)); left: 0; right: 0; background: var(--sz-white); border-radius: var(--sz-radius-xl); box-shadow: var(--sz-shadow-xl); max-height: 400px; overflow-y: auto; display: none; z-index: var(--sz-z-dropdown); }
.sz-smart-search-results.active { display: block; animation: sz-dropdown-open 0.2s ease; }
@keyframes sz-dropdown-open { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.sz-smart-search-section { padding: var(--sz-space-3) var(--sz-space-4); }
.sz-smart-search-section-title { font-size: var(--sz-text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sz-gray-500); margin-bottom: var(--sz-space-2); }
.sz-smart-search-item { display: flex; align-items: center; gap: var(--sz-space-3); padding: var(--sz-space-3); border-radius: var(--sz-radius-lg); cursor: pointer; transition: background var(--sz-transition-fast); }
.sz-smart-search-item:hover { background: var(--sz-gray-50); }
.sz-smart-search-item-image { width: 48px; height: 48px; border-radius: var(--sz-radius-lg); object-fit: cover; }
.sz-smart-search-item-info { flex: 1; min-width: 0; }
.sz-smart-search-item-title { font-size: var(--sz-text-sm); font-weight: 500; color: var(--sz-gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sz-smart-search-item-meta { font-size: var(--sz-text-xs); color: var(--sz-gray-500); }
.sz-smart-search-item-price { font-weight: 600; color: var(--sz-primary); }

/* AI Recommendations */
.sz-ai-recommendations { padding: var(--sz-space-8) 0; }
.sz-ai-recommendations-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sz-space-6); }
.sz-ai-recommendations-title { display: flex; align-items: center; gap: var(--sz-space-3); font-size: var(--sz-text-2xl); font-weight: 700; }
.sz-ai-recommendations-title .sz-ai-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--sz-primary) 0%, var(--sz-secondary) 100%); border-radius: var(--sz-radius-lg); display: flex; align-items: center; justify-content: center; color: var(--sz-white); }

/* AI Loading */
.sz-ai-loading { display: flex; align-items: center; gap: var(--sz-space-2); color: var(--sz-gray-500); font-size: var(--sz-text-sm); }
.sz-ai-loading-dots { display: flex; gap: 4px; }
.sz-ai-loading-dots span { width: 6px; height: 6px; background: var(--sz-primary); border-radius: var(--sz-radius-full); animation: sz-loading-bounce 1.4s ease-in-out infinite both; }
.sz-ai-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.sz-ai-loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.sz-ai-loading-dots span:nth-child(3) { animation-delay: 0; }
@keyframes sz-loading-bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* Skeleton Loading */
.sz-skeleton { background: linear-gradient(90deg, var(--sz-gray-200) 25%, var(--sz-gray-100) 50%, var(--sz-gray-200) 75%); background-size: 200% 100%; animation: sz-skeleton-loading 1.5s infinite; border-radius: var(--sz-radius-md); }
@keyframes sz-skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Utility Classes */
.sz-hidden { display: none !important; }
.sz-block { display: block !important; }
.sz-text-center { text-align: center !important; }
.sz-text-left { text-align: left !important; }
.sz-text-right { text-align: right !important; }
.sz-m-0 { margin: 0 !important; }
.sz-mx-auto { margin-left: auto !important; margin-right: auto !important; }
.sz-mt-4 { margin-top: var(--sz-space-4) !important; }
.sz-mt-8 { margin-top: var(--sz-space-8) !important; }
.sz-mb-4 { margin-bottom: var(--sz-space-4) !important; }
.sz-mb-8 { margin-bottom: var(--sz-space-8) !important; }
.sz-p-0 { padding: 0 !important; }
.sz-p-4 { padding: var(--sz-space-4) !important; }
.sz-p-6 { padding: var(--sz-space-6) !important; }
.sz-rounded { border-radius: var(--sz-radius-base) !important; }
.sz-rounded-lg { border-radius: var(--sz-radius-lg) !important; }
.sz-rounded-xl { border-radius: var(--sz-radius-xl) !important; }
.sz-rounded-full { border-radius: var(--sz-radius-full) !important; }
.sz-shadow { box-shadow: var(--sz-shadow-base) !important; }
.sz-shadow-md { box-shadow: var(--sz-shadow-md) !important; }
.sz-shadow-lg { box-shadow: var(--sz-shadow-lg) !important; }
.sz-text-primary { color: var(--sz-primary) !important; }
.sz-text-secondary { color: var(--sz-secondary) !important; }
.sz-text-muted { color: var(--sz-gray-500) !important; }
.sz-bg-white { background: var(--sz-white) !important; }
.sz-bg-gray-50 { background: var(--sz-gray-50) !important; }
.sz-bg-gray-100 { background: var(--sz-gray-100) !important; }
.sz-w-full { width: 100% !important; }
.sz-h-full { height: 100% !important; }

/* Responsive Visibility */
@media (max-width: 768px) { .sz-hide-mobile { display: none !important; } }
@media (min-width: 769px) { .sz-hide-desktop { display: none !important; } }
