/**
 * DATASSL - Modern SSL Store Theme
 * Inspired by ssl2buy.com
 * Version 2.0
 */

:root {
    /* Primary Colors */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #4D94FF;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    
    /* Secondary Colors */
    --secondary: #00D68F;
    --secondary-dark: #00B377;
    --warning: #FFAA00;
    --danger: #FF3D71;
    --info: #00CFDE;
    
    /* Neutral Colors */
    --dark: #192038;
    --dark-light: #2E3A59;
    --gray-900: #1A1F36;
    --gray-800: #2D3748;
    --gray-700: #4A5568;
    --gray-600: #718096;
    --gray-500: #A0AEC0;
    --gray-400: #CBD5E0;
    --gray-300: #E2E8F0;
    --gray-200: #EDF2F7;
    --gray-100: #F7FAFC;
    --white: #FFFFFF;
    
    /* Validation Type Colors */
    --dv-color: #00D68F;
    --ov-color: #0066FF;
    --ev-color: #9B59B6;
    --wildcard-color: #FF6B35;
    --multi-color: #00CFDE;
    
    /* Brand Colors */
    --sectigo: #2E7D32;
    --comodo: #1565C0;
    --digicert: #0D47A1;
    --geotrust: #D32F2F;
    --rapidssl: #7B1FA2;
    --thawte: #00695C;
    --globalsign: #E65100;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px rgba(0, 102, 255, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   ULTRA MODERN TOP BAR
============================================= */
.modern-topbar {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d25 100%);
    padding: 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: topbarShine 8s infinite;
}

@keyframes topbarShine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.modern-topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.modern-topbar .topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Trust Badges */
.modern-topbar .topbar-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-topbar .trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 214, 143, 0.1);
    border: 1px solid rgba(0, 214, 143, 0.2);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.modern-topbar .trust-badge i {
    color: #00D68F;
    font-size: 12px;
}

/* Online Dot for Support */
.modern-topbar .topbar-link .online-dot {
    width: 8px;
    height: 8px;
    background: #00D68F;
    border-radius: 50%;
    margin-left: 4px;
    animation: onlinePulse 2s infinite;
    box-shadow: 0 0 6px rgba(0, 214, 143, 0.6);
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.modern-topbar .topbar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.modern-topbar .topbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0;
}

.modern-topbar .topbar-item:hover {
    color: var(--white);
}

.modern-topbar .topbar-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #00D68F 100%);
    border-radius: 8px;
    color: var(--white);
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-topbar .topbar-item:hover i {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.modern-topbar .topbar-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 170, 0, 0.3);
    animation: noticePulse 2s infinite;
}

@keyframes noticePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255, 170, 0, 0); }
}

.modern-topbar .topbar-notice i {
    color: var(--warning);
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%, 90%, 100% { transform: rotate(0); }
    92%, 96% { transform: rotate(10deg); }
    94%, 98% { transform: rotate(-10deg); }
}

.modern-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modern-topbar .topbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-topbar .topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.modern-topbar .topbar-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.modern-topbar .topbar-link i {
    font-size: 11px;
    opacity: 0.8;
}

.modern-topbar .topbar-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.modern-topbar .topbar-selector {
    position: relative;
}

.modern-topbar .selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-topbar .selector-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-1px);
}

.modern-topbar .selector-btn .flag {
    font-size: 15px;
}

.modern-topbar .selector-btn .currency-symbol {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #00D68F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-topbar .selector-btn i.fa-chevron-down {
    font-size: 9px;
    margin-left: 2px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.modern-topbar .topbar-selector.open .selector-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.modern-topbar .selector-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
    min-width: 150px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.modern-topbar .topbar-selector.open .selector-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.modern-topbar .selector-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.modern-topbar .selector-dropdown a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 214, 143, 0.1));
    color: var(--primary);
    transform: translateX(4px);
}

.modern-topbar .selector-dropdown a.active {
    background: var(--primary);
    color: var(--white);
}

.modern-topbar .topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-topbar .topbar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-topbar .topbar-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* =============================================
   ULTRA MODERN HEADER
============================================= */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #00D68F, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-header.sticky::after {
    opacity: 1;
}

.modern-header.sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    padding-top: 0;
    padding-bottom: 0;
}

.modern-header.sticky .header-inner {
    padding: 10px 0;
}

.modern-header.sticky .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
}

.modern-header.sticky .logo-name {
    font-size: 20px;
}

.modern-header.sticky .logo-tagline {
    display: none;
}

.modern-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

/* Logo - Ultra Modern */
.modern-header .header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
}

.modern-header .logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0066FF 0%, #00D68F 50%, #0066FF 100%);
    background-size: 200% 200%;
    animation: logoGradient 5s ease infinite;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modern-header .header-logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
}

.modern-header .logo-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 214, 143, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-header .header-logo:hover .logo-icon::after {
    opacity: 1;
}

/* Logo Pulse Animation */
.modern-header .logo-pulse {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0066FF, #00D68F);
    animation: logoPulseAnim 2s ease-out infinite;
    z-index: -1;
}

@keyframes logoPulseAnim {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.modern-header .logo-text {
    display: flex;
    flex-direction: column;
}

.modern-header .logo-name {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.modern-header .header-logo:hover .logo-name {
    background: linear-gradient(135deg, var(--primary) 0%, #00D68F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-header .logo-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--gray-400);
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 2px;
}

.modern-header .logo-tagline i {
    color: #00D68F;
    font-size: 9px;
}

/* Quick Check Form in Header */
.modern-header .header-quick-check {
    flex: 0 0 auto;
    max-width: 280px;
}

.modern-header .quick-check-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    padding: 4px 4px 4px 16px;
    transition: all 0.3s ease;
}

.modern-header .quick-check-form:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
}

.modern-header .quick-check-form i {
    color: var(--gray-400);
    font-size: 14px;
}

.modern-header .quick-check-form:focus-within i {
    color: var(--primary);
}

.modern-header .quick-check-form input {
    flex: 1;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    outline: none;
    min-width: 150px;
}

.modern-header .quick-check-form input::placeholder {
    color: var(--gray-400);
}

.modern-header .quick-check-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-header .quick-check-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

@media (max-width: 1199px) {
    .modern-header .header-quick-check {
        display: none;
    }
}

/* Navigation - Ultra Modern */
.modern-header .header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.modern-header .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    background: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.modern-header .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 214, 143, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-full);
}

.modern-header .nav-link:hover::before,
.modern-header .nav-link.active::before {
    opacity: 1;
}

.modern-header .nav-link i:not(.arrow) {
    font-size: 14px;
    color: var(--gray-400);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modern-header .nav-link .arrow {
    font-size: 9px;
    margin-left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.modern-header .nav-link span {
    position: relative;
    z-index: 1;
}

.modern-header .nav-link:hover,
.modern-header .nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.modern-header .nav-link:hover i:not(.arrow),
.modern-header .nav-link.active i:not(.arrow) {
    color: var(--primary);
    transform: scale(1.1);
}

.modern-header .nav-link:hover .arrow {
    opacity: 1;
}

.modern-header .nav-item.open .nav-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Glass Effect */
.modern-header .nav-item {
    position: relative;
}

.modern-header .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0,0,0,0.05);
    min-width: 280px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.modern-header .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.modern-header .nav-item.open .nav-dropdown,
.modern-header .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.modern-header .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-header .nav-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), #00D68F);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 3px 3px 0;
}

.modern-header .nav-dropdown a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    color: var(--primary);
    transform: translateX(4px);
}

.modern-header .nav-dropdown a:hover::before {
    opacity: 1;
}

.modern-header .nav-dropdown a i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 214, 143, 0.1));
    border-radius: 10px;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.modern-header .nav-dropdown a:hover i {
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.modern-header .nav-dropdown a div {
    display: flex;
    flex-direction: column;
}

.modern-header .nav-dropdown a strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.modern-header .nav-dropdown a:hover strong {
    color: var(--primary);
}

.modern-header .nav-dropdown a span {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Mega Menu - Ultra Modern */
.modern-header .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 940px;
    max-width: calc(100vw - 40px);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.modern-header .mega-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00D68F, var(--primary));
    background-size: 200% 100%;
    animation: megaGradient 3s ease infinite;
}

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

.modern-header .nav-item.open .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.modern-header .mega-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 0;
}

.modern-header .mega-section {
    padding: 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.modern-header .mega-section:last-child {
    border-right: none;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.03), rgba(0, 214, 143, 0.03));
}

.modern-header .mega-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-400);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-header .mega-title i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border-radius: 6px;
    color: var(--white);
    font-size: 11px;
}

.modern-header .mega-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modern-header .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-header .mega-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-header .mega-item:hover::before {
    opacity: 1;
}

.modern-header .mega-item:hover {
    transform: translateX(6px);
}

.modern-header .mega-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-header .mega-item:hover .mega-icon {
    transform: scale(1.1) rotate(-5deg);
}

.modern-header .mega-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.modern-header .mega-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s ease;
}

.modern-header .mega-item:hover .mega-info strong {
    color: var(--primary);
}

.modern-header .mega-info span {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
}

.modern-header .mega-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    margin-top: 6px;
}

.modern-header .mega-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.modern-header .brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .brand-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 214, 143, 0.05));
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.modern-header .brand-link img {
    max-height: 26px;
    max-width: 90px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.modern-header .brand-link:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.modern-header .brand-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.modern-header .brand-link:hover .brand-text {
    color: var(--primary);
}

.modern-header .mega-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 214, 143, 0.1));
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.modern-header .mega-viewall:hover {
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: var(--white);
    transform: translateX(4px);
}

.modern-header .mega-cta {
    padding: 28px;
    background: linear-gradient(135deg, #0066FF 0%, #00D68F 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.modern-header .mega-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: ctaPulse 3s ease infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.modern-header .cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.modern-header .mega-cta h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.modern-header .mega-cta p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.modern-header .mega-cta .btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
    padding: 12px 24px;
    position: relative;
    z-index: 1;
}

.modern-header .mega-cta .btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Header Actions - Ultra Modern */
.modern-header .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-header .action-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    color: var(--gray-600);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-header .action-btn:hover {
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

/* Action Tooltip */
.modern-header .action-tooltip {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-header .action-btn:hover .action-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Live Chat Button */
.modern-header .live-chat-btn {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.15), rgba(0, 214, 143, 0.08));
    border-color: rgba(0, 214, 143, 0.2);
}

.modern-header .live-chat-btn:hover {
    background: linear-gradient(135deg, #00D68F, #00B377);
}

.modern-header .online-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #00D68F;
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: onlineBlink 2s infinite;
}

@keyframes onlineBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 214, 143, 0); }
}

.modern-header .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35, #FF3366);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0 6px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: cartPulse 2s ease infinite;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Auth Buttons - Ultra Modern */
.modern-header .auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-header .btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid rgba(0, 102, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .btn-login:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

.modern-header .btn-login i {
    font-size: 14px;
}

.modern-header .btn-register {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.modern-header .btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.modern-header .btn-register i {
    font-size: 14px;
}

/* Button Shine Effect */
.modern-header .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.modern-header .auth-buttons .btn {
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .auth-buttons .btn-outline-primary {
    border: 2px solid rgba(0, 102, 255, 0.3);
    color: var(--primary);
    background: transparent;
}

.modern-header .auth-buttons .btn-outline-primary:hover {
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
}

.modern-header .auth-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.modern-header .auth-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.modern-header .auth-buttons .btn i {
    margin-right: 8px;
}

/* User Dropdown - Ultra Modern */
.modern-header .user-dropdown {
    position: relative;
}

.modern-header .user-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.1);
    padding: 6px 16px 6px 6px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .user-btn:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 214, 143, 0.1));
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.modern-header .user-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.modern-header .user-btn:hover .user-avatar {
    transform: scale(1.05);
}

.modern-header .user-avatar.large {
    width: 44px;
    height: 44px;
    font-size: 17px;
}

.modern-header .user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.modern-header .user-btn:hover .user-name {
    color: var(--primary);
}

.modern-header .user-btn i {
    font-size: 9px;
    color: var(--gray-400);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.modern-header .user-dropdown.open .user-btn i {
    transform: rotate(180deg);
}

.modern-header .user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.modern-header .user-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #00D68F);
}

.modern-header .user-dropdown.open .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.modern-header .user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 214, 143, 0.03));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-header .user-info div {
    display: flex;
    flex-direction: column;
}

.modern-header .user-info strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.modern-header .user-info span {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.modern-header .user-links {
    padding: 10px;
}

.modern-header .user-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    color: var(--gray-700);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.modern-header .user-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), #00D68F);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.modern-header .user-links a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    color: var(--primary);
    transform: translateX(4px);
}

.modern-header .user-links a:hover::before {
    height: 70%;
}

.modern-header .user-links a i {
    width: 22px;
    text-align: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.modern-header .user-links a:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.modern-header .user-logout {
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-header .user-logout a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    color: var(--danger);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.modern-header .user-logout a:hover {
    background: rgba(255, 61, 113, 0.1);
    transform: translateX(4px);
}

.modern-header .user-logout a i {
    width: 22px;
    text-align: center;
}

/* Brands Dropdown Menu - Ultra Modern */
.modern-header .brands-dropdown .nav-dropdown.brands-menu {
    width: 520px;
    padding: 0;
    overflow: hidden;
}

.modern-header .brands-dropdown .nav-dropdown.brands-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00D68F, #FF6B35, var(--primary));
    background-size: 300% 100%;
    animation: brandGradient 4s ease infinite;
}

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

.modern-header .brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 16px;
    max-height: 420px;
    overflow-y: auto;
}

.modern-header .brand-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.modern-header .brand-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border-color: rgba(0, 102, 255, 0.1);
    transform: translateX(6px);
}

.modern-header .brand-logo {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-header .brand-item:hover .brand-logo {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.modern-header .brand-logo img {
    max-width: 38px;
    max-height: 30px;
    object-fit: contain;
}

.modern-header .brand-letter {
    font-size: 22px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
}

.modern-header .brand-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.modern-header .brand-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s ease;
}

.modern-header .brand-item:hover .brand-info strong {
    color: var(--primary);
}

.modern-header .brand-info span {
    font-size: 11px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-header .brand-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: var(--white) !important;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 10px !important;
    font-weight: 700;
    margin-top: 4px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

.modern-header .brands-footer {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 214, 143, 0.03));
    padding: 14px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.modern-header .view-all-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.modern-header .view-all-brands:hover {
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.modern-header .view-all-brands i:first-child {
    font-size: 14px;
}

.modern-header .view-all-brands i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.modern-header .view-all-brands:hover i:last-child {
    transform: translateX(4px);
}

/* Brands Grid Scrollbar - Modern */
.modern-header .brands-grid::-webkit-scrollbar {
    width: 5px;
}

.modern-header .brands-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}

.modern-header .brands-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), #00D68F);
    border-radius: 5px;
}

.modern-header .brands-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0052cc, #00b377);
}

/* Mobile Brands Menu */
@media (max-width: 991px) {
    .modern-header .brands-dropdown .nav-dropdown.brands-menu {
        width: 100%;
    }
    
    .modern-header .brands-grid {
        grid-template-columns: 1fr;
        max-height: none;
        padding: 8px;
    }
    
    .modern-header .brand-item {
        padding: 10px;
    }
    
    .modern-header .brands-footer {
        padding: 10px;
    }
}

/* Search Overlay - Ultra Modern */
.modern-header .search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-header .search-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #00D68F, var(--primary));
    background-size: 200% 100%;
    animation: searchGradient 3s ease infinite;
}

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

.modern-header .search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modern-header .search-form {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 2px solid rgba(0, 102, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-header .search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.modern-header .search-form i.fa-search {
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.modern-header .search-form:focus-within i.fa-search {
    transform: scale(1.1);
}

.modern-header .search-form input {
    flex: 1;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    padding: 16px 0;
    outline: none;
}

.modern-header .search-form input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.modern-header .search-close {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border: none;
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-header .search-close:hover {
    background: linear-gradient(135deg, var(--danger), #FF3366);
    color: var(--white);
    transform: rotate(90deg);
}

.modern-header .search-suggestions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-header .search-suggestions span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
}

.modern-header .search-suggestions a {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.modern-header .search-suggestions a:hover {
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Mobile Toggle - Ultra Modern */
.modern-header .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 214, 143, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    transition: all 0.3s ease;
}

.modern-header .mobile-toggle:hover {
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border-color: transparent;
}

.modern-header .mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header .mobile-toggle:hover span {
    background: var(--white);
}

.modern-header .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-header .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.modern-header .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive */
@media (max-width: 1199px) {
    .modern-header .mega-dropdown {
        width: 750px;
    }
    
    .modern-header .mega-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .modern-header .mega-cta {
        display: none;
    }
}

@media (max-width: 991px) {
    .modern-topbar .topbar-contact,
    .modern-topbar .topbar-links,
    .modern-topbar .topbar-notice,
    .modern-topbar .topbar-trust {
        display: none;
    }
    
    .modern-topbar .topbar-left {
        display: none;
    }
    
    .modern-topbar .topbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .modern-header .mobile-toggle {
        display: flex;
    }
    
    .modern-header .live-chat-btn {
        display: none;
    }
    
    .modern-header .action-tooltip {
        display: none;
    }
    
    .modern-header .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 90px 16px 20px;
        box-shadow: 30px 0 80px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .modern-header .header-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), #00D68F);
    }
    
    .modern-header .header-nav.active {
        left: 0;
    }
    
    .modern-header .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }
    
    .modern-header .nav-link::before {
        display: none;
    }
    
    .modern-header .nav-item {
        width: 100%;
    }
    
    .modern-header .nav-dropdown,
    .modern-header .mega-dropdown {
        position: static;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        border-left: 4px solid;
        border-image: linear-gradient(180deg, var(--primary), #00D68F) 1;
        margin: 0 0 0 16px;
        padding: 10px 0;
        width: auto;
        max-width: none;
        display: none;
        background: rgba(0, 102, 255, 0.03);
        backdrop-filter: none;
    }
    
    .modern-header .nav-dropdown::before,
    .modern-header .mega-dropdown::before {
        display: none;
    }
    
    .modern-header .nav-item.open .nav-dropdown,
    .modern-header .nav-item.open .mega-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .modern-header .mega-container {
        display: block;
    }
    
    .modern-header .mega-section {
        border: none;
        padding: 14px 18px;
    }
    
    .modern-header .mega-brands {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modern-header .auth-buttons .btn span {
        display: none;
    }
    
    .modern-header .user-name {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 26, 0.6);
        backdrop-filter: blur(5px);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

@media (max-width: 575px) {
    .modern-header .header-inner {
        padding: 12px 0;
    }
    
    .modern-header .logo-tagline {
        display: none;
    }
    
    .modern-header .logo-name {
        font-size: 18px;
    }
    
    .modern-header .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .modern-header .logo-pulse {
        border-radius: 10px;
    }
    
    .modern-header .header-actions {
        gap: 6px;
    }
    
    .modern-header .action-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .modern-header .btn-login {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .modern-header .btn-login span {
        display: none;
    }
    
    .modern-header .btn-register {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .modern-header .btn-register span {
        display: none;
    }
    
    .modern-header .btn-register i {
        margin: 0;
    }
    
    .modern-header .auth-buttons .btn {
        padding: 10px 14px;
    }
    
    .modern-header .mobile-toggle {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* =============================================
   HERO SLIDER SECTION - Modern Clean Design
============================================= */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

/* Backward compatibility */
.hero-section {
    background: linear-gradient(160deg, #0a1628 0%, #0f2847 35%, #1a365d 65%, #0d1f3c 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 800px at 20% 20%, rgba(59, 130, 246, 0.08), transparent),
        radial-gradient(circle 600px at 80% 80%, rgba(16, 185, 129, 0.06), transparent),
        radial-gradient(circle 400px at 50% 50%, rgba(99, 102, 241, 0.05), transparent);
    opacity: 1;
}

/* Hero Slide - Clean Modern Look */
.hero-slide {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: linear-gradient(160deg, #0a1628 0%, #0f2847 35%, #1a365d 65%, #0d1f3c 100%) !important;
}

.hero-slide .container {
    max-width: 1200px;
}

.hero-slide .hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(59, 130, 246, 0.12), transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 100%, rgba(16, 185, 129, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.min-vh-hero {
    min-height: 450px;
}

/* Hero Carousel Styling */
#heroSlider .carousel-inner {
    overflow: visible;
}

#heroSlider .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-section:hover #heroSlider .carousel-control-prev,
.hero-slider-section:hover #heroSlider .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-control-prev {
    left: 30px;
}

#heroSlider .carousel-control-next {
    right: 30px;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

#heroSlider .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

#heroSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    background: #fff;
    transform: scale(1.2);
}

/* Hero Stats Bar */
.hero-stats-bar {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--white);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text,
.hero-title span {
    background: linear-gradient(90deg, #00D68F, #00CFDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 0 20px;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 10px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-transform: none;
    letter-spacing: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease 0.4s both;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =============================================
   SEARCH & FILTER BAR
============================================= */
.search-section {
    background: var(--white);
    margin-top: 30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 30px 40px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--gray-200);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
}

.filter-tab .badge {
    margin-left: 6px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.search-input-group {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 24px 16px 56px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 16px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 20px;
}

/* =============================================
   PRODUCT CARDS - ssl2buy Style
============================================= */
.products-section {
    padding: 80px 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 214, 143, 0.1));
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-card.featured {
    border: 2px solid var(--primary);
}

.product-card.featured::before {
    content: 'En Popüler';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 1;
}

.product-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    padding: 8px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.product-brand-info {
    flex: 1;
}

.product-brand-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.product-body {
    padding: 20px 24px;
    flex: 1;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.product-price-period {
    font-size: 14px;
    color: var(--gray-500);
}

.product-old-price {
    font-size: 16px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px dashed var(--gray-200);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
}

.product-validation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-validation.dv {
    background: rgba(0, 214, 143, 0.1);
    color: var(--dv-color);
}

.product-validation.ov {
    background: rgba(0, 102, 255, 0.1);
    color: var(--ov-color);
}

.product-validation.ev {
    background: rgba(155, 89, 182, 0.1);
    color: var(--ev-color);
}

.product-footer {
    padding: 16px 24px 24px;
}

.btn-buy {
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-buy-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

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

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

/* =============================================
   CERTIFICATE TYPES GRID
============================================= */
.cert-types-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.cert-type-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.cert-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.cert-type-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.cert-type-icon.dv {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.15), rgba(0, 214, 143, 0.05));
    color: var(--dv-color);
}

.cert-type-icon.ov {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 102, 255, 0.05));
    color: var(--ov-color);
}

.cert-type-icon.ev {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.05));
    color: var(--ev-color);
}

.cert-type-icon.wildcard {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    color: var(--wildcard-color);
}

.cert-type-icon.multi {
    background: linear-gradient(135deg, rgba(0, 207, 222, 0.15), rgba(0, 207, 222, 0.05));
    color: var(--multi-color);
}

.cert-type-icon.code {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(255, 170, 0, 0.05));
    color: var(--warning);
}

.cert-type-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.cert-type-description {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cert-type-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.cert-type-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

/* =============================================
   BRANDS SECTION
============================================= */
.brands-section {
    padding: 60px 0;
    background: var(--white);
}

.brand-logo-card {
    background: var(--gray-100);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.brand-logo-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}

.brand-logo-card img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =============================================
   FEATURES/BENEFITS SECTION
============================================= */
.features-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Feature icon gradients with white text */
.feature-icon.icon-1 { background: linear-gradient(135deg, #3b82f6, #2563eb) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35); }
.feature-icon.icon-2 { background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35); }
.feature-icon.icon-3 { background: linear-gradient(135deg, #10b981, #059669) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35); }
.feature-icon.icon-4 { background: linear-gradient(135deg, #f59e0b, #d97706) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35); }
.feature-icon.icon-5 { background: linear-gradient(135deg, #ec4899, #db2777) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(236, 72, 153, 0.35); }
.feature-icon.icon-6 { background: linear-gradient(135deg, #06b6d4, #0891b2) !important; color: #fff !important; box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35); }

.feature-icon i {
    color: #fff !important;
    opacity: 1 !important;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #003D99 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta {
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

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

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* =============================================
   FAQ SECTION
============================================= */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =============================================
   FOOTER
============================================= */
.main-footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: var(--gray-400);
}

.footer-widget-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-input {
    display: flex;
    gap: 8px;
}

.footer-newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-newsletter-input input::placeholder {
    color: var(--gray-500);
}

.footer-newsletter-input button {
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius);
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-input button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payment-icons {
    display: flex;
    gap: 12px;
}

.footer-payment-icons img {
    height: 28px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payment-icons img:hover {
    opacity: 1;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* =============================================
   UTILITIES
============================================= */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--dv-color) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--gray-600) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-light { background: var(--gray-100) !important; }
.bg-dark { background: var(--dark) !important; }

.rounded { border-radius: var(--radius) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: var(--radius-full) !important; }

.shadow { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-slide {
        min-height: 550px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-slide {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .min-vh-hero {
        min-height: 380px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-value {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 60px;
        text-align: center;
    }
    
    .hero-slide {
        min-height: 450px;
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .min-vh-hero {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat {
        padding: 0 10px;
    }
    
    .hero-stat-value {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 12px;
    }
    
    .hero-stats-bar {
        padding: 20px 0;
    }
    
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        display: none;
    }
    
    #heroSlider .carousel-indicators {
        bottom: 15px;
    }
    
    #heroSlider .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .search-section {
        padding: 20px;
        margin-top: -30px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .products-section,
    .cert-types-section,
    .features-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Loading Animation */
.loading-skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
/* =============================================
   CLEAN MINIMAL HEADER OVERRIDE
   User requested cleaner design (logo is good)
============================================= */

/* Clean Topbar - Minimalist */
.modern-topbar {
    background: #0f1629 !important;
    padding: 0 !important;
    font-size: 13px;
    border-bottom: none !important;
    overflow: visible !important;
}

.modern-topbar::before {
    display: none !important;
}

.modern-topbar .topbar-inner {
    padding: 8px 0 !important;
    gap: 20px !important;
}

/* Hide trust badges - too cluttered */
.modern-topbar .topbar-trust {
    display: none !important;
}

/* Clean contact items */
.modern-topbar .topbar-item {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0 !important;
    gap: 8px !important;
}

.modern-topbar .topbar-item:hover {
    color: #fff !important;
}

.modern-topbar .topbar-item i {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 13px !important;
    color: var(--primary-light) !important;
}

.modern-topbar .topbar-item:hover i {
    transform: none !important;
    box-shadow: none !important;
}

/* Clean topbar links */
.modern-topbar .topbar-link {
    background: transparent !important;
    border: none !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
}

.modern-topbar .topbar-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
}

/* Hide online dot animation - too busy */
.modern-topbar .topbar-link .online-dot {
    display: none !important;
}

/* Clean selectors */
.modern-topbar .selector-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 5px 12px !important;
    border-radius: 6px !important;
}

.modern-topbar .selector-btn:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.modern-topbar .selector-btn .currency-symbol {
    background: none !important;
    -webkit-text-fill-color: #00D68F !important;
}

/* Clean social icons */
.modern-topbar .topbar-social a {
    width: 28px !important;
    height: 28px !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.modern-topbar .topbar-social a:hover {
    background: transparent !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Clean divider */
.modern-topbar .topbar-divider {
    background: rgba(255, 255, 255, 0.15) !important;
    height: 20px !important;
}

/* =============================================
   CLEAN HEADER MAIN
============================================= */
.modern-header {
    background: #fff !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    border-bottom: none !important;
}

.modern-header::after {
    display: none !important;
}

.modern-header .header-inner {
    padding: 12px 0 !important;
    gap: 30px !important;
}

/* Logo styles stay the same - user approved */

/* Clean Navigation */
.modern-header .nav-link {
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    border-radius: 8px !important;
}

.modern-header .nav-link::before {
    display: none !important;
}

.modern-header .nav-link:hover,
.modern-header .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 102, 255, 0.06) !important;
    transform: none !important;
}

.modern-header .nav-link i:not(.arrow) {
    color: #9CA3AF !important;
    font-size: 13px !important;
}

.modern-header .nav-link:hover i:not(.arrow),
.modern-header .nav-link.active i:not(.arrow) {
    color: var(--primary) !important;
    transform: none !important;
}

.modern-header .nav-link .arrow {
    opacity: 0.4 !important;
    font-size: 10px !important;
}

/* Clean Header Actions */
.modern-header .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.modern-header .search-btn,
.modern-header .cart-btn {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f3f4f6 !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: #6B7280 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    text-decoration: none !important;
}

.modern-header .search-btn:hover,
.modern-header .cart-btn:hover {
    background: #e5e7eb !important;
    color: var(--primary) !important;
    transform: none !important;
    box-shadow: none !important;
}

.modern-header .cart-btn .cart-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    min-width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9px !important;
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: none !important;
    animation: none !important;
}

/* Auth Buttons Container */
.modern-header .auth-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Clean Auth Buttons */
.modern-header .btn-login {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: 2px solid #e5e7eb !important;
    color: #374151 !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.modern-header .btn-login::before,
.modern-header .btn-login::after {
    display: none !important;
}

.modern-header .btn-login:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: rgba(0, 102, 255, 0.05) !important;
    transform: none !important;
}

.modern-header .btn-login i {
    font-size: 13px !important;
}

.modern-header .btn-register {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--primary) !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.modern-header .btn-register i {
    font-size: 13px !important;
}

.modern-header .btn-register::before {
    display: none !important;
}

.modern-header .btn-register:hover {
    background: #0052cc !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3) !important;
}

/* Clean Dropdown Menus */
.modern-header .nav-dropdown {
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    margin-top: 10px !important;
    padding: 8px !important;
}

.modern-header .nav-dropdown::before {
    display: none !important;
}

.modern-header .nav-dropdown a {
    padding: 10px 14px !important;
    border-radius: 8px !important;
    gap: 12px !important;
}

.modern-header .nav-dropdown a:hover {
    background: rgba(0, 102, 255, 0.06) !important;
    transform: none !important;
}

/* Clean Mega Menu */
.modern-header .mega-menu {
    border-radius: 16px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    margin-top: 10px !important;
    padding: 24px !important;
}

.modern-header .mega-menu::before {
    display: none !important;
}

.modern-header .mega-menu-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #9CA3AF !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.modern-header .mega-menu-link {
    padding: 8px 12px !important;
    border-radius: 8px !important;
    gap: 10px !important;
}

.modern-header .mega-menu-link:hover {
    background: rgba(0, 102, 255, 0.06) !important;
    transform: none !important;
}

.modern-header .mega-menu-link::before {
    display: none !important;
}

.modern-header .mega-menu-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.modern-header .mega-menu-link:hover .mega-menu-icon {
    transform: none !important;
}

.modern-header .mega-menu-text h6 {
    font-size: 13px !important;
    font-weight: 600 !important;
}

.modern-header .mega-menu-text small {
    font-size: 11px !important;
    color: #9CA3AF !important;
    margin-top: 2px !important;
}

/* Hide decorative elements */
.modern-header .mega-menu-highlight,
.modern-header .mega-promo,
.modern-header .mega-feature {
    display: none !important;
}

/* Clean Brands Dropdown */
.modern-header .brands-dropdown {
    border-radius: 16px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    margin-top: 10px !important;
    padding: 20px !important;
}

.modern-header .brands-dropdown::before {
    display: none !important;
}

.modern-header .brands-grid {
    gap: 10px !important;
}

.modern-header .brand-item {
    padding: 14px !important;
    border-radius: 10px !important;
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
}

.modern-header .brand-item:hover {
    background: #fff !important;
    border-color: var(--primary) !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1) !important;
}

.modern-header .brand-item img {
    max-height: 28px !important;
}

/* Clean User Menu */
.modern-header .user-menu .user-dropdown {
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    padding: 8px !important;
}

.modern-header .user-menu .user-dropdown::before {
    display: none !important;
}

/* Clean Search Overlay */
.search-overlay .search-container {
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
}

.search-overlay .search-input-wrap {
    border-radius: 12px !important;
}

/* Mobile Menu Clean */
@media (max-width: 991px) {
    .modern-header .mobile-menu {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    }
    
    .modern-header .mobile-nav-link {
        padding: 12px 16px !important;
        border-radius: 8px !important;
    }
    
    .modern-header .mobile-nav-link:hover {
        background: rgba(0, 102, 255, 0.06) !important;
    }
}

/* Sticky Header Clean */
.modern-header.sticky {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.modern-header.sticky .header-inner {
    padding: 10px 0 !important;
}

/* Clean Mega Dropdown */
.modern-header .mega-dropdown {
    border-radius: 16px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
    margin-top: 10px !important;
    padding: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.modern-header .mega-dropdown::before,
.modern-header .mega-dropdown::after {
    display: none !important;
}

.modern-header .mega-container {
    gap: 24px !important;
}

.modern-header .mega-section {
    padding: 0 !important;
}

.modern-header .mega-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #9CA3AF !important;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid #f3f4f6 !important;
}

.modern-header .mega-title i {
    margin-right: 8px !important;
    color: var(--primary) !important;
}

.modern-header .mega-grid {
    gap: 6px !important;
}

.modern-header .mega-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.modern-header .mega-item:hover {
    background: rgba(0, 102, 255, 0.05) !important;
    transform: none !important;
}

.modern-header .mega-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modern-header .mega-item:hover .mega-icon {
    transform: none !important;
}

.modern-header .mega-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.modern-header .mega-info strong {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1F2937 !important;
}

.modern-header .mega-info span {
    font-size: 11px !important;
    color: #9CA3AF !important;
}

.modern-header .mega-count {
    font-size: 10px !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.modern-header .mega-brands {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 12px 0 !important;
}

.modern-header .brand-link {
    padding: 10px 14px !important;
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.modern-header .brand-link:hover {
    background: #fff !important;
    border-color: var(--primary) !important;
    transform: none !important;
}

.modern-header .brand-link img {
    height: 20px !important;
    max-width: 80px !important;
    object-fit: contain !important;
}

.modern-header .mega-viewall {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    transition: all 0.2s ease !important;
}

.modern-header .mega-viewall:hover {
    color: #0052cc !important;
}

.modern-header .mega-viewall i {
    font-size: 11px !important;
    transition: transform 0.2s ease !important;
}

.modern-header .mega-viewall:hover i {
    transform: translateX(3px) !important;
}

.modern-header .mega-cta {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%) !important;
    border: 1px solid rgba(0, 102, 255, 0.1) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    text-align: center !important;
}

.modern-header .mega-cta .cta-badge {
    display: inline-block !important;
    background: var(--primary) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    margin-bottom: 10px !important;
}

.modern-header .mega-cta h5 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin-bottom: 6px !important;
}

.modern-header .mega-cta p {
    font-size: 12px !important;
    color: #6B7280 !important;
    margin-bottom: 12px !important;
}

.modern-header .mega-cta .btn {
    font-size: 13px !important;
    padding: 8px 16px !important;
}

/* Clean Brands Menu in Nav */
.modern-header .brands-menu {
    min-width: 600px !important;
    padding: 20px !important;
}

.modern-header .brands-menu .brands-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
}

.modern-header .brands-menu .brand-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 12px !important;
    background: #f9fafb !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.modern-header .brands-menu .brand-item:hover {
    background: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1) !important;
    transform: none !important;
}

.modern-header .brands-menu .brand-logo {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
}

.modern-header .brands-menu .brand-logo img {
    max-width: 40px !important;
    max-height: 30px !important;
    object-fit: contain !important;
}

.modern-header .brands-menu .brand-letter {
    font-size: 18px !important;
    font-weight: 800 !important;
}

.modern-header .brands-menu .brand-info strong {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1F2937 !important;
    margin-bottom: 2px !important;
}

.modern-header .brands-menu .brand-info span {
    font-size: 11px !important;
    color: #9CA3AF !important;
}

.modern-header .brands-menu .brand-count {
    display: block !important;
    font-size: 10px !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
}

.modern-header .brands-footer {
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid #f3f4f6 !important;
    text-align: center !important;
}

.modern-header .view-all-brands {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    transition: all 0.2s ease !important;
}

.modern-header .view-all-brands:hover {
    color: #0052cc !important;
}
/* =============================================
   NEW MODERN HEADER & FOOTER - 2024 REDESIGN
============================================= */

/* ========== TOPBAR ========== */
.site-topbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-topbar .topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-topbar .topbar-left,
.site-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-topbar .topbar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.site-topbar .topbar-contact:hover {
    color: #fff;
}

.site-topbar .topbar-contact i {
    color: var(--primary-light);
    font-size: 12px;
}

.site-topbar .topbar-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.site-topbar .topbar-link:hover {
    color: #fff;
}

.site-topbar .topbar-link i {
    font-size: 11px;
}

.site-topbar .topbar-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

/* Topbar Dropdown */
.site-topbar .topbar-dropdown {
    position: relative;
}

.site-topbar .topbar-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.site-topbar .topbar-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.site-topbar .topbar-dropdown-btn i.fa-chevron-down {
    font-size: 9px;
    transition: transform 0.2s;
}

.site-topbar .topbar-dropdown.open .topbar-dropdown-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.site-topbar .topbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s;
    z-index: 1000;
}

.site-topbar .topbar-dropdown.open .topbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-topbar .topbar-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--gray-700);
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.15s;
}

.site-topbar .topbar-dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.site-topbar .topbar-dropdown-menu a.active {
    background: var(--primary);
    color: #fff;
}

/* ========== MAIN HEADER ========== */
.site-header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 30px;
}

/* Logo */
.site-header .site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-header .logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00D68F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.site-header .site-logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.site-header .logo-text {
    display: flex;
    flex-direction: column;
}

.site-header .logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.site-header .logo-desc {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.site-header .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-item {
    position: relative;
}

.site-header .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.06);
}

.site-header .nav-link i.fa-chevron-down {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.2s;
}

.site-header .nav-item.open .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.site-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 10px;
}

.site-header .nav-item.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Override for brands dropdown - left aligned */
.site-header .nav-item.has-dropdown.open .dropdown-menu.brands-dropdown {
    transform: translateY(0);
}

.site-header .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--gray-700);
    border-radius: 8px;
    transition: all 0.15s;
}

.site-header .dropdown-item:hover {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary);
}

.site-header .dropdown-item i {
    width: 18px;
    color: var(--gray-500);
    font-size: 14px;
}

.site-header .dropdown-item:hover i {
    color: var(--primary);
}

.site-header .dropdown-item span {
    flex: 1;
}

.site-header .dropdown-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.site-header .dropdown-item small {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.site-header .dropdown-footer {
    padding: 10px 14px;
    border-top: 1px solid var(--gray-200);
    margin-top: 6px;
    text-align: center;
}

.site-header .dropdown-footer a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.site-header .dropdown-footer a:hover {
    text-decoration: underline;
}

/* Brands Dropdown */
.site-header .brands-dropdown {
    min-width: 360px;
    padding: 16px;
    left: 0;
    transform: translateY(5px);
}

.site-header .nav-item.has-dropdown.open .brands-dropdown {
    transform: translateY(0);
}

.site-header .brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.site-header .brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.2s;
    text-align: center;
}

.site-header .brand-item:hover {
    background: var(--gray-100);
}

.site-header .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.site-header .brand-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Mega Menu */
.site-header .megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    width: 800px;
    max-width: calc(100vw - 40px);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1000;
    margin-top: 10px;
}

.site-header .nav-item.has-megamenu.open .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.site-header .megamenu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 30px;
}

.site-header .megamenu-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.site-header .megamenu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-header .megamenu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s;
}

.site-header .megamenu-item:hover {
    background: var(--gray-100);
}

.site-header .megamenu-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.site-header .megamenu-text {
    flex: 1;
    min-width: 0;
}

.site-header .megamenu-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.site-header .megamenu-text small {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 1px;
}

.site-header .megamenu-badge {
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

.site-header .megamenu-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.site-header .brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.site-header .brand-chip:hover {
    background: #fff;
    border-color: var(--brand-color, var(--primary));
    color: var(--brand-color, var(--primary));
}

.site-header .brand-chip span {
    font-size: 11px;
    color: var(--gray-500);
}

.site-header .megamenu-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.site-header .megamenu-viewall:hover {
    text-decoration: underline;
}

.site-header .megamenu-promo .promo-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.site-header .promo-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.site-header .promo-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.site-header .promo-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.site-header .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.site-header .promo-btn:hover {
    background: var(--primary-dark);
}

/* Header Actions */
.site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header .action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.site-header .action-btn:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.site-header .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Dropdown */
.site-header .user-dropdown {
    position: relative;
}

.site-header .user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.site-header .user-btn:hover {
    background: var(--gray-200);
}

.site-header .user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .user-avatar.lg {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
}

.site-header .user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.site-header .user-btn i {
    font-size: 10px;
    color: var(--gray-500);
    transition: transform 0.2s;
}

.site-header .user-dropdown.open .user-btn i {
    transform: rotate(180deg);
}

.site-header .user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.site-header .user-dropdown.open .user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .user-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.site-header .user-header strong {
    display: block;
    font-size: 14px;
    color: var(--gray-800);
}

.site-header .user-header small {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.site-header .user-links {
    padding: 8px;
}

.site-header .user-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.15s;
}

.site-header .user-links a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.site-header .user-links a i {
    width: 18px;
    color: var(--gray-500);
}

.site-header .user-links a:hover i {
    color: var(--primary);
}

.site-header .user-footer {
    padding: 8px;
    border-top: 1px solid var(--gray-200);
}

.site-header .logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: var(--gray-100);
    color: var(--danger);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.site-header .logout-btn:hover {
    background: rgba(255, 61, 113, 0.1);
}

/* Auth Buttons */
.site-header .auth-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-header .btn-login {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    transition: all 0.2s;
}

.site-header .btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
}

.site-header .btn-register {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    transition: all 0.2s;
}

.site-header .btn-register:hover {
    background: var(--primary-dark);
}

/* Mobile Toggle */
.site-header .mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.site-header .mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-overlay .search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
}

.search-overlay .search-form i {
    color: var(--gray-500);
    font-size: 18px;
}

.search-overlay .search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    padding: 12px 0;
    background: transparent;
}

.search-overlay .search-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 10px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.search-overlay .search-close:hover {
    background: var(--gray-200);
}

.search-overlay .search-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.search-overlay .search-tags span {
    font-size: 13px;
    color: var(--gray-500);
}

.search-overlay .search-tags a {
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s;
}

.search-overlay .search-tags a:hover {
    background: var(--primary);
    color: #fff;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.mobile-logo i {
    color: var(--primary);
    font-size: 22px;
}

.mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    color: var(--gray-600);
    cursor: pointer;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.mobile-link {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-menu-footer {
    padding: 16px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 10px;
}

.mobile-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-btn.outline {
    background: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ========== MODERN FOOTER ========== */
.site-footer {
    background: #0f172a;
    color: #fff;
    margin-top: 80px;
}

.site-footer .footer-main {
    padding: 60px 0 40px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: 40px;
}

/* Footer Brand */
.site-footer .footer-brand {
    padding-right: 30px;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.site-footer .footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #00D68F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.site-footer .footer-logo span {
    font-size: 20px;
    font-weight: 800;
}

.site-footer .footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.site-footer .footer-social {
    display: flex;
    gap: 10px;
}

.site-footer .footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.2s;
}

.site-footer .footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* Footer Links */
.site-footer .footer-links h4,
.site-footer .footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #fff;
}

.site-footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.site-footer .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Contact */
.site-footer .contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.site-footer .contact-item i {
    width: 20px;
    color: var(--primary-light);
    font-size: 14px;
    margin-top: 3px;
}

.site-footer .contact-item span {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.site-footer .contact-item a,
.site-footer .contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.site-footer .contact-item a:hover {
    color: #fff;
}

/* Trust Badges */
.site-footer .footer-trust {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.site-footer .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

.site-footer .trust-item i {
    color: var(--secondary);
    font-size: 18px;
}

/* Footer Bottom */
.site-footer .footer-bottom {
    padding: 20px 0;
}

.site-footer .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.site-footer .footer-bottom-links {
    display: flex;
    gap: 24px;
}

.site-footer .footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.site-footer .footer-bottom-links a:hover {
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .site-header .megamenu {
        width: 700px;
    }
    
    .site-header .megamenu-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .site-header .megamenu-promo {
        display: none;
    }
}

@media (max-width: 991px) {
    .site-topbar .topbar-left {
        display: none;
    }
    
    .site-topbar .topbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .site-header .main-nav {
        display: none;
    }
    
    .site-header .mobile-toggle {
        display: flex;
    }
    
    .site-header .auth-btns {
        display: none;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .site-footer .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .site-footer .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .site-topbar {
        padding: 8px 0;
    }
    
    .site-topbar .topbar-link span {
        display: none;
    }
    
    .site-header .header-wrapper {
        padding: 12px 0;
    }
    
    .site-header .logo-text {
        display: none;
    }
    
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .site-footer .footer-links,
    .site-footer .footer-contact {
        text-align: center;
    }
    
    .site-footer .contact-item {
        justify-content: center;
    }
    
    .site-footer .trust-badges {
        gap: 20px;
    }
    
    .site-footer .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-header .action-btn {
        width: 38px;
        height: 38px;
    }
    
    .site-header .mobile-toggle {
        width: 38px;
        height: 38px;
    }
    
    .search-overlay {
        padding-top: 80px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .mobile-menu {
        width: 100%;
    }
}

/* =============================================
   CUSTOM BLOCKS - Admin Panel üzerinden eklenen bloklar
============================================= */
.custom-block-section {
    padding: 0;
    margin: 0;
}

.custom-block-modern {
    /* Bloğun kendi içindeki section'ları etkilememesi için */
}

.custom-block-modern > section {
    margin-bottom: 0;
}

/* Blok içindeki temel elementler için modern stiller */
.custom-block-section .container {
    max-width: 1200px;
}

.custom-block-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.custom-block-section h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--gray-800);
}

.custom-block-section p {
    color: var(--gray-600);
    line-height: 1.7;
}

.custom-block-section .card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.custom-block-section .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-block-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

.custom-block-section .table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.custom-block-section .table thead {
    background: var(--primary-gradient);
    color: white;
}

.custom-block-section .table th {
    border: none;
    padding: 16px;
    font-weight: 600;
}

.custom-block-section .table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: var(--gray-200);
}

.custom-block-section .table tbody tr:hover {
    background: var(--gray-100);
}

/* =====================================================
   CUSTOM BLOCK - KOYU ARKA PLAN YAZI RENGİ DÜZELTMELERİ
   text-white veya text-light sınıfı olan parent içindeki
   h2, h3, p elementlerinin koyu renk override'ını engelle
   ===================================================== */
.custom-block-section .text-white h1,
.custom-block-section .text-white h2,
.custom-block-section .text-white h3,
.custom-block-section .text-white h4,
.custom-block-section .text-white h5,
.custom-block-section .text-white h6,
.custom-block-section .text-white p,
.custom-block-section .text-white span,
.custom-block-section .text-white small,
.custom-block-section .text-white li,
.custom-block-section .text-white label,
.custom-block-section .text-white a:not(.btn) {
    color: inherit !important;
}

.custom-block-section .text-light h1,
.custom-block-section .text-light h2,
.custom-block-section .text-light h3,
.custom-block-section .text-light h4,
.custom-block-section .text-light h5,
.custom-block-section .text-light h6,
.custom-block-section .text-light p,
.custom-block-section .text-light span,
.custom-block-section .text-light small {
    color: inherit !important;
}

/* Inline style ile beyaz/açık renk verilen elementler için de koruma */
.custom-block-section [style*="color:#fff"] h2,
.custom-block-section [style*="color:#fff"] h3,
.custom-block-section [style*="color:#fff"] p,
.custom-block-section [style*="color: #fff"] h2,
.custom-block-section [style*="color: #fff"] h3,
.custom-block-section [style*="color: #fff"] p,
.custom-block-section [style*="color:white"] h2,
.custom-block-section [style*="color:white"] h3,
.custom-block-section [style*="color:white"] p,
.custom-block-section [style*="color: white"] h2,
.custom-block-section [style*="color: white"] h3,
.custom-block-section [style*="color: white"] p {
    color: inherit !important;
}

/* bg-dark, bg-primary vb. koyu arka planlarda yazı rengi koruması */
.custom-block-section .bg-dark h2,
.custom-block-section .bg-dark h3,
.custom-block-section .bg-dark p,
.custom-block-section .bg-primary h2,
.custom-block-section .bg-primary h3,
.custom-block-section .bg-primary p {
    color: #fff;
}

/* text-muted sınıfı özellikle korunmalı - geçersiz kılınmamalı */
.custom-block-section .text-white .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.custom-block-section .text-light .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* opacity sınıfları korunmalı */
.custom-block-section .text-white .opacity-75 {
    opacity: 0.75 !important;
}

.custom-block-section .text-white .opacity-90 {
    opacity: 0.9 !important;
}

/* =====================================================
   PRODUCT PRICING CARD - Blok Şablonları İçin
   ===================================================== */
.custom-block-section .product-pricing-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg, 12px);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    transition: all 0.3s ease;
}

.custom-block-section .product-pricing-card:hover {
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.12));
    transform: translateY(-4px);
}

.custom-block-section .product-pricing-card .pricing-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.custom-block-section .product-pricing-card .pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900) !important;
    margin-bottom: 8px;
}

.custom-block-section .product-pricing-card .pricing-brand {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.custom-block-section .product-pricing-card .pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary, #0066FF);
}

.custom-block-section .product-pricing-card .pricing-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-500);
}

.custom-block-section .product-pricing-card .pricing-features {
    padding: 24px;
}

.custom-block-section .product-pricing-card .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.custom-block-section .product-pricing-card .pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.custom-block-section .product-pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.custom-block-section .product-pricing-card .pricing-features li i {
    margin-right: 8px;
}

.custom-block-section .product-pricing-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

/* Comparison Table - Blok Şablonları İçin */
.custom-block-section .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

.custom-block-section .comparison-table thead tr {
    background: var(--primary-gradient, linear-gradient(135deg, #0066FF, #0052CC));
    color: #fff;
}

.custom-block-section .comparison-table th {
    padding: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    color: #fff;
}

.custom-block-section .comparison-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.custom-block-section .comparison-table tbody tr:hover {
    background: var(--gray-50, #f8fafc);
}
/* =====================================================
   HERO TRUST WIDGET STYLES
   ===================================================== */
.hero-trust-widget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trust-widget-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    bottom: 15%;
    right: 10%;
    background: linear-gradient(135deg, #00D68F, #00B377);
    color: white;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.trust-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.trust-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.trust-card-header .lock-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00D68F 0%, #00B377 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.trust-card-header .trust-title {
    color: #00D68F;
    font-weight: 600;
    font-size: 14px;
}

.trust-card-domain {
    font-size: 22px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 20px;
}

.trust-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #4a5568;
    font-size: 14px;
}

.trust-features li i {
    color: #00D68F;
    font-size: 16px;
}

.trust-card-check {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00D68F 0%, #00B377 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(0, 214, 143, 0.4);
}

/* Hero Widget Image */
.hero-widget-image {
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Hero Custom Widget */
.hero-custom-widget {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   ULTRA MODERN HERO SLIDER 2026
============================================= */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #050816;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(147, 51, 234, 0.15), transparent 40%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6, 182, 212, 0.1), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Animated Grid Background */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Orbs */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* Modern Hero Slide */
.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #050816 0%, #0a1628 30%, #0f172a 60%, #1e1b4b 100%) !important;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(59, 130, 246, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 80%, rgba(147, 51, 234, 0.1), transparent 50%);
    pointer-events: none;
}

.min-vh-hero {
    min-height: 500px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    animation: slideInLeft 0.6s ease;
}

.hero-badge i {
    color: #00D68F;
    font-size: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: slideInUp 0.6s ease 0.1s both;
}

.hero-title .gradient-text,
.hero-title span {
    background: linear-gradient(135deg, #00D68F 0%, #00CFDE 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: slideInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideInUp 0.6s ease 0.3s both;
}

/* Modern CTA Button */
.btn-cta-primary {
    background: linear-gradient(135deg, #00D68F 0%, #00B377 100%);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 214, 143, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 214, 143, 0.4);
}

/* Glassmorphism Secondary Button */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Modern Carousel Controls */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-slider-section:hover #heroSlider .carousel-control-prev,
.hero-slider-section:hover #heroSlider .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-control-prev { left: 40px; }
#heroSlider .carousel-control-next { right: 40px; }

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Modern Indicators */
#heroSlider .carousel-indicators {
    bottom: 40px;
    gap: 8px;
}

#heroSlider .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

#heroSlider .carousel-indicators button.active {
    width: 60px;
    background: linear-gradient(90deg, #00D68F, #00CFDE);
}

/* Hero Stats Bar - Glassmorphism */
.hero-stats-bar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.hero-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 214, 143, 0.5), transparent);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-value {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* =============================================
   ULTRA MODERN PRICE TABLE 2026
============================================= */
.modern-price-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.modern-price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #050816 0%, transparent 100%);
    pointer-events: none;
}

/* Price Card */
.price-card-modern {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.price-card-modern.featured {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #00D68F, #00CFDE, #3B82F6) border-box;
    transform: scale(1.05);
    z-index: 2;
}

.price-card-modern.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

/* Badge */
.price-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00D68F, #00B377);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 214, 143, 0.3);
}

/* Header */
.price-card-header {
    padding: 40px 32px 24px;
    text-align: center;
    position: relative;
}

.price-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
}

.price-card-icon.dv {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.1), rgba(0, 214, 143, 0.05));
    color: #00D68F;
}

.price-card-icon.ov {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: #3B82F6;
}

.price-card-icon.ev {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(147, 51, 234, 0.05));
    color: #9333EA;
}

.price-card-icon.code-signing {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: #F59E0B;
}

.price-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.price-card-subtitle {
    font-size: 14px;
    color: #64748b;
}

/* Price */
.price-card-price {
    padding: 24px 32px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: #64748b;
    margin-top: 8px;
}

.price-value {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #94a3b8;
    margin-top: 8px;
}

.price-old {
    font-size: 18px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-top: 8px;
}

/* Features */
.price-card-features {
    padding: 32px;
    flex: 1;
}

.price-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.price-feature-list li:last-child {
    border-bottom: none;
}

.price-feature-list li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
}

.price-feature-list li i.fa-check {
    background: rgba(0, 214, 143, 0.1);
    color: #00D68F;
}

.price-feature-list li i.fa-times {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* Footer */
.price-card-footer {
    padding: 24px 32px 32px;
}

.btn-price-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-price-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-price-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.btn-price-primary:hover::before {
    left: 100%;
}

.price-card-modern.featured .btn-price-primary {
    background: linear-gradient(135deg, #00D68F, #00B377);
}

/* Code Signing Price Cards */
.price-card-code-signing {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.price-card-code-signing .price-card-title,
.price-card-code-signing .price-value {
    color: #fff;
}

.price-card-code-signing .price-card-subtitle,
.price-card-code-signing .price-currency,
.price-card-code-signing .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.price-card-code-signing .price-feature-list li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-card-code-signing .btn-price-primary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

/* Responsive */
@media (max-width: 991px) {
    .price-card-modern.featured {
        transform: scale(1);
    }
    .price-card-modern.featured:hover {
        transform: translateY(-12px);
    }
    .hero-stats {
        gap: 40px;
    }
    .hero-stat::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-stat-value {
        font-size: 32px;
    }
    .price-value {
        font-size: 42px;
    }
}
/* =============================================
   MODERN TABLE STYLES
============================================= */
.table-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-modern thead {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.table-modern thead th {
    color: #fff;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.table-modern tbody tr {
    transition: all 0.3s ease;
}

.table-modern tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.01);
}

.table-modern tbody td {
    padding: 16px 20px;
    border-color: #f1f5f9;
    vertical-align: middle;
}

.table-modern tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   SSL2BUY STYLE - COMPARISON TABLE
   ============================================ */

.ssl-compare-section {
    padding: 60px 0;
    background: #f8fafc;
}

.ssl-compare-header {
    text-align: center;
    margin-bottom: 50px;
}

.ssl-compare-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.ssl-compare-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.ssl-compare-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ssl-compare-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ssl-compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.ssl-compare-card.popular {
    border-color: #10b981;
}

.ssl-compare-card.popular::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

/* Card Header */
.ssl-card-header {
    padding: 16px 16px 12px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.ssl-card-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ssl-card-brand img {
    height: 26px;
    width: auto;
}

.ssl-card-brand-name {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ssl-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

/* Card Price */
.ssl-card-price {
    padding: 14px 16px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.ssl-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.ssl-price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.ssl-price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.ssl-price-period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 4px;
}

.ssl-price-old {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-top: 8px;
}

.ssl-validation-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
}

.ssl-validation-badge.dv {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ssl-validation-badge.ov {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ssl-validation-badge.ev {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ssl-validation-badge.wildcard {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

/* Card Features */
.ssl-card-features {
    padding: 12px 16px;
    flex: 1;
}

.ssl-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f1f5f9;
}

.ssl-feature-item:last-child {
    border-bottom: none;
}

.ssl-feature-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

.ssl-feature-icon.check {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ssl-feature-icon.globe {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ssl-feature-icon.lock {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.ssl-feature-icon.clock {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ssl-feature-icon.shield {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.ssl-feature-text {
    font-size: 14px;
    color: #475569;
}

.ssl-feature-text strong {
    color: #1e293b;
}

/* Card Footer */
.ssl-card-footer {
    padding: 12px 16px 16px;
}

.ssl-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ssl-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    color: #fff;
}

.ssl-compare-card.popular .ssl-buy-btn {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ssl-compare-card.popular .ssl-buy-btn:hover {
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

/* View Toggle */
.view-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.view-toggle-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-toggle-btn:hover {
    color: #3b82f6;
}

.view-toggle-btn.active {
    background: #3b82f6;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .ssl-compare-table {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ssl-compare-table {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ssl-compare-section { padding: 40px 0; }
}

@media (max-width: 768px) {
    .ssl-compare-header h2 {
        font-size: 1.75rem;
    }
    
    .ssl-compare-header p {
        font-size: 0.95rem;
    }
    
    .ssl-price-amount {
        font-size: 2.5rem;
    }
    
    .ssl-card-header { padding: 14px 14px 10px; }
    .ssl-card-price { padding: 12px 14px; }
    .ssl-card-features { padding: 10px 14px; }
    .ssl-card-footer { padding: 10px 14px 14px; }
    .ssl-card-name { font-size: 0.95rem; }
    .ssl-feature-item { padding: 6px 0; }
    .ssl-feature-text { font-size: 12px; }
    .ssl-buy-btn { padding: 10px 16px; font-size: 13px; }
    
    .ssl-compare-section { padding: 30px 0; }
    .ssl-compare-header { margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .ssl-compare-table {
        grid-template-columns: 1fr;
    }
    
    .ssl-price-amount { font-size: 1.8rem; }
    .ssl-price-currency { font-size: 1rem; }
    .ssl-card-name { font-size: 0.95rem; }
    .ssl-validation-badge { font-size: 10px; padding: 4px 10px; }
    .ssl-compare-header h2 { font-size: 1.5rem; }
}

/* ============================================
   MODERN BRAND SHOWCASE SECTION
   ============================================ */

.brand-showcase-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.brand-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.brand-showcase-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.brand-showcase-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.brand-showcase-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Brand Card - Compact */
.brand-showcase-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.brand-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color, #3b82f6), var(--brand-color-light, #60a5fa));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.brand-showcase-card:hover::before {
    opacity: 1;
}

/* Brand Logo - Compact */
.brand-showcase-logo {
    height: 36px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.brand-showcase-logo img {
    max-height: 36px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

.brand-showcase-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
}

/* Brand Price - Compact */
.brand-showcase-price {
    margin-bottom: 12px;
}

.brand-showcase-price-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.brand-showcase-price-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.brand-showcase-price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.brand-showcase-price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-showcase-price-decimal {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

/* Brand Description - Compact */
.brand-showcase-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Brand Features - Hidden for compact */
.brand-showcase-features {
    display: none;
}

/* Brand Button - Compact */
.brand-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-showcase-btn:hover {
    background: #1e293b;
    color: #fff;
}

.brand-showcase-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.brand-showcase-btn:hover i {
    transform: translateX(3px);
}

/* Product Count Badge - Compact */
.brand-product-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-product-count i {
    font-size: 10px;
}

/* Trust Badges - Hidden for compact */
.brand-trust-badges {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .brand-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-showcase-section {
        padding: 40px 0;
    }
    
    .brand-showcase-header h2 {
        font-size: 1.75rem;
    }
    
    .brand-showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .brand-showcase-card {
        padding: 20px;
    }
    
    .brand-showcase-price-amount {
        font-size: 2rem;
    }
}

/* Brand Color Variants */
.brand-showcase-card[data-brand="sectigo"] { --brand-color: #00b140; --brand-color-light: #39d270; }
.brand-showcase-card[data-brand="comodo"] { --brand-color: #c8102e; --brand-color-light: #ff4d6a; }
.brand-showcase-card[data-brand="digicert"] { --brand-color: #0066b3; --brand-color-light: #3399e0; }
.brand-showcase-card[data-brand="geotrust"] { --brand-color: #1e4b7b; --brand-color-light: #3b82f6; }
.brand-showcase-card[data-brand="rapidssl"] { --brand-color: #0077c8; --brand-color-light: #36a3f7; }
.brand-showcase-card[data-brand="thawte"] { --brand-color: #6d2077; --brand-color-light: #9333ea; }
.brand-showcase-card[data-brand="globalsign"] { --brand-color: #f26f21; --brand-color-light: #fb923c; }
.brand-showcase-card[data-brand="alphassl"] { --brand-color: #0077c8; --brand-color-light: #38bdf8; }
.brand-showcase-card[data-brand="gogetssl"] { --brand-color: #00a651; --brand-color-light: #22c55e; }
.brand-showcase-card[data-brand="certum"] { --brand-color: #0066b3; --brand-color-light: #3b82f6; }

/* ============================================
   SSL CATEGORY CARDS - Modern Design
   ============================================ */

.ssl-categories-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
}

.ssl-categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.ssl-categories-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    color: #3b82f6;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ssl-categories-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.ssl-categories-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
}

/* Filter Tabs */
.ssl-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ssl-filter-tab {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ssl-filter-tab:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.ssl-filter-tab.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
}

/* Category Cards Grid */
.ssl-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Category Card */
.ssl-category-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.ssl-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Category Icon */
.ssl-category-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
    position: relative;
}

.ssl-category-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
}

.ssl-category-icon.dv {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ssl-category-icon.ov {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ssl-category-icon.ev {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ssl-category-icon.wildcard {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.ssl-category-icon.san {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.ssl-category-icon.code {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

/* Category Content */
.ssl-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.ssl-category-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 44px;
}

/* Category Price */
.ssl-category-price {
    margin-bottom: 20px;
}

.ssl-category-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
}

.ssl-category-price-period {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

/* Category Button */
.ssl-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ssl-category-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
}

.ssl-category-card:hover .ssl-category-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .ssl-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ssl-categories-section {
        padding: 40px 0;
    }
    
    .ssl-categories-header h2 {
        font-size: 1.75rem;
    }
    
    .ssl-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ssl-category-card {
        padding: 24px 20px;
    }
    
    .ssl-filter-tabs {
        gap: 8px;
    }
    
    .ssl-filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================
   SSL PRODUCTS GRID - 4 Columns
   ============================ */

.ssl-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.ssl-category-tab {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ssl-category-tab:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.ssl-category-tab.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
}

.ssl-category-tab i {
    font-size: 16px;
}

.ssl-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ssl-product-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.ssl-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    opacity: 0;
    transition: opacity 0.3s;
}

.ssl-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border-color: #d1d9e6;
}

.ssl-product-card:hover::before {
    opacity: 1;
}

.ssl-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ssl-card-body {
    padding: 28px 24px 20px;
    flex-grow: 1;
}

.ssl-product-header {
    margin-bottom: 16px;
}

.ssl-brand-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background: #fafbfc;
}

.ssl-brand-badge-img {
    height: 18px;
    width: auto;
}

.ssl-brand-badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    letter-spacing: 1px;
}

.ssl-product-brand {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

.ssl-product-brand-text {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ssl-product-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ssl-product-type.dv {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.ssl-product-type.ov {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.ssl-product-type.ev {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ssl-product-type.wildcard {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.ssl-product-type.san {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.ssl-product-type.code {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.ssl-product-name {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.ssl-product-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 16px;
    min-height: 66px;
}

.ssl-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
}

.ssl-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #475569;
    background: #f4f6f9;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #e8ecf1;
    font-weight: 500;
}

.ssl-feature-pill i {
    color: #94a3b8;
    font-size: 11px;
}

.ssl-product-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
}

.ssl-product-features span i {
    color: #3b82f6;
    font-size: 10px;
}

.ssl-card-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid #f0f2f5;
}

.ssl-product-price {
    margin-bottom: 16px;
}

.ssl-price-amount {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
}

.ssl-price-period {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.ssl-product-btn {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #e8952e, #d4791a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ssl-product-btn:hover {
    background: linear-gradient(135deg, #d4791a, #c06a10);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 121, 26, 0.3);
    color: #fff;
}

.ssl-view-all {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #3b82f6;
    color: #fff;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

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

/* Products Grid Responsive */
@media (max-width: 1200px) {
    .ssl-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .ssl-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .ssl-category-tabs {
        gap: 8px;
    }
    
    .ssl-category-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .ssl-products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .ssl-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        justify-content: flex-start;
        scrollbar-width: none;
    }
    
    .ssl-category-tabs::-webkit-scrollbar { display: none; }
    
    .ssl-category-tab {
        flex-shrink: 0;
        padding: 8px 14px;
    }
    
    .ssl-product-name {
        min-height: auto;
        font-size: 15px;
    }
    
    .ssl-product-desc {
        min-height: auto;
        font-size: 13px;
    }
    
    .ssl-card-body { padding: 20px 18px 16px; }
    .ssl-card-footer { padding: 16px 18px 20px; }
    .ssl-product-btn { padding: 12px 16px; font-size: 13px; }
    .ssl-price-amount { font-size: 22px; }
}