/* ============================================
   웰컴스 컴퓨터 커스텀 CSS - Compuzone 스타일
   Modern, Clean, Professional Design
   ============================================ */

/* 1. 디자인 시스템 변수 - Compuzone Style */
:root {
    /* Primary Colors - Wellcoms Brand Color (#00c9ff) */
    --wc-primary: #00c9ff;
    --wc-primary-dark: #00a3cc;
    --wc-primary-light: #33d4ff;
    --wc-brand: #00c9ff;
    --wc-brand-dark: #00a3cc;
    --wc-brand-light: #33d4ff;
    /* Accent Colors */
    --wc-accent: #F59E0B;
    --wc-accent-dark: #D97706;
    --wc-success: #10B981;
    --wc-danger: #EF4444;
    
    /* Neutral Colors */
    --wc-white: #FFFFFF;
    --wc-gray-50: #F9FAFB;
    --wc-gray-100: #F3F4F6;
    --wc-gray-200: #E5E7EB;
    --wc-gray-300: #D1D5DB;
    --wc-gray-400: #9CA3AF;
    --wc-gray-500: #6B7280;
    --wc-gray-600: #4B5563;
    --wc-gray-700: #374151;
    --wc-gray-800: #1F2937;
    --wc-gray-900: #111827;
    
    /* Semantic Colors */
    --wc-text: #1F2937;
    --wc-text-light: #6B7280;
    --wc-text-muted: #9CA3AF;
    --wc-bg: #FFFFFF;
    --wc-bg-secondary: #F9FAFB;
    --wc-border: #E5E7EB;
    
    /* Gradients */
    /* Gradients - Wellcoms Brand */
    --wc-gradient-primary: linear-gradient(135deg, #00c9ff 0%, #0088aa 100%);
    --wc-gradient-hero: linear-gradient(135deg, rgba(0, 201, 255, 0.95) 0%, rgba(0, 136, 170, 0.95) 100%);
    
    /* Shadows */
    --wc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wc-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --wc-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --wc-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --wc-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --wc-radius-sm: 6px;
    --wc-radius: 12px;
    --wc-radius-lg: 16px;
    --wc-radius-xl: 24px;
    --wc-radius-full: 9999px;
    
    /* Spacing */
    --wc-section-padding: 80px;
    --wc-container-max: 1280px;
    
    /* Transitions */
    --wc-transition-fast: 150ms ease;
    --wc-transition: 300ms ease;
    --wc-transition-slow: 500ms ease;
}

/* 2. 전역 스타일 & 리셋 */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--wc-text);
    background: var(--wc-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 3. 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--wc-gray-900);
    margin: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.25rem); }

p {
    margin: 0;
    color: var(--wc-text-light);
}

a {
    color: var(--wc-primary);
    text-decoration: none;
    transition: color var(--wc-transition-fast);
}

a:hover {
    color: var(--wc-primary-dark);
}

/* 4. 컨테이너 */
.wc-container {
    width: 100%;
    max-width: var(--wc-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* 5. 섹션 스타일 */
.wc-section {
    padding: var(--wc-section-padding) 0;
    position: relative;
}

.wc-section-alt {
    background: var(--wc-bg-secondary);
}

.wc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.wc-section-header h2 {
    margin-bottom: 12px;
    background: var(--wc-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wc-section-header p {
    font-size: 1.125rem;
    color: var(--wc-text-light);
}

/* 6. 버튼 스타일 */
.wc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--wc-radius);
    border: none;
    cursor: pointer;
    transition: all var(--wc-transition);
    text-decoration: none !important;
}

.wc-btn-primary {
    background: var(--wc-gradient-primary);
    color: var(--wc-white);
    box-shadow: var(--wc-shadow-md);
}

.wc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--wc-shadow-lg);
    color: var(--wc-white);
}

.wc-btn-outline {
    background: transparent;
    color: var(--wc-white);
    border: 2px solid var(--wc-white);
}

.wc-btn-outline:hover {
    background: var(--wc-white);
    color: var(--wc-primary);
}

.wc-btn-ghost {
    background: transparent;
    color: var(--wc-primary);
    border: 2px solid var(--wc-primary);
}

.wc-btn-ghost:hover {
    background: var(--wc-primary);
    color: var(--wc-white);
}

.wc-btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.wc-btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* 7. 카드 스타일 */
.wc-card {
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    padding: 24px;
    box-shadow: var(--wc-shadow);
    border: 1px solid var(--wc-border);
    transition: all var(--wc-transition);
}

.wc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wc-shadow-lg);
}

/* ============================================
   HEADER - Sticky Navigation
   ============================================ */

