/* ============================
   YELKENYAT - Ultra Modern SaaS
   ============================ */

:root {
    /* Brand Colors - Premium Blue */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --secondary: #f59e0b;
    --accent: #059669;
    
    /* Light Theme - Clean White */
    --dark-bg: #ffffff;
    --dark-bg-2: #ffffff;
    --dark-bg-3: #f8fafc;
    --dark-surface: #ffffff;
    --dark-border: #e2e8f0;
    --dark-text: #0f172a;
    --dark-text-secondary: #475569;
    
    /* Light Theme */
    --surface: #ffffff;
    --surface-secondary: #f8fafc;
    --surface-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    
    /* Status Colors */
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #2563eb;
    --info-light: #dbeafe;
    
    /* Borders */
    --border: #e2e8f0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --header-height: 72px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    -webkit-font-smoothing: antialiased; 
}

body {
    font-family: var(--font-sans);
    background: var(--dark-bg); /* default background */
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.main-content { flex: 1; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }
::selection { background: var(--primary); color: white; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text-primary); }
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-gradient { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.text-white { color: white; }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    color: white;
}

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

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

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

.btn-light {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-light:hover { background: rgba(255,255,255,0.2); color: white; }

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

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-xl); }
.btn-block { width: 100%; }

/* ============================
   TOP BAR - DARK
   ============================ */
.top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(59,130,246,0.9);
    -webkit-backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 999;
    overflow: hidden;
}
/* Hover underline for links */
.top-bar a {
    position: relative;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.top-bar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.top-bar a:hover::after {
    width: 100%;
    color: #fff;
}
/* Shrink on scroll */
.top-bar.shrink {
    padding: 4px 0;
    background: rgba(255,255,255,0.09);
}
/* Icon glow pulse */
@keyframes pulseGlow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}
.top-bar i {
    animation: pulseGlow 4s infinite ease-in-out;
}
.top-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
    font-weight: 500;
}
.top-bar-left a:hover { color: #fff; }
.top-bar-left a i { color: var(--primary-light); font-size: 0.7rem; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.top-bar-right > a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.top-bar-right > a:hover { color: #fff; }
.top-bar-sep {
    width: 1px; height: 16px;
    background: rgba(255,255,255,0.12);
}
.top-bar-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 600;
    position: relative;
}
.top-bar-cart:hover { color: #fff !important; }
.top-cart-badge {
    position: absolute;
    top: -6px; right: -10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem; font-weight: 800;
    min-width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/* ============================
   NAVBAR - ULTRA SAAS CLEAN HEADER
   ============================ */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 14px;
}

/* Brand/Logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 290px !important;
    height: 88px !important;
    min-width: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 8px;
    color: white;
    font-size: 1.6rem;
    overflow: hidden;
}

.brand-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 0;
}

.brand-logo i {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

/* Wide Search */
.nav-search-wide {
    position: relative;
    flex: 1;
    max-width: 560px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.25s;
}
.nav-toggle:hover {
    background: var(--surface-tertiary);
}

/* All Products Dropdown - Ultra Premium SaaS Mega Menu */
.nav-products-btn {
    position: relative;
    flex-shrink: 0;
    z-index: 100;
}
.nav-products-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(12px);
}
.nav-products-toggle:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(103, 232, 249, 0.35);
    box-shadow: 0 6px 16px rgba(103, 232, 249, 0.12);
    transform: translateY(-1px);
}
.nav-products-toggle i:last-child {
    font-size: 0.55rem;
    color: #64748b;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-products-btn:hover .nav-products-toggle i:last-child {
    transform: rotate(180deg);
    color: #0ea5e9;
}

/* Dropdown - beautiful glass mega menu */
.nav-products-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: -20px;
    width: min(620px, calc(100vw - 60px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    padding: 14px 14px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2000;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    max-height: 380px;
    overflow-y: auto;
}

/* Elegant top light leak */
.nav-products-dropdown::before {
    content: '';
    position: absolute;
    top: -35%;
    left: -25%;
    width: 55%;
    height: 70%;
    background: radial-gradient(
        circle at 25% 15%,
        rgba(255,255,255,0.85) 0%,
        rgba(103,232,249,0.06) 30%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

.nav-products-btn:hover .nav-products-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header */
.nav-products-header {
    position: relative;
    z-index: 1;
    padding: 4px 10px 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-products-header span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.6px;
}
.nav-products-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(15,23,42,0.08), transparent);
}

/* Grid - clean 3 col for better fit */
.nav-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    position: relative;
    z-index: 1;
}

/* Items - refined saas cards */
.nav-products-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.18s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.nav-products-item:hover {
    background: rgba(103, 232, 249, 0.07);
    color: #0c4a6e;
    transform: translateX(2px);
}
.nav-products-item .cat-icon {
    font-size: 0.95rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f1f5f9, #e0f2fe);
    border-radius: 7px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
    color: #0284c8;
    transition: all 0.18s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-products-item:hover .cat-icon {
    background: linear-gradient(135deg, #bae6fd, #67e8f9);
    color: #0c4a6e;
    box-shadow: 0 3px 8px rgba(103,232,249,0.2);
    transform: scale(1.08);
}
.nav-products-item .cat-icon i {
    font-size: 0.85rem;
}

.search-form { width: 100%; }

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-tertiary);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 4px 4px 4px 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input-wrap:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.search-input-wrap svg {
    color: var(--text-tertiary);
    flex-shrink: 0;
    stroke: currentColor;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    outline: none;
    min-width: 0;
}

.search-input::placeholder { color: var(--text-tertiary); }

.search-btn {
    height: 42px;
    padding: 0 22px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
}
.search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: none;
    overflow: hidden;
}

.search-results-inner { padding: 6px; }

.search-section {
    padding: 4px 0;
}

.search-section-title {
    display: block;
    padding: 8px 14px 6px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.search-item:hover { background: var(--surface-tertiary); }

.search-icon { font-size: 1.1rem; flex-shrink: 0; }

.search-text { flex: 1; font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }

.search-item .fa-chevron-right { font-size: 0.7rem; color: var(--text-tertiary); }

/* Right side actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    position: relative;
}
.user-icon-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.nav-icon-link:hover {
    background: var(--surface-tertiary);
    color: var(--primary);
}

/* ── Ultra SaaS Colored Mobile Icons ── */
@media (max-width: 768px) {
    /* Cart icon — vibrant amber/orange */
    .cart-link {
        background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
        border-radius: 12px !important;
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(245,158,11,0.4);
    }
    .cart-link svg { stroke: #fff !important; }
    .cart-link:hover { transform: scale(1.08); opacity: 0.92; }

    /* Favorites icon — rose/pink */
    .fav-link {
        background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
        border-radius: 12px !important;
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(244,63,94,0.35);
    }
    .fav-link svg { stroke: #fff !important; }
    .fav-link:hover { transform: scale(1.08); opacity: 0.92; }

    /* User / login icon — blue */
    .user-icon-link {
        background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 14px rgba(37,99,235,0.35);
    }
    .user-icon-link svg { stroke: #fff !important; }

    /* User button (logged in) — avatar gradient */
    .user-btn .user-avatar {
        background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
        box-shadow: 0 4px 12px rgba(99,102,241,0.4);
    }

    /* Badge more visible */
    .cart-badge {
        background: #fff;
        color: #ef4444;
        font-weight: 900;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
}

.nav-link-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.nav-link-text:hover {
    color: var(--primary);
    background: var(--surface-tertiary);
}

.cart-link { position: relative; }

.cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: #f59e0b;
    color: #fff;
    font-size: 0.65rem; font-weight: 800;
    min-width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/* User Dropdown */
.nav-dropdown { position: relative; }

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--surface-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s ease;
}
.user-btn:hover { background: #e2e8f0; }

.user-avatar {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
}
.user-name { font-weight: 600; }
.user-btn > i:last-child {
    font-size: 0.65rem;
    color: var(--text-tertiary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 2000;
    overflow: hidden;
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s ease;
}
.dropdown-menu a:hover {
    background: var(--surface-tertiary);
    color: var(--primary);
}
.dropdown-menu a i {
    width: 20px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}
.dropdown-menu .text-danger { color: var(--danger) !important; }
.dropdown-menu .text-danger i { color: var(--danger); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* ============================
   FLASH MESSAGES
   ============================ */
.flash-container {
    position: fixed;
    top: 140px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flash-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease-out;
    min-width: 360px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.flash-success { background: var(--success-light); color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: var(--danger-light); color: #991b1b; border: 1px solid #fecaca; }
.flash-info { background: var(--info-light); color: #1e40af; border: 1px solid #bfdbfe; }

.flash-content { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 500; }
.flash-content i { font-size: 1.2rem; }
.flash-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; opacity: 0.5; color: inherit; }
.flash-close:hover { opacity: 1; }

/* ============================
   HERO SLIDER - PREMIUM MODERN
   ============================ */
.hero-slider-section {
    position: relative;
    height: 560px;
    background: #051833;
    overflow: visible; /* Allow floating search bar to overlap */
    margin-bottom: 40px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none !important;
    background-size: cover;          /* Proper cover without distortion */
    background-position: center center;
    background-repeat: no-repeat;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    display: flex !important;
    z-index: 2;
}

.hero-slide-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
}

.hero-slide-overlay {
    display: none; /* No darkening overlay on the slide image */
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-bottom: 60px;
}

.hero-slide-text {
    max-width: 650px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease forwards;
    background: rgba(5, 24, 51, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

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

.hero-slide-title {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-slide-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 580px;
    font-weight: 500;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.hero-slide-btn svg {
    transition: transform 0.3s ease;
}

.hero-slide-btn:hover svg {
    transform: translateX(4px);
}

/* Slider Nav Arrows removed - using dots only */

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
    background: #ffffff;
    width: 28px;
    border-radius: 99px;
}

/* Slider Search Bar Section */
/* Slider Search Bar Section */
.slider-search-bar-section {
    position: relative;
    padding: 0;
    margin-top: -36px;
    margin-bottom: 24px;
    z-index: 99;
}

.search-bar-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 10px 12px 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar-inner:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18), 0 1px 3px rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.35);
    background: #ffffff;
}

.search-bar-inner svg {
    color: var(--primary);
    flex-shrink: 0;
}

.search-bar-inner input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 500;
    background: transparent;
}

.search-bar-inner input::placeholder {
    color: #94a3b8;
}

.search-bar-inner button {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    padding: 16px 42px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar-inner button:hover {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

/* Default slide specific enhancements */
.hero-grid-overlay {
    position: absolute; inset: 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: 64px 64px;
    pointer-events: none; z-index: 1;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 30%, transparent 70%);
}

.hero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.hero-pill-dot {
    width: 7px; height: 7px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(96,165,250,0.6);
    animation: pill-pulse 2s ease-in-out infinite;
}

@keyframes pill-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(96,165,250,0.5); }
    50% { box-shadow: 0 0 20px rgba(96,165,250,0.8), 0 0 40px rgba(96,165,250,0.2); }
}

.hero-pill-text {
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #93c5fd;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 40%, #22d3ee 100%);
    display: inline;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-search-group {
    display: flex; gap: 12px; max-width: 520px;
}

.hero-search-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 0 22px;
    height: 56px;
    font-size: 0.95rem; font-weight: 500;
    color: #fff;
    outline: none;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.hero-search-input::placeholder { color: rgba(255,255,255,0.3); }
.hero-search-input:focus {
    border-color: rgba(96,165,250,0.5);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
    background: rgba(255,255,255,0.1);
}

.hero-search-btn {
    height: 56px; padding: 0 32px;
    border-radius: 16px; border: none; cursor: pointer;
    font-size: 0.9rem; font-weight: 700; color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex; align-items: center; gap: 8px;
}

.hero-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.45);
}

/* Media Queries for Hero Slider */
@media (max-width: 1024px) {
    .hero-slider-section { height: 500px; }
}

@media (max-width: 768px) {
    .hero-slider-section { height: 460px; margin-bottom: 30px; }
    .hero-slide-content { padding-bottom: 50px; }
    .hero-slide-text { padding: 30px; border-radius: 20px; max-width: 90%; margin: 0 auto; }
    .slider-dots { display: none !important; }
    .slider-search-bar-section { padding: 0; margin-top: 0; margin-bottom: 30px; }
    .search-bar-inner { max-width: 90%; padding: 6px 8px 6px 16px; border-radius: 16px; box-shadow: 0 10px 30px rgba(15,23,42,0.08); background: #ffffff; }
    .search-bar-inner input { padding: 8px 10px; font-size: 0.95rem; }
    .search-bar-inner button { padding: 10px 24px; border-radius: 12px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .hero-slider-section { height: 420px; }
    .hero-slide-text { padding: 20px; border-radius: 16px; }
    .hero-slide-title { font-size: 1.8rem; margin-bottom: 12px; }
    .hero-slide-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-slide-btn { padding: 12px 24px; border-radius: 10px; font-size: 0.88rem; }
    .slider-dots { display: none !important; }
    .slider-search-bar-section { margin-bottom: 24px; }
    .search-bar-inner { padding: 6px 6px 6px 12px; }
    .search-bar-inner input { padding: 6px 8px; font-size: 0.9rem; }
    .search-bar-inner button { padding: 8px 16px; border-radius: 10px; font-size: 0.85rem; }
}

.hero-stats {
    display: flex; gap: 32px;
}
.hero-stat {
    display: flex; align-items: center; gap: 10px;
}
.hero-stat-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
}
.hero-stat-icon svg { width: 18px; height: 18px; }
.hero-stat-text { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual-inner {
    position: relative;
    width: 300px; height: 300px;
}
.hero-visual-glow {
    position: absolute; inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}
.hero-visual-card {
    position: absolute; inset: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    padding: 32px;
}
.hero-visual-icon {
    width: 80px; height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(59,130,246,0.15));
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa;
}
.hero-visual-value {
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem; font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-visual-label {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* Floating stat cards */
.hero-float-card {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    animation: float-thumb 5s ease-in-out infinite;
    z-index: 20;
}
.hero-float-card.card-1 { top: 10px; right: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 30px; left: -30px; animation-delay: 1.5s; }
@keyframes float-thumb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
}
.stat-number span {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
}

/* ============================
   SECTIONS
   ============================ */
.section {
    padding: 50px 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.05);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

.section-badge.new {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.15);
}

.section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #051833;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #051833 30%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 500;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================
   CATEGORIES
   ============================ */
.categories-section { 
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-secondary) 100%);
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.cat-list-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

   ULTRA SAAS CATEGORY CARDS - Premium Edition
   ============================================= */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 36px 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Animated gradient top border */
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #2563eb, #00cadd, #f59e0b, #2563eb);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientFlow 3s ease infinite;
}

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

/* Sparkle particles effect */
.category-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.category-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 
        0 25px 60px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px) scale(1.02);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Icon wrapper - Premium glassmorphism effect */
.category-icon-wrapper {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
    color: var(--primary);
    border-radius: 22px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.06),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(37, 99, 235, 0.05);
}

/* Shimmer reflection */
.category-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-15deg);
    transition: all 0.6s ease;
}