/* 헤더 오버라이드 */
.site-header,
.ht-header-wrapper,
.ht-main-nav-panel {
    background: var(--wc-white) !important;
    box-shadow: var(--wc-shadow-sm) !important;
    border-bottom: 1px solid var(--wc-border) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* 메인 네비게이션 */
.main-navigation,
.ht-menu-nav,
.ht-site-navigation {
    background: transparent !important;
}

.main-navigation a,
.ht-menu-nav a,
.ht-site-navigation a,
.primary-menu a,
.mobile-menu a {
    color: var(--wc-text) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    padding: 12px 16px !important;
    border-radius: var(--wc-radius-sm) !important;
    transition: all var(--wc-transition-fast) !important;
}

.main-navigation a:hover,
.ht-menu-nav a:hover,
.ht-site-navigation a:hover,
.primary-menu a:hover {
    color: var(--wc-primary) !important;
    background: rgba(37, 99, 235, 0.08) !important;
}

.current-menu-item a,
.current_page_item a {
    color: var(--wc-primary) !important;
    background: rgba(37, 99, 235, 0.1) !important;
}

/* 로고 */
.site-logo img,
.ht-menu-logo img {
    max-height: 45px !important;
    width: auto !important;
}

/* 상단 바 */
.ht-top-bar {
    background: var(--wc-gray-900) !important;
    color: var(--wc-white) !important;
}

/* ============================================
   HERO SECTION - Modern Tech Geometric
   ============================================ */

.wellcoms-hero {
    min-height: 52vh;
    background:
        radial-gradient(ellipse 500px 400px at 80% 20%, rgba(0, 201, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 400px 350px at 15% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 50% 50%, rgba(0, 201, 255, 0.04) 0%, transparent 70%),
        linear-gradient(160deg, #0a0e27 0%, #0f172a 30%, #111827 60%, #0a0e27 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.wellcoms-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(0, 212, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 212, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px, 32px 32px;
    background-position: 0 0, 16px 16px;
    z-index: 0;
}

.wellcoms-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--wc-bg), transparent);
    z-index: 1;
}

.wellcoms-hero .hero-pattern {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.wellcoms-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.wellcoms-hero h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #00d4ff 0%, #38bdf8 40%, #818cf8 70%, #00d4ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wcGradientShift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.25));
    margin-bottom: 16px;
    line-height: 1.35;
}

.wellcoms-hero p {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.wellcoms-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wellcoms-hero-buttons .wellcoms-btn,
.wellcoms-hero-buttons .wc-btn {
    padding: 16px 32px !important;
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    border-radius: var(--wc-radius) !important;
    min-width: 160px;
    box-shadow: 0 0 20px rgba(0, 201, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wellcoms-hero-buttons .wellcoms-btn:hover,
.wellcoms-hero-buttons .wc-btn:hover {
    box-shadow: 0 0 30px rgba(0, 201, 255, 0.3), 0 6px 16px rgba(0, 0, 0, 0.25);
}

@keyframes wcGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.wellcoms-why {
    background: var(--wc-bg);
}

.wellcoms-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.wellcoms-why-item {
    text-align: center !important;
    padding: 32px 20px !important;
    background: var(--wc-white) !important;
    border-radius: var(--wc-radius-lg) !important;
    box-shadow: var(--wc-shadow) !important;
    border: 1px solid var(--wc-border) !important;
    transition: all var(--wc-transition);

.wellcoms-why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--wc-shadow-lg);
    border-color: var(--wc-primary);
}

.wellcoms-why-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    background: var(--wc-gradient-primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    box-shadow: var(--wc-shadow-md) !important;
    transition: transform var(--wc-transition);

.wellcoms-why-item:hover .wellcoms-why-icon {
    transform: scale(1.1);
}

.wellcoms-why-item h3 {
    font-size: 1.125rem;
    color: var(--wc-gray-900);
    margin-bottom: 10px;
    font-weight: 700;
}

.wellcoms-why-item p {
    font-size: 0.9375rem;
    color: var(--wc-text-light);
    line-height: 1.6;
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */

.wellcoms-reviews {
    background: var(--wc-bg-secondary);
}

.wellcoms-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wellcoms-review-card {
    background: var(--wc-white) !important;
    border-radius: var(--wc-radius-lg) !important;
    padding: 28px !important;
    box-shadow: var(--wc-shadow) !important;
    border: 1px solid var(--wc-border) !important;
    transition: all var(--wc-transition);

.wellcoms-review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wc-shadow-lg);
    border-color: var(--wc-purple-light);
}

.wellcoms-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.wellcoms-review-avatar {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: var(--wc-gradient-primary) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.375rem !important;
    color: var(--wc-white) !important;
    font-weight: 700 !important;
    flex-shrink: 0;

.wellcoms-review-meta {
    flex: 1;
}

.wellcoms-review-author {
    font-weight: 700;
    color: var(--wc-gray-900);
    font-size: 1rem;
}

.wellcoms-review-type {
    font-size: 0.8125rem;
    color: var(--wc-text-muted);
    margin-top: 2px;
}

.wellcoms-review-stars {
    color: var(--wc-accent);
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.wellcoms-review-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--wc-gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
}

.wellcoms-review-content {
    font-size: 0.9375rem;
    color: var(--wc-text-light);
    line-height: 1.7;
}

.wellcoms-review-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--wc-primary);
    padding: 6px 14px;
    border-radius: var(--wc-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 16px;
}

/* ============================================
   POPULAR PRODUCTS SECTION
   ============================================ */

.wellcoms-products {
    background: var(--wc-bg);
}

.wellcoms-products-category {
    margin-bottom: 48px;
}

.wellcoms-products-category h3 {
    font-size: 1.375rem;
    color: var(--wc-gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wellcoms-products-category h3 > span {
    display: none !important;
}

.wellcoms-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.wellcoms-product-item {
    display: block;
    width: 100%;
    max-width: 320px;
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    overflow: hidden;
    box-shadow: var(--wc-shadow);
    border: 1px solid var(--wc-border);
    transition: all var(--wc-transition);
    text-decoration: none !important;
}

.wellcoms-product-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--wc-shadow-lg);
    border-color: var(--wc-primary);
}

.wellcoms-product-item .product-image {
    height: 180px !important;
    background: #FFFFFF;
    position: relative;
    overflow: hidden !important;
}

.wellcoms-product-item .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    display: block;
    transition: transform var(--wc-transition);
}

.wellcoms-product-item:hover .product-image img {
    transform: scale(1.05);
}

.wellcoms-product-item .product-info {
    padding: 18px 20px 20px;
    text-align: center;
}

.wellcoms-product-item .product-title {
    font-size: 0.9375rem;
    color: var(--wc-gray-900);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.5;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
}

.wellcoms-product-item .product-category {
    font-size: 0.8125rem;
    color: var(--wc-text-muted);
    margin-bottom: 8px;
    text-align: center;
}

.wellcoms-product-item .product-price {
    font-size: 1.125rem;
    color: var(--wc-primary);
    font-weight: 800;
    text-align: center;
}

.wellcoms-view-all {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   TIPS & NOTICE SECTION
   ============================================ */

.wellcoms-tips-notice {
    background: var(--wc-bg-secondary);
}

.wellcoms-tips-notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.wellcoms-tips-box,
.wellcoms-notice-box {
    background: var(--wc-white);
    border-radius: var(--wc-radius-lg);
    padding: 28px;
    box-shadow: var(--wc-shadow);
    border: 1px solid var(--wc-border);
}

.wellcoms-tips-list,
.wellcoms-notice-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wellcoms-tip-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--wc-bg-secondary);
    border-radius: var(--wc-radius);
    text-decoration: none !important;
    transition: all var(--wc-transition-fast);
    border: 1px solid transparent;
}

.wellcoms-tip-item:hover {
    background: var(--wc-white);
    border-color: var(--wc-primary);
    transform: translateX(6px);
}

.tip-icon {
    font-size: 1.125rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.tip-title {
    flex: 1;
    color: var(--wc-text);
    font-size: 0.9375rem;
    font-weight: 500;
}

.wellcoms-tip-item:hover .tip-title {
    color: var(--wc-primary);
}

.tip-date {
    color: var(--wc-text-muted);
    font-size: 0.8125rem;
}

.wellcoms-tip-empty {
    text-align: center;
    padding: 40px;
    color: var(--wc-text-muted);
}

.wellcoms-tips-more {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   CTA SECTION - Modern Gradient
   ============================================ */

.wellcoms-cta {
    background: var(--wc-gradient-hero);
    position: relative;
    overflow: hidden;
}

.wellcoms-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.wellcoms-cta h2 {
    color: var(--wc-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--wc-white) !important;
    margin-bottom: 12px;
}

.wellcoms-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 32px;
}

.wellcoms-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.wellcoms-cta-buttons .wellcoms-btn,
.wellcoms-cta-buttons .wc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: var(--wc-radius) !important;
    min-width: 160px;
}

.wellcoms-cta-btn-primary {
    background: var(--wc-white) !important;
    color: var(--wc-primary) !important;
    border: none !important;
}

.wellcoms-cta-btn-primary:hover {
    background: var(--wc-gray-100) !important;
    transform: translateY(-2px);
}

.wellcoms-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--wc-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.wellcoms-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background: var(--wc-gray-900) !important;
    color: var(--wc-gray-300) !important;
    border-top: 4px solid;
    border-image: var(--wc-gradient-primary) 1;
}

.site-footer a {
    color: var(--wc-gray-300) !important;
    transition: color var(--wc-transition-fast);
}

.site-footer a:hover {
    color: var(--wc-white) !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - 1024px */
@media (max-width: 1023px) {
    :root {
        --wc-section-padding: 60px;
    }
    
    .wellcoms-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .wellcoms-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wellcoms-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .wellcoms-tips-notice-grid {
        gap: 24px;
    }
}

/* Mobile - 768px */
@media (max-width: 767px) {
    :root {
        --wc-section-padding: 48px;
    }
    
    .wc-section-header {
        margin-bottom: 32px;
    }
    
    .wc-section-header p {
        font-size: 1rem;
    }
    
    /* Hero Mobile */
    .wellcoms-hero {
        min-height: 60vh;
        padding: 60px 16px;
    }
    
    .wellcoms-hero h1 {
        font-size: 1.75rem;
    }
    
    .wellcoms-hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .wellcoms-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wellcoms-hero-buttons .wellcoms-btn,
    .wellcoms-hero-buttons .wc-btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Why Choose Us Mobile */
    .wellcoms-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .wellcoms-why-item {
        padding: 24px 16px;
    }
    
    .wellcoms-why-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .wellcoms-why-item h3 {
        font-size: 1rem;
    }
    
    .wellcoms-why-item p {
        font-size: 0.875rem;
    }
    
    /* Reviews Mobile */
    .wellcoms-reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .wellcoms-review-card {
        padding: 20px;
    }
    
    /* Products Mobile */
    .wellcoms-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .wellcoms-product-item .product-image {
        height: 140px;
    }
    
    .wellcoms-product-item .product-info {
        padding: 12px;
    }
    
    .wellcoms-product-item .product-title {
        font-size: 0.875rem;
    }
    
    .wellcoms-product-item .product-price {
        font-size: 1rem;
    }
    
    /* Tips & Notice Mobile */
    .wellcoms-tips-notice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wellcoms-tips-box,
    .wellcoms-notice-box {
        padding: 20px;
    }
    
    /* CTA Mobile */
    .wellcoms-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wellcoms-cta-buttons .wellcoms-btn,
    .wellcoms-cta-buttons .wc-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .wellcoms-products-grid {
        grid-template-columns: 1fr;
    }
    
    .wellcoms-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WORDPRESS BLOCK OVERRIDES
   ============================================ */

.wp-block-button__link,
.wp-element-button {
    background: var(--wc-gradient-primary) !important;
    border-radius: var(--wc-radius) !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    box-shadow: var(--wc-shadow) !important;
    transition: all var(--wc-transition) !important;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--wc-shadow-lg) !important;
}

.wp-block-cover::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(124, 58, 237, 0.4) 100%) !important;
}

/* ============================================
   MANGBOARD COMMERCE NAVIGATION
   ============================================ */

body .mb-style1 .mc-lnb-tab-product {
    background-color: var(--wc-white) !important;
    border-bottom: 2px solid var(--wc-primary) !important;
}

body .mb-style1 .mc-lnb-tab-product ul li {
    background-color: var(--wc-white) !important;
    border-right: 1px solid var(--wc-border) !important;
    border-bottom: none !important;
}

body .mb-style1 .mc-lnb-tab-product ul li a {
    color: var(--wc-text) !important;
    font-weight: 600;
}

body .mb-style1 .mc-lnb-tab-product ul li:hover {
    background-color: var(--wc-bg-secondary) !important;
}

body .mb-style1 .mc-lnb-tab-product ul li.selected {
    background: var(--wc-gradient-primary) !important;
    border-bottom: none !important;
}

body .mb-style1 .mc-lnb-tab-product ul li.selected a {
    color: var(--wc-white) !important;
    font-weight: 700 !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: var(--wc-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--wc-gradient-primary);
}

.shadow-card {
    box-shadow: var(--wc-shadow);
}

.shadow-card-hover:hover {
    box-shadow: var(--wc-shadow-lg);
}

/* Hide default footer */
.ht-footer-nav-panel,
.ht-site-footer,
.ht-bottom-widget-panel,
footer:not(.wellcoms-modern-footer) {
    display: none !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Staggered animations */
.wellcoms-why-item:nth-child(1) { animation-delay: 0.1s; }
.wellcoms-why-item:nth-child(2) { animation-delay: 0.2s; }
.wellcoms-why-item:nth-child(3) { animation-delay: 0.3s; }
.wellcoms-why-item:nth-child(4) { animation-delay: 0.4s; }

.wellcoms-review-card:nth-child(1) { animation-delay: 0.1s; }
.wellcoms-review-card:nth-child(2) { animation-delay: 0.2s; }
.wellcoms-review-card:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .wellcoms-hero,
    .wellcoms-cta,
    .wp-block-button {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}