.category-card:hover .category-icon-wrapper {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #0ea5e9 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.35),
        0 8px 18px rgba(37, 99, 235, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.category-card:hover .category-icon-wrapper::before {
    left: 150%;
}

.category-icon { 
    font-size: 2.25rem; 
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Title - Smooth color transition */
.category-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 4px;
    position: relative;
}

.category-card:hover h3 {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Subtle underline animation on hover */
.category-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.category-card:hover h3::after {
    width: 60%;
}

/* Count badge - Pulsing effect */
.category-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
    padding: 6px 14px;
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.category-card:hover .category-count {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

/* Active/Click state */
.category-card:active {
    transform: translateY(-6px) scale(0.99);
}

/* ============================
   PRODUCTS GRID
   ============================ */
.featured-section { background: var(--surface-secondary); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-badge.discount { background: var(--danger); color: white; }
.product-badge.new { background: var(--success); color: white; }

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img { transform: scale(1.1); }

.placeholder-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200, #e2e8f0);
    border-radius: var(--radius-lg);
    color: var(--gray-400, #94a3b8);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-card-body h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.4;
    flex: 1;
}

.product-card-body h3 a { color: var(--text-primary); }
.product-card-body h3 a:hover { color: var(--primary); }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-price { display: flex; align-items: center; gap: 10px; }

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

.product-price .old-price {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

/* ============================
   FEATURES GRID
   ============================ */
.why-section { background: var(--surface); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}

.feature-card .feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.03) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 6px 16px rgba(37, 99, 235, 0.04);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.feature-card .feature-icon i {
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 10px;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, #a855f7 100%);
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.shape-1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.4rem;
}

.cta-content h2,
.cta-section h2,
.cta-section h3 {
    font-weight: 800;
    color: white !important;
    margin-bottom: 16px;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ============================
   PRODUCT SLIDER - RIGHT TO LEFT
   ============================ */
.slider-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}
.slider-wrapper {
    margin-top: 32px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}
.slider-card {
    flex-shrink: 0;
    width: 240px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}
.slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.slider-card-img {
    height: 180px;
    background: var(--surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.slider-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}
.slider-card:hover .slider-card-img img { transform: scale(1.06); }
.slider-placeholder { color: var(--text-tertiary); opacity: 0.3; }
.slider-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--danger); color: #fff;
    font-size: 0.7rem; font-weight: 800;
    padding: 4px 10px; border-radius: 8px;
}
.slider-card-body { padding: 14px 16px; }
.slider-brand {
    font-size: 0.72rem; color: var(--primary);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.slider-card-body h4 {
    font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
    margin: 6px 0 10px; line-height: 1.3;
}
.slider-price { display: flex; align-items: center; gap: 8px; }
.slider-price .price { font-size: 1rem; font-weight: 700; color: var(--primary); }
.slider-price .old-price { font-size: 0.78rem; color: var(--text-tertiary); text-decoration: line-through; }

/* ============================
   CATEGORY PAGE
   ============================ */
.category-hero {
    background: linear-gradient(135deg, #020617 0%, #0f172a 40%, #1e3a8a 100%);
    padding: 40px 0 30px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    color: #ffffff;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cat-hero-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255,255,255,0.1);
}

.category-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem; font-weight: 900;
    color: #ffffff; margin-bottom: 8px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem; max-width: 650px; margin: 0 auto;
    line-height: 1.5;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.subcategory-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 30px 20px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.subcategory-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 16px 32px rgba(14, 165, 233, 0.08);
    transform: translateY(-6px);
}

.sub-icon { 
    font-size: 2rem; 
    color: var(--primary);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.subcategory-card:hover .sub-icon {
    transform: scale(1.15);
}

.sub-name { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.sub-count { 
    font-size: 0.8rem; font-weight: 600; color: var(--text-tertiary);
    background: var(--surface-tertiary);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

/* Premium Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    background: var(--surface);
    border: 1px dashed rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
}
.empty-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 10px rgba(255,255,255,0.5);
}
.empty-state h3 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.empty-state p { font-size: 1.05rem; color: var(--text-secondary); }
.empty-state p a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* ============================
   PRODUCT DETAIL PAGE
   ============================ */
.breadcrumb {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 10px 0;
}
.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}
.breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 6px;
}
.breadcrumb a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}
/* Home icon */
.breadcrumb a:first-of-type::before {
    content: '\f015';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.78rem;
    margin-right: 2px;
    color: #64748b;
    transition: color 0.2s;
}
.breadcrumb a:first-of-type:hover::before {
    color: var(--primary);
}
/* Separator spans: not(:last-child) targets only the slashes "/" and replaces them with a chevron */
.breadcrumb .container > span:not(:last-child) {
    font-size: 0 !important;
    color: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}
.breadcrumb .container > span:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.62rem;
    color: #94a3b8;
}
/* Active item */
.breadcrumb .container > span:last-child {
    color: var(--text-primary);
    font-weight: 700;
    padding: 4px 8px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.product-gallery {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.main-image {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.main-image img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 24px;
}
.gallery-placeholder {
    font-size: 4rem;
    color: var(--text-tertiary);
    opacity: 0.3;
}
.gallery-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--danger); color: #fff;
    font-size: 0.8rem; font-weight: 800;
    padding: 6px 14px; border-radius: 10px;
}

.product-brand-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.product-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.product-meta {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 20px;
}
.meta-sku { font-size: 0.82rem; color: var(--text-tertiary); }
.meta-sku strong { color: var(--text-secondary); }
.meta-stock { font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.meta-stock.in-stock { color: #059669; }
.meta-stock.out-of-stock { color: var(--danger); }
.stock-dot { width: 7px; height: 7px; background: #059669; border-radius: 50%; }

.product-price-section {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding: 20px;
    background: var(--surface-secondary);
    border-radius: 16px;
}
.product-current-price {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem; font-weight: 900;
    color: var(--text-primary);
}
.product-old-price {
    font-size: 1.1rem; color: var(--text-tertiary);
    text-decoration: line-through;
}
.product-discount-badge {
    background: var(--danger); color: #fff;
    font-size: 0.75rem; font-weight: 800;
    padding: 6px 12px; border-radius: 8px;
}
.product-short-desc {
    font-size: 0.95rem; color: var(--text-secondary);
    line-height: 1.6; margin-bottom: 24px;
}

.product-cart-form {
    display: flex; gap: 12px; margin-bottom: 24px;
}
.quantity-selector {
    display: flex; align-items: center;
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden;
}
.qty-btn {
    width: 44px; height: 52px;
    border: none; background: var(--surface-secondary);
    font-size: 1.2rem; font-weight: 700; color: var(--text-primary);
    cursor: pointer; font-family: inherit;
    transition: background 0.2s;
}
.qty-btn:hover { background: #e2e8f0; }
.quantity-selector input {
    width: 56px; text-align: center; border: none;
    font-size: 1rem; font-weight: 700; color: var(--text-primary);
    background: #fff;
}
.add-to-cart-btn {
    flex: 1; height: 52px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff; border: none; border-radius: 14px;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: all 0.25s ease;
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.product-extra-info {
    display: flex; flex-wrap: wrap; gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}
.extra-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--text-secondary); font-weight: 500;
}
.extra-item svg { color: var(--primary); flex-shrink: 0; }

/* Product Tabs */
.product-detail-tabs {
    display: flex; gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}
.detail-tab {
    padding: 14px 24px;
    font-size: 0.9rem; font-weight: 700;
    color: var(--text-tertiary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.detail-tab:hover { color: var(--text-primary); }
.detail-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.detail-tab-content { display: none; }
.detail-tab-content.active { display: block; }
.detail-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 0 0 16px 16px; padding: 32px;
    border-top: none;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.spec-item {
    padding: 16px 20px;
    background: var(--surface-secondary);
    border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
}
.spec-label { font-size: 0.8rem; color: var(--text-tertiary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.spec-value { font-size: 0.95rem; color: var(--text-primary); font-weight: 700; }

/* ============================
   PRODUCTS PAGE
   ============================ */
.products-hero {
    background: linear-gradient(160deg, #051833 0%, #0a1e3d 50%, #0f2b4f 100%);
    padding: 40px 0;
    text-align: center; color: #fff;
}
.products-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem; font-weight: 900;
    color: #fff;
}

.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.products-sidebar {
    position: sticky; top: 92px;
}
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}
.sidebar-widget h4 {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.sidebar-widget h4 svg { color: var(--primary); }
.sidebar-cat-list { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.15s;
    text-decoration: none;
}
.sidebar-cat-item:hover { background: var(--surface-tertiary); color: var(--primary); }
.sidebar-cat-item.active { background: var(--primary-50); color: var(--primary); font-weight: 700; }

.products-main { min-width: 0; }
.products-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
    padding: 12px 0;
}
.products-count { font-size: 0.85rem; color: var(--text-tertiary); font-weight: 600; }
.products-sort {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.85rem; font-family: inherit; font-weight: 500;
    color: var(--text-primary);
    background: #fff;
    cursor: pointer;
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand .brand-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.4rem;
    overflow: hidden;
    background: none;
}
.footer-brand .brand-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.footer-brand .brand-logo i {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    color: #fff;
}

.footer-brand .brand-text {
    display: flex;
    gap: 0;
}

.footer-brand .brand-name {
    font-size: 1.25rem;
    color: white;
}

.footer-brand .brand-highlight {
    font-size: 1.25rem;
    color: var(--primary-light);
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-section p { 
    font-size: 0.95rem; 
    margin-bottom: 12px; 
    line-height: 1.7; 
}

.footer-section p i { 
    width: 24px; 
    color: var(--primary-light); 
    margin-right: 10px; 
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 14px;
    transition: all 0.25s ease;
}

.footer-section a:hover { color: white; padding-left: 6px; }

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.social-links a.social-instagram { color: #fccc63 !important; }
.social-links a.social-twitter { color: #f8fafc !important; }
.social-links a.social-facebook { color: #1877f2 !important; }
.social-links a.social-whatsapp { color: #25d366 !important; }
.social-links a.social-youtube { color: #ff0000 !important; }

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.social-links a.social-instagram:hover {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    border-color: transparent !important;
}
.social-links a.social-twitter:hover {
    background: #0f1419 !important;
    border-color: #333333 !important;
}
.social-links a.social-facebook:hover {
    background: #1877f2 !important;
    border-color: transparent !important;
}
.social-links a.social-whatsapp:hover {
    background: #25d366 !important;
    border-color: transparent !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.social-links a.social-youtube:hover {
    background: #ff0000 !important;
    border-color: transparent !important;
}

.social-links a.social-whatsapp::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 50%;
    border: 1px solid #25d366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p { font-size: 0.9rem; }

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.3);
}

.payment-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================
   RESPONSIVE - MOBILE FIRST
   ============================ */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .hero-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero-title { font-size: 2.75rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    /* Avoid navbar overflow on tablet */
    .nav-products-btn { display: none; }
    .nav-brand .brand-logo { width: 200px !important; min-width: 200px; height: 60px !important; }
}

@media (max-width: 768px) {
    /* Hide top bar on mobile - Disabled to show SaaS top bar */
    /* .top-bar { display: none !important; } */
    
    /* ── Ultra SaaS Mobile Navbar ── */
    .navbar {
        height: auto;
        min-height: 68px;
        padding: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(15,23,42,0.07);
        box-shadow: 0 2px 16px rgba(15,23,42,0.06);
    }
    .nav-container {
        position: relative !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-end; /* Push hamburger to the right */
        padding: 0 16px;
        gap: 6px;
        height: 68px;
    }
    
    /* 1) Logo — Left-aligned on mobile to prevent overlap with search/hamburger */
    .nav-brand {
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
        margin-right: auto !important; /* Push buttons to the right */
        z-index: 10 !important;
        flex-shrink: 0;
        order: 1 !important;
        display: flex !important;
        align-items: center;
    }
    .nav-brand .brand-text { display: none; }
    .nav-brand .brand-logo { 
        width: 210px !important; 
        height: 60px !important; 
        min-width: 150px !important; 
        max-width: 230px !important; 
        overflow: visible !important;
    }
    .nav-brand .brand-logo img { 
        width: 100% !important; 
        height: 100% !important; 
        object-fit: contain !important;
        transform: none !important;
    }
    .nav-products-btn { display: none !important; }
    .nav-search-wide { display: none !important; }
    
    /* Hide nav actions completely on mobile as requested (removed from header, handled by bottom nav) */
    .nav-actions {
        display: none !important;
    }
    
    /* 3) Hamburger — rightmost */
    .nav-toggle {
        order: 3 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        font-size: 1.15rem;
        flex-shrink: 0;
        margin-left: auto !important; /* Push to the right since nav-actions is hidden */
        background: var(--surface-secondary);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text-primary);
    }
    
    .hero-section { padding: 48px 0 64px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-trust { flex-wrap: wrap; gap: 20px; }
    
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr) !important; gap: 24px 16px; }
    .stat-number { font-size: 1.75rem; }
    .stat-divider { display: none; }
    
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    
    /* Mobile horizontal scrollable categories (2 rows, premium e-commerce style) */
    .cat-list-wrapper {
        display: grid !important;
        grid-template-rows: repeat(2, auto) !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 110px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px 10px !important;
        padding: 10px 24px 16px 24px !important;
        margin-left: -24px !important;
        margin-right: -24px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .cat-list-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    .cat-list-wrapper .category-card {
        width: 110px !important;
        scroll-snap-align: start !important;
        padding: 10px 6px !important;
        border-radius: 20px !important;
        gap: 6px !important;
        background: #ffffff !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04) !important;
        transition: all 0.3s ease !important;
    }
    .cat-list-wrapper .category-card:active {
        transform: scale(0.96) !important;
        background: #f8fafc !important;
    }
    .cat-list-wrapper .category-icon-wrapper {
        width: 76px !important;
        height: 76px !important;
        border-radius: 18px !important;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.03) 100%) !important;
        color: var(--primary) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), 0 4px 12px rgba(37, 99, 235, 0.05) !important;
        margin: 0 auto !important;
    }
    .cat-list-wrapper .category-icon {
        font-size: 2.8rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .cat-list-wrapper .category-icon i.fas {
        font-size: 2.4rem !important;
        color: var(--primary) !important;
    }
    .cat-list-wrapper .category-card h3 {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        margin-top: 2px !important;
        color: var(--text-primary) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
        line-height: 1.2 !important;
    }
    .cat-list-wrapper .cat-explore {
        display: none !important;
    }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-image { height: 160px; }
    .product-card-body { padding: 16px; }
    .product-card-body h3 { font-size: 0.95rem; }
    .product-price .price { font-size: 1.1rem; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .feature-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 12px !important;
        border-radius: 16px !important;
        gap: 10px !important;
    }
    .feature-icon {
        margin: 0 auto 8px !important;
        flex-shrink: 0 !important;
        width: 48px !important;
        height: 48px !important;
    }
    .feature-card h3 {
        margin: 0 !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }
    .feature-card p {
        display: none !important;
    }
    .specs-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .cta-content h2 { font-size: 1.5rem; white-space: normal; }
    .cta-title { font-size: 1.5rem !important; white-space: normal !important; line-height: 1.3 !important; }
    .cta-actions { flex-direction: column; }
    
    /* =====================================================
       ULTRA SAAS MOBILE FOOTER — Complete Redesign
       ===================================================== */

    /* Footer base */
    .footer {
        padding: 0 0 140px; /* space for bottom nav + sticky bar */
        background: #080f1e;
    }
    .footer-container { padding: 0; }

    /* ── Brand strip at top ── */
    .footer-grid { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }

    .footer-section.brand-section {
        padding: 28px 20px 24px;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand { margin-bottom: 14px; }
    .footer-brand .brand-logo {
        width: 120px;
        height: 40px;
        min-width: 100px;
    }
    .footer-section.brand-section > p {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.6;
        margin-bottom: 16px;
        max-width: 320px;
    }

    /* Social icons row — colored gradients */
    .social-links {
        display: flex;
        gap: 10px;
        margin-top: 0;
        flex-wrap: wrap;
    }
    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        font-size: 1rem;
        transition: all 0.2s ease;
    }

    /* ── Accordion link sections ── */
    .footer-section:not(.brand-section) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
        overflow: hidden;
    }
    .footer-section h4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 16px 20px;
        font-size: 0.9rem;
        cursor: pointer;
        user-select: none;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    .footer-section h4::after {
        content: '\002B'; /* + */
        font-size: 1.2rem;
        font-weight: 300;
        color: rgba(255,255,255,0.4);
        transition: transform 0.25s ease;
        line-height: 1;
    }
    .footer-section.open h4::after {
        content: '\2212'; /* - */
        color: var(--primary-light, #60a5fa);
    }
    .footer-section-links {
        display: none;
        flex-direction: column;
        padding: 4px 20px 16px;
        background: rgba(255,255,255,0.02);
    }
    .footer-section.open .footer-section-links { display: flex; }
    .footer-section a {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.55);
        margin-bottom: 10px;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer-section a i {
        width: 18px;
        font-size: 0.8rem;
        color: var(--primary-light, #60a5fa);
        flex-shrink: 0;
    }
    .footer-section a:hover { color: #fff; padding-left: 0; transform: translateX(4px); }

    /* ── Contact info inline ── */
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 8px;
        color: rgba(255,255,255,0.5);
        padding: 0 20px;
    }

    /* ── Bottom bar ── */
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 20px 16px;
        background: rgba(0,0,0,0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255,255,255,0.05);
        margin: 0;
    }
    .footer-bottom p {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.35);
        order: 2;
    }

    /* Payment methods row */
    .payment-methods {
        gap: 12px;
        font-size: 1.6rem;
        order: 1;
        flex-wrap: wrap;
        justify-content: center;
    }
    .payment-methods i {
        padding: 6px 10px;
        background: rgba(255,255,255,0.06);
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.08);
        transition: all 0.2s ease;
    }
    .payment-methods i:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }
    .payment-text { order: 3; font-size: 0.72rem; }
    
    .section { padding: 40px 0; }
    .section-header h2 { font-size: 1.75rem; }
    .section-header p { font-size: 1rem; }
    
    /* Product Detail Responsiveness */
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .main-image {
        min-height: auto;
        height: auto;
    }
    .main-image img {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-trust { flex-direction: column; align-items: flex-start; }
    
    .flash-container { left: 16px; right: 16px; }
    .flash-message { min-width: auto; }
}

/* ============================
   AUTH PAGES (Login / Register)
   ============================ */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 60px 20px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 48px 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.auth-card h2 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 12px;
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
}

/* ============================
   FORM ELEMENTS
   ============================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--surface-tertiary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-group input:hover,
.form-group select:hover {
    background: #f1f5f9;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Auth Footer */
.auth-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.auth-footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s;
}

.auth-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Auth responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
    }
    .auth-section {
        min-height: 60vh;
        padding: 40px 16px;
    }
}

/* ============================
   ULTRA SAAS HOMEPAGE REDESIGN
   ============================ */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.fa-spin-slow {
    animation: spin-slow 12s linear infinite;
}

/* Modern Category Cards */
.category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-xl) !important;
    padding: 24px 16px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm) !important;
    text-decoration: none !important;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(37, 99, 235, 0.2) !important;
}
.category-card:hover::before {
    opacity: 1;
}
.category-icon-wrapper {
    width: 84px !important;
    height: 84px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-50) !important;
    color: var(--primary) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: var(--radius-xl) !important;
    margin: 0 auto 12px !important;
}
.category-card:hover .category-icon-wrapper {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: scale(1.08) rotate(5deg) !important;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25) !important;
}
.category-icon {
    font-size: 2.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.category-icon i.fas {
    font-size: 2.6rem !important;
    color: var(--primary) !important;
    transition: color 0.3s ease !important;
}
.category-card:hover .category-icon i.fas {
    color: #ffffff !important;
}
.category-card h3 {
    font-size: 1.05rem !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    text-align: center !important;
}
.category-card:hover h3 {
    color: var(--primary) !important;
}
.category-count {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

/* Premium Features (Why Us) */
.feature-card {
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-xl) !important;
    padding: 40px 32px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: var(--shadow-sm) !important;
}
.feature-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(37, 99, 235, 0.15) !important;
}
.feature-icon {
    background: rgba(37,99,235,0.06) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-lg) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px !important; height: 64px !important;
    margin-bottom: 24px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.feature-card:hover .feature-icon {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}
.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Glow on CTA */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0c1929 100%) !important;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    background: radial-gradient(circle, rgba(37,99,235,0.8) 0%, transparent 70%);
    top: -200px; left: -100px;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    background: radial-gradient(circle, rgba(6,182,212,0.8) 0%, transparent 70%);
    bottom: -100px; right: -50px;
}

/* ============================
   SEARCH PAGE - ULTRA MODERN DESIGN
   ============================ */
.search-header-section {
    padding: 32px 0 24px;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 0) 80%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.search-header-content {
    max-width: 800px;
}
.search-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.search-header-badge svg {
    color: var(--primary);
}
.search-header-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.search-header-content h1 span {
    font-weight: 400;
    color: var(--text-secondary);
}
.search-count-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}
.search-count-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Header Search Category Selector */
.search-category-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 4px;
    flex-shrink: 0;
}
.search-category-select {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 20px 8px 6px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    max-width: 140px;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.search-category-wrap .select-chevron {
    position: absolute;
    right: 6px;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    pointer-events: none;
}
.search-input-divider {
    width: 1px;
    height: 20px;
    background-color: var(--border);
    margin: 0 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .search-category-wrap {
        display: none; /* Hide category select in mobile row to keep it clean */
    }
    .search-input-divider {
        display: none;
    }
}

/* ============================
   PREMIUM CART PAGE STYLING
   ============================ */
.cart-header-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-bottom: 1px solid var(--border);
    padding: 40px 0 30px 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-steps .step.active {
    color: var(--primary);
    font-weight: 700;
}

.checkout-steps .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-tertiary);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.checkout-steps .step.active .step-num {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.checkout-steps .step-label {
    white-space: nowrap;
}

.checkout-steps .step-divider {
    width: 48px;
    height: 2px;
    background: var(--border);
}

.cart-title-wrap {
    text-align: center;
}

.cart-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cart-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.cart-main-section {
    padding: 40px 0 80px 0;
    background-color: var(--surface-secondary);
}

.cart-grid-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Left Panel: Items List */
.cart-items-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 60px;
    padding: 20px 24px;
    background: var(--surface-secondary);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 60px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background-color 0.2s ease;
}

.cart-item-card:hover {
    background-color: var(--surface-secondary);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-img-container {
    width: 80px;
    height: 80px;
    background: var(--surface-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-item-placeholder {
    color: var(--text-tertiary);
    font-size: 1.8rem;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-brand-badge {
    align-self: flex-start;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.cart-item-title a {
    color: var(--text-primary);
}

.cart-item-title a:hover {
    color: var(--primary);
}

.cart-item-sku {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin: 0;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.stock-badge.instock {
    color: var(--success);
}

.stock-badge.instock .dot {
    background-color: var(--success);
}

.stock-badge.outofstock {
    color: var(--danger);
}

.stock-badge.outofstock .dot {
    background-color: var(--danger);
}

.cart-item-price-col, 
.cart-item-total-col {
    display: flex;
    flex-direction: column;
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.old-price-value {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-tertiary);
}

.total-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

.cart-qty-pill {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--surface);
    padding: 3px;
    width: 90px;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.qty-btn {
    border: none;
    background: transparent;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--surface-tertiary);
    color: var(--primary);
}

.cart-qty-pill input {
    width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}

.cart-qty-pill input::-webkit-outer-spin-button,
.cart-qty-pill input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background: var(--danger-light);
    color: var(--danger);
    transform: scale(1.05);
}

.cart-panel-footer {
    padding: 20px 24px;
    background: var(--surface);
}

.continue-shopping-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.continue-shopping-link:hover {
    color: var(--primary);
    transform: translateX(-2px);
}

/* Right Panel: Sticky Cart Summary */
.cart-summary-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

/* Shipping Progress Widget */
.shipping-progress-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.shipping-status-message {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.shipping-status-message .icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.shipping-status-message.success .icon-circle {
    background: var(--success-light);
    color: var(--success);
}

.shipping-status-message.info .icon-circle {
    background: var(--primary-50);
    color: var(--primary);
}

.message-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.progress-bar-container {
    height: 6px;
    background: var(--surface-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-full);
    transition: width 0.4s ease-out;
}

/* Summary Box */
.summary-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.summary-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-row .row-value {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-row .row-value.free-shipping {
    color: var(--success);
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.summary-row.grand-total {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 800;
}

.summary-row.grand-total .row-value {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
}

/* Promo Code Section */
.promo-code-wrap {
    margin-top: 20px; 

/* ============================================
   ULTRA SAAS HOMEPAGE MODERNIZATIONS
   macOS-inspired glassmorphism, soft gradients,
   light leaks, transparencies, premium feel
   (colors kept consistent with existing theme)
   ============================================ */

/* Glass / Frosted elements */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.dark-glass {
    background: rgba(5, 24, 51, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* macOS-style soft gradient + light leak effects */
.saas-gradient {
    background: linear-gradient(145deg, 
        rgba(5,24,51,0.95) 0%, 
        rgba(10,30,61,0.92) 35%, 
        rgba(15,43,79,0.88) 65%, 
        rgba(8,34,68,0.95) 100%);
    position: relative;
    overflow: hidden;
}

.saas-gradient::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.06) 25%,
        transparent 55%
    );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.saas-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 90%;
    background: radial-gradient(
        circle at 70% 80%,
        rgba(100, 180, 255, 0.12) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 1;
}

/* Modern SaaS Hero */
.hero-slide-text .hero-title-gradient {
    background: linear-gradient(90deg, #fff 0%, #a5d8ff 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 6s ease infinite;
}

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

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    color: #0a1e3d;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15), 
                0 0 0 1px rgba(255,255,255,0.3) inset;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #fff;
}



/* "Tüm Kategorileri Gör" button - ultra saas pill */
.categories-section .btn-primary.btn-lg {
    background: linear-gradient(145deg, #0ea5e9 0%, #0284c8 100%);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    box-shadow: 
        0 10px 30px rgba(14, 165, 233, 0.35),
        0 0 0 1px rgba(255,255,255,0.15) inset;
    transition: all 0.2s cubic-bezier(0.23, 1.0, 0.32, 1);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.categories-section .btn-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 18px 45px rgba(14, 165, 233, 0.45),
        0 0 0 1px rgba(255,255,255,0.25) inset;
    background: linear-gradient(145deg, #0284c8 0%, #0369a1 100%);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Premium stats */
.stats-bar {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
    transition: transform .2s ease;
}

.stat-item:hover {
    transform: scale(1.02);
}

/* Soft product / slider cards with light leak */
.slider-card, .product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px rgba(0,0,0,0.12),
                0 0 0 1px rgba(0,0,0,0.04);
}

.slider-card:hover, .product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: translateY(-6px);
}

/* Final ultra CTA section */
.saas-cta {
    background: linear-gradient(160deg, #051833 0%, #0a1e3d 40%, #082244 100%);
    position: relative;
    overflow: hidden;
}

.saas-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(163, 210, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Blog editor polish (Quill) */
.ql-editor {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
    line-height: 1.7;
}
.ql-toolbar {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-color: var(--border) !important;
}
.ql-container {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-color: var(--border) !important;
}

/* Denizcilik Deneyimi section - mobile friendly + heading single line */
.denizcilik-deneyimi .section-header h2 {
    font-size: 1.6rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .denizcilik-deneyimi {
        padding: 24px 0 16px !important;
    }
    .denizcilik-deneyimi .section-header {
        margin-bottom: 12px !important;
    }
    .denizcilik-deneyimi .section-header h2 {
        font-size: 1.25rem;
        white-space: normal; /* allow wrap on very small screens */
    }
    .denizcilik-deneyimi .section-header p {
        margin-bottom: 12px !important;
        font-size: 0.85rem;
    }
    .denizcilik-deneyimi .stats-grid {
        margin-bottom: 16px !important;
        gap: 8px;
    }
    .denizcilik-deneyimi .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .denizcilik-deneyimi .feature-card {
        padding: 16px 12px;
    }
    .denizcilik-deneyimi .feature-card h3 {
        font-size: 0.95rem;
    }
    .denizcilik-deneyimi .feature-card p {
        font-size: 0.8rem;
    }
}

/* Ensure stats inside also stack nicely on mobile */
@media (max-width: 480px) {
    .denizcilik-deneyimi .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .denizcilik-deneyimi .stat-divider {
        display: none;
    }
}
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.promo-details {
    width: 100%;
}

.promo-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
    outline: none;
}

.promo-summary::-webkit-details-marker {
    display: none;
}

.promo-summary i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.promo-details[open] .promo-summary i {
    transform: rotate(180deg);
}

.promo-content {
    padding-top: 12px;
}

.promo-input-group {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}

.promo-input:focus {
    border-color: var(--primary);
}

.promo-btn {
    background: var(--text-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* CTA Checkout Button */
.summary-cta-wrap {
    margin-top: 24px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    display: flex;
    justify-content: center;
    gap: 8px;
    color: white;
}

.btn-checkout:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* Trust Badges */
.cart-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.badge-item i {
    font-size: 0.95rem;
    color: var(--primary-light);
}

/* Premium Empty State */
.cart-empty-wrapper {
    max-width: 600px;
    margin: 40px auto 20px auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.empty-glow-circle {
    width: 100px;
    height: 100px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.1) inset;
}

.empty-glow-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: rotate-dashed 20s linear infinite;
}

@keyframes rotate-dashed {
    100% { transform: rotate(360deg); }
}

.empty-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-explore {
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
}

/* Category Suggestions */
.cart-empty-suggestions {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.suggestions-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.suggestion-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.suggestion-pill:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1.5px);
}

/* Responsive CSS */
@media (max-width: 1024px) {
    .cart-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-panel {
        position: static;
    }
}

/* =====================================================
   ULTRA SAAS MOBILE CART — Complete Redesign
   ===================================================== */
@media (max-width: 768px) {

    /* Header section compact */
    .cart-header-section {
        padding: 20px 0 16px;
        background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    }
    .cart-title { font-size: 1.5rem; }
    .checkout-steps { gap: 8px; margin-bottom: 16px; }
    .checkout-steps .step-label { font-size: 0.72rem; }
    .checkout-steps .step-num { width: 28px; height: 28px; font-size: 0.75rem; }
    .checkout-steps .step-divider { width: 28px; }

    /* Full-width single column */
    .cart-grid-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Main section no padding bottom (sticky bar covers it) */
    .cart-main-section {
        padding: 16px 0 120px;
        background: #f1f5f9;
    }

    /* Items panel: no card wrapper, flush */
    .cart-items-panel {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .cart-items-header { display: none; }
    .cart-panel-footer { padding: 12px 16px; background: transparent; }

    /* Each item = beautiful card */
    .cart-item-card {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
        border-bottom: none;
        background: #fff;
        border-radius: 16px;
        margin: 0 0 12px;
        box-shadow: 0 2px 12px rgba(15,23,42,0.07);
        overflow: hidden;
        transition: box-shadow 0.25s ease;
        position: relative;
    }
    .cart-item-card:hover { box-shadow: 0 6px 24px rgba(15,23,42,0.12); }

    /* Product row — image + details side by side */
    .cart-item-product {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 14px 10px;
    }
    .cart-item-img-container {
        width: 72px;
        height: 72px;
        border-radius: 12px;
        flex-shrink: 0;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }
    .cart-item-details { flex: 1; min-width: 0; }
    .cart-item-title { font-size: 0.88rem; margin: 0; }
    .cart-item-brand-badge { font-size: 0.65rem; margin-bottom: 3px; }
    .cart-item-sku { font-size: 0.7rem; }

    /* Delete button — top right absolute */
    .cart-item-action-col {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    .cart-remove-btn {
        width: 30px;
        height: 30px;
        background: #fee2e2;
        color: #dc2626;
        border-radius: 8px;
    }
    .cart-remove-btn:hover {
        background: #fecaca;
        transform: none;
    }

    /* Bottom row: price + qty + total in a pill bar */
    .cart-item-price-col,
    .cart-item-qty-col,
    .cart-item-total-col {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 14px;
        border-top: 1px solid #f1f5f9;
        margin-top: 0;
    }
    .cart-item-price-col { background: #fafafa; }
    .cart-item-qty-col   { background: #fff; }
    .cart-item-total-col {
        background: linear-gradient(90deg, #eff6ff, #f0fdf4);
        border-radius: 0 0 16px 16px;
    }
    .mobile-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .price-value { font-size: 0.95rem; }
    .total-value {
        font-size: 1.05rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--primary), #06b6d4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Qty pill bigger touch targets */
    .cart-qty-pill {
        width: 100px;
        border-radius: 9999px;
    }
    .qty-btn {
        width: 30px;
        height: 30px;
        background: #f1f5f9;
        border-radius: 50%;
        color: var(--primary);
    }
    .qty-btn:hover { background: var(--primary); color: #fff; }

    /* Summary panel — hidden on mobile (shown via sticky bar below) */
    .cart-summary-panel {
        position: static;
        display: none;   /* hidden — sticky bottom bar takes over */
    }

    /* ── Sticky Mobile Checkout Bar ── */
    .mobile-cart-sticky-bar {
        display: flex !important;
    }
}

/* ============================
   PREMIUM PROFILE DASHBOARD
   ============================ */
.profile-header-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-bottom: 1px solid var(--border);
    padding: 50px 0 35px 0;
}

.profile-header-content {
    max-width: 800px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.profile-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.profile-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.profile-main-section {
    padding: 40px 0 80px 0;
    background-color: var(--surface-secondary);
}

.profile-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar Wrapper */
.profile-sidebar-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.profile-card-summary {
    padding: 30px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--primary-50) 0%, rgba(255, 255, 255, 0) 100%);
}

.avatar-glow {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    border: 4px solid white;
}

.avatar-initials {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
}

.summary-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.summary-email, .summary-phone {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.summary-email i, .summary-phone i {
    color: var(--primary-light);
}

.profile-navigation-menu {
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-navigation-menu .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.profile-navigation-menu .nav-item i {
    font-size: 1.05rem;
    color: var(--text-tertiary);
    transition: all 0.2s ease;
}

.profile-navigation-menu .nav-item:hover {
    background: var(--surface-secondary);
    color: var(--primary);
}

.profile-navigation-menu .nav-item:hover i {
    color: var(--primary);
}

.profile-navigation-menu .nav-item.active {
    background: var(--primary-50);
    color: var(--primary);
}

.profile-navigation-menu .nav-item.active i {
    color: var(--primary);
}

.nav-count-badge {
    margin-left: auto;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.nav-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 8px;
}

.logout-item:hover {
    background: var(--danger-light) !important;
    color: var(--danger) !important;
}

.logout-item:hover i {
    color: var(--danger) !important;
}

/* Content Area & Forms */
.profile-content-area {
    display: flex;
    flex-direction: column;
}

.premium-profile-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.profile-form-card .card-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--border);
}

.profile-form-card .header-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.profile-form-card .header-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.profile-form-card .header-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.profile-form-card .card-body {
    padding: 24px;
}

.form-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.input-with-icon, .textarea-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i, .textarea-with-icon i {
    position: absolute;
    left: 14px;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-with-icon input, .textarea-with-icon textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 14px 12px 42px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-primary);
    outline: none;
    background: var(--surface);
    transition: all 0.25s ease;
}

.textarea-with-icon textarea {
    padding-top: 12px;
    resize: vertical;
}

.textarea-with-icon i {
    top: 16px;
}

.input-with-icon input:focus, .textarea-with-icon textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Action Bar */
.profile-action-bar {
    display: flex;
    justify-content: flex-end;
}

.btn-save-profile {
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-save-profile:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive Dashboard */
@media (max-width: 991px) {
    .profile-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-inputs-grid {
        grid-template-columns: 1fr;
    }
    .form-field.full-width {
        grid-column: span 1;
    }
}

/* ============================
   PREMIUM ORDERS PAGE
   ============================ */
.premium-orders-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-order-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.25s ease;
}

.premium-order-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-secondary);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.header-meta-group {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.meta-value.font-sora {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

.meta-value.total-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-order-detail {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-card-body {
    padding: 24px;
}

.order-status-row {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 16px;
}

.status-indicator-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Status colors map */
.status-pill.order-status-pending {
    background: var(--warning-light);
    color: #b45309;
}
.status-pill.order-status-confirmed {
    background: var(--info-light);
    color: var(--primary-dark);
}
.status-pill.order-status-processing {
    background: var(--primary-50);
    color: var(--primary);
}
.status-pill.order-status-shipped {
    background: #e0f2fe;
    color: #0369a1;
}
.status-pill.order-status-delivered {
    background: var(--success-light);
    color: var(--success);
}
.status-pill.order-status-cancelled {
    background: var(--danger-light);
    color: var(--danger);
}

.status-pill.payment-status-pending {
    background: var(--warning-light);
    color: #b45309;
}
.status-pill.payment-status-paid {
    background: var(--success-light);
    color: var(--success);
}
.status-pill.payment-status-failed {
    background: var(--danger-light);
    color: var(--danger);
}
.status-pill.payment-status-refunded {
    background: #f1f5f9;
    color: #475569;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    animation: status-pulse 1.8s infinite ease-in-out;
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.order-items-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-item-img {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.preview-item-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.preview-item-img i {
    font-size: 1.25rem;
    color: var(--text-tertiary);
}

.preview-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.preview-item-qty {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-meta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .header-meta-group .meta-item {
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        padding-bottom: 6px;
    }
    
    .meta-item.price-item {
        border-bottom: none;
    }
    
    .header-action-group {
        width: 100%;
    }
    
    .btn-order-detail {
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   FAVORITE HEART BUTTON
   ============================ */
.btn-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
}

.btn-favorite i {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    transition: all 0.25s ease;
}

.btn-favorite:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
    background: white;
}

.btn-favorite:hover i {
    color: var(--danger);
}

.btn-favorite.favorited i {
    color: var(--danger);
}

.btn-favorite.favorited {
    background: var(--danger-light);
    border-color: rgba(239, 68, 68, 0.15);
}

@keyframes heart-pop {
    0% { transform: scale(1); }
    30% { transform: scale(1.35); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.btn-favorite.animating i {
    animation: heart-pop 0.4s ease;
}

/* Product card image container needs relative for heart button */
.product-image {
    position: relative;
}

.product-card-image {
    position: relative;
}

/* ============================
   ULTRA SAAS CORPORATE & BLOG PAGES
   ============================ */

/* Corporate Header (Shared) */
.corporate-header {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-tertiary) 100%);
    border-bottom: 1px solid var(--border);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.corporate-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14,165,233,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.corp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.05);
}

.corp-badge i {
    font-size: 0.9rem;
}

.corp-title {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.header-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

/* Page Detail Content */
.corporate-content-section {
    padding: 80px 0 100px 0;
    background-color: var(--surface-secondary);
}

.corporate-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.corporate-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.corporate-body h2, .corporate-body h3 {
    font-family: 'Sora', sans-serif;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

/* Blog List Grid */
.blog-section {
    padding: 80px 0 120px 0;
    background-color: var(--surface-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.08);
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.1);
}

.blog-card-img {
    height: 240px;
    background: linear-gradient(135deg, var(--surface-tertiary) 0%, var(--surface-secondary) 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-img-placeholder {
    font-size: 3.5rem;
    color: rgba(0,0,0,0.05);
}

.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
}

.blog-card-title a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.2s ease;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-read-more:hover {
    color: var(--primary);
}

.blog-read-more:hover i {
    transform: translateX(6px);
}

.blog-read-more i {
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
}

/* Contact Page Enhancements */
.contact-section {
    padding: 80px 0 120px 0;
    background-color: var(--surface-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-text p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.whatsapp-direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 20px;
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-direct-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 32px rgba(37, 211, 102, 0.4);
    color: white;
}

.contact-form-panel {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.contact-form-panel h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.btn-send-message {
    padding: 16px 36px;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .corporate-header {
        padding: 50px 0 40px 0;
    }
    .corp-title {
        font-size: 2.2rem;
    }
    .corporate-card, .contact-form-panel {
        padding: 30px 20px;
    }
}

/* ============================
   ULTRA SAAS BLOG DETAIL PAGE
   ============================ */

.blog-detail-header {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-tertiary) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-detail-header .header-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.blog-detail-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.25;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.blog-detail-section {
    padding: 60px 0 100px 0;
    background-color: var(--surface-secondary);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main-content {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03), 0 1px 3px rgba(0,0,0,0.02);
}

.article-featured-img {
    width: 100%;
    max-height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography for Article Body */
.article-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2, .article-body h3, .article-body h4 {
    font-family: 'Sora', sans-serif;
    color: var(--text-primary);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body h2 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,0,0,0.04);
}

.article-body h3 { font-size: 1.5rem; }
.article-body h4 { font-size: 1.25rem; }

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong, .article-body b {
    color: var(--text-primary);
    font-weight: 700;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.article-body a:hover {
    color: var(--primary-dark);
}

/* Article Footer */
.article-footer {
    margin-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.btn-back:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(-4px);
}

/* Sidebar Widgets */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.widget-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recent-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.recent-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}

.recent-title a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.recent-title a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 2rem;
    }
    .blog-detail-header {
        padding: 50px 0 40px 0;
    }
    .blog-main-content {
        padding: 30px 20px;
    }
    .article-body {
        font-size: 1.05rem;
    }
}

/* ============================
   ULTRA SAAS CHECKOUT PAGE
   ============================ */

.checkout-header {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-tertiary) 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.checkout-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-header h1 i {
    color: var(--primary);
}

.checkout-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: start;
}

.checkout-section {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.checkout-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(0,0,0,0.03);
    padding-bottom: 16px;
}

.checkout-section h3 i {
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

/* Checkout Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.25s ease;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Checkout Sidebar (Summary) */
.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.checkout-summary {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.checkout-summary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.checkout-summary h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.checkout-item .item-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.checkout-item .item-name small {
    background: var(--surface-tertiary);
    color: var(--text-primary);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 700;
}

.checkout-item .item-price {
    font-weight: 700;
    color: var(--text-primary);
}

.summary-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Payment Methods */
.payment-method-section {
    margin-bottom: 30px;
}

.payment-method-section h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option:hover {
    border-color: var(--primary-light);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.payment-option span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option span i {
    color: var(--text-tertiary);
}

.payment-option input:checked + span i {
    color: var(--primary);
}

.payment-option input:disabled + span {
    color: var(--text-tertiary);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.checkout-agreement {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.checkout-agreement a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .checkout-section {
        padding: 24px;
    }
}

/* ============================================
   ULTRA SAAS ADMIN PANEL
   macOS-inspired glassmorphism, light leaks,
   cyan accents, premium dark content area.
   Matches the public site ultra saas redesign.
   All menu pages (dashboard, products, orders,
   categories, blogs, settings, imports, etc.)
   benefit automatically.
   ============================================ */

.admin-body {
  background: #f8fafc;
  color: #0f172a;
}

/* Sidebar - clean corporate professional (lighter, kurumsal) */
.admin-sidebar {
  background: #1e293b;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #334155;
  width: 275px;
  flex-shrink: 0;
}
.admin-sidebar .sidebar-brand {
  padding: 22px 16px;
  border-bottom: 1px solid #334155;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-sidebar .sidebar-brand img {
  max-height: 58px;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
}
.admin-sidebar .sidebar-brand h3 {
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #f1f5f9;
  font-size: 1.05rem;
  margin: 0;
}
.admin-sidebar nav {
  padding: 10px 8px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #cbd5e1;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s ease;
}
.admin-sidebar a i {
  width: 18px;
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 1rem;
}
.admin-sidebar a:hover {
  background: #334155;
  color: #f1f5f9;
}
.admin-sidebar a:hover i {
  color: #60a5fa;
}

/* Active state - clean left bar */
.admin-sidebar a.active {
  background: #334155;
  color: #f1f5f9;
  font-weight: 600;
}
.admin-sidebar a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: #3b82f6;
  border-radius: 0 2px 2px 0;
}
.admin-sidebar a.active i {
  color: #60a5fa;
}
.admin-sidebar .sidebar-footer {
  border-top: 1px solid #334155;
  padding: 12px 8px;
  background: #0f172a;
}
.admin-sidebar .sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.admin-sidebar .sidebar-footer a:hover {
  color: #f1f5f9;
  background: #334155;
}

/* Content area - corporate light */
.admin-content {
  padding: 26px 32px;
}
.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.admin-page-header h1 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-page-header h1 i {
  color: #2563eb;
}

/* Corporate clean cards (light, professional, not hacky) */
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.admin-card,
.admin-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  color: #0f172a;
}
.admin-card:hover,
.admin-section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}
.admin-card > *,
.admin-section > * {
  position: relative;
}

.admin-card .card-icon {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 8px;
}
.admin-card .card-number {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 2px;
}
.admin-card .card-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Clean corporate tables (light, readable) */
.admin-table {
  width: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  color: #0f172a;
}
.admin-table th,
.admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  line-height: 1.4;
}
.admin-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
.admin-table tr:hover td {
  background: #f8fafc;
}
.admin-table strong {
  color: #0f172a;
  font-weight: 600;
}
.admin-table td a {
  color: #2563eb;
  font-weight: 500;
}
.admin-table td a:hover {
  text-decoration: underline;
}

/* Clean corporate forms (light, professional) */
.admin-body .form-group {
  margin-bottom: 16px;
}
.admin-body .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.admin-body .form-group input,
.admin-body .form-group select,
.admin-body .form-group textarea,
.admin-body input[type="text"],
.admin-body input[type="number"],
.admin-body input[type="email"],
.admin-body input[type="password"],
.admin-body select,
.admin-body textarea {
  width: 100%;
  padding: 10px 13px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  transition: all 0.15s ease;
}
.admin-body .form-group input::placeholder,
.admin-body .form-group textarea::placeholder {
  color: #94a3b8;
}
.admin-body .form-group input:focus,
.admin-body .form-group select:focus,
.admin-body .form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}
.admin-body .form-group input:hover,
.admin-body .form-group select:hover {
  border-color: #94a3b8;
}
.admin-body .form-group textarea {
  min-height: 100px;
  line-height: 1.5;
}

/* Corporate buttons */
.admin-body .btn-primary {
  background: #2563eb;
  border: 1px solid #1d4ed8;
  color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-weight: 600;
  transition: all 0.15s ease;
}
.admin-body .btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37,99,235,0.25);
}
.admin-body .btn-outline {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-weight: 500;
}
.admin-body .btn-outline:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}
.admin-body .btn-danger,
.admin-body .btn-sm.btn-danger {
  background: #dc2626;
  border-color: #b91c1c;
  color: white;
  font-weight: 600;
}
.admin-body .btn-danger:hover {
  background: #b91c1c;
}

/* Status badges - clean corporate */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.status-active {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}
.status-inactive {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}
.status-pending,
.status-draft {
  background: #fef3c7;
  color: #854d0e;
  border-color: #fde047;
}
.status-paid,
.status-confirmed,
.status-shipped {
  background: #dbeafe;
  color: #1e40af;
  border-color: #bfdbfe;
}

/* Flash messages - corporate light */
.admin-body .flash-message {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  min-width: 320px;
  font-size: 0.9rem;
}
.admin-body .flash-success { border-left: 4px solid #16a34a; background: #f0fdf4; }
.admin-body .flash-error   { border-left: 4px solid #dc2626; background: #fef2f2; }
.admin-body .flash-info    { border-left: 4px solid #2563eb; background: #eff6ff; }

/* Small polish */
.admin-page-header small {
  color: #64748b;
  font-weight: 400;
}
h2, h3, h4 {
  color: #0f172a;
  font-weight: 600;
}
.admin-content {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Make sure old light admin pages that extend base.html still work (light) */
body:not(.admin-body) .admin-card {
  background: #fff;
  color: inherit;
}

/* For light modals (edit category, image gallery etc.) ensure good contrast */
.admin-body .modal-content[style*="background:white"],
#editModal {
  color: #0f172a;
}
#editModal label,
#editModal small,
#editModal h3 {
  color: #1e293b !important;
}
#editModal input,
#editModal select,
#editModal textarea {
  color: #0f172a;
  background: #fff;
  border-color: #cbd5e1;
}
#editModal input:focus,
#editModal select:focus,
#editModal textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Ensures 100% mobile friendly experience
   ============================================ */

@media (max-width: 768px) {
    /* Fix sidebars that use fixed width grids */
    .profile-grid-layout,
    .blog-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .profile-sidebar-wrapper {
        order: -1; /* Show sidebar first on mobile if wanted, or remove */
    }

    /* Container & spacing */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section,
    .admin-content {
        padding: 30px 0 !important;
    }

    /* Product listing grids - better mobile */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)) !important;
        gap: 10px !important;
    }

    .product-card {
        padding: 8px;
    }

    /* Forms stack nicely */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    /* Navigation & header */
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 4px;
    }

    .nav-search-wide {
        order: 3;
        flex: 1 1 100%;
        margin: 4px 0;
    }

    /* Gallery */
    .gallery-thumbnails img {
        width: 55px;
        height: 55px;
    }

    /* Cart - ensure labels show */
    .cart-table td {
        padding: 12px 8px;
    }

    /* Buttons and interactive */
    .btn, .nav-icon-link, button {
        min-height: 44px;
        padding: 10px 16px;
    }

    /* Prevent horizontal scroll */
    body, .main-content, .admin-body {
        overflow-x: hidden;
    }

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

    /* Stats and feature grids */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Category / filter sidebars */
    .products-sidebar,
    .category-filters {
        display: none; /* or make collapsible with JS if wanted */
    }
    .products-main {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-slide-title {
        font-size: 1.6rem !important;
    }

    .product-card h3 a {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    }

    .profile-grid-layout > div {
        padding: 16px;
    }
}

/* ==========================================================================
   MOBILE DRAWER MENU & RESPONSIVE NAV OVERRIDES
   ========================================================================== */
/* Mobile nav overrides handled in the single @media (max-width: 768px) block above. */

/* Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Container */
.mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 310px;
    max-width: 85%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.drawer-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}
.drawer-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}
.drawer-close:hover {
    color: var(--danger);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* User Section */
.drawer-user-section {
    background: var(--surface-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
}
.drawer-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.drawer-user-info .user-avatar {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.drawer-user-info .user-welcome {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.drawer-user-info .user-display-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
.drawer-user-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.drawer-user-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}
.drawer-user-links a i {
    width: 20px;
    color: var(--primary);
}
.drawer-user-links a:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.drawer-user-links a.text-danger:hover {
    color: var(--danger);
}
.drawer-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sections */
.drawer-section {
    margin-bottom: 28px;
}
.drawer-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}
.drawer-section-title i {
    color: var(--primary);
}

.drawer-categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.drawer-category-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #ffffff;
    border: 1px solid transparent;
}
.drawer-category-item .cat-icon {
    width: 28px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--primary);
}
.drawer-category-item .cat-name {
    flex: 1;
}
.drawer-category-item .arrow {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: transform 0.2s;
}
.drawer-category-item:hover {
    background: var(--surface-secondary);
    border-color: var(--border);
}
.drawer-category-item:hover .arrow {
    transform: translateX(4px);
    opacity: 1;
}

.footer-drawer-section {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-drawer-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-drawer-section a:hover {
    color: var(--primary);
}

/* ==========================================================================
   PRODUCTS PAGE - FULLY RESPONSIVE
   ========================================================================== */

/* Page wrapper */
.products-page-wrapper {
    padding-bottom: 80px;
}

/* Page Header */
.products-page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border-bottom: 1px solid var(--border);
    padding: 32px 0 24px;
    margin-bottom: 32px;
}
.products-page-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.products-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}
.products-page-subtitle {
    color: var(--text-secondary);
    margin: 4px 0 0;
    font-size: 0.9rem;
}

/* Search form in header */
.products-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}
.products-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 4px 4px 4px 14px;
    transition: border-color 0.2s;
    min-width: 280px;
}
.products-search-wrap:focus-within {
    border-color: var(--primary);
}
.products-search-wrap svg {
    color: var(--text-tertiary);
    flex-shrink: 0;
}
.products-search-wrap input {
    border: none;
    outline: none;
    background: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
    padding: 8px 0;
    min-width: 0;
}
.products-search-wrap input::placeholder {
    color: var(--text-tertiary);
}
.products-search-wrap button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 9px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}
.products-search-wrap button:hover {
    background: var(--primary-dark);
}
.products-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    transition: all 0.2s;
    white-space: nowrap;
}
.products-clear-btn:hover {
    background: var(--danger-light);
    color: var(--danger);
    border-color: var(--danger);
}

/* Control Bar (Stats, Sorting, Mobile Filter Toggle) */
.products-control-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 24px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.control-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.control-right {
    display: flex;
    align-items: center;
}
.products-count-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.products-count-text strong {
    color: var(--text-primary);
}
.mobile-cat-toggle-btn {
    display: none; /* Desktop hidden */
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.mobile-cat-toggle-btn:hover {
    background: var(--primary-dark);
}
.filter-count-badge {
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 30px;
}
.products-sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.products-sort-wrap label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.products-sort-wrap select {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
}
.products-sort-wrap select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Layout */
.products-page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

/* Sidebar */
.products-page-sidebar {
    position: sticky;
    top: 80px;
}
.sidebar-inner-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.sidebar-close-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.sidebar-section-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 4px;
    border-radius: 6px;
}
.sidebar-close-btn:hover {
    background: var(--surface-tertiary);
    color: var(--danger);
}
.sidebar-cat-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sidebar-cat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: all 0.15s;
}
.sidebar-cat-link i {
    width: 16px;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}
.sidebar-cat-link span:first-of-type {
    flex: 1;
}
.sidebar-cat-count {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 600;
}
.sidebar-cat-link:hover {
    background: var(--primary-50);
    color: var(--primary);
}
.sidebar-cat-link:hover i { color: var(--primary); }
.sidebar-cat-link.active {
    background: var(--primary-50);
    color: var(--primary);
    font-weight: 700;
}
.sidebar-cat-link.active i { color: var(--primary); }
.sidebar-footer-hint {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Overlay (mobile only) */
.products-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.4);
    z-index: 8888;
    backdrop-filter: blur(4px);
}
.products-sidebar-overlay.active {
    display: block;
}

/* Main */
.products-page-main {
    min-width: 0;
}

/* Products Grid - responsive */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Empty state */
.products-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
}
.products-empty-state i {
    font-size: 3rem;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    display: block;
}
.products-empty-state h3 {
    margin: 0 0 8px;
    color: var(--text-primary);
}
.products-empty-state p {
    color: var(--text-secondary);
    margin: 0 0 24px;
}

/* Pagination */
.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}
.page-btn, .page-num {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
}
.page-btn:hover, .page-num:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
}
.page-num.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.page-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface-tertiary);
    color: var(--text-tertiary);
    cursor: not-allowed;
}
.page-dots {
    padding: 0 4px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* ==========================================================================
   SEARCH PAGE - RESPONSIVE LAYOUT
   ========================================================================== */

/* Search products layout (replaces inline style) */
.search-products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Mobile filter toggle bar (hidden on desktop) */
.mobile-filter-toggle-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    grid-column: 1 / -1;
}
.mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.filter-count-badge {
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Mobile: search sidebar as drawer */
@media (max-width: 768px) {
    /* Products page layout — Kompakt header */
    .products-page-header {
        padding: 12px 0 10px !important;
        margin-bottom: 16px !important;
    }
    .products-page-header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
    }
    .products-page-title {
        font-size: 1.1rem !important;
        text-align: left;
        margin: 0 !important;
    }
    .products-page-subtitle {
        font-size: 0.78rem !important;
        margin: 2px 0 0 !important;
    }
    /* Search formu mobilde göster ve belirginleştir (Ultra SaaS) */
    .products-search-form {
        display: flex !important;
        width: 100% !important;
        margin-top: 12px !important;
    }
    .products-search-wrap {
        width: 100% !important;
        min-width: 0 !important;
        background: #ffffff !important;
        border: 2px solid var(--primary) !important;
        border-radius: 12px !important;
        padding: 4px 4px 4px 14px !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08) !important;
    }
    .products-clear-btn {
        align-self: flex-start;
        margin-top: 2px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .products-control-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 24px;
    }
    .control-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .mobile-cat-toggle-btn {
        display: inline-flex;
    }
    .control-right {
        width: 100%;
        display: flex;
    }
    .products-sort-wrap {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .products-sort-wrap select {
        flex: 1;
        max-width: 200px;
    }

    .products-page-layout {
        display: block !important;
    }

    .products-page-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 300px !important;
        max-width: 85vw !important;
        z-index: 9999 !important;
        background: #fff !important;
        box-shadow: 4px 0 40px rgba(15,23,42,0.15) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.16,1,0.3,1) !important;
        overflow-y: auto !important;
        border-right: 1px solid var(--border) !important;
    }
    .products-page-sidebar .sidebar-inner-card {
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 24px 20px;
        background: transparent;
    }
    .products-page-sidebar.mobile-open {
        transform: translateX(0) !important;
    }
    .sidebar-close-btn { display: flex; }
    .products-page-main {
        display: block !important;
        width: 100% !important;
        min-height: 300px;
    }
    .products-page-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        width: 100% !important;
    }

    /* Search page layout */
    .search-products-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .mobile-filter-toggle-bar { display: flex; }

    .search-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        z-index: 9999;
        background: #fff;
        box-shadow: 4px 0 40px rgba(15,23,42,0.15);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
        overflow-y: auto;
        padding: 24px 20px;
    }
    .search-sidebar.mobile-open {
        transform: translateX(0);
    }
    /* On mobile, search sidebar has to be visible */
    .products-sidebar {
        display: none !important;
    }
    .search-sidebar {
        display: flex !important;
    }

    .products-main {
        width: 100% !important;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .products-pagination { gap: 8px; }
    .page-btn, .page-num { padding: 8px 12px; font-size: 0.82rem; }

    /* Compact Search Header for Mobile */
    .search-header-section {
        padding: 20px 0 16px !important;
        margin-bottom: 16px !important;
    }
    .search-header-content h1 {
        font-size: 1.35rem !important;
        margin-bottom: 6px !important;
    }
    .search-count-text {
        font-size: 0.85rem !important;
    }
    .search-header-badge {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }
}

@media (max-width: 480px) {
    .products-page-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .products-pagination .page-numbers {
        display: none;
    }
}

/* =====================================================
   ULTRA SAAS MOBILE PROFILE PAGE — Premium Redesign
   ===================================================== */
@media (max-width: 768px) {
    .profile-header-section {
        padding: 32px 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .profile-title {
        font-size: 1.8rem;
    }
    .profile-subtitle {
        font-size: 0.9rem;
    }
    .profile-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .profile-sidebar-wrapper {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 10px;
    }
    .profile-card-summary {
        display: none !important; /* Hide giant avatar card on mobile to save space */
    }
    .profile-navigation-menu {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 6px 4px !important;
        gap: 8px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid var(--border);
        margin-bottom: 10px;
    }
    .profile-navigation-menu .nav-item {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        background: var(--surface) !important;
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-lg) !important;
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        box-shadow: var(--shadow-sm) !important;
    }
    .profile-navigation-menu .nav-item.active {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
    }
    .profile-navigation-menu .nav-item.active i {
        color: #fff !important;
    }
    .profile-navigation-menu .nav-count-badge {
        background: #f59e0b !important;
        color: #fff !important;
        margin-left: 6px !important;
    }
    .profile-form-card {
        padding: 16px !important;
        border-radius: var(--radius-lg) !important;
    }
    .profile-form-card .card-header {
        padding: 16px 16px 12px 16px !important;
    }
    .profile-form-card .card-body {
        padding: 16px !important;
    }
    .form-inputs-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .form-field.full-width {
        grid-column: span 1 !important;
    }
    .btn-save-profile {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    /* ── Ultra SaaS Mobile Category Page ── */
    .category-hero {
        padding: 30px 16px 24px 16px !important;
    }
    .category-hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
    }
    .category-hero p {
        font-size: 0.85rem !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
    }
    .cat-hero-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
        border-radius: 12px !important;
    }
    .subcategories-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding: 4px 4px 16px 4px !important;
        margin: 0 -20px 20px -20px !important; /* Negative margin to span full width of screen */
        padding-left: 20px !important;
        padding-right: 20px !important;
        border-bottom: 1px solid rgba(15,23,42,0.06) !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .subcategory-card {
        flex-shrink: 0 !important;
        width: 120px !important;
        padding: 16px 12px !important;
        border-radius: var(--radius-lg) !important;
        gap: 6px !important;
        background: #fff !important;
        border: 1px solid var(--border) !important;
        box-shadow: var(--shadow-sm) !important;
        transform: none !important;
    }
    .subcategory-card:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important;
    }
    .subcategory-card .sub-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }
    .subcategory-card .sub-name {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }
    .subcategory-card .sub-count {
        font-size: 0.72rem !important;
        padding: 1px 8px !important;
    }
}

/* =====================================================
   CONTACT PAGE — Premium SaaS Styles
   ===================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--surface-secondary) 0%, #f8fafc 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-50);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.contact-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}
.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.contact-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-hero-actions .btn-phone-call {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-hero-actions .btn-phone-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}
.contact-hero-actions .btn-whatsapp {
    background: #22c55e;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-hero-actions .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}
.contact-section {
    padding: 80px 0;
    background: var(--surface);
}
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-50), #e0f2fe);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.info-text h4 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
}
.info-text p {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}
.info-text small {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}
.whatsapp-direct-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 20px 28px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-direct-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(34, 197, 94, 0.45);
}
.whatsapp-direct-btn:active {
    transform: translateY(-1px);
}
.contact-form-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
}
.form-panel-header {
    margin-bottom: 32px;
}
.form-panel-header h3 {
    margin: 0 0 10px;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
}
.form-panel-header p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.btn-send-message {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 17px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.4);
}
.form-footer-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* =====================================================
   CONTACT PAGE MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 16px 40px;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .contact-hero p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .contact-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .contact-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-section {
        padding: 40px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .info-card {
        padding: 20px;
    }
    .contact-form-panel {
        padding: 24px;
        border-radius: 20px;
    }
    .form-panel-header {
        margin-bottom: 24px;
    }
    .form-panel-header h3 {
        font-size: 1.4rem;
    }
    .form-panel-header p {
        font-size: 0.9rem;
    }
    .btn-send-message {
        padding: 15px 24px;
    }
}

/* =====================================================
   PRODUCT DETAIL — Premium SaaS Enhancements
   ===================================================== */
.bank-transfer-badge {
    margin-top: 15px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.07) 0%, rgba(34, 197, 94, 0.02) 100%) !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
    color: #15803d !important;
    padding: 16px 20px !important;
    border-radius: 16px !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.04);
}
.bank-transfer-badge i {
    font-size: 1.5rem;
    color: #22c55e;
}
.bank-transfer-badge .bt-label {
    font-size: 0.9rem;
    color: #166534;
}
.bank-transfer-badge .bt-price {
    font-size: 1.1rem;
    margin-top: 2px;
    color: #15803d;
}
.product-brand-tag {
    background: var(--primary-50) !important;
    color: var(--primary) !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-full) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}
.product-price-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.08) !important;
    border-radius: 20px !important;
    padding: 20px 24px !important;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01) !important;
}
.product-extra-info {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    border-top: 1px solid var(--border) !important;
    padding-top: 24px !important;
    margin-top: 20px;
}
.product-extra-info .extra-item {
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    padding: 14px 12px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.25s ease;
}
.product-extra-info .extra-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--primary-light) !important;
}
.product-extra-info .extra-item svg {
    color: var(--primary) !important;
    width: 20px !important;
    height: 20px !important;
}

/* Mobile Sticky Product Bar */
.mobile-product-sticky-bar {
    display: none;
    position: fixed;
    bottom: 68px; /* Safe distance above bottom nav which is 68px */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
    padding: 12px 16px;
    z-index: 9980;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-product-sticky-bar.active {
    transform: translateY(0);
}
.mpsb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}
.mpsb-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    flex: 1;
}
.mpsb-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}
.mpsb-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}
.mpsb-text {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mpsb-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mpsb-price .price {
    font-size: 0.95rem;
    font-weight: 850;
    color: var(--primary);
    font-family: 'Sora', sans-serif;
}
.mpsb-form {
    flex-shrink: 0;
}
.mpsb-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.mpsb-btn:active {
    transform: scale(0.95);
}

/* =====================================================
   PRODUCT DETAIL MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .mobile-product-sticky-bar {
        display: block;
    }
    .product-extra-info {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .product-extra-info .extra-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 14px 18px !important;
        gap: 14px !important;
        font-size: 0.82rem !important;
    }
    .product-extra-info .extra-item svg {
        width: 18px !important;
        height: 18px !important;
    }
    .quantity-selector {
        width: fit-content;
    }
    .product-cart-form {
        flex-wrap: wrap;
    }
    .add-to-cart-btn {
        min-width: 200px;
    }
}

/* ── Ultra SaaS Mobile Top Bar Custom Styling ── */
@media (max-width: 768px) {
    .top-bar {
        display: block !important;
        background: var(--primary) !important;
        height: auto !important;
        padding: 8px 0 !important;
        position: relative !important; /* Don't sticky it on mobile to save viewport height */
    }
    .top-bar-inner {
        height: auto !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 16px !important;
        gap: 10px !important;
    }
    .top-bar-left {
        display: flex !important;
        align-items: center !important;
    }
    .top-bar-left a {
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 0.82rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    .top-bar-left a i {
        color: #ffffff !important;
        font-size: 0.85rem !important;
    }
    /* Hide other non-phone links in top bar on mobile */
    .top-bar-left a:not([href^="tel:"]),
    .top-bar-left .top-bar-sep {
        display: none !important;
    }
    .top-bar-right {
        display: flex !important;
        gap: 14px !important;
        align-items: center !important;
    }
    .top-bar-right a {
        color: #ffffff !important;
        font-size: 1rem !important;
        display: inline-flex !important;
        align-items: center !important;
        opacity: 0.9 !important;
    }
    /* Hide cart and sep in top bar on mobile */
    .top-bar-right .top-bar-sep,
    .top-bar-right .top-bar-cart {
        display: none !important;
    }
}

/* ── Masaüstü Top Bar Yazı ve İkon Belirginleştirme ── */
@media (min-width: 769px) {
    .top-bar {
        background: #1e3a8a !important; /* Daha tok, kurumsal lacivert/mavi */
    }
    .top-bar a {
        color: #ffffff !important; /* Net beyaz yazılar */
        font-weight: 600 !important;
        opacity: 0.95 !important;
    }
    .top-bar a:hover {
        opacity: 1 !important;
        color: #ffffff !important;
    }
    .top-bar a::after {
        background: #ffffff !important;
    }
    .top-bar i {
        color: #ffffff !important; /* İkonlar beyaz */
        opacity: 1 !important;
        filter: drop-shadow(0 0 2px rgba(255,255,255,0.3)) !important;
    }
    .top-bar-sep {
        background-color: rgba(255, 255, 255, 0.35) !important;
    }
    .top-bar-left a i {
        color: #ffffff !important;
    }
}

/* ====================================================
   MOBİL ARAMA BARI & TOGGLE (ULTRA SAAS)
   ==================================================== */
.mobile-search-toggle {
    display: none;
}
.mobile-search-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-search-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        font-size: 1.1rem;
        flex-shrink: 0;
        background: var(--surface-secondary);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text-primary);
        cursor: pointer;
        order: 2 !important;
        margin-left: auto;
        margin-right: 8px;
    }
    .mobile-search-bar {
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        padding: 12px 16px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        animation: slideDown 0.2s ease-out;
    }
    .mobile-search-bar.active {
        display: block !important;
    }
    @keyframes slideDown {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}