/* ============================================
   EXIGOALS - Main Stylesheet (Advanced UI)
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --secondary: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #fbbf24;
    --dark: #090e1a;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #FFFFFF;
    --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 4px 14px rgba(0,0,0,0.07);
    --shadow-lg: 0 14px 28px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.14);
    --shadow-glow: 0 0 40px rgba(245,158,11,0.25);
    --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.12);
    --glass-bg: rgba(255,255,255,0.85);
    --glass-blur: blur(20px);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* === Keyframe Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-scale.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* No-JS / fallback: if visible class not added within 2s, show everything */
@keyframes revealFallback {
    to { opacity: 1; transform: none; }
}
.reveal:not(.visible),
.reveal-left:not(.visible),
.reveal-scale:not(.visible) {
    animation: revealFallback 0.5s ease 2s forwards;
}
.stagger-children:not(.visible) > * {
    animation: revealFallback 0.5s ease 2.2s forwards;
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--gray-100);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* === Utility Classes === */
.container { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--gray-500); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-primary { color: var(--primary); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-secondary { background: var(--gray-200); color: var(--dark); }
.btn-secondary:hover { background: var(--gray-300); color: var(--dark); }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-warning { background: var(--warning); color: var(--dark); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-icon { width: 36px; height: 36px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Button ripple effect */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* === Cards === */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); }
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}
.card-header h3 { font-size: 18px; font-weight: 700; }
.card-body { }
.card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

/* === Forms === */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-text { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* === Tables === */
.table-responsive { overflow-x: auto; }
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table th {
    background: var(--gray-100);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-200);
}
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}
.table tbody tr:hover { background: var(--gray-100); }
.table .product-thumb { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; }

/* === Badges === */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-success { background: rgba(46, 212, 122, 0.15); color: var(--success); }
.badge-danger { background: rgba(247, 104, 91, 0.15); color: var(--danger); }
.badge-warning { background: rgba(255, 185, 70, 0.15); color: #CC8800; }
.badge-info { background: rgba(16, 156, 241, 0.15); color: var(--info); }
.badge-primary { background: rgba(108, 99, 255, 0.15); color: var(--primary); }
.badge-secondary { background: var(--gray-200); color: var(--gray-600); }

/* === Alerts === */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}
.alert-success { background: rgba(46, 212, 122, 0.12); color: #1a9955; border-left: 4px solid var(--success); }
.alert-danger { background: rgba(247, 104, 91, 0.12); color: #c0392b; border-left: 4px solid var(--danger); }
.alert-warning { background: rgba(255, 185, 70, 0.12); color: #cc8800; border-left: 4px solid var(--warning); }
.alert-info { background: rgba(16, 156, 241, 0.12); color: #0d7ec5; border-left: 4px solid var(--info); }

/* === Auth Pages === */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faf8;
    padding: 24px;
}
.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    width: 100%;
    max-width: 400px;
    padding: 32px 28px;
}
.auth-card .logo { text-align: center; margin-bottom: 24px; }
.auth-card .logo h1 {
    font-size: 22px;
    font-weight: 800;
    color: #4CAF50;
    letter-spacing: -0.5px;
}
.auth-card .logo p { color: #888; font-size: 13px; margin-top: 4px; }
.auth-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #111; }
.auth-card .subtitle { color: #888; font-size: 13px; margin-bottom: 20px; }
.auth-links { text-align: center; margin-top: 16px; font-size: 13px; color: #888; }
.auth-links a { font-weight: 600; color: #4CAF50; }
.auth-divider { text-align: center; margin: 16px 0; color: #bbb; font-size: 12px; position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 30%; height: 1px; background: #e8e8e8; }
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.role-card {
    padding: 12px 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    color: #333;
    display: block;
}
.role-card:hover { border-color: #4CAF50; color: #333; }
.role-card .icon { font-size: 20px; color: #4CAF50; margin-bottom: 4px; }
.role-card .title { font-weight: 700; font-size: 11px; }
.role-card .desc { font-size: 9px; color: #999; margin-top: 2px; }

/* === Auth Toggle === */
.auth-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}
.auth-toggle button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #f8f8f8;
    color: #666;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.auth-toggle button.active { background: #4CAF50; color: #fff; }
.auth-toggle button i { font-size: 11px; }

/* === Auth Form === */
.auth-card .form-group { margin-bottom: 14px; }
.auth-card .form-group label { font-size: 12px; font-weight: 600; color: #333; margin-bottom: 5px; display: block; }
.auth-card .form-control {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    transition: all .2s;
    background: #fff;
    color: #333;
}
.auth-card .form-control:focus { border-color: #4CAF50; box-shadow: 0 0 0 2px rgba(76,175,80,.1); outline: none; }
.auth-card .btn-primary {
    width: 100%;
    padding: 12px 20px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-card .btn-primary:hover { background: #388E3C; }

/* === Auth Form Styles === */
.auth-card .form-group { margin-bottom: 16px; }
.auth-card .form-group label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.auth-card .form-control {
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    transition: all .2s;
    background: #fff;
    color: #333;
}
.auth-card .form-control:focus { border-color: #4CAF50; box-shadow: 0 0 0 3px rgba(76,175,80,.12); outline: none; }
.auth-card .btn-primary {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.auth-card .btn-primary:hover { background: #388E3C; box-shadow: 0 4px 12px rgba(76,175,80,.3); }
</style>

/* ============================================
   ADMIN / DASHBOARD LAYOUT
   ============================================ */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--gray-900);
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition);
}
.sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-header h2 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sidebar-header small { color: var(--gray-500); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-nav { padding: 16px 0; }
.sidebar-nav .nav-section {
    padding: 8px 24px 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-top: 8px;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}
.sidebar-nav a.active {
    color: var(--white);
    background: rgba(108, 99, 255, 0.15);
    border-left-color: var(--primary);
}
.sidebar-nav a .nav-icon { width: 20px; text-align: center; font-size: 16px; }
.sidebar-nav a .badge { margin-left: auto; font-size: 10px; }

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
}
.top-bar {
    background: var(--white);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 50;
}
.top-bar .page-title h2 { font-size: 20px; font-weight: 700; }
.top-bar .page-title p { font-size: 13px; color: var(--gray-500); }
.top-bar-actions { display: flex; align-items: center; gap: 16px; }
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.user-menu:hover { background: var(--gray-100); }
.user-menu .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.user-menu .info .name { font-size: 14px; font-weight: 600; }
.user-menu .info .role { font-size: 11px; color: var(--gray-500); }

.content-area { padding: 30px; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.stat-card .stat-icon.purple { background: rgba(108, 99, 255, 0.12); color: var(--primary); }
.stat-card .stat-icon.green { background: rgba(46, 212, 122, 0.12); color: var(--success); }
.stat-card .stat-icon.orange { background: rgba(255, 185, 70, 0.12); color: var(--warning); }
.stat-card .stat-icon.red { background: rgba(247, 104, 91, 0.12); color: var(--danger); }
.stat-card .stat-icon.blue { background: rgba(16, 156, 241, 0.12); color: var(--info); }
.stat-card .stat-info h4 { font-size: 24px; font-weight: 700; line-height: 1.2; }
.stat-card .stat-info p { font-size: 13px; color: var(--gray-500); }

/* ============================================
   ADMIN DASHBOARD - Smart Analytics UI
   ============================================ */
.dash-greeting {
    margin-bottom: 20px;
}
.dash-greeting h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.dash-greeting p {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0 0;
}

/* KPI Cards Grid */
.dash-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.dash-kpi-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}
.dash-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #d1d5db;
}
.dash-kpi-card.highlight {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border-color: #4CAF50;
}
.dash-kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.dash-kpi-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.dash-kpi-value {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}
.dash-kpi-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.dash-kpi-sub {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
}
.dash-kpi-sub.text-success { color: #059669 !important; font-weight: 600; }
.dash-kpi-sub.text-danger { color: #dc2626 !important; font-weight: 600; }

/* Charts Layout */
.dash-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.dash-charts-row .wide { grid-column: auto; }
.dash-charts-row .narrow { grid-column: auto; }
.dash-charts-row:first-of-type,
.dash-charts-row:nth-of-type(2) {
    grid-template-columns: 2fr 1fr;
}

.dash-chart-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.2s ease;
}
.dash-chart-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.dash-chart-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}
.dash-chart-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-chart-header h3 i {
    color: #4CAF50;
    font-size: 13px;
}
.dash-chart-body {
    padding: 16px;
    position: relative;
    height: 260px;
}
.dash-chart-body canvas {
    border-radius: 6px;
}

/* Bottom Row: Tables */
.dash-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.dash-table-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}
.dash-table-card .table-responsive {
    max-height: 320px;
    overflow-y: auto;
}

/* Earnings Summary Cards */
.dash-earnings-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}
.dash-earning-card {
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.dash-earning-card.admin-card { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.dash-earning-card.vendor-card { background: linear-gradient(135deg, #6366f1, #4F46E5); }
.dash-earning-card.reseller-card { background: linear-gradient(135deg, #f59e0b, #d97706); }
.dash-earning-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.dash-earning-info { display: flex; flex-direction: column; }
.dash-earning-value { font-size: 20px; font-weight: 700; }
.dash-earning-label { font-size: 12px; opacity: 0.9; margin-top: 2px; }

/* Monthly Champion Banner */
.dash-champion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-bottom: 1px solid #bbf7d0;
}
.dash-champion-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.dash-champion-info { display: flex; flex-direction: column; }
.dash-champion-title { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #059669; }
.dash-champion-name { font-size: 14px; font-weight: 700; color: #111827; }
.dash-champion-stats { font-size: 11px; color: #6b7280; }

/* Rank Badges */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
}
.rank-badge.gold { background: linear-gradient(135deg, #FFD700, #FFA000); color: #fff; box-shadow: 0 2px 8px rgba(255,193,7,0.3); }
.rank-badge.silver { background: linear-gradient(135deg, #C0C0C0, #9E9E9E); color: #fff; }
.rank-badge.bronze { background: linear-gradient(135deg, #CD7F32, #A0522D); color: #fff; }
.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    background: var(--gray-100);
}

/* Business Intelligence Grid */
.dash-bi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}
.dash-bi-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.2s ease;
}
.dash-bi-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); transform: translateY(-1px); }
.dash-bi-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.dash-bi-card.green .dash-bi-icon { background: rgba(76,175,80,0.12); color: #4CAF50; }
.dash-bi-card.red .dash-bi-icon { background: rgba(239,68,68,0.12); color: #ef4444; }
.dash-bi-card.blue .dash-bi-icon { background: rgba(99,102,241,0.12); color: #6366f1; }
.dash-bi-card.purple .dash-bi-icon { background: rgba(245,158,11,0.12); color: #f59e0b; }
.dash-bi-info { display: flex; flex-direction: column; min-width: 0; }
.dash-bi-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #6b7280; }
.dash-bi-value { font-size: 14px; font-weight: 700; color: #111827; margin-top: 2px; }
.dash-bi-sub { font-size: 11px; color: #9ca3af; margin-top: 2px; }

/* Profile Header (Vendor/Reseller Detail) */
.dash-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}
.dash-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
}
.dash-profile-info { flex: 1; min-width: 0; }
.dash-profile-info h2 { font-size: 20px; font-weight: 700; margin: 0; color: var(--dark); }
.dash-profile-info p { font-size: 13px; color: var(--gray-500); margin: 4px 0 0; }
.dash-profile-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Detail Grid (Key-Value Pairs) */
.dash-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    font-size: 14px;
    color: var(--gray-600);
}
.dash-detail-grid strong { color: var(--dark); font-weight: 600; }

/* Live Pulse Indicator */
.live-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ED47A;
    display: inline-block;
    position: relative;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 212, 122, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(46, 212, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 212, 122, 0); }
}
.live-row-fade {
    animation: liveRowFadeIn 0.4s ease;
}
@keyframes liveRowFadeIn {
    from { opacity: 0; background: rgba(108, 99, 255, 0.05); }
    to { opacity: 1; background: transparent; }
}

/* Rank Badge Inline (for table cells) */
.rank-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 10px;
}
.rank-badge-inline.gold { background: linear-gradient(135deg, #FFF9E6, #FFF3CC); color: #F57F17; }
.rank-badge-inline.silver { background: linear-gradient(135deg, #F5F5F5, #E0E0E0); color: #616161; }
.rank-badge-inline.bronze { background: linear-gradient(135deg, #FBE9E7, #FFCCBC); color: #BF360C; }
.rank-badge-inline.platinum { background: linear-gradient(135deg, #E8EAF6, #C5CAE9); color: #283593; }

/* btn-dark for reset password */
.btn-dark { background: #2d3436; color: #fff; }
.btn-dark:hover { background: #1e272e; color: #fff; }

/* Responsive for new sections */
@media (max-width: 768px) {
    .dash-bi-grid { grid-template-columns: 1fr; gap: 10px; }
    .dash-profile-header { flex-direction: column; text-align: center; }
    .dash-profile-actions { justify-content: center; }
    .dash-detail-grid { grid-template-columns: 1fr; }
    .dash-champion { flex-direction: column; text-align: center; }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
@keyframes exMarquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ex-announce { background:#090e1a; color:#94a3b8; font-size:0.72rem; font-weight:500; padding:0.4rem 0; overflow:hidden; }
.ex-announce-inner { display:flex; justify-content:center; }
.ex-marquee { display:flex; gap:0; white-space:nowrap; animation:exMarquee 25s linear infinite; }
.ex-marquee span { display:inline-flex; align-items:center; gap:0.3rem; padding:0 0.3rem; }
.ex-marquee i { color:#f59e0b; font-size:0.8rem; }

/* ============================================
   FRONTEND - NAVBAR (JioMart Orange)
   ============================================ */
.navbar {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.navbar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
}
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ex-accent);
    text-decoration: none;
    white-space: nowrap;
}
.navbar .logo .logo-icon {
    width: 34px; height: 34px;
    background: var(--ex-accent);
    border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: #fff;
}

/* Inline Search Bar */
.nav-search-bar {
    flex: 0 1 520px; display: flex; align-items: center;
    height: 38px; background: #f5f5f5; border-radius: 4px;
    border: 1px solid transparent; overflow: hidden;
    transition: all 0.2s;
    margin: 0 1rem;
}
.nav-search-bar:focus-within { border-color: var(--ex-accent); background: #fff; }
.nav-search-bar > i { padding: 0 0 0 12px; font-size: 1rem; color: #999; }
.nav-search-input { flex: 1; height: 100%; border: none; outline: none; padding: 0 12px; font-size: 0.875rem; color: #111; background: transparent; font-family: inherit; }
.nav-search-input::placeholder { color: #999; }
.nav-search-go { height: 100%; width: 46px; background: var(--ex-accent); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: background 0.2s; }
.nav-search-go:hover { background: var(--ex-brand-dark); }

/* Nav Links (hidden, using nav-strip instead) */
.navbar .nav-links { display: none; }

.navbar .nav-actions { display: flex; align-items: center; gap: 4px; }
.navbar .cart-btn {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    padding: 0.4rem 0.6rem; border-radius: 12px;
    font-size: 1.3rem; color: #94a3b8;
    transition: background 0.2s, color 0.2s;
}
.navbar .cart-btn:hover { background: rgba(255,255,255,0.07); color: #fff; }
.navbar .cart-btn .count {
    position: absolute;
    top: 0; right: 2px;
    background: #f59e0b; color: #fff;
    font-size: 0.55rem; font-weight: 800;
    min-width: 17px; height: 17px;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #090e1a; font-style: normal;
}
.navbar .cart-btn .count.bounce { animation: cartBounce 0.4s ease; }
.navbar .search-toggle {
    font-size: 1.3rem; color: #94a3b8; cursor: pointer;
    padding: 0.4rem 0.6rem; border-radius: 12px;
    transition: all 0.2s; background: none; border: none;
    display: none; /* Hidden on desktop, show on mobile */
}
.navbar .search-toggle:hover { background: rgba(0,0,0,0.05); color: var(--ex-accent); }

/* Navigation Strip */
.nav-strip { background: #fff; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; position: relative; }
.nav-strip-inner { display: flex; align-items: center; }
.ns-item { padding: 0.5rem 0.75rem; font-size: 0.8rem; font-weight: 500; color: #555; white-space: nowrap; display: flex; align-items: center; gap: 0.25rem; border-bottom: 2px solid transparent; transition: all 0.2s; text-decoration: none; }
.ns-item:hover { color: var(--ex-accent); border-bottom-color: var(--ex-accent); }
.ns-trigger { color: var(--ex-accent); font-weight: 600; }
.ns-hot { color: var(--ex-accent) !important; font-weight: 600; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #e2e8f0;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay form {
    width: 90%;
    max-width: 640px;
    display: flex;
    animation: fadeInUp 0.4s ease;
}
.search-overlay input {
    flex: 1;
    padding: 20px 28px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 18px;
    outline: none;
    background: var(--white);
}
.search-overlay button {
    padding: 20px 36px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.search-overlay button:hover { background: var(--primary-dark); }
.search-overlay .close-search {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}
.search-overlay .close-search:hover { transform: rotate(90deg); }

/* ============================================
   MEGA MENU
   ============================================ */
.mega-menu-wrap {
    position: relative;
}
.mega-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mega-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.mega-menu-wrap:hover .mega-arrow {
    transform: rotate(180deg);
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 750px;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0;
    pointer-events: none;
    border-top: 3px solid var(--primary);
}
.mega-menu-wrap:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
}
.mega-col {
    padding: 24px;
}
.mega-categories {
    border-right: 1px solid var(--gray-200);
    position: relative;
}
.mega-categories h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-categories h4 i {
    color: var(--primary);
}
.mega-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(70vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}
.mega-categories ul::-webkit-scrollbar { width: 5px; }
.mega-categories ul::-webkit-scrollbar-track { background: transparent; }
.mega-categories ul::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
.mega-categories ul::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
.mega-categories ul li {
    margin-bottom: 2px;
}
.mega-categories ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: all 0.2s ease;
    text-decoration: none;
}
.mega-categories ul li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}
.mega-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.mega-cat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mega-cat-info strong {
    font-size: 14px;
    font-weight: 600;
}
.mega-cat-info small {
    font-size: 11px;
    color: var(--gray-500);
}
.mega-cat-arrow {
    font-size: 10px;
    color: var(--gray-400);
    transition: var(--transition);
    opacity: 0;
}
.mega-categories ul li a:hover .mega-cat-arrow {
    opacity: 1;
    color: var(--primary);
}

/* Subcategory Panel — JS moves these to .mega-menu level so they aren't clipped by ul scroll */
.mega-cat-has-sub { position: static; }
.mega-sub-panel {
    display: none; position: absolute; right: 0; top: 3px;
    width: 50%; height: calc(100% - 3px);
    background: #fff; overflow-y: auto;
    border-radius: 0 0 var(--radius-lg, 12px) 0;
    box-shadow: none; padding: 24px; z-index: 20;
    border: none; border-left: 1px solid var(--gray-200);
}
.mega-sub-panel.active { display: block; }
.mega-sub-panel h5 { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.mega-sub-panel ul { list-style: none; padding: 0; margin: 0; max-height: none; overflow-y: visible; }
.mega-sub-panel ul li a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 0; font-size: 0.8rem; color: #555; text-decoration: none;
    transition: color 0.15s;
}
.mega-sub-panel ul li a:hover { color: #0078ad; }
.mega-sub-panel ul li a span { font-size: 0.7rem; color: #bbb; }
.mega-sub-all {
    display: block; margin-top: 10px; padding-top: 8px; border-top: 1px solid #f0f0f0;
    font-size: 0.78rem; font-weight: 600; color: #0078ad; text-decoration: none;
}
.mega-sub-all:hover { text-decoration: underline; }

.mega-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px solid var(--gray-200);
    text-decoration: none;
    transition: var(--transition);
}
.mega-view-all:hover {
    color: var(--primary-dark);
    gap: 12px;
}
.mega-promo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mega-promo-card {
    background: linear-gradient(135deg, var(--primary), #f97316);
    border-radius: var(--radius);
    padding: 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.mega-promo-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.mega-promo-content {
    position: relative;
    z-index: 1;
    flex: 1;
}
.mega-promo-tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.mega-promo-content h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.mega-promo-content p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.5;
}
.mega-promo-content .btn {
    background: white;
    color: var(--primary);
    font-size: 12px;
    padding: 6px 14px;
}
.mega-promo-content .btn:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}
.mega-promo-visual {
    font-size: 48px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}
.mega-popular h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.mega-popular h5 i {
    color: var(--secondary);
}
.mega-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mega-popular-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.mega-popular-tags a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================
   LOGO ICON
   ============================================ */
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 14px;
    margin-right: 8px;
    vertical-align: middle;
}

/* ============================================
   HERO V2 (Split layout with splash images)
   ============================================ */
.hero-v2 {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(59,130,246,0.15) 0%, transparent 50%);
}
.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
}
.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: float 8s ease-in-out infinite;
}
.hero-particles .particle:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 5%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { width: 60px; height: 60px; top: 70%; left: 15%; animation-delay: 2s; border-radius: 30%; }
.hero-particles .particle:nth-child(3) { width: 80px; height: 80px; top: 20%; right: 10%; animation-delay: 4s; }
.hero-particles .particle:nth-child(4) { width: 40px; height: 40px; bottom: 30%; right: 20%; animation-delay: 1s; border-radius: 20%; }
.hero-particles .particle:nth-child(5) { width: 120px; height: 120px; top: 50%; left: 40%; animation-delay: 3s; }

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-v2-text {
    max-width: 560px;
}
.hero-tag {
    margin-bottom: 20px;
}
.hero-tag span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}
.hero-tag i {
    color: #f59e0b;
}
.hero-v2 h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.gradient-text {
    background: linear-gradient(135deg, #f59e0b, #ec4899, #f59e0b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}
.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

/* Hero Search V2 */
.hero-search-v2 {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.3s both;
    transition: var(--transition);
}
.hero-search-v2:focus-within {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}
.search-input-wrap i {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
}
.search-input-wrap input {
    flex: 1;
    padding: 16px 0;
    border: none;
    background: transparent;
    color: white;
    font-size: 15px;
    outline: none;
}
.search-input-wrap input::placeholder {
    color: rgba(255,255,255,0.5);
}
.hero-search-v2 button {
    padding: 16px 28px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.hero-search-v2 button:hover {
    background: var(--primary-dark);
}

/* Hero Badges V2 */
.hero-badges {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-mini-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}
.mini-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(245,158,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fbbf24;
}
.hero-mini-badge strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
}
.hero-mini-badge span {
    font-size: 11px;
    opacity: 0.6;
}

/* Hero Visual / Splash Cards */
.hero-v2-visual {
    position: relative;
    height: 480px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-splash-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    z-index: 3;
    animation: fadeInUp 0.8s ease both;
    min-width: 180px;
}
.hero-splash-card .splash-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.hero-splash-card .splash-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}
.hero-splash-card .splash-info span {
    font-size: 11px;
    opacity: 0.7;
}
.hero-splash-1 {
    top: 30px;
    right: 10px;
    animation-delay: 0.5s;
}
.hero-splash-1 .splash-icon {
    background: rgba(245,158,11,0.4);
    color: #c4b5fd;
}
.hero-splash-2 {
    bottom: 110px;
    left: 0;
    animation-delay: 0.7s;
}
.hero-splash-2 .splash-icon {
    background: rgba(236,72,153,0.4);
    color: #f9a8d4;
}
.hero-splash-3 {
    bottom: 30px;
    right: 40px;
    animation-delay: 0.9s;
}
.hero-splash-3 .splash-icon {
    background: rgba(16,185,129,0.4);
    color: #6ee7b7;
}

/* Hero Center Image */
.hero-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.15);
    z-index: 2;
}
.hero-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(245,158,11,0.3) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================
   STATS SECTION V2 (Animated Counters)
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-200);
}
.stats-row-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item-v2 {
    text-align: center;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--gray-100);
    transition: var(--transition-bounce);
}
.stat-item-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--white);
}
.stat-icon-v2 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}
.stat-item-v2 h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-item-v2 h3 span {
    font-size: 32px;
}
.stat-item-v2 p {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-header .section-title {
    margin-bottom: 4px;
}
.section-header .section-subtitle {
    margin-bottom: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 60px 0; }
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.section-subtitle {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 16px;
}

/* ============================================
   PRODUCT GRID & CARDS (Enhanced)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.product-card .product-image {
    height: 220px;
    background: var(--gray-200);
    overflow: hidden;
    position: relative;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-image img { transform: scale(1.1); }

/* Image Overlay with Quick Actions */
.product-card .product-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-image-overlay { opacity: 1; }
.product-image-overlay .quick-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition-bounce);
    transform: translateY(15px);
    opacity: 0;
}
.product-card:hover .product-image-overlay .quick-btn {
    transform: translateY(0);
    opacity: 1;
}
.product-card:hover .product-image-overlay .quick-btn:nth-child(2) { transition-delay: 0.05s; }
.quick-btn:hover { background: var(--primary); color: var(--white); transform: scale(1.1) !important; }

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.product-card .product-badge.badge-new {
    background: var(--success);
}

/* Category Pill */
.product-category-pill {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 4px 0;
}
.product-rating i {
    font-size: 12px;
    color: var(--warning);
}
.product-rating .rating-count {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 4px;
}

.product-card .product-info { padding: 16px 20px 8px; }
.product-card .product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card .product-name {
    font-size: 16px;
    font-weight: 700;
    margin: 6px 0;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}
.product-card:hover .product-name { color: var(--primary); }
.product-card .product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.product-card .product-price .original {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 6px;
}
.product-card .product-actions {
    padding: 8px 20px 16px;
    display: flex;
    gap: 8px;
}
.product-card .product-actions .btn { flex: 1; justify-content: center; font-size: 13px; }

/* ============================================
   CATEGORY CARDS (Enhanced)
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}
.category-card .cat-icon {
    font-size: 36px;
    margin-bottom: 12px;
    transition: var(--transition);
    color: var(--primary);
}
.category-card:hover .cat-icon { transform: scale(1.15); }
.category-card .cat-name { font-size: 16px; font-weight: 700; color: var(--dark); }
.category-card .cat-count { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ============================================
   RESELLER STORES GRID (NEW)
   ============================================ */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.store-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
}
.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.store-card .store-card-banner {
    height: 100px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 20px;
}
.store-card .store-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    top: 30px;
    border: 3px solid var(--white);
    overflow: hidden;
}
.store-card .store-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store-card .store-card-body {
    padding: 40px 20px 20px;
}
.store-card .store-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.store-card .store-card-desc {
    font-size: 13px;
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
    line-height: 1.5;
}
.store-card .store-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-500);
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}
.store-card .store-card-meta i { margin-right: 4px; }
.store-card .store-card-meta .verified {
    color: var(--success);
    font-weight: 600;
}
.store-card .visit-store {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-left: auto;
    transition: var(--transition);
}
.store-card:hover .visit-store { gap: 10px; }

/* ============================================
   HOW IT WORKS (NEW)
   ============================================ */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hiw-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    position: relative;
}
.hiw-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.hiw-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
}
.hiw-step .step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}
.hiw-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.hiw-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   NEWSLETTER SECTION (NEW)
   ============================================ */
.newsletter-section {
    background: var(--gray-100);
    padding: 60px 0;
}
.newsletter-section .newsletter-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-section h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}
.newsletter-section p {
    color: var(--gray-500);
    margin-bottom: 24px;
    font-size: 15px;
}
.newsletter-section .newsletter-form {
    display: flex;
    gap: 0;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}
.newsletter-section .newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 15px;
    outline: none;
}
.newsletter-section .newsletter-form button {
    padding: 16px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-section .newsletter-form button:hover { background: var(--primary-dark); }

/* ============================================
   CTA SECTION (Enhanced)
   ============================================ */
.cta-section {
    background: linear-gradient(-45deg, #f59e0b, #f97316, #f59e0b, #fbbf24);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.cta-section .cta-content {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-section p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 17px;
}

/* ============================================
   PRODUCT DETAIL PAGE (Enhanced)
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0 12px;
    font-size: 13px;
    color: #9ca3af;
    flex-wrap: wrap;
}
.breadcrumb a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #f59e0b; }
.breadcrumb .separator { color: #d1d5db; font-size: 9px; }

/* ================================================================
   PRODUCT DETAIL PAGE — Premium Redesign
   ================================================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 24px 0 48px;
    align-items: start;
}
.product-detail .product-gallery {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 100px;
}
.product-detail .product-gallery img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-detail .product-gallery:hover img { transform: scale(1.03); }

/* Product Info */
.product-detail .product-details { padding: 8px 0; }
.product-detail .product-details h1 { font-size: 1.65rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; line-height: 1.3; letter-spacing: -0.3px; }
.product-detail .product-details .price { font-size: 2rem; font-weight: 900; color: #0f172a; margin-bottom: 16px; letter-spacing: -0.5px; }
.product-detail .product-details .description { color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-size: 15px; }

/* Product Rating */
.product-rating { display: flex; align-items: center; gap: 4px; }
.product-rating i { color: #fbbf24; font-size: 14px; }
.product-rating .far { color: #d1d5db; }
.rating-count { font-size: 13px; color: var(--gray-500); margin-left: 4px; }

/* Category pill */
.product-category-pill { display: inline-block; padding: 4px 12px; background: #fef3c7; color: #d97706; border-radius: 9999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Quantity selector */
.product-detail .qty-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.product-detail .qty-selector label { font-size: 14px; font-weight: 600; color: #374151; }
.product-detail .qty-selector button {
    width: 40px; height: 40px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    color: #374151;
}
.product-detail .qty-selector button:hover { border-color: #f59e0b; color: #f59e0b; background: #fffbeb; }
.product-detail .qty-selector input {
    width: 56px; text-align: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}
.product-detail .qty-selector input:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.1); }

/* Add to Cart button */
.product-detail .btn-primary.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
    transition: all 0.25s;
}
.product-detail .btn-primary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245,158,11,0.4);
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}
.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 0 8px;
}
.tab-nav button {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    font-family: inherit;
}
.tab-nav button:hover { color: #0f172a; }
.tab-nav button.active { color: #f59e0b; }
.tab-nav button.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 8px; right: 8px;
    height: 3px;
    background: #f59e0b;
    border-radius: 3px 3px 0 0;
}
.tab-pane {
    display: none;
    padding: 28px 32px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
}
.tab-pane.active { display: block; animation: fadeInUp 0.3s ease; }

/* Seller Badge */
.seller-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-top: 20px;
}
.seller-badge .seller-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.2);
}
.seller-badge .seller-info h4 { font-size: 14px; font-weight: 700; color: #0f172a; margin: 0 0 2px; }
.seller-badge .seller-info p { font-size: 12px; color: #6b7280; margin: 0; }

/* Related products section */
.product-detail ~ .section { margin-bottom: 40px; }
.product-detail ~ .section .section-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; color: #0f172a; }

/* ============================================
   SHOP PAGE — Landing Page Style
   ============================================ */

/* ===== SHOP HERO ===== */
.shop-hero {
    position: relative;
    background: linear-gradient(135deg, #090e1a 0%, #1e293b 50%, #0f172a 100%);
    padding: 48px 0 40px;
    overflow: hidden;
}
.shop-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(249,115,22,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.shop-hero-content {
    position: relative; z-index: 1;
    max-width: 700px;
}
.shop-breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 0.8rem; margin-bottom: 20px;
}
.shop-breadcrumb a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    transition: color 0.2s;
}
.shop-breadcrumb a:hover { color: var(--primary); }
.shop-breadcrumb i { font-size: 7px; color: rgba(255,255,255,0.25); }
.shop-breadcrumb span { color: rgba(255,255,255,0.8); font-weight: 600; }

.shop-hero-title {
    font-size: 2rem; font-weight: 800; color: #fff;
    line-height: 1.2; margin: 0 0 10px;
    font-family: var(--font);
}
.shop-hero-sub {
    font-size: 0.95rem; color: rgba(255,255,255,0.55);
    margin: 0 0 24px; line-height: 1.5;
}

/* Hero Search */
.shop-hero-search {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 5px 5px 5px 18px;
    max-width: 560px;
    transition: all 0.3s;
}
.shop-hero-search:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: rgba(245,158,11,0.4);
    box-shadow: 0 0 20px rgba(245,158,11,0.1);
}
.shop-hero-search i { color: rgba(255,255,255,0.35); font-size: 15px; }
.shop-hero-search input {
    flex: 1; border: none; outline: none; padding: 12px 14px;
    font-size: 0.9rem; background: transparent; color: #fff;
    font-family: var(--font);
}
.shop-hero-search input::placeholder { color: rgba(255,255,255,0.35); }
.shop-hero-search button {
    padding: 11px 24px; background: var(--primary); color: var(--dark);
    border: none; border-radius: 8px; font-size: 0.82rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.shop-hero-search button:hover { background: var(--primary-light); transform: translateY(-1px); }

/* ===== TRUST BAR ===== */
.shop-trust-bar {
    background: #fff; border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
}
.shop-trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
}
.shop-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--gray-600);
    white-space: nowrap;
}
.shop-trust-item i {
    font-size: 14px; color: var(--primary);
}
.shop-trust-sep {
    width: 1px; height: 16px; background: var(--gray-200);
}

/* ===== SUBCATEGORY STRIP ===== */
.shop-subcat-section {
    background: #fff; border-bottom: 1px solid var(--gray-200); padding: 14px 0;
}
.shop-subcat-scroll {
    display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0;
}
.shop-subcat-scroll::-webkit-scrollbar { display: none; }
.shop-subcat-chip {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
    background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 24px;
    font-size: 0.8rem; font-weight: 600; color: var(--gray-700); text-decoration: none;
    white-space: nowrap; transition: all 0.2s; font-family: var(--font);
}
.shop-subcat-chip:hover {
    border-color: var(--primary); color: var(--primary-dark);
    background: #fffbeb; transform: translateY(-1px);
}
.shop-subcat-chip.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border-color: transparent;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.shop-subcat-chip i { font-size: 11px; }
.shop-subcat-count {
    background: rgba(0,0,0,0.06); padding: 2px 8px; border-radius: 10px; font-size: 0.68rem;
}
.shop-subcat-chip.active .shop-subcat-count { background: rgba(255,255,255,0.25); }

/* ===== MAIN SHOP LAYOUT ===== */
.shop-main-wrap {
    background: var(--gray-100); min-height: 60vh; padding: 24px 0 48px;
}
.shop-layout {
    display: grid; grid-template-columns: 270px 1fr; gap: 24px; align-items: start;
}

/* ===== SIDEBAR ===== */
.shop-sidebar {
    background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200);
    position: sticky; top: 80px; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.shop-sidebar-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, #fafafa, #fff);
}
.shop-sidebar-head h3 {
    font-size: 0.92rem; font-weight: 800; color: var(--gray-900); margin: 0;
    display: flex; align-items: center; gap: 8px; font-family: var(--font);
}
.shop-sidebar-head h3 i { color: var(--primary); font-size: 14px; }
.shop-sidebar-close {
    display: none; background: none; border: none; font-size: 18px;
    color: var(--gray-500); cursor: pointer; width: 32px; height: 32px;
    border-radius: 8px; transition: all 0.2s;
}
.shop-sidebar-close:hover { background: var(--gray-100); color: var(--gray-900); }

/* Filter Block */
.shop-filter-block { border-bottom: 1px solid var(--gray-100); }
.shop-filter-block:last-child { border-bottom: none; }
.shop-filter-title {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; font-size: 0.82rem; font-weight: 700; color: var(--gray-800);
    cursor: pointer; user-select: none; transition: all 0.2s;
    font-family: var(--font);
}
.shop-filter-title:hover { background: var(--gray-100); }
.shop-filter-title span { display: flex; align-items: center; gap: 8px; }
.shop-filter-title span i { font-size: 12px; color: var(--primary); }
.shop-filter-arrow { font-size: 10px !important; color: var(--gray-400) !important; transition: transform 0.2s; }
.shop-filter-block.collapsed .shop-filter-arrow { transform: rotate(-90deg); }
.shop-filter-body { padding: 0 20px 16px; }
.shop-filter-block.collapsed .shop-filter-body { display: none; }

/* Category Tree */
.shop-cat-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 10px; margin: 2px 0; font-size: 0.8rem; color: var(--gray-600);
    text-decoration: none; border-radius: 8px; transition: all 0.15s;
}
.shop-cat-link:hover { background: var(--gray-100); color: var(--gray-900); }
.shop-cat-link.active {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: var(--primary-dark); font-weight: 700;
}
.shop-cat-link span { display: flex; align-items: center; gap: 8px; }
.shop-cat-link i { font-size: 12px; color: var(--gray-400); }
.shop-cat-link.active i { color: var(--primary); }
.shop-cat-count {
    font-size: 0.68rem; color: var(--gray-400); background: var(--gray-100);
    padding: 2px 8px; border-radius: 10px; font-weight: 600;
}
.shop-cat-link.active .shop-cat-count { background: rgba(245,158,11,0.15); color: var(--primary-dark); }
.shop-cat-tree { border-top: 1px solid var(--gray-100); }
.shop-cat-parent { display: flex; align-items: center; gap: 4px; }
.shop-cat-parent .shop-cat-link { flex: 1; }
.shop-cat-toggle {
    background: none; border: none; width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray-400); font-size: 11px; border-radius: 6px;
    transition: all 0.15s;
}
.shop-cat-toggle:hover { background: var(--gray-100); color: var(--gray-700); }
.shop-cat-children { padding-left: 12px; display: none; }
.shop-cat-tree.open .shop-cat-children { display: block; }
.shop-cat-tree.open .shop-cat-toggle i::before { content: "\f068"; }
.shop-cat-child { font-size: 0.78rem; }

/* Price Filter */
.shop-price-form { display: flex; flex-direction: column; gap: 10px; }
.shop-price-inputs { display: flex; align-items: center; gap: 8px; }
.shop-price-field {
    flex: 1; display: flex; align-items: center; gap: 0;
    border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden;
    transition: border-color 0.2s;
}
.shop-price-field:focus-within { border-color: var(--primary); }
.shop-price-field span {
    padding: 8px 0 8px 10px; font-size: 0.8rem; color: var(--gray-400); font-weight: 600;
}
.shop-price-field input {
    flex: 1; border: none; outline: none; padding: 8px 8px; width: 0;
    font-size: 0.8rem; font-family: var(--font);
}
.shop-price-dash { color: var(--gray-400); font-size: 0.75rem; font-weight: 600; }
.shop-price-btn {
    padding: 9px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none; border-radius: 8px;
    font-size: 0.78rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: var(--font);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.shop-price-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.shop-price-quick {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.shop-quick-tag {
    font-size: 0.72rem; color: var(--primary-dark); text-decoration: none;
    padding: 4px 10px; background: #fffbeb; border: 1px solid #fef3c7;
    border-radius: 16px; font-weight: 600; transition: all 0.2s;
}
.shop-quick-tag:hover {
    background: var(--primary); color: #fff; border-color: var(--primary);
}

/* Checkbox */
.shop-check-label {
    display: flex; align-items: center; gap: 8px; padding: 6px 10px;
    font-size: 0.8rem; color: var(--gray-600); cursor: pointer;
    border-radius: 6px; transition: background 0.15s;
}
.shop-check-label:hover { background: var(--gray-100); }
.shop-check-label input { accent-color: var(--primary); }

/* Clear Filters */
.shop-filter-clear {
    padding: 14px 20px; border-top: 1px solid var(--gray-200);
}
.shop-filter-clear a {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px; background: #fef2f2; color: #dc2626; border-radius: 8px;
    font-size: 0.78rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s;
}
.shop-filter-clear a:hover { background: #fecaca; }

/* ===== BRAND FILTER ===== */
.shop-brand-list { max-height: 220px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent; }
.shop-brand-list::-webkit-scrollbar { width: 4px; }
.shop-brand-list::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.shop-check-link { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 6px; text-decoration: none; color: var(--dark); transition: background 0.15s; cursor: pointer; font-size: 0.85rem; }
.shop-check-link:hover { background: var(--gray-100); }
.shop-check-link.active { background: #fef3c7; }
.shop-checkbox { width: 18px; height: 18px; border: 2px solid var(--gray-300); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; flex-shrink: 0; transition: all 0.15s; }
.shop-checkbox.checked { background: var(--primary); border-color: var(--primary); }
.shop-check-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-filter-count { margin-left: auto; font-size: 0.7rem; color: var(--gray-500); background: var(--gray-100); padding: 1px 8px; border-radius: 10px; flex-shrink: 0; }

/* ===== RATING FILTER ===== */
.shop-rating-option { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; text-decoration: none; color: var(--dark); font-size: 0.82rem; transition: background 0.15s; }
.shop-rating-option:hover { background: var(--gray-100); }
.shop-rating-option.active { background: #fef3c7; font-weight: 600; }
.shop-rating-stars { display: inline-flex; gap: 1px; }
.shop-rating-stars i { font-size: 12px; color: #f59e0b; }
.shop-rating-stars i.far { color: #d1d5db; }

/* ===== PAGINATION ===== */
.shop-pagination { margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--gray-200); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.shop-page-info { font-size: 0.82rem; color: var(--gray-500); }
.shop-page-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.shop-page-btn { display: inline-flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 8px; background: #fff; border: 1px solid var(--gray-200); color: var(--dark); text-decoration: none; font-size: 0.84rem; font-weight: 500; transition: all 0.2s; }
.shop-page-btn:hover { border-color: var(--primary); color: var(--primary); background: #fffbeb; }
.shop-page-numbers { display: flex; align-items: center; gap: 4px; }
.shop-page-num { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; text-decoration: none; font-size: 0.84rem; font-weight: 500; color: var(--dark); background: #fff; border: 1px solid var(--gray-200); transition: all 0.2s; }
.shop-page-num:hover { border-color: var(--primary); color: var(--primary); }
.shop-page-num.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.shop-page-dots { padding: 0 4px; color: var(--gray-400); font-size: 0.8rem; }

/* ===== SEARCH AUTOCOMPLETE ===== */
.search-autocomplete { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 0 0 12px 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); z-index: 200; max-height: 400px; overflow-y: auto; border: 1px solid var(--gray-200); border-top: none; }
.sa-section { padding: 8px 0; }
.sa-section + .sa-section { border-top: 1px solid var(--gray-100); }
.sa-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-500); padding: 4px 16px 6px; }
.sa-item { display: flex; align-items: center; gap: 12px; padding: 8px 16px; text-decoration: none; color: var(--dark); transition: background 0.12s; }
.sa-item:hover { background: var(--gray-100); }
.sa-cat { font-size: 0.85rem; }
.sa-cat i { color: var(--primary); width: 20px; text-align: center; }
.sa-img { width: 40px; height: 40px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.sa-img img { width: 100%; height: 100%; object-fit: cover; }
.sa-img i { color: var(--gray-400); font-size: 14px; }
.sa-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sa-name { font-size: 0.85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-price { font-size: 0.8rem; font-weight: 700; color: var(--primary); }
.sa-empty { padding: 20px 16px; text-align: center; color: var(--gray-500); font-size: 0.85rem; }

/* ===== PRODUCT CARD - NEW BADGE ===== */
.ex-new-badge { font-size: 0.68rem; font-weight: 600; color: #059669; background: #ecfdf5; padding: 2px 8px; border-radius: 4px; display: inline-block; }

/* ===== MAIN CONTENT ===== */
.shop-content { min-width: 0; }

/* Top Bar */
.shop-topbar {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200);
    padding: 12px 20px; margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.shop-topbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.shop-filter-toggle {
    display: none; align-items: center; gap: 6px; padding: 8px 16px;
    background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 8px;
    font-size: 0.8rem; font-weight: 700; color: var(--gray-700); cursor: pointer;
    transition: all 0.2s; font-family: var(--font);
}
.shop-filter-toggle:hover { border-color: var(--primary); color: var(--primary-dark); }
.shop-result-count {
    font-size: 0.82rem; color: var(--gray-500); font-family: var(--font);
}
.shop-result-count strong { color: var(--gray-800); }

.shop-topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Active Filters */
.shop-active-filters { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.shop-filter-tag {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: var(--primary-dark); border: 1px solid #fde68a; border-radius: 20px;
    font-size: 0.72rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.shop-filter-tag:hover { background: #fde68a; border-color: var(--primary); }
.shop-filter-tag i:first-child { font-size: 9px; color: var(--primary); }
.shop-filter-tag i:last-child { font-size: 8px; margin-left: 2px; opacity: 0.6; }

/* Sort */
.shop-sort-select {
    padding: 8px 34px 8px 14px; border: 1px solid var(--gray-200); border-radius: 8px;
    font-size: 0.8rem; font-weight: 600; appearance: none; cursor: pointer;
    background: #fff; color: var(--gray-700); font-family: var(--font);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
    transition: border-color 0.2s;
}
.shop-sort-select:hover { border-color: var(--primary); }

/* ===== PRODUCTS GRID ===== */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}
.shop-products-grid .ex-pcard {
    min-width: 0; max-width: 100%; width: 100%;
    scroll-snap-align: unset;
}

/* ===== EMPTY STATE ===== */
.shop-empty-state {
    text-align: center; padding: 80px 24px; background: #fff;
    border-radius: var(--radius); border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.shop-empty-circle {
    width: 100px; height: 100px; margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: var(--gray-400);
}
.shop-empty-state h3 {
    font-size: 1.2rem; font-weight: 800; color: var(--gray-800);
    margin: 0 0 8px; font-family: var(--font);
}
.shop-empty-state p {
    font-size: 0.9rem; color: var(--gray-500); margin: 0 0 24px; max-width: 400px;
    margin-left: auto; margin-right: auto; line-height: 1.5;
}

/* ===== SHOP CTA BANNER ===== */
.shop-cta-section {
    padding: 0 0 48px; background: var(--gray-100);
}
.shop-cta-banner {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #090e1a, #1e293b);
    border-radius: var(--radius-lg); padding: 32px 40px;
    gap: 24px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.shop-cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.shop-cta-content { position: relative; z-index: 1; }
.shop-cta-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; background: rgba(245,158,11,0.15);
    color: var(--primary); border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.shop-cta-content h3 {
    font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 0 6px;
    font-family: var(--font);
}
.shop-cta-content p {
    font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0;
}

/* ===== SHOP RESPONSIVE ===== */
@media (max-width: 1024px) {
    .shop-products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
    .shop-hero-title { font-size: 1.6rem; }
}
@media (max-width: 768px) {
    .shop-hero { padding: 32px 0 28px; }
    .shop-hero-title { font-size: 1.4rem; }
    .shop-hero-search { max-width: 100%; }
    .shop-trust-row { gap: 8px; justify-content: space-around; }
    .shop-trust-sep { display: none; }
    .shop-trust-item { font-size: 0.7rem; }
    .shop-trust-item i { font-size: 12px; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar {
        position: fixed; top: 0; left: -310px; bottom: 0; width: 290px;
        z-index: 1000; border-radius: 0; border: none;
        box-shadow: 4px 0 30px rgba(0,0,0,0.2); transition: left 0.3s ease;
        overflow-y: auto;
    }
    .shop-sidebar.open { left: 0; }
    .shop-sidebar-close { display: flex; align-items: center; justify-content: center; }
    .shop-filter-toggle { display: flex; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .shop-cta-banner { padding: 24px; text-align: center; flex-direction: column; }
}
@media (max-width: 480px) {
    .shop-hero { padding: 24px 0 20px; }
    .shop-hero-title { font-size: 1.2rem; }
    .shop-hero-sub { font-size: 0.82rem; }
    .shop-hero-search input { font-size: 0.82rem; padding: 10px 10px; }
    .shop-hero-search button { padding: 9px 16px; font-size: 0.78rem; }
    .shop-trust-bar { padding: 10px 0; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .shop-topbar { padding: 10px 14px; }
    .shop-cta-banner { padding: 20px 16px; }
    .shop-cta-content h3 { font-size: 1.1rem; }
}

/* ============================================
   BECOME PARTNER PAGE
   ============================================ */
.bp-hero {
    position: relative; background: linear-gradient(135deg, #090e1a 0%, #1e293b 50%, #0f172a 100%);
    padding: 48px 0 40px; overflow: hidden;
}
.bp-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 75% 30%, rgba(16,185,129,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.bp-hero-content { position: relative; z-index: 1; max-width: 650px; }
.bp-hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; background: rgba(245,158,11,0.15); color: var(--primary);
    border-radius: 20px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px;
}
.bp-hero-title { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 10px; font-family: var(--font); }
.bp-hero-sub { font-size: 0.92rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }
.bp-stats-bar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.bp-stats-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.bp-stat { text-align: center; }
.bp-stat strong { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); font-family: var(--font); }
.bp-stat span { display: block; font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }
.bp-stat-sep { width: 1px; height: 28px; background: var(--gray-200); }
.bp-types-section { padding: 40px 0 20px; background: var(--gray-100); }
.bp-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.bp-type-card {
    background: #fff; border-radius: var(--radius); padding: 24px 18px; text-align: center;
    border: 2px solid var(--gray-200); cursor: pointer; transition: all 0.3s;
}
.bp-type-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.bp-type-card.selected { border-color: var(--primary); background: #fffbeb; box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.bp-type-icon {
    width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(245,158,11,0.1); color: var(--tc, var(--primary)); font-size: 20px;
}
.bp-type-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--gray-800); margin: 0 0 4px; font-family: var(--font); }
.bp-type-card p { font-size: 0.72rem; color: var(--gray-500); margin: 0; line-height: 1.4; }
.bp-form-section { padding: 32px 0 48px; background: var(--gray-100); }
.bp-form-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.bp-form-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-200); box-shadow: var(--shadow);
}
.bp-form-head { padding: 24px 28px; border-bottom: 1px solid var(--gray-100); background: linear-gradient(135deg, #fafafa, #fff); }
.bp-form-head h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); margin: 0 0 4px; display: flex; align-items: center; gap: 8px; font-family: var(--font); }
.bp-form-head h3 i { color: var(--primary); }
.bp-form-head p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }
.bp-form { padding: 24px 28px; }
.bp-field { margin-bottom: 16px; }
.bp-field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; font-family: var(--font); }
.bp-req { color: #EF4444; }
.bp-field input, .bp-field select, .bp-field textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 8px;
    font-size: 0.85rem; font-family: var(--font); color: var(--gray-800);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none; box-sizing: border-box; background: #fff;
}
.bp-field input:focus, .bp-field select:focus, .bp-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,158,11,0.1); }
.bp-field textarea { resize: vertical; min-height: 80px; }
.bp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bp-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.bp-submit-btn {
    width: 100%; padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none; border-radius: 10px; font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s; font-family: var(--font);
    display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px;
}
.bp-submit-btn:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.bp-benefits { position: sticky; top: 80px; }
.bp-benefit-card {
    background: #fff; border-radius: var(--radius-lg); padding: 24px;
    border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.bp-benefit-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--gray-900); margin: 0 0 18px; display: flex; align-items: center; gap: 8px; font-family: var(--font); }
.bp-benefit-card h4 i { color: var(--primary); }
.bp-benefit-list { display: flex; flex-direction: column; gap: 14px; }
.bp-benefit-item { display: flex; align-items: center; gap: 12px; }
.bp-benefit-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.bp-benefit-item strong { font-size: 0.82rem; color: var(--gray-800); display: block; font-family: var(--font); }
.bp-benefit-item span { font-size: 0.72rem; color: var(--gray-500); }
.bp-testimonial-card {
    background: linear-gradient(135deg, #090e1a, #1e293b); border-radius: var(--radius-lg);
    padding: 24px; color: #fff;
}
.bp-quote { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.bp-testimonial-card p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 16px; }
.bp-testimonial-who { display: flex; align-items: center; gap: 10px; }
.bp-av {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: #fff;
}
.bp-testimonial-who strong { font-size: 0.82rem; display: block; }
.bp-testimonial-who small { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
@media (max-width: 1024px) {
    .bp-form-layout { grid-template-columns: 1fr; }
    .bp-benefits { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
    .bp-hero { padding: 32px 0 28px; }
    .bp-hero-title { font-size: 1.5rem; }
    .bp-types-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-row, .bp-row-3 { grid-template-columns: 1fr; }
    .bp-benefits { grid-template-columns: 1fr; }
    .bp-stats-row { gap: 10px; }
    .bp-stat-sep { display: none; }
}
@media (max-width: 480px) {
    .bp-hero-title { font-size: 1.25rem; }
    .bp-types-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bp-type-card { padding: 16px 12px; }
    .bp-form { padding: 18px 16px; }
}

/* ============================================
   FLASH SALES PAGE
   ============================================ */
.fs-hero {
    position: relative; background: linear-gradient(135deg, #1a0a00 0%, #451a03 40%, #7c2d12 100%);
    padding: 48px 0 40px; overflow: hidden;
}
.fs-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.2) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 30%, rgba(239,68,68,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.fs-hero-content { position: relative; z-index: 1; max-width: 600px; }
.fs-hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; background: rgba(245,158,11,0.2); color: var(--primary);
    border-radius: 20px; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px;
}
.fs-hero-title { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 10px; font-family: var(--font); }
.fs-hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.6; }
.fs-content-section { padding: 32px 0 48px; background: var(--gray-100); }
.fs-empty-state {
    text-align: center; padding: 80px 24px; background: #fff;
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.fs-empty-circle {
    width: 100px; height: 100px; margin: 0 auto 24px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: var(--primary);
}
.fs-empty-state h3 { font-size: 1.2rem; font-weight: 800; color: var(--gray-800); margin: 0 0 8px; font-family: var(--font); }
.fs-empty-state p { font-size: 0.88rem; color: var(--gray-500); margin: 0 0 24px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.5; }
.fs-sale-block {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--gray-200); box-shadow: var(--shadow); margin-bottom: 28px;
}
.fs-sale-block.fs-ended { opacity: 0.6; }
.fs-sale-header {
    position: relative; background: linear-gradient(135deg, #F59E0B, #EF4444);
    padding: 24px 28px; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; overflow: hidden;
}
.fs-sale-header-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.fs-sale-info { position: relative; z-index: 1; }
.fs-sale-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; background: rgba(255,255,255,0.2);
    border-radius: 14px; font-size: 0.68rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.fs-sale-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; font-family: var(--font); }
.fs-sale-desc { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 4px 0 0; }
.fs-timer-wrap { position: relative; z-index: 1; text-align: right; }
.fs-timer-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fs-timer { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.fs-timer-block {
    background: rgba(0,0,0,0.25); backdrop-filter: blur(4px);
    border-radius: 8px; padding: 8px 12px; text-align: center; min-width: 50px;
}
.fs-t-num { font-size: 1.4rem; font-weight: 800; color: #fff; display: block; font-family: var(--font); }
.fs-timer-block small { font-size: 0.55rem; color: rgba(255,255,255,0.6); font-weight: 700; letter-spacing: 1px; }
.fs-timer-sep { font-size: 1.2rem; font-weight: 800; color: rgba(255,255,255,0.6); }
.fs-products-wrap { padding: 24px 28px; }
.fs-coming-soon { text-align: center; padding: 40px 20px; color: var(--gray-400); }
.fs-coming-soon i { font-size: 32px; margin-bottom: 8px; display: block; }
.fs-coming-soon p { margin: 0; font-size: 0.88rem; }
.fs-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.fs-product-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--gray-200); transition: all 0.3s; display: flex; flex-direction: column;
}
.fs-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.fs-product-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.fs-product-img {
    position: relative; aspect-ratio: 4/3; background: var(--gray-100);
    overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 12px;
}
.fs-product-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.4s; }
.fs-product-card:hover .fs-product-img img { transform: scale(1.08); }
.fs-product-noimg { font-size: 36px; color: var(--gray-300); }
.fs-discount-badge {
    position: absolute; top: 8px; left: 8px; padding: 3px 8px;
    background: #dc2626; color: #fff; font-size: 0.62rem; font-weight: 700; border-radius: 4px; text-transform: uppercase;
}
.fs-hurry-badge {
    position: absolute; bottom: 8px; left: 8px; padding: 3px 8px;
    background: linear-gradient(135deg, #F59E0B, #EF4444); color: #fff;
    font-size: 0.6rem; font-weight: 700; border-radius: 4px;
    display: flex; align-items: center; gap: 3px; animation: pulse 1.5s infinite;
}
.fs-product-body { padding: 14px 16px 10px; flex: 1; display: flex; flex-direction: column; }
.fs-product-name {
    font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin: 0 0 8px;
    line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; font-family: var(--font);
}
.fs-product-pricing { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.fs-flash-price { font-size: 1.1rem; font-weight: 800; color: #10B981; font-family: var(--font); }
.fs-orig-price { font-size: 0.78rem; color: var(--gray-400); }
.fs-save-tag { font-size: 0.62rem; font-weight: 700; color: #dc2626; background: #fef2f2; padding: 2px 6px; border-radius: 4px; }
.fs-stock-bar-wrap { margin-top: auto; }
.fs-stock-bar { background: var(--gray-100); border-radius: 4px; height: 6px; overflow: hidden; }
.fs-stock-fill { background: var(--primary); height: 100%; border-radius: 4px; transition: width 0.5s; }
.fs-stock-fill.almost-gone { background: linear-gradient(90deg, #EF4444, #F59E0B); }
.fs-stock-info { display: flex; justify-content: space-between; margin-top: 4px; font-size: 0.68rem; color: var(--gray-500); font-weight: 600; }
.fs-add-btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; border: none; font-size: 0.82rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: var(--font);
}
.fs-add-btn:hover { filter: brightness(1.1); }
.fs-add-btn i { font-size: 13px; }
.fs-cta-section { padding: 0 0 48px; background: var(--gray-100); }
@media (max-width: 768px) {
    .fs-hero { padding: 32px 0 28px; }
    .fs-hero-title { font-size: 1.6rem; }
    .fs-sale-header { flex-direction: column; align-items: flex-start; padding: 20px; }
    .fs-timer-wrap { text-align: left; width: 100%; }
    .fs-products-wrap { padding: 16px; }
    .fs-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .fs-hero-title { font-size: 1.3rem; }
    .fs-timer-block { padding: 6px 8px; min-width: 42px; }
    .fs-t-num { font-size: 1.1rem; }
    .fs-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fs-product-body { padding: 10px 12px 8px; }
    .fs-product-name { font-size: 0.78rem; }
    .fs-flash-price { font-size: 0.95rem; }
}

/* ============================================
   CART
   ============================================ */
.cart-table { width: 100%; }
.cart-table th { text-align: left; padding: 12px 16px; font-size: 13px; color: var(--gray-500); }
.cart-table td { padding: 16px; vertical-align: middle; border-bottom: 1px solid var(--gray-200); }
.cart-table .cart-product { display: flex; align-items: center; gap: 16px; }
.cart-table .cart-product img { width: 70px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.cart-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.cart-summary .summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.cart-summary .summary-total { border-top: 2px solid var(--gray-200); font-size: 18px; font-weight: 700; padding-top: 16px; margin-top: 8px; }

/* ============================================
   TOAST NOTIFICATIONS (NEW)
   ============================================ */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-width: 420px;
    animation: toastIn 0.4s ease;
    font-size: 14px;
    border-left: 4px solid var(--gray-400);
}
.toast.toast-removing {
    animation: toastOut 0.3s ease forwards;
}
.toast-success { border-left-color: var(--success); }
.toast-danger { border-left-color: var(--danger); }
.toast-warning { border-left-color: var(--warning); }
.toast-info { border-left-color: var(--info); }
.toast i:first-child { font-size: 18px; }
.toast-success i:first-child { color: var(--success); }
.toast-danger i:first-child { color: var(--danger); }
.toast-warning i:first-child { color: var(--warning); }
.toast-info i:first-child { color: var(--info); }
.toast .toast-message { flex: 1; }
.toast .toast-close {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}
.toast .toast-close:hover { color: var(--dark); }

/* ============================================
   BACK TO TOP BUTTON (NEW)
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-glow);
    z-index: 1500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245,158,11,0.4);
}

/* ============================================
   FOOTER V2 (Redesigned)
   ============================================ */
.footer-v2 {
    background: linear-gradient(180deg, #090e1a 0%, #060a14 100%);
    color: #9ca3af;
}
.footer-top {
    padding: 72px 0 48px;
    position: relative;
}
.footer-top::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.15), transparent);
}
/* Footer Back-to-top */
.footer-btt { width:100%; padding:0.8rem; background:rgba(255,255,255,0.02); color:#64748b; font-size:0.8rem; font-weight:600; display:flex; align-items:center; justify-content:center; gap:0.35rem; border:none; border-bottom:1px solid rgba(255,255,255,0.04); cursor:pointer; transition:background 0.2s, color 0.2s; font-family:inherit; }
.footer-btt:hover { background:rgba(255,255,255,0.05); color:#fff; }
/* Footer payment row */
.footer-pay-row { display:flex; gap:0.4rem; flex-wrap:wrap; }
.footer-pay-row span { font-size:0.65rem; font-weight:600; color:#4b5563; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); padding:0.25rem 0.5rem; border-radius:4px; display:flex; align-items:center; gap:0.25rem; }
.footer-pay-row span i { font-size:0.75rem; }
.footer-v2-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand {
    padding-right: 20px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f59e0b;
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.footer-col ul li a i {
    font-size: 8px;
    color: var(--gray-600);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-col ul li a:hover i {
    color: var(--primary);
}

/* Footer Trust Strip */
.footer-trust {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
}
.trust-item i {
    font-size: 18px;
    color: var(--primary-light);
}

/* Footer Bottom V2 */
.footer-bottom-v2 {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.footer-bottom-inner p {
    color: var(--gray-600);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}
.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   RESELLER STORE THEME
   ============================================ */
.store-header {
    background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
    color: var(--white);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.store-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.store-header .store-info { display: flex; align-items: center; gap: 24px; position: relative; z-index: 1; }
.store-header .store-logo {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.store-header .store-name { font-size: 32px; font-weight: 800; }
.store-header .store-desc { opacity: 0.9; margin-top: 4px; }
.store-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0 30px;
}
.store-nav .container { display: flex; align-items: center; gap: 24px; height: 50px; overflow-x: auto; }
.store-nav a { color: var(--gray-600); font-weight: 500; font-size: 14px; padding: 14px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.store-nav a:hover, .store-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    padding: 40px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sidebar { width: 70px; }
    .sidebar-header h2 { display: none; }
    .sidebar-header small { display: none; }
    .sidebar-nav a span:not(.nav-icon) { display: none; }
    .sidebar-nav .nav-section { display: none; }
    .sidebar-nav a { justify-content: center; padding: 12px; }
    .main-content { margin-left: 70px; }
    .dash-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-charts-row { grid-template-columns: 1fr; }
    .dash-charts-row:first-of-type,
    .dash-charts-row:nth-of-type(2) { grid-template-columns: 1fr; }
    .dash-bottom-row { grid-template-columns: 1fr; }
    .dash-earnings-row { grid-template-columns: 1fr; }
    .footer-v2-grid { grid-template-columns: 1fr 1fr; }
    .stores-grid { grid-template-columns: 1fr 1fr; }
    .how-it-works-grid { grid-template-columns: 1fr; }
    .hero-v2-grid { gap: 40px; }
    .hero-v2 h1 { font-size: 44px; }
    .hero-center-image { width: 240px; height: 290px; }
    .mega-menu { width: 650px; }
}
@media (max-width: 768px) {
    .hero-v2 { padding: 60px 0 100px; min-height: auto; }
    .hero-v2-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-v2-text { max-width: 100%; }
    .hero-v2 h1 { font-size: 36px; letter-spacing: -1px; }
    .hero-desc { font-size: 15px; }
    .hero-v2-visual { display: none; }
    .hero-badges { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero-mini-badge { padding: 8px 12px; }
    .hero-search-v2 { flex-direction: column; border-radius: var(--radius); }
    .hero-search-v2 button { border-radius: 0 0 var(--radius) var(--radius); padding: 14px; }
    .search-input-wrap { padding: 0 16px; }
    .stats-row-v2 { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item-v2 { padding: 16px; }
    .stat-item-v2 h3 { font-size: 26px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .product-detail { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .dash-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .dash-kpi-card { padding: 16px; gap: 12px; }
    .dash-kpi-icon { width: 44px; height: 44px; font-size: 17px; }
    .dash-kpi-value { font-size: 18px; }
    .footer-v2-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { padding-right: 0; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .trust-items { gap: 24px; }
    .stores-grid { grid-template-columns: 1fr; }
    .nav-strip-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    /* Mega menu: full width on mobile */
    .mega-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
        max-height: 70vh;
        overflow-y: auto;
    }
    .mega-menu-wrap:hover .mega-menu {
        transform: none;
    }
    .mega-menu-inner {
        grid-template-columns: 1fr;
    }
    .mega-categories { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .mega-sub-panel { position: static; width: 100%; height: auto; border-left: none; border-top: 1px solid var(--gray-200); border-radius: 0; }
    .mega-promo-card { display: none; }
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    .navbar .nav-links.open { display: flex; }
    .navbar .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); }
    .navbar .nav-links a:hover { background: var(--gray-100); }
    .mobile-menu-btn { display: block; }
    .shop-sidebar { display: none; }
    .shop-controls { flex-wrap: wrap; gap: 10px; }
    .products-list .product-card { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .dash-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .dash-chart-body { height: 220px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-row-v2 { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .content-area { padding: 16px; }
    .hero-v2 { padding: 50px 0 80px; }
    .hero-v2 h1 { font-size: 30px; }
    .hero-badges { flex-direction: column; align-items: center; }
    .toast { min-width: auto; max-width: calc(100vw - 40px); }
    .trust-items { flex-direction: column; align-items: center; gap: 16px; }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state .icon { font-size: 64px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 30px; }
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}
.pagination a { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.pagination a:hover { background: var(--primary); color: var(--white); }
.pagination .active { background: var(--primary); color: var(--white); }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.3s ease;
}
.modal h3 { font-size: 20px; margin-bottom: 16px; }


/* ============================================
   EXIGOALS - Homepage V3 (Modern Premium)
   ============================================ */

/* --- Hero Section --- */
.xh-hero {
    background: #0f172a;
    padding: 20px 0 28px;
}
.xh-hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 16px;
}

/* Main Banner / Slider */
.xh-main-banner {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.xh-slider { position: relative; height: 100%; }
.xh-slider-track { display: flex; height: 100%; transition: none; }
.xh-slide { min-width: 100%; }
.xh-slide-inner {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 420px;
    display: flex;
    align-items: center;
}
/* Full-bleed background image */
.xh-slide-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Gradient overlay for text readability */
.xh-slide-overlay {
    position: absolute; inset: 0;
    z-index: 1;
}
/* Decorative circles */
.xh-slide-decor {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none;
    overflow: hidden;
}
.xh-decor-circle {
    position: absolute; border-radius: 50%;
    opacity: 0.12; filter: blur(1px);
}
.xh-dc-1 { width: 300px; height: 300px; top: -80px; right: 15%; }
.xh-dc-2 { width: 200px; height: 200px; bottom: -60px; right: 5%; }
/* Slide content */
.xh-slide-body {
    position: relative; z-index: 2;
    padding: 44px 48px;
    max-width: 58%;
    color: #fff;
}
.xh-slide-chip {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.xh-slide-chip strong {
    font-family: monospace;
    letter-spacing: 1.5px;
}
.xh-slide-title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.xh-slide-desc {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0 0 24px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    max-width: 420px;
}
.xh-slide-btns {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.xh-slide-cta {
    display: inline-flex;
    align-items: center; gap: 10px;
    padding: 13px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    color: #fff;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.xh-slide-cta:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #fff;
}
.xh-cta-solid {
    background: #fff !important;
    color: #0f172a !important;
    border-color: #fff !important;
}
.xh-cta-solid:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}
.xh-cta-glass {
    background: rgba(255,255,255,0.12) !important;
}

/* Default Hero */
.xh-default-hero {
    background: linear-gradient(135deg, #92400e 0%, #d97706 50%, #f59e0b 100%);
    background-size: 200% 200%;
    animation: xh-gradient 6s ease infinite;
}
@keyframes xh-gradient {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.xh-hero-chip {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.xh-hero-h1 {
    font-size: 3rem !important;
    letter-spacing: -1px;
}
.xh-hero-h1 span {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.xh-hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.xh-hero-float-cards {
    position: absolute; right: 40px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 14px;
    z-index: 2;
}
.xh-float-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 14px 20px;
    color: #fff;
    font-size: 0.85rem;
    display: flex; align-items: center; gap: 10px;
    animation: xh-slideIn 0.6s ease both;
}
.xh-float-card strong { font-weight: 800; }
.xh-fc-1 { animation-delay: 0.2s; }
.xh-fc-2 { animation-delay: 0.4s; }
.xh-fc-3 { animation-delay: 0.6s; }
@keyframes xh-slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Slider Nav */
.xh-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 14px;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.xh-nav:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.1);
}
.xh-nav-prev { left: 16px; }
.xh-nav-next { right: 16px; }
.xh-dots {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 8px; z-index: 10;
}
.xh-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer; transition: all 0.3s;
    border: none; padding: 0;
}
.xh-dot.active { width: 28px; border-radius: 4px; background: #fff; }

/* Side Cards */
.xh-side-col {
    display: flex; flex-direction: column; gap: 16px;
}
.xh-side-card {
    flex: 1;
    border-radius: 18px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    min-height: 195px;
    text-decoration: none;
    transition: transform 0.35s;
}
.xh-side-card:hover { transform: scale(1.02); color: #fff; }
.xh-sc-1 { background: #1e293b; }
.xh-sc-2 { background: #059669; }
.xh-sc-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.5s;
}
.xh-side-card:hover .xh-sc-bg { opacity: 0.65; transform: scale(1.08); }
.xh-sc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.xh-sc-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    z-index: 0;
}
.xh-sc-gradient::before {
    content: '';
    position: absolute; top: -30%; right: -20%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.xh-sc-body { position: relative; z-index: 2; }
.xh-sc-chip {
    display: inline-flex;
    align-items: center; gap: 6px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}
.xh-side-card h3 {
    font-size: 1.15rem; font-weight: 800;
    margin: 0 0 4px; line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.xh-side-card p {
    font-size: 0.8rem; opacity: 0.85; margin: 0 0 12px;
}
.xh-sc-link {
    font-size: 0.82rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.xh-side-card:hover .xh-sc-link { gap: 12px; }

/* --- Perks Bar --- */
.xh-perks {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 0;
}
.xh-perks-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.xh-perk {
    display: flex; align-items: center; gap: 14px;
}
.xh-perk-ic {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #f59e0b;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.xh-perk strong {
    display: block; font-size: 0.85rem;
    font-weight: 700; color: #0f172a;
}
.xh-perk span {
    font-size: 0.75rem; color: #94a3b8;
}

/* --- Section --- */
.xh-sec { padding: 52px 0; }
.xh-sec-alt { background: #f8fafc; }
.xh-sec-head {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.xh-sec-head-center { justify-content: center; text-align: center; }
.xh-sec-head h2 {
    font-size: 1.6rem; font-weight: 800;
    color: #0f172a; margin: 0;
    letter-spacing: -0.3px;
}
.xh-sub {
    font-size: 0.9rem; color: #94a3b8; margin: 4px 0 0;
}
.xh-title-row {
    display: flex; align-items: center; gap: 12px;
}
.xh-fire-badge {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.xh-cat-badge {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--cat-color, #f59e0b);
    color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-size: 17px; flex-shrink: 0;
}
.xh-see-all {
    font-size: 0.88rem; font-weight: 600;
    color: #f59e0b; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s, color 0.2s;
    white-space: nowrap;
}
.xh-see-all:hover { gap: 10px; color: #1d4ed8; }

/* --- Category Circles --- */
.xh-cat-row {
    display: flex; gap: 36px;
    justify-content: center;
    padding: 10px 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.xh-cat-row::-webkit-scrollbar { display: none; }
.xh-cat-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.xh-cat-item:hover { transform: translateY(-6px); }
.xh-cat-circle {
    width: 110px; height: 110px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.35s;
    background: #f1f5f9;
}
.xh-cat-item:hover .xh-cat-circle {
    border-color: var(--cat-color, #f59e0b);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--cat-color, #f59e0b) 30%, transparent);
    transform: scale(1.06);
}
.xh-cat-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.xh-cat-item:hover .xh-cat-circle img { transform: scale(1.12); }
.xh-cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
}
.xh-cat-item:hover .xh-cat-overlay { opacity: 1; }
.xh-cat-circle i {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px; color: #cbd5e1;
}
.xh-cat-name {
    font-size: 0.88rem; font-weight: 700;
    color: #0f172a; text-align: center;
}
.xh-cat-count {
    font-size: 0.72rem; color: #94a3b8;
    font-weight: 500;
}

/* --- Product Cards --- */
.xh-scroll-row {
    display: flex; gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}
.xh-scroll-row::-webkit-scrollbar { height: 6px; }
.xh-scroll-row::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
.xh-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.xh-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.xh-product-grid .xh-card {
    min-width: auto;
}
.xh-card:hover {
    border-color: #fde68a;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12);
    transform: translateY(-6px);
}
.xh-card-img-wrap {
    display: block;
    position: relative;
    height: 210px;
    background: #f8fafc;
    overflow: hidden;
}
.xh-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.xh-card:hover .xh-card-img-wrap img {
    transform: scale(1.1);
}
.xh-card-no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px; color: #e2e8f0;
}
.xh-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: 8px;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #fff; z-index: 2;
}
.xh-tag-hot {
    background: linear-gradient(135deg, #f97316, #ef4444);
}
.xh-tag-new {
    background: linear-gradient(135deg, #10b981, #059669);
}
.xh-tag-featured {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Card Hover Actions */
.xh-card-actions {
    position: absolute; right: 12px; top: 12px;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(10px);
    transition: all 0.3s;
    z-index: 3;
}
.xh-card:hover .xh-card-actions {
    opacity: 1; transform: translateX(0);
}
.xh-act-btn {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #475569;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.xh-act-btn:hover {
    background: #f59e0b;
    color: #fff;
    transform: scale(1.1);
}

/* Card Body */
.xh-card-body {
    padding: 14px 16px 18px;
}
.xh-card-cat {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f59e0b;
    margin-bottom: 4px;
}
.xh-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem; font-weight: 600;
    color: #1e293b; line-height: 1.35;
    text-decoration: none;
    margin-bottom: 6px;
    display: block;
}
.xh-card-title:hover { color: #f59e0b; }
.xh-card-stars {
    display: flex; align-items: center; gap: 2px;
    margin-bottom: 8px;
    color: #fbbf24; font-size: 11px;
}
.xh-card-stars span {
    color: #94a3b8; font-size: 0.72rem;
    margin-left: 4px; font-weight: 500;
}
.xh-card-price {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
}
.xh-card-price strong {
    font-size: 1.15rem; font-weight: 800;
    color: #0f172a;
}
.xh-card-price del {
    font-size: 0.82rem; color: #94a3b8;
}
.xh-discount {
    font-size: 0.7rem; font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 2px 8px; border-radius: 6px;
}

/* --- Promo Banners --- */
.xh-promo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.xh-promo {
    border-radius: 20px;
    padding: 32px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.35s, box-shadow 0.35s;
}
.xh-promo:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    color: #fff;
}
.xh-promo-1 {
    background: linear-gradient(135deg, #d97706 0%, #f97316 100%);
}
.xh-promo-2 {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}
.xh-promo-3 {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}
.xh-promo-body { position: relative; z-index: 1; }
.xh-promo-chip {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.xh-promo h3 {
    font-size: 1.5rem; font-weight: 800;
    margin: 0 0 4px; line-height: 1.2;
}
.xh-promo p {
    font-size: 0.88rem; opacity: 0.85; margin: 0 0 16px;
}
.xh-promo-link {
    font-size: 0.85rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.xh-promo:hover .xh-promo-link { gap: 12px; }
.xh-promo-art {
    position: absolute; right: 20px; bottom: 20px;
    font-size: 80px; opacity: 0.1;
    transform: rotate(-10deg);
}
.xh-promo::before {
    content: '';
    position: absolute; top: -50%; right: -30%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.xh-promo::after {
    content: '';
    position: absolute; bottom: -40%; left: -20%;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

/* --- Stores --- */
.xh-store-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.xh-store {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s;
}
.xh-store:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #fde68a;
}
.xh-store-top {
    height: 80px;
    background: linear-gradient(135deg, var(--store-color) 0%, color-mix(in srgb, var(--store-color) 60%, #000) 100%);
    position: relative;
}
.xh-store-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    position: absolute; bottom: -28px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800;
    color: var(--store-color, #f59e0b);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}
.xh-store-avatar img { width: 100%; height: 100%; object-fit: cover; }
.xh-store-avatar span { color: var(--store-color, #f59e0b); }
.xh-store-body {
    padding: 36px 18px 18px;
    text-align: center;
}
.xh-store-body h4 {
    font-size: 0.95rem; font-weight: 700;
    margin: 0 0 4px; color: #0f172a;
}
.xh-store-body p {
    font-size: 0.78rem; color: #94a3b8;
    margin: 0 0 12px;
}
.xh-store-foot {
    display: flex; justify-content: center;
    gap: 16px; font-size: 0.75rem;
    color: #94a3b8;
}
.xh-verified { color: #10b981; font-weight: 600; }

/* --- Stats --- */
.xh-stats {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}
.xh-stats::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.xh-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.xh-stat { text-align: center; color: #fff; }
.xh-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fbbf24, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.xh-stat-lbl {
    font-size: 0.88rem; color: #94a3b8;
    font-weight: 500; margin-top: 4px;
}
.xh-stat-sep {
    width: 1px; height: 48px;
    background: rgba(255,255,255,0.1);
}

/* --- Steps / How It Works --- */
.xh-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.xh-step {
    text-align: center;
    padding: 32px 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    position: relative;
    flex: 0 1 300px;
    transition: all 0.35s;
}
.xh-step:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
    border-color: #fde68a;
}
.xh-step-num {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f59e0b);
    color: #fff; font-size: 0.75rem; font-weight: 800;
    padding: 4px 14px; border-radius: 20px;
}
.xh-step-ic {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #f59e0b;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 8px auto 18px;
}
.xh-step h3 {
    font-size: 1.05rem; font-weight: 700;
    margin: 0 0 8px; color: #0f172a;
}
.xh-step p {
    font-size: 0.85rem; color: #94a3b8;
    margin: 0; line-height: 1.55;
}
.xh-step-line {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, #d1d5db, #e5e7eb);
    margin-top: 70px;
    flex-shrink: 0;
}

/* --- CTA --- */
.xh-cta {
    position: relative;
    padding: 72px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.xh-cta-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #312e81 100%);
    z-index: 0;
}
.xh-cta-bg::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%);
}
.xh-cta-bg::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
}
.xh-cta-inner {
    position: relative; z-index: 1;
}
.xh-cta h2 {
    font-size: 2.2rem; font-weight: 800;
    margin: 0 0 12px; letter-spacing: -0.5px;
}
.xh-cta p {
    font-size: 1.05rem; opacity: 0.75;
    margin: 0 0 32px;
}
.xh-cta-btns {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}
.xh-btn {
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 0.95rem; font-weight: 700;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
}
.xh-btn-white {
    background: #fff;
    color: #0f172a;
}
.xh-btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    color: #0f172a;
}
.xh-btn-glass {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.xh-btn-glass:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* --- Newsletter --- */
.xh-newsletter {
    background: linear-gradient(135deg, #eff6ff, #e0e7ff);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid #fde68a;
}
.xh-nl-left {
    display: flex; align-items: center; gap: 18px;
}
.xh-nl-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f59e0b, #f59e0b);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.xh-nl-left h3 {
    font-size: 1.15rem; font-weight: 800;
    color: #0f172a; margin: 0 0 2px;
}
.xh-nl-left p {
    font-size: 0.85rem; color: #64748b; margin: 0;
}
.xh-nl-form {
    display: flex; gap: 10px; flex-shrink: 0;
}
.xh-nl-form input {
    padding: 13px 20px;
    border: 1.5px solid #fde68a;
    border-radius: 12px;
    font-size: 0.9rem; width: 260px;
    outline: none; background: #fff;
    transition: border-color 0.2s;
}
.xh-nl-form input:focus { border-color: #f59e0b; }
.xh-nl-form button {
    padding: 13px 26px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff; border: none;
    border-radius: 12px; font-size: 0.88rem;
    font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.25s; white-space: nowrap;
}
.xh-nl-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .xh-hero-layout { grid-template-columns: 1fr; }
    .xh-side-col { flex-direction: row; }
    .xh-main-banner { min-height: auto; }
    .xh-slide-inner { min-height: 340px; }
    .xh-slide-title { font-size: 2rem !important; }
    .xh-slide-body { max-width: 65%; }
    .xh-product-grid { grid-template-columns: repeat(4, 1fr); }
    .xh-store-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .xh-hero { padding: 12px 0 16px; }
    .xh-side-col { flex-direction: row; }
    .xh-side-card { min-height: 150px; }
    .xh-slide-inner { min-height: 260px; }
    .xh-slide-body { max-width: 80%; padding: 28px 24px; }
    .xh-slide-title { font-size: 1.6rem !important; }
    .xh-hero-h1 { font-size: 1.8rem !important; }
    .xh-slide-desc { font-size: 0.9rem; }
    .xh-perks-row { flex-wrap: wrap; gap: 12px; }
    .xh-perk { flex: 1 1 calc(50% - 6px); }
    .xh-cat-row { gap: 20px; justify-content: flex-start; }
    .xh-cat-circle { width: 85px; height: 85px; }
    .xh-product-grid { grid-template-columns: repeat(2, 1fr); }
    .xh-promo-row { grid-template-columns: 1fr; }
    .xh-store-row { grid-template-columns: 1fr; }
    .xh-stats-inner { flex-wrap: wrap; gap: 24px; }
    .xh-stat-sep { display: none; }
    .xh-stat { flex: 1 1 calc(50% - 12px); }
    .xh-steps { flex-direction: column; gap: 16px; align-items: center; }
    .xh-step-line { width: 2px; height: 32px; margin: 0; }
    .xh-step { flex: 0 1 100%; max-width: 340px; }
    .xh-newsletter { flex-direction: column; text-align: center; padding: 28px 20px; }
    .xh-nl-left { flex-direction: column; }
    .xh-nl-form { flex-direction: column; width: 100%; }
    .xh-nl-form input { width: 100%; }
    .xh-cta h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .xh-sec { padding: 36px 0; }
    .xh-hero-layout { gap: 10px; }
    .xh-side-col { flex-direction: column; }
    .xh-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .xh-card-img-wrap { height: 170px; }
    .xh-card-body { padding: 10px 12px 14px; }
    .xh-card-title { font-size: 0.82rem; }
    .xh-card-price strong { font-size: 1rem; }
    .xh-cat-circle { width: 72px; height: 72px; }
    .xh-cat-name { font-size: 0.75rem; }
    .xh-sec-head h2 { font-size: 1.25rem; }
    .xh-stat-num { font-size: 1.8rem; }
}


/* ============================================
   FRONTEND PAGE - Blue Theme & Layout Overrides
   ============================================
   These styles apply to frontend/customer pages.
   They override the admin/shared styles above
   for the proper e-commerce experience.
   ============================================ */

/* --- Frontend CSS Variables (Amber Premium Theme) --- */
.frontend-page {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --secondary: #f97316;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #090e1a;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 4px 14px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 14px 28px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(245,158,11,0.25);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.2s ease;
}
.frontend-page {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    background: #f6f7fb;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Frontend Container --- */
.frontend-page .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Frontend Navbar --- */
.frontend-page .navbar {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
}
.frontend-page .navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.frontend-page .navbar .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: auto;
    padding: 0.5rem 1.5rem;
    min-height: auto;
}

/* Frontend Logo */
.frontend-page .navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    white-space: nowrap;
    letter-spacing: -0.5px;
}
.frontend-page .navbar .logo .logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6d00, #e65c00);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    -webkit-text-fill-color: white;
    flex-shrink: 0;
}

/* Frontend Nav Links — hidden (using nav-strip instead) */
.frontend-page .navbar .nav-links {
    display: none;
}

/* Frontend Nav Actions */
.frontend-page .navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}
.frontend-page .navbar .search-toggle,
.frontend-page .navbar .cart-btn,
.frontend-page .navbar .notif-btn {
    width: auto; height: auto;
    border: none;
    background: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.4rem 0.6rem;
}
.frontend-page .navbar .search-toggle:hover,
.frontend-page .navbar .cart-btn:hover,
.frontend-page .navbar .notif-btn:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}
.frontend-page .navbar .cart-btn .count,
.frontend-page .navbar .notif-btn .count {
    position: absolute;
    top: 0; right: 2px;
    background: #f59e0b;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    min-width: 17px; height: 17px;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #090e1a;
    font-style: normal;
    padding: 0;
    width: auto;
    line-height: 1;
    text-align: center;
}
.frontend-page .navbar .cart-btn .count.bounce {
    animation: cartBounce 0.4s ease;
}

/* Frontend Buttons */
.frontend-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.frontend-page .btn:hover {
    transform: translateY(-1px);
}
.frontend-page .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
}
.frontend-page .btn-primary:hover {
    background: linear-gradient(135deg, #d97706, #ea580c);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    color: white;
}
.frontend-page .btn-secondary {
    background: rgba(245,158,11,0.1);
    color: #fbbf24;
}
.frontend-page .btn-secondary:hover {
    background: rgba(245,158,11,0.2);
    color: #fde68a;
}
.frontend-page .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #94a3b8;
}
.frontend-page .btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.07);
}
.frontend-page .btn-sm {
    padding: 7px 14px;
    font-size: 12px;
}

/* Frontend Alerts */
.frontend-page .alert {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: none;
}
.frontend-page .alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}
.frontend-page .alert-danger {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
.frontend-page .alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}
.frontend-page .alert-info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

/* --- Notification Dropdown --- */
.frontend-page .notif-wrap {
    position: relative;
}
.frontend-page .notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 1px solid #E5E7EB;
    z-index: 1100;
    display: none;
    animation: slideDown 0.25s ease;
    overflow: hidden;
}
.frontend-page .notif-wrap.open .notif-dropdown {
    display: block;
}
.frontend-page .notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #F1F5F9;
}
.frontend-page .notif-dropdown-header strong {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
}
.frontend-page .notif-dropdown-body {
    max-height: 320px;
    overflow-y: auto;
}
.frontend-page .notif-empty {
    padding: 36px 18px;
    text-align: center;
    color: #94A3B8;
    font-size: 13px;
}
.frontend-page .notif-empty i {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.5;
}
.frontend-page .notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 18px;
    transition: background 0.15s;
    border-bottom: 1px solid #F8FAFC;
}
.frontend-page .notif-item:hover {
    background: #F8FAFC;
}
.frontend-page .notif-item.unread {
    background: #fffbeb;
}
.frontend-page .notif-item .notif-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #fffbeb;
    color: #f59e0b;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.frontend-page .notif-item .notif-text {
    flex: 1;
    font-size: 13px;
    color: #334155;
    line-height: 1.4;
}
.frontend-page .notif-item .notif-time {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 2px;
}
.frontend-page .notif-dropdown-footer {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b;
    text-decoration: none;
    border-top: 1px solid #F1F5F9;
    transition: background 0.15s;
}
.frontend-page .notif-dropdown-footer:hover {
    background: #F8FAFC;
    color: #d97706;
}

/* --- Search Overlay (Frontend) --- */
.frontend-page .search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.frontend-page .search-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.frontend-page .search-overlay form {
    width: 90%;
    max-width: 640px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 0.4s ease;
}
.frontend-page .search-overlay input {
    flex: 1;
    padding: 20px 28px;
    border: none;
    font-size: 17px;
    outline: none;
    background: #fff;
    color: #0F172A;
    font-family: inherit;
}
.frontend-page .search-overlay input::placeholder {
    color: #94A3B8;
}
.frontend-page .search-overlay button[type="submit"] {
    padding: 20px 36px;
    background: #f59e0b;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.frontend-page .search-overlay button[type="submit"]:hover {
    background: #d97706;
}
.frontend-page .search-overlay .close-search {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 28px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.2s;
    width: auto; height: auto;
    border-radius: 0;
}
.frontend-page .search-overlay .close-search:hover {
    color: white;
    transform: rotate(90deg);
    background: none;
}

/* --- Frontend Mega Menu Override --- */
.frontend-page .mega-menu {
    border-top-color: #f59e0b;
}
.frontend-page .mega-promo-card {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}
.frontend-page .mega-popular-tags a:hover {
    background: #f59e0b;
}

/* --- Frontend Footer Override --- */
.frontend-page .footer-v2 {
    background: #090e1a;
    color: #9ca3af;
    margin-top: 0;
}
.frontend-page .footer-top {
    padding: 2.5rem 0;
}
.frontend-page .footer-top::before {
    background: rgba(255,255,255,0.05);
}
.frontend-page .footer-v2-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.frontend-page .footer-brand {
    padding-right: 0;
    max-width: 280px;
}
.frontend-page .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.8rem;
    text-decoration: none;
}
.frontend-page .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: #6b7280;
    max-width: 240px;
}
.frontend-page .footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    color: #6b7280;
    font-size: 1rem;
}
.frontend-page .footer-social a:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
    transform: translateY(-2px);
}
.frontend-page .footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    padding-bottom: 0;
}
.frontend-page .footer-col h4::after {
    display: none;
}
.frontend-page .footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.frontend-page .footer-col ul li a {
    font-size: 0.82rem;
    color: #6b7280;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.frontend-page .footer-col ul li a:hover {
    color: #f59e0b;
    transform: translateX(3px);
}
.frontend-page .footer-col ul li a i { display: none; }
.frontend-page .footer-trust { display: none; }
.frontend-page .footer-bottom-v2 {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
}
.frontend-page .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #4b5563;
}
.frontend-page .footer-bottom-links a:hover {
    color: #f59e0b;
}

/* --- Frontend Back to Top --- */
.frontend-page .back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 46px;
    height: 46px;
    background: #090e1a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.frontend-page .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}
.frontend-page .back-to-top:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(245,158,11,0.25);
}

/* --- Frontend Toast Override --- */
.frontend-page .toast-container {
    top: 80px;
}
.frontend-page .toast {
    border-left: 4px solid;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.frontend-page .toast-success { border-left-color: #10B981; }
.frontend-page .toast-danger { border-left-color: #EF4444; }
.frontend-page .toast-warning { border-left-color: #F59E0B; }
.frontend-page .toast-info { border-left-color: #f59e0b; }

/* --- Frontend Mobile Menu --- */
.frontend-page .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 0.3rem;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

/* --- Frontend Responsive --- */
@media (max-width: 1024px) {
    .frontend-page .footer-v2-grid {
        grid-template-columns: 1fr 1fr;
    }
    .frontend-page .footer-brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .ex-announce { display: none; }
    .frontend-page .navbar .container {
        flex-wrap: wrap; gap: 0.5rem; padding: 0.55rem 1rem;
    }
    .nav-search-bar { order: 3; width: 100%; flex-basis: 100%; }
    .frontend-page .mobile-menu-btn { display: flex; }
    .frontend-page .navbar .nav-actions .btn { display: none; }
    .navbar .search-toggle { display: none; }
    .nav-strip-inner { scrollbar-width: none; }
    .frontend-page .notif-dropdown {
        position: fixed; top: 58px; right: 0; left: 0; width: 100%;
        border-radius: 0 0 14px 14px;
    }
    .frontend-page .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .frontend-page .footer-brand {
        grid-column: span 1; max-width: none;
    }
    .frontend-page .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        justify-content: center;
    }
    .frontend-page .search-overlay {
        padding-top: 100px;
    }
    .frontend-page .search-overlay form {
        flex-direction: column;
        border-radius: 14px;
    }
    .frontend-page .search-overlay input {
        border-radius: 14px 14px 0 0;
        padding: 16px 20px;
        font-size: 16px;
    }
    .frontend-page .search-overlay button[type="submit"] {
        border-radius: 0 0 14px 14px;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .frontend-page .navbar .nav-actions {
        gap: 6px;
    }
    .frontend-page .navbar .search-toggle,
    .frontend-page .navbar .cart-btn,
    .frontend-page .navbar .notif-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: 14px;
    }
    .frontend-page .toast {
        min-width: auto;
        max-width: calc(100vw - 32px);
    }
}

/* ============================================
   VENDOR AD SECTIONS (Gold / Silver / Bronze)
   ============================================ */

/* --- Common --- */
.xh-vendor-ads { padding: 12px 0; }
.xh-vendor-ads .xh-sec-head { margin-bottom: 16px; }

/* --- GOLD TIER: Full-width banner slider --- */
.xh-vad-strip { position: relative; border-radius: 12px; overflow: hidden; }
.xh-vad-gold { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%); padding: 3px; border-radius: 14px; }
.xh-vad-label {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: rgba(0,0,0,0.6); color: #fbbf24; font-size: 0.7rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; backdrop-filter: blur(4px);
    letter-spacing: 0.5px; text-transform: uppercase;
}
.xh-vad-label i { margin-right: 4px; }
.xh-vad-slider {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    border-radius: 12px;
}
.xh-vad-slider::-webkit-scrollbar { display: none; }
.xh-vad-banner-item {
    flex: 0 0 100%; scroll-snap-align: start; position: relative;
    display: block; min-height: 180px; overflow: hidden;
}
.xh-vad-banner-item img {
    width: 100%; height: 180px; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.xh-vad-banner-item:hover img { transform: scale(1.03); }
.xh-vad-banner-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 16px 12px; color: #fff;
    display: flex; flex-direction: column;
}
.xh-vad-title { font-weight: 700; font-size: 1rem; }
.xh-vad-vendor { font-size: 0.75rem; opacity: 0.8; margin-top: 2px; }

/* --- SILVER TIER: Card grid in middle section --- */
.xh-vad-silver-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.xh-vad-card {
    display: block; background: #fff; border-radius: 12px;
    overflow: hidden; text-decoration: none; color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}
.xh-vad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.xh-vad-card-img {
    position: relative; overflow: hidden; height: 160px;
}
.xh-vad-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.xh-vad-card:hover .xh-vad-card-img img { transform: scale(1.05); }
.xh-vad-badge-silver {
    position: absolute; top: 8px; right: 8px;
    background: rgba(148,163,184,0.9); color: #fff;
    font-size: 0.65rem; font-weight: 600; padding: 2px 8px;
    border-radius: 12px; text-transform: uppercase;
}
.xh-vad-badge-silver i { margin-right: 3px; }
.xh-vad-card-body {
    padding: 12px 14px; display: flex; flex-direction: column; gap: 4px;
}
.xh-vad-card-body h4 {
    font-size: 0.95rem; font-weight: 700; margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    color: #1e293b;
}
.xh-vad-card-vendor {
    font-size: 0.75rem; color: #64748b;
}
.xh-vad-card-vendor i { margin-right: 3px; }
.xh-vad-card-cta {
    font-size: 0.8rem; font-weight: 600; color: #fbbf24; margin-top: 4px;
}
.xh-vad-card-cta i { margin-left: 4px; transition: transform 0.2s; }
.xh-vad-card:hover .xh-vad-card-cta i { transform: translateX(4px); }

/* --- BRONZE TIER: Compact horizontal scroll near bottom --- */
.xh-vad-scroll-row {
    display: flex; overflow-x: auto; gap: 14px;
    padding-bottom: 8px; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.xh-vad-scroll-row::-webkit-scrollbar { display: none; }
.xh-vad-mini {
    flex: 0 0 220px; scroll-snap-align: start; position: relative;
    display: flex; flex-direction: column; background: #fff;
    border-radius: 10px; overflow: hidden; text-decoration: none;
    color: inherit; box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.xh-vad-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.xh-vad-mini img {
    width: 100%; height: 120px; object-fit: cover;
}
.xh-vad-mini-info {
    padding: 8px 10px; display: flex; flex-direction: column; gap: 2px;
}
.xh-vad-mini-title {
    font-size: 0.82rem; font-weight: 600; color: #1e293b;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.xh-vad-mini-vendor {
    font-size: 0.7rem; color: #94a3b8;
}
.xh-vad-badge-bronze {
    position: absolute; top: 6px; right: 6px;
    background: rgba(249,115,22,0.85); color: #fff;
    font-size: 0.6rem; font-weight: 700; padding: 1px 7px;
    border-radius: 8px; text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .xh-vad-banner-item img { height: 140px; }
    .xh-vad-silver-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
    .xh-vad-card-img { height: 120px; }
    .xh-vad-mini { flex: 0 0 180px; }
    .xh-vad-mini img { height: 90px; }
}

/* Gold ad auto-scroll animation */
@keyframes goldAdScroll {
    0%, 33% { scroll-left: 0; }
    34%, 66% { scroll-left: 100%; }
    67%, 100% { scroll-left: 200%; }
}


/* ================================================================
   3-TIER VENDOR SHOWCASE (Hero Section)
   ================================================================ */
/* ===== HERO — Full-Width Banner Slider ===== */
.hero-showcase{position:relative;overflow:hidden;background:#090e1a}
.hero-showcase-bg{position:absolute;inset:0;background:radial-gradient(ellipse at 20% 50%,rgba(245,158,11,.06),transparent 50%),radial-gradient(ellipse at 80% 30%,rgba(168,162,158,.04),transparent 50%);pointer-events:none;z-index:1}

/* Hero Slider */
.hero-slider{position:relative;width:100%;height:480px;overflow:hidden}
.tier-slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease,transform .8s ease;transform:scale(1.02)}
.tier-slide.active{opacity:1;z-index:2;transform:scale(1)}
.tier-slide-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.tier-slide-overlay{position:absolute;inset:0;background:linear-gradient(100deg,rgba(9,14,26,.95) 0%,rgba(9,14,26,.78) 40%,rgba(9,14,26,.35) 70%,rgba(9,14,26,.15) 100%)}
.tier-slide-content{position:relative;z-index:3;display:flex;align-items:center;height:100%;padding:0}

/* Hero Content */
.hero-content-inner{padding:3rem 4rem;max-width:650px}
.hero-urgency-tag{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .85rem;border-radius:9999px;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#fbbf24;background:rgba(245,158,11,.15);border:1px solid rgba(245,158,11,.3);margin-bottom:1rem}
.hero-urgency-tag i{font-size:.7rem}
.hero-content-inner h1{font-size:clamp(1.6rem,4vw,2.6rem);font-weight:900;line-height:1.1;letter-spacing:-1px;color:#fff;margin:0 0 .75rem}
.hero-desc{font-size:1rem;color:rgba(255,255,255,.7);line-height:1.5;margin-bottom:1.25rem;max-width:440px}
.hero-coupon{display:inline-flex;align-items:center;gap:.4rem;padding:.4rem .8rem;border-radius:6px;font-size:.8rem;color:#34d399;background:rgba(16,185,129,.12);border:1px dashed rgba(52,211,153,.3);margin-bottom:1.25rem}
.hero-coupon strong{color:#6ee7b7;letter-spacing:.5px}

/* CTA Buttons — Clear hierarchy */
.hero-cta-row{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap}
.hero-btn-primary{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 2rem;border-radius:9999px;font-weight:800;font-size:1rem;background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff;text-decoration:none;box-shadow:0 4px 25px rgba(245,158,11,.35);transition:transform .2s,box-shadow .2s,filter .2s;border:none;cursor:pointer}
.hero-btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 35px rgba(245,158,11,.45);filter:brightness(1.08)}
.hero-btn-primary i{transition:transform .2s}
.hero-btn-primary:hover i{transform:translateX(3px)}
.hero-btn-secondary{display:inline-flex;align-items:center;gap:.35rem;padding:.65rem 1.4rem;border-radius:9999px;font-weight:600;font-size:.85rem;color:rgba(255,255,255,.8);text-decoration:none;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);backdrop-filter:blur(8px);transition:background .2s,color .2s}
.hero-btn-secondary:hover{background:rgba(255,255,255,.15);color:#fff}

/* Hero Arrow Navigation — Always visible */
.hero-arrow{position:absolute;top:50%;z-index:10;width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.12);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,.2);color:#fff;font-size:.95rem;display:flex;align-items:center;justify-content:center;transform:translateY(-50%);opacity:.7;transition:opacity .3s,background .2s,transform .3s;cursor:pointer}
.hero-arrow:hover{opacity:1;background:rgba(255,255,255,.25);transform:translateY(-50%) scale(1.05)}
.hero-prev{left:1.25rem}
.hero-next{right:1.25rem}

/* Hero Dot Indicators — Prominent */
.hero-dots{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);z-index:10;display:flex;gap:.5rem;padding:.4rem .8rem;border-radius:9999px;background:rgba(0,0,0,.3);backdrop-filter:blur(8px)}
.hero-dot{width:10px;height:10px;border-radius:9999px;background:rgba(255,255,255,.35);border:none;transition:width .35s,background .35s;cursor:pointer}
.hero-dot:hover{background:rgba(255,255,255,.55)}
.hero-dot.active{width:30px;background:#f59e0b}

/* STATS BAR */
.sc-stats-bar{background:#fff;border-bottom:1px solid #e5e7eb;box-shadow:0 2px 8px rgba(0,0,0,0.03)}
.sc-stats-inner{display:flex;align-items:center;justify-content:center;gap:0;padding:1rem 0}
.sc-stat{text-align:center;flex:1;display:flex;flex-direction:column;align-items:center;gap:.2rem}
.sc-stat-ico{font-size:1.1rem;margin-bottom:.15rem}
.sc-stat strong{font-size:1.15rem;font-weight:900;letter-spacing:-.5px;display:flex;align-items:center;gap:.15rem;color:#0f172a}
.sc-stat span{font-size:.7rem;color:#94a3b8;font-weight:600;text-transform:uppercase;letter-spacing:.3px}
.sc-stat-sep{width:1px;height:32px;background:#e5e7eb;flex-shrink:0}

/* Hero responsive */
@media(max-width:1100px){
  .hero-slider{height:360px}
  .hero-content-inner{padding:2rem 2.5rem}
  .hero-content-inner h1{font-size:clamp(1.4rem,3.5vw,2.2rem)}
  .sc-stats-inner{flex-wrap:wrap;gap:.4rem}
  .sc-stat-sep{display:none}
}
@media(max-width:768px){
  .hero-slider{height:320px}
  .hero-content-inner{padding:1.5rem 1.5rem}
  .hero-content-inner h1{font-size:clamp(1.2rem,5vw,1.8rem)}
  .hero-desc{font-size:.88rem;margin-bottom:1rem}
  .hero-btn-primary{padding:.6rem 1.5rem;font-size:.9rem}
  .hero-btn-secondary{padding:.5rem 1rem;font-size:.8rem}
  .hero-arrow{width:36px;height:36px;font-size:.8rem}
  .hero-prev{left:.75rem}
  .hero-next{right:.75rem}
  .hero-dots{bottom:1rem}
}
@media(max-width:480px){
  .hero-slider{height:280px}
  .hero-content-inner{padding:1.2rem 1rem}
  .hero-content-inner h1{font-size:1.3rem}
  .hero-desc{font-size:.8rem;max-width:280px}
  .hero-urgency-tag{font-size:.65rem;padding:.25rem .6rem;margin-bottom:.6rem}
  .hero-btn-primary{padding:.55rem 1.2rem;font-size:.85rem}
  .hero-cta-row{gap:.5rem}
  .hero-arrow{width:30px;height:30px;font-size:.7rem}
  .hero-dots{gap:.35rem}
  .hero-dot{width:8px;height:8px}
  .hero-dot.active{width:24px}
}

/* ===== VENDOR AD TIER CAROUSELS ===== */
.va-tier-section{position:relative;overflow:hidden;padding:2.5rem 0}
.va-tier-bg{position:absolute;inset:0;z-index:0}
.va-tier-section .ex-container{position:relative;z-index:1}

/* Tier header */
.va-tier-head{text-align:center;margin-bottom:1.5rem}
.va-tier-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .9rem;border-radius:9999px;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--va-c);background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);backdrop-filter:blur(10px);margin-bottom:.5rem}
.va-tier-badge i{font-size:.85rem}
.va-tier-tagline{color:rgba(255,255,255,.6);font-size:.85rem;margin:0}
.va-tier-count{font-size:.7rem;color:rgba(255,255,255,.35);margin-top:.25rem}

/* Carousel container */
.va-carousel{position:relative;overflow:hidden;padding:0 2.5rem}
.va-carousel-track{display:flex;gap:1rem;transition:transform .5s cubic-bezier(.25,.46,.45,.94);will-change:transform}

/* Individual ad card */
.va-card{flex:0 0 220px;border-radius:12px;overflow:hidden;background:#1a1f2e;border:1px solid rgba(255,255,255,.08);text-decoration:none;color:#fff;transition:transform .3s,box-shadow .3s,border-color .3s;display:flex;flex-direction:column}
.va-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.3);border-color:rgba(255,255,255,.15)}
.va-card-img{position:relative;height:140px;overflow:hidden;background:#111827}
.va-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.va-card:hover .va-card-img img{transform:scale(1.06)}
.va-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:#1e293b;color:#475569;font-size:1.8rem}
.va-card-overlay{position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(9,14,26,.6) 100%)}
.va-card-tier-pip{position:absolute;top:.5rem;left:.5rem;width:26px;height:26px;border-radius:50%;background:rgba(0,0,0,.5);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;font-size:.6rem;color:var(--va-c);border:1px solid rgba(255,255,255,.12)}
.va-card-body{padding:.75rem .85rem;flex:1;display:flex;flex-direction:column}
.va-card-body h4{font-size:.82rem;font-weight:800;margin:0 0 .25rem;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.va-card-body p{font-size:.68rem;color:rgba(255,255,255,.5);margin:0 0 .4rem;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.va-card-vendor{margin-top:auto;font-size:.62rem;color:rgba(255,255,255,.4);display:flex;align-items:center;gap:.3rem}
.va-card-vendor i{font-size:.55rem}

/* Tier-specific card accents */
.va-tier-gold .va-card{border-color:rgba(251,191,36,.12)}
.va-tier-gold .va-card:hover{border-color:rgba(251,191,36,.3);box-shadow:0 12px 30px rgba(251,191,36,.08)}
.va-tier-silver .va-card{border-color:rgba(156,163,175,.1)}
.va-tier-silver .va-card:hover{border-color:rgba(156,163,175,.25);box-shadow:0 12px 30px rgba(156,163,175,.06)}
.va-tier-bronze .va-card{border-color:rgba(217,119,6,.1)}
.va-tier-bronze .va-card:hover{border-color:rgba(217,119,6,.25);box-shadow:0 12px 30px rgba(217,119,6,.06)}

/* Gold tier gets larger cards */
.va-tier-gold .va-card{flex:0 0 280px}
.va-tier-gold .va-card-img{height:170px}
.va-tier-gold .va-card-body h4{font-size:.92rem}

/* Carousel arrows */
.va-arrow{position:absolute;top:50%;z-index:10;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.18);color:#fff;font-size:.85rem;display:flex;align-items:center;justify-content:center;transform:translateY(-50%);cursor:pointer;transition:background .2s,opacity .2s,transform .3s;opacity:.8}
.va-arrow:hover{background:rgba(255,255,255,.22);opacity:1;transform:translateY(-50%) scale(1.05)}
.va-arrow-prev{left:0}
.va-arrow-next{right:0}

/* Carousel dots */
.va-carousel-dots{display:flex;justify-content:center;gap:.4rem;margin-top:1rem}
.va-dot{width:8px;height:8px;border-radius:9999px;background:rgba(255,255,255,.2);border:none;cursor:pointer;transition:width .3s,background .3s}
.va-dot:hover{background:rgba(255,255,255,.4)}
.va-dot.active{width:24px;background:var(--va-c,#f59e0b)}
.va-tier-gold .va-dot.active{background:#fbbf24}
.va-tier-silver .va-dot.active{background:#9ca3af}
.va-tier-bronze .va-dot.active{background:#d97706}

/* Vendor Plans CTA */
.va-plans-section{padding:0}
.va-plans-card{background:linear-gradient(135deg,#0d1117,#161b22);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:2rem 2.5rem;text-align:center}
.va-plans-head{margin-bottom:1.5rem}
.va-plans-head h3{font-size:1.2rem;font-weight:800;color:#fff;margin:0 0 .4rem;display:flex;align-items:center;justify-content:center;gap:.5rem}
.va-plans-head h3 i{color:#f59e0b}
.va-plans-head p{font-size:.85rem;color:rgba(255,255,255,.5);margin:0}
.va-plans-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-bottom:1.5rem}
.va-plan{display:flex;align-items:center;gap:.75rem;padding:.85rem 1rem;border-radius:10px;text-align:left;border:1px solid rgba(255,255,255,.06);transition:background .2s,border-color .2s}
.va-plan:hover{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.12)}
.va-plan-icon{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}
.va-plan-info{flex:1;min-width:0}
.va-plan-info strong{font-size:.82rem;font-weight:700;color:#fff;display:block}
.va-plan-info span{font-size:.65rem;color:rgba(255,255,255,.45);display:block;line-height:1.3;margin-top:.15rem}
.va-plan-price{font-size:.9rem;font-weight:800;color:#fff;white-space:nowrap}
.va-plan-gold{background:rgba(251,191,36,.06);border-color:rgba(251,191,36,.15)}
.va-plan-gold .va-plan-icon{background:rgba(251,191,36,.15);color:#fbbf24}
.va-plan-gold:hover{background:rgba(251,191,36,.1);border-color:rgba(251,191,36,.25)}
.va-plan-silver{background:rgba(156,163,175,.05);border-color:rgba(156,163,175,.12)}
.va-plan-silver .va-plan-icon{background:rgba(156,163,175,.12);color:#9ca3af}
.va-plan-silver:hover{background:rgba(156,163,175,.08);border-color:rgba(156,163,175,.2)}
.va-plan-bronze{background:rgba(217,119,6,.05);border-color:rgba(217,119,6,.12)}
.va-plan-bronze .va-plan-icon{background:rgba(217,119,6,.12);color:#d97706}
.va-plan-bronze:hover{background:rgba(217,119,6,.08);border-color:rgba(217,119,6,.2)}
.va-plans-cta{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 2rem;border-radius:9999px;font-weight:700;font-size:.95rem;background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff;text-decoration:none;box-shadow:0 4px 20px rgba(245,158,11,.25);transition:transform .2s,box-shadow .2s}
.va-plans-cta:hover{transform:translateY(-2px);box-shadow:0 6px 30px rgba(245,158,11,.35)}
.va-plans-cta i{transition:transform .2s}
.va-plans-cta:hover i{transform:translateX(3px)}

/* Vendor carousel responsive */
@media(max-width:1100px){
  .va-plans-grid{grid-template-columns:1fr}
  .va-carousel{padding:0 2rem}
}
@media(max-width:768px){
  .va-tier-section{padding:1.5rem 0}
  .va-card{flex:0 0 180px}
  .va-card-img{height:110px}
  .va-tier-gold .va-card{flex:0 0 240px}
  .va-tier-gold .va-card-img{height:140px}
  .va-carousel{padding:0 1.5rem}
  .va-arrow{width:32px;height:32px;font-size:.75rem}
  .va-plans-card{padding:1.5rem 1rem}
}
@media(max-width:480px){
  .va-card{flex:0 0 160px}
  .va-card-img{height:95px}
  .va-tier-gold .va-card{flex:0 0 200px}
  .va-tier-gold .va-card-img{height:120px}
  .va-carousel{padding:0 1rem}
  .va-arrow{width:28px;height:28px;font-size:.65rem}
  .va-plans-cta{font-size:.85rem;padding:.6rem 1.5rem}
}

/* ================================================================
   EXIGOALS LANDING — JioMart-Inspired Clean UI
   ================================================================ */

.frontend-page {
  /* --- JioMart Core Colors (Orange Based) --- */
  --ex-bg: #fafafa;
  --ex-bg2: #ffffff;
  --ex-bg3: #ffffff;
  --ex-surface: #ffffff;
  --ex-dark: #111111;
  --ex-dark2: #333333;
  --ex-dark3: #555555;
  --ex-accent: #ff6d00;
  --ex-accent-rgb: 255, 109, 0;
  --ex-accent2: #ff8c00;
  --ex-accent-l: #fff4e6;
  --ex-brand: #ff6d00;
  --ex-brand-light: #ff8c00;
  --ex-brand-dark: #e65c00;
  --ex-green: #ff6d00;
  --ex-gold: #ffc107;
  --ex-text: #111111;
  --ex-text2: #666666;
  --ex-text3: #999999;
  --ex-text-light: #ffffff;
  --ex-text-muted: #888888;
  --ex-border: #e8e8e8;
  --ex-border-light: #f5f5f5;
  --ex-card-grad: linear-gradient(180deg, #ffffff, #fafafa);
  --ex-card-grad2: linear-gradient(180deg, #fff8f0, #fff4e6);
  --ex-card-grad3: linear-gradient(180deg, #fafafa, #f5f5f5);
  --ex-grad-brand: linear-gradient(135deg, #ff6d00, #ff8c00);
  --ex-grad-hero: linear-gradient(135deg, #ff6d00 0%, #e65c00 100%);
  --ex-grad-accent: linear-gradient(135deg, #ff6d00, #ff8c00);
  --ex-grad-sale: linear-gradient(135deg, #ff6d00, #ffc107);
  --ex-shadow: 0 1px 2px rgba(0,0,0,0.04);
  --ex-shadow-card: 0 1px 3px rgba(0,0,0,0.06);
  --ex-shadow-hover: 0 2px 8px rgba(0,0,0,0.08);
  --ex-shadow-glow: 0 0 0 rgba(255,109,0,0);
  --ex-radius: 4px;
  --ex-radius-lg: 8px;
  --ex-radius-xl: 12px;
  --ex-radius-pill: 9999px;

  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ex-bg);
  color: var(--ex-text);
  -webkit-font-smoothing: antialiased;
}

/* --- Keyframes --- */
@keyframes exGradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes exFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes exPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }
@keyframes exSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes exSparkle { 0%,100%{opacity:0.3;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.2)} }
@keyframes exTickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes exOrbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(60px,-40px) scale(1.1)} 66%{transform:translate(-30px,50px) scale(0.95)} }
@keyframes exOrbFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-50px,30px) scale(0.9)} 66%{transform:translate(40px,-60px) scale(1.08)} }

/* Gradient text utility */
.ex-text-gradient {
  background: linear-gradient(135deg, var(--ex-accent), var(--ex-brand-light), var(--ex-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Container & Section Base --- */
.ex-container { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.ex-section { padding: 1.75rem 0; }
.ex-flush { padding: 0.75rem 0; }
.ex-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 12px; flex-wrap: wrap; }
.ex-sec-head h2 { font-size: 1rem; font-weight: 600; letter-spacing: -0.2px; margin: 0; display: flex; align-items: center; gap: 0.5rem; color: var(--ex-text); }
.ex-sec-sub { font-size: 0.82rem; color: var(--ex-text3); margin: 4px 0 0; }
.ex-center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.ex-see-all { font-size: 0.78rem; font-weight: 600; color: var(--ex-accent); text-decoration: none; display: flex; align-items: center; gap: 0.25rem; padding: 0.3rem 0.6rem; border-radius: var(--ex-radius-pill); transition: all 0.2s; }
.ex-see-all:hover { background: var(--ex-accent-l); color: var(--ex-brand-dark); }
.ex-see-all i { font-size: 0.7rem; transition: transform 0.2s; }
.ex-see-all:hover i { transform: translateX(3px); }
.ex-flash-icon { color: var(--ex-accent); font-size: 0.9rem; animation: exPulse 1.5s ease-in-out infinite; }
.ex-sparkle-icon { color: var(--ex-accent); font-size: 1rem; }

/* Section icon badges */
.ex-sec-icon { width: 24px; height: 24px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.ex-sec-icon.violet { background: #ede9fe; color: #7c3aed; }
.ex-sec-icon.rose { background: #ffe4e6; color: #e11d48; }
.ex-sec-icon.amber { background: #fef3c7; color: #d97706; }
.ex-sec-icon.emerald { background: #dcfce7; color: var(--ex-accent); }

/* ================================================================
   WHITE CARD CONTAINER
   ================================================================ */
.ex-white-card {
    background: #fff;
    border-radius: 4px;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
}
.ex-white-card .ex-sec-head h2 { color: #111 !important; }
.ex-white-card .ex-sec-sub { color: #666; }
.ex-white-card .ex-see-all { color: var(--ex-accent); }
.ex-white-card .ex-cat-chip-name { color: #333; }
.ex-white-card .ex-cat-chip { background: #fff; border-color: #e0e0e0; }
.ex-white-card .ex-cat-chip:hover { background: #fff4e6; border-color: var(--ex-accent); }
.ex-white-card .ex-pcard { border-color: #e0e0e0; }
.ex-white-card .ex-pcard:hover { border-color: var(--ex-accent); }
.ex-white-card .ex-store-card { background: #fff; border: 1px solid #e0e0e0; }
.ex-white-card .ex-store-card:hover { border-color: var(--ex-accent); }
.ex-white-card .ex-store-info h4 { color: #111; }
.ex-white-card .ex-store-info p { color: #666; }
.ex-white-card .ex-store-meta { color: #999; }

/* ================================================================
   PROMOTIONAL BANNER
   ================================================================ */
.ex-promo-banner {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6d00, #e65c00);
    border-radius: 4px;
    padding: 28px 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.ex-promo-banner:hover {
    box-shadow: 0 4px 16px rgba(255,109,0,0.3);
}
.ex-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.ex-promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.ex-promo-content { position: relative; z-index: 2; }
.ex-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.ex-promo-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    letter-spacing: -0.3px;
    line-height: 1.15;
}
.ex-promo-content p {
    font-size: 0.92rem;
    opacity: 0.85;
    margin: 0 0 12px;
    line-height: 1.5;
}
.ex-promo-perks { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.ex-promo-perks span { font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 5px; opacity: 0.9; }
.ex-promo-perks span i { color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.ex-promo-content strong { font-size: 1.1rem; }
.ex-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 11px 28px;
    border-radius: 999px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.ex-promo-cta i { transition: transform 0.2s; }
.ex-promo-banner:hover .ex-promo-cta {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.ex-promo-banner:hover .ex-promo-cta i { transform: translateX(3px); }

/* ================================================================
   HERO — Full-Width Cosmic Banner
   ================================================================ */
.ex-hero { position: relative; background: var(--ex-bg); }
.ex-hero-wrapper { position: relative; }

/* Carousel */
.ex-hero-carousel { position: relative; width: 100%; height: 420px; overflow: hidden; }
.ex-hero-track { display: flex; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.ex-hero-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.ex-hero-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ex-hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(9,14,26,0.92) 0%, rgba(9,14,26,0.65) 45%, rgba(9,14,26,0.25) 100%); }
.ex-hero-slide-bg { position: absolute; inset: 0; }

/* Slide Content */
.ex-hero-slide-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; }
.ex-hero-text { max-width: 520px; color: #fff; animation: exSlideUp 0.6s ease; }
.ex-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,107,53,0.2); border: 1px solid rgba(255,107,53,0.4); padding: 6px 16px; border-radius: var(--ex-radius-pill); font-size: 0.72rem; font-weight: 700; color: var(--ex-accent); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.ex-hero-badge i { color: var(--ex-gold); }
.ex-hero-text h1 { font-size: 2.6rem; font-weight: 900; line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.5px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.ex-hero-text p { font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0 0 24px; line-height: 1.5; }
.ex-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ex-hero-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--ex-grad-accent); color: #fff; font-size: 0.95rem; font-weight: 800; padding: 14px 32px; border-radius: var(--ex-radius-pill); text-decoration: none; box-shadow: 0 6px 24px rgba(255,107,53,0.5); transition: all 0.25s; }
.ex-hero-btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 36px rgba(255,107,53,0.6); }
.ex-hero-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: #fff; font-size: 0.95rem; font-weight: 600; padding: 13px 28px; border-radius: var(--ex-radius-pill); text-decoration: none; backdrop-filter: blur(8px); transition: all 0.25s; }
.ex-hero-btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* Arrows */
.ex-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; color: #fff; font-size: 15px; transition: all 0.25s; opacity: 0; }
.ex-hero-carousel:hover .ex-hero-arrow { opacity: 1; }
.ex-hero-arrow:hover { background: var(--ex-accent); border-color: var(--ex-accent); transform: translateY(-50%) scale(1.1); }
.ex-hero-arrow-l { left: 20px; }
.ex-hero-arrow-r { right: 20px; }

/* Dots */
.ex-hero-dots { display: flex; gap: 8px; justify-content: center; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; }
.ex-hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.ex-hero-dots span.on { width: 28px; border-radius: var(--ex-radius-pill); background: var(--ex-accent); }

/* Floating Info Cards (overlaps bottom of hero) */
.ex-hero-floats { position: relative; z-index: 10; margin-top: -36px; padding-bottom: 20px; }
.ex-hero-info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ex-hero-info-card { display: flex; align-items: center; gap: 0.75rem; background: #fff; border: 1px solid var(--ex-border); border-radius: var(--ex-radius); padding: 1rem 1.2rem; transition: all 0.3s; box-shadow: var(--ex-shadow-card); }
.ex-hero-info-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-hover); border-color: transparent; }
.ex-hi-icon { width: 44px; height: 44px; border-radius: var(--ex-radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 18px; }
.ex-hero-info-card strong { display: block; font-size: 1rem; font-weight: 800; color: var(--ex-text); letter-spacing: -0.3px; }
.ex-hero-info-card span { display: block; font-size: 0.72rem; color: var(--ex-text3); font-weight: 500; }

/* ================================================================
   CATEGORY STRIP
   ================================================================ */
.ex-catstrip { background: var(--ex-bg); padding: 20px 0; border-bottom: 1px solid var(--ex-border); }
.ex-catstrip-row { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding: 4px 0; cursor: grab; }
.ex-catstrip-row::-webkit-scrollbar { display: none; }
.ex-catstrip-row.grabbing { cursor: grabbing; }
.ex-catstrip-row.grabbing .ex-cat-chip { pointer-events: none; }

/* Pill-shaped category chips */
.ex-cat-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #f0f0f0; border-radius: 20px; padding: 4px 14px 4px 4px; text-decoration: none; white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
.ex-cat-chip:hover { border-color: var(--ex-accent); background: #fffaf5; }
.ex-cat-chip-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ex-accent); flex-shrink: 0; background: var(--ex-accent-l); }
.ex-cat-chip-name { font-size: 0.75rem; font-weight: 500; color: #333; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.ex-trustbar { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 22px 0; }
.ex-trust-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.ex-trust-item { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; }
.ex-trust-icon { width: 48px; height: 48px; border-radius: 14px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.ex-trust-item strong { font-size: 0.95rem; font-weight: 800; color: #0f172a; display: block; margin-bottom: 2px; }
.ex-trust-item span { font-size: 0.78rem; color: #94a3b8; display: block; }
.ex-trust-sep { width: 1px; height: 36px; background: #e5e7eb; flex-shrink: 0; }

/* ================================================================
   PROMOTIONAL TICKER
   ================================================================ */
.ex-ticker { background: linear-gradient(90deg, var(--ex-accent), var(--ex-accent2), var(--ex-accent)); overflow: hidden; padding: 10px 0; }
.ex-ticker-inner { display: flex; gap: 40px; animation: exTickerScroll 25s linear infinite; white-space: nowrap; }
.ex-ticker-inner span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.ex-ticker-inner span i { color: rgba(255,255,255,0.9); font-size: 14px; }

/* ================================================================
   GOLD AD BANNER
   ================================================================ */
.ex-gold-banner { overflow-x: auto; display: flex; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.ex-gold-banner::-webkit-scrollbar { display: none; }

/* ================================================================
   FLASH DEALS
   ================================================================ */
.ex-deals-section { padding: 28px 0; background: var(--ex-bg); }
.ex-deals-right { display: flex; align-items: center; gap: 20px; }
.ex-countdown { display: flex; align-items: center; gap: 10px; }
.ex-cd-label { font-size: 0.75rem; color: var(--ex-text-muted); font-weight: 600; }
.ex-cd-blocks { display: flex; gap: 4px; }
.ex-cd-block { background: var(--ex-accent); color: #fff; min-width: 36px; height: 36px; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ex-cd-block span { font-size: 1.15rem; font-weight: 800; line-height: 1.1; }
.ex-cd-block small { font-size: 0.55rem; text-transform: uppercase; opacity: 0.8; }
.ex-cd-sep { font-weight: 800; color: var(--ex-text-muted); font-size: 1.1rem; }

/* ================================================================
   PRODUCT GRID
   ================================================================ */
.ex-scroll-row { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.75rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
.ex-scroll-row::-webkit-scrollbar { height: 5px; }
.ex-scroll-row::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 9px; }
.ex-scroll-row::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 9px; }
.ex-scroll-row::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ================================================================
   PRODUCT CARD — JioMart Clean Style
   ================================================================ */
/* ================================================================
   PRODUCT CARD — MODERN UI
   ================================================================ */
.ex-pcard {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-width: 0;
    max-width: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}
.ex-pcard:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: #e5e5e5;
}
.ex-pcard-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; flex: 1; }

/* ---- Image Area ---- */
.ex-pcard-img {
    position: relative;
    aspect-ratio: 4/4;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.ex-pcard-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: multiply;
}
.ex-pcard:hover .ex-pcard-img img { transform: scale(1.06); }
.ex-pcard-noimg { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.ex-pcard-noimg i { font-size: 2.2rem; color: #d1d5db; }
.ex-pcard-overlay { display: none; }

/* ---- Discount Badge ---- */
.ex-pcard-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 4;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #ef4444;
    letter-spacing: -0.2px;
}
.ex-pcard-badge:empty { display: none; }

/* ---- Wishlist Heart ---- */
.ex-pcard-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.25s ease;
    z-index: 3;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.ex-pcard:hover .ex-pcard-wish { opacity: 1; transform: scale(1); }
.ex-pcard-wish .fa-heart { font-size: 12px; }
.ex-pcard-wish .far { color: #9ca3af; display: block; transition: color 0.2s; }
.ex-pcard-wish .fas { color: #ef4444; display: none; }
.ex-pcard-wish.liked .far { display: none; }
.ex-pcard-wish.liked .fas { display: block; }
.ex-pcard-wish:hover { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.12); }
.ex-pcard-wish:hover .far { color: #ef4444; }
.ex-pcard-wish.liked { animation: wishPop 0.35s ease; }
@keyframes wishPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

/* ---- Card Body ---- */
.ex-pcard-body {
    padding: 12px 14px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ex-pcard-brand {
    font-size: 10.5px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ex-pcard-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    min-height: 38px;
}
.ex-pcard:hover .ex-pcard-name { color: #f59e0b; }

/* ---- Rating Row ---- */
.ex-pcard-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 0;
}
.ex-pcard-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #16a34a;
    color: #fff;
    padding: 1.5px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}
.ex-pcard-rating-pill i { font-size: 8.5px; }
.ex-pcard-rating-count {
    font-size: 11.5px;
    color: #9ca3af;
    font-weight: 500;
}
.ex-pcard-new-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #dbeafe;
    color: #2563eb;
}

/* ---- Stars (legacy compat) ---- */
.ex-pcard-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 4px; }
.ex-pcard-stars i { font-size: 0.7rem; color: #ffb300; }
.ex-pcard-stars .far { color: #ddd; }
.ex-pcard-stars .fas { color: #ffb300; }
.ex-rating-count { color: #9ca3af; font-size: 11px; font-weight: 500; margin-left: 4px; }
.ex-new-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #dbeafe;
    color: #2563eb;
}

/* ---- Price Block ---- */
.ex-pcard-pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 4px;
}
.ex-pcard-final {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.3px;
}
.ex-pcard-mrp {
    font-size: 12px;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 400;
}
.ex-pcard-save {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
}

/* Legacy price compat */
.ex-pcard-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.ex-price-now { font-size: 16px; font-weight: 800; color: #111827; letter-spacing: -0.3px; }
.ex-price-old { font-size: 12px; color: #b0b0b0; text-decoration: line-through; font-weight: 400; }

/* ---- Footer / Shipping ---- */
.ex-pcard-footer { margin-top: 4px; }
.ex-pcard-ship {
    font-size: 11px;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.ex-pcard-ship i { font-size: 11px; }

/* Hidden legacy elements */
.ex-pcard-cat, .ex-pcard-rating, .ex-rating-pill, .ex-pcard-discount, .ex-pcard-delivery, .ex-pcard-feat { display: none; }

/* ---- Add to Cart Button ---- */
.ex-pcard-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.ex-pcard-btn:hover { background: #f59e0b; }
.ex-pcard-btn i { font-size: 12px; transition: transform 0.25s; }
.ex-pcard-btn:hover i { transform: scale(1.1); }
.ex-pcard-btn:active { transform: scale(0.98); }

/* Slide-up Add to Cart on desktop */
@media (min-width: 769px) {
    .ex-pcard-btn {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    }
    .ex-pcard:hover .ex-pcard-btn {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================================================================
   DEAL BANNERS
   ================================================================ */
.ex-deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ex-deal-card { border-radius: var(--ex-radius-lg); overflow: hidden; background: var(--dl-bg); display: flex; align-items: center; padding: 30px 34px; min-height: 170px; text-decoration: none; color: #fff; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s; position: relative; }
.ex-deal-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,255,255,0.04),transparent); pointer-events: none; }
.ex-deal-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.ex-deal-body { flex: 1; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.ex-deal-badge { display: inline-block; background: rgba(255,255,255,0.18); font-size: 0.7rem; padding: 5px 14px; border-radius: var(--ex-radius-pill); font-weight: 700; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; width: fit-content; backdrop-filter: blur(4px); }
.ex-deal-card h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.3px; }
.ex-deal-card p { font-size: 0.85rem; opacity: 0.7; margin: 0; line-height: 1.4; }
.ex-deal-link { font-size: 0.85rem; font-weight: 700; margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; color: #fff; text-decoration: none; opacity: 0.9; transition: opacity 0.2s, gap 0.2s; }
.ex-deal-card:hover .ex-deal-link { opacity: 1; gap: 10px; }
.ex-deal-visual { font-size: 4.5rem; opacity: 0.12; display: flex; align-items: center; justify-content: center; padding-right: 20px; transition: opacity 0.3s, transform 0.3s; }
.ex-deal-card:hover .ex-deal-visual { opacity: 0.2; transform: scale(1.08); }

/* ================================================================
   SELLER CARDS
   ================================================================ */
.ex-seller-card { width: 220px; flex-shrink: 0; background: var(--ex-surface); border: 1px solid var(--ex-border-light); border-radius: var(--ex-radius); overflow: hidden; transition: all 0.3s; }
.ex-seller-card:hover { transform: translateY(-4px); box-shadow: var(--ex-shadow-hover); }
.ex-seller-img { position: relative; height: 130px; overflow: hidden; }
.ex-seller-img img { width: 100%; height: 100%; object-fit: cover; }
.ex-sponsored { position: absolute; top: 8px; right: 8px; font-size: 0.65rem; background: rgba(0,0,0,0.6); color: #fff; padding: 2px 8px; border-radius: var(--ex-radius-pill); }
.ex-seller-body { padding: 12px; }
.ex-seller-body h4 { font-size: 0.85rem; font-weight: 700; color: var(--ex-text); margin: 0 0 4px; }
.ex-seller-body span { font-size: 0.75rem; color: var(--ex-text3); }
.ex-seller-sm { width: 180px; }

/* ================================================================
   REVIEWS
   ================================================================ */
.ex-rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ex-rev-card { background: var(--ex-surface); border: 1px solid var(--ex-border); border-radius: var(--ex-radius-lg); padding: 1.6rem; position: relative; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s, border-color 0.3s; display: flex; flex-direction: column; }
.ex-rev-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ex-grad-accent); border-radius: var(--ex-radius-lg) var(--ex-radius-lg) 0 0; transform: scaleX(0); transition: transform 0.35s; transform-origin: left; }
.ex-rev-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.ex-rev-card:hover::before { transform: scaleX(1); }
.ex-rev-stars { color: #fbbf24; font-size: 0.9rem; display: flex; gap: 0.12rem; margin-bottom: 0.75rem; }
.ex-rev-card p { font-size: 0.88rem; line-height: 1.65; color: var(--ex-text2); font-style: italic; margin-bottom: 1.2rem; flex: 1; }
.ex-rev-card p::before { content: '\201c'; font-size: 2rem; font-weight: 900; color: var(--ex-accent); line-height: 0; vertical-align: -0.4em; margin-right: 2px; font-style: normal; }
.ex-rev-who { display: flex; align-items: center; gap: 0.65rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--ex-border-light); }
.ex-rev-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #fef3c7, #fde68a); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: #d97706; flex-shrink: 0; }
.ex-rev-who strong { display: block; font-size: 0.85rem; color: var(--ex-text); font-weight: 700; }
.ex-rev-who small { font-size: 0.7rem; color: var(--ex-text3); display: flex; align-items: center; gap: 0.25rem; }
.ex-rev-who small i { color: #0ea5e9; font-size: 0.72rem; }

/* ================================================================
   STORE CARDS
   ================================================================ */
.ex-store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.ex-store-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--ex-border); border-radius: var(--ex-radius); padding: 20px; text-decoration: none; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s; }
.ex-store-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); border-color: transparent; }
.ex-store-avatar { width: 56px; height: 56px; border-radius: 14px; background: var(--sc); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; font-weight: 800; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.ex-store-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.ex-store-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--ex-text); margin: 0 0 3px; }
.ex-store-info p { font-size: 0.78rem; color: var(--ex-text2); margin: 0; line-height: 1.4; }
.ex-store-meta { display: flex; gap: 12px; font-size: 0.72rem; color: var(--ex-text3); margin-top: 8px; }
.ex-store-meta i { margin-right: 2px; }
.ex-verified { color: var(--ex-green); font-weight: 600; }

/* ================================================================
   STATS SECTION
   ================================================================ */
.ex-stats { background: linear-gradient(180deg, #090e1a 0%, #111827 100%); padding: 4rem 0; position: relative; overflow: hidden; }
.ex-stats::before { content: ''; position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse,rgba(245,158,11,0.04),transparent 60%); pointer-events: none; }
.ex-stats .ex-sec-sub { color: rgba(255,255,255,0.5); }
.ex-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ex-stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: background 0.3s, border-color 0.3s; }
.ex-stat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.ex-stat-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.15); color: var(--ex-gold); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; transition: transform 0.3s; }
.ex-stat:hover .ex-stat-icon { transform: scale(1.08); }
.ex-stat-num { font-size: 2.4rem; font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 4px; }
.ex-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }

/* ================================================================
   STEPS
   ================================================================ */
.ex-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.ex-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px; flex: 1; max-width: 260px; }
.ex-step-num { font-size: 0.7rem; font-weight: 800; color: #fff; background: var(--ex-grad-accent); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.ex-step-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.15); color: var(--ex-brand-light); font-size: 1.6rem; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ex-step h3 { font-size: 1rem; font-weight: 700; color: var(--ex-text-light); margin: 0 0 6px; }
.ex-step p { font-size: 0.82rem; color: var(--ex-text-muted); line-height: 1.5; margin: 0; }
.ex-step-line { width: 60px; height: 2px; background: var(--ex-border); align-self: center; margin-top: -30px; }

/* ================================================================
   CTA
   ================================================================ */
.ex-cta { background: linear-gradient(180deg, #090e1a 0%, #0d1424 50%, #111827 100%); padding: 4rem 0; position: relative; overflow: hidden; text-align: center; }
.ex-cta::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle,rgba(245,158,11,0.06),transparent 60%); pointer-events: none; }
.ex-cta-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ex-cta-orbs .ex-orb { opacity: 0.08; background: #fff; }
.ex-cta-box { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.ex-cta-box h2 { font-size: 2.2rem; font-weight: 900; color: #fff; margin: 0 0 12px; letter-spacing: -0.5px; line-height: 1.15; }
.ex-cta-box p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin: 0 0 32px; line-height: 1.5; }
.ex-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.ex-btn-amber { display: inline-flex; align-items: center; gap: 8px; background: var(--ex-grad-accent); color: #fff; font-size: 1rem; font-weight: 800; padding: 16px 40px; border-radius: 9999px; text-decoration: none; box-shadow: 0 6px 24px rgba(245,158,11,0.35); transition: all 0.25s; border: none; cursor: pointer; }
.ex-btn-amber:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(245,158,11,0.5); filter: brightness(1.05); }
.ex-btn-amber i { transition: transform 0.2s; }
.ex-btn-amber:hover i { transform: translateX(3px); }
.ex-btn-glass { display: inline-flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); padding: 15px 36px; border-radius: 9999px; font-weight: 700; font-size: 1rem; text-decoration: none; backdrop-filter: blur(6px); transition: all 0.25s; cursor: pointer; }
.ex-btn-glass:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ================================================================
   NEWSLETTER
   ================================================================ */
.ex-newsletter { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: linear-gradient(135deg,#090e1a,#111827); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--ex-radius-lg); padding: 32px 36px; position: relative; overflow: hidden; }
.ex-newsletter::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(245,158,11,0.08),transparent 70%); pointer-events: none; }
.ex-nl-left { display: flex; gap: 16px; align-items: center; position: relative; z-index: 1; }
.ex-nl-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--ex-grad-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(245,158,11,0.3); }
.ex-nl-icon i { font-size: 22px; color: #fff; }
.ex-nl-left h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.ex-nl-left h3 i { color: var(--ex-brand-light); margin-right: 4px; }
.ex-nl-left p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
.ex-nl-form { display: flex; gap: 8px; position: relative; z-index: 1; }
.ex-nl-form input { width: 260px; height: 46px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: var(--ex-radius-pill); padding: 0 18px; font-size: 0.88rem; background: rgba(255,255,255,0.06); color: #fff; outline: none; transition: all 0.2s; font-family: inherit; }
.ex-nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.ex-nl-form input:focus { border-color: var(--ex-brand-light); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); background: rgba(255,255,255,0.08); }
.ex-nl-form button { height: 46px; padding: 0 28px; background: var(--ex-grad-accent); color: #fff; border: none; border-radius: var(--ex-radius-pill); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(245,158,11,0.25); font-family: inherit; }
.ex-nl-form button:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .ex-deal-grid { grid-template-columns: 1fr 1fr; }
    .ex-store-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .ex-trust-row { flex-wrap: wrap; }
    .ex-trust-sep { display: none; }
    .ex-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ex-steps { flex-wrap: wrap; }
    .ex-newsletter { flex-direction: column; text-align: center; }
    .ex-nl-left { flex-direction: column; }
    .ex-rev-grid { grid-template-columns: repeat(2, 1fr); }
    .ex-cta-box h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .ex-deal-grid { grid-template-columns: 1fr; }
    .ex-trust-row { flex-wrap: wrap; gap: 12px; } .ex-trust-sep { display: none; } .ex-trust-item { flex: 1 1 45%; justify-content: flex-start; }
    .ex-rev-grid { grid-template-columns: 1fr; }
    .ex-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ex-steps { flex-direction: column; align-items: center; }
    .ex-step-line { display: none; }
    .ex-newsletter { flex-direction: column; padding: 24px 20px; }
    .ex-nl-left { flex-direction: column; }
    .ex-nl-form { flex-direction: column; width: 100%; }
    .ex-nl-form input { width: 100%; }
    .ex-white-card { padding: 20px; border-radius: 16px; }
    .ex-promo-content h2 { font-size: 1.5rem; }
    .ex-cta { padding: 3.5rem 0; }
    .ex-cta-box h2 { font-size: 1.6rem; }
    .ex-cta-box p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .ex-deal-grid { grid-template-columns: 1fr; }
    .ex-newsletter { padding: 20px 16px; }
    .ex-countdown { display: none; }
    .ex-container { padding: 0 16px; }
    .ex-section { padding: 2rem 0; }
    .ex-sec-head h2 { font-size: 1.1rem; }
    .ex-pcard { min-width: 170px; }
    .ex-pcard-img { height: 130px; }
    .ex-pcard-name { font-size: 0.78rem; }
    .ex-price-now { font-size: 1rem; }
    .ex-pcard-btn { padding: 8px; font-size: 0.75rem; }
    .ex-deal-card { padding: 22px 20px; min-height: 130px; }
    .ex-deal-card h3 { font-size: 1.1rem; }
    .ex-deal-visual { font-size: 42px; }
    .ex-trust-row { flex-wrap: wrap; gap: 10px; }
    .ex-trust-icon { width: 40px; height: 40px; font-size: 16px; border-radius: 10px; }
    .ex-cat-chip { padding: 6px 14px 6px 6px; gap: 8px; }
    .ex-cat-chip-icon { width: 30px; height: 30px; font-size: 13px; }
    .ex-cat-chip-name { font-size: 0.78rem; }
    .ex-orb { filter: blur(60px); opacity: 0.15; }
    .ex-white-card { padding: 16px; border-radius: 14px; }
    .ex-promo-content h2 { font-size: 1.3rem; }
    .ex-promo-banner { padding: 24px 16px; }
    .ex-promo-perks { gap: 12px; }
    .ex-promo-perks span { font-size: 0.75rem; }
    .ex-stat { padding: 1rem 0.5rem; }
    .ex-stat-num { font-size: 1.8rem; }
    .ex-stat-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .ex-cta { padding: 3rem 0; }
    .ex-cta-box h2 { font-size: 1.4rem; }
    .ex-btn-amber { padding: 12px 28px; font-size: 0.9rem; }
    .ex-btn-glass { padding: 11px 24px; font-size: 0.9rem; }
    .ex-rev-card { padding: 1.2rem; }
}

/* ================================================================
   PRO HOMEPAGE STYLES - JioMart Orange Design
   ================================================================ */

/* ---- PRO Hero Section ---- */
.pro-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}
.pro-hero-slider {
    position: relative;
}
.pro-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.pro-hero-slide.active {
    position: relative;
    opacity: 1;
}
.pro-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.pro-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,109,0,0.88) 0%, rgba(255,109,0,0.7) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}
.pro-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 580px;
}
.pro-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 2px;
    width: fit-content;
    margin-bottom: 10px;
}
.pro-hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 8px;
}
.pro-hero-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 14px;
    line-height: 1.5;
    max-width: 420px;
}
.pro-hero-coupon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    border: 1px dashed rgba(255,255,255,0.4);
    color: #fff;
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 0.78rem;
    margin-bottom: 14px;
    width: fit-content;
}
.pro-hero-coupon strong {
    color: #fff;
    letter-spacing: 0.5px;
}
.pro-hero-cta {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

/* Primary Button - JioMart Orange */
.pro-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--ex-accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
.pro-btn-primary:hover {
    background: var(--ex-brand-dark);
    color: #fff;
}
.pro-btn-primary:active {
    transform: scale(0.98);
}

/* Ghost Button - JioMart */
.pro-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.pro-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Hero Arrows */
.pro-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.pro-hero-arrow:hover {
    background: rgba(255,255,255,0.25);
}
.pro-hero-prev { left: 20px; }
.pro-hero-next { right: 20px; }

/* Hero Dots */
.pro-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}
.pro-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.pro-dot.active {
    background: #f59e0b;
    width: 28px;
    border-radius: 5px;
}

/* ---- PRO Sections ---- */
.pro-section {
    padding: 24px 0;
}
.pro-sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}
.pro-sec-head h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pro-sec-head h2 i {
    color: var(--ex-accent);
    font-size: 0.95rem;
}
.pro-sec-sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 4px 0 0;
}
.pro-sec-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pro-see-all {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ex-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
}
.pro-see-all:hover {
    background: #fef9c3;
}
.pro-see-all i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.pro-see-all:hover i {
    transform: translateX(2px);
}

/* ---- PRO Card Container ---- */
.pro-card {
    background: #fff;
    border-radius: 4px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
}

/* ---- PRO Category Cards ---- */
.pro-categories {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.pro-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
}
.pro-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px 10px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.pro-cat-card:hover {
    border-color: var(--ex-accent);
    background: #fffaf5;
    box-shadow: 0 2px 8px rgba(255,109,0,0.1);
}
.pro-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ex-accent-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ex-accent);
    transition: all 0.2s;
}
.pro-cat-card:hover .pro-cat-icon {
    background: var(--ex-accent);
    color: #fff;
}
.pro-cat-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    line-height: 1.3;
}

/* ---- PRO Deals Section ---- */
.pro-deals {
    background: #fefce8;
}
.pro-deals-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pro-flash-pulse {
    animation: proFlashPulse 1.5s ease-in-out infinite;
}
@keyframes proFlashPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Countdown */
.pro-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 6px 14px;
    border-radius: 10px;
}
.pro-cd-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pro-cd-blocks {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pro-cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0f172a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 36px;
}
.pro-cd-block span {
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Inter', monospace;
    line-height: 1;
}
.pro-cd-block small {
    font-size: 0.55rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.pro-cd-sep {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

/* Fix hidden elements in pro sections */
.pro-product-scroll .ex-rating-count,
.pro-product-grid .ex-rating-count {
    display: inline !important;
}

/* ---- PRO Product Scroll ---- */
.pro-product-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.pro-product-scroll::-webkit-scrollbar { height: 4px; }
.pro-product-scroll::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 4px; }
.pro-product-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* ---- PRO Product Grid ---- */
.pro-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* ---- PRO Product Card (Overrides for scroll/grid context) ---- */
.pro-product-scroll .ex-pcard,
.pro-product-grid .ex-pcard {
    min-width: 200px;
    max-width: 260px;
    flex: 1 0 200px;
}
.pro-product-grid .ex-pcard {
    min-width: unset;
    max-width: unset;
    flex: unset;
}

/* Card Image Area */
.pro-product-scroll .ex-pcard .ex-pcard-img,
.pro-product-grid .ex-pcard .ex-pcard-img {
    background: #fff !important;
    aspect-ratio: 1;
    padding: 12px;
}
.pro-product-scroll .ex-pcard .ex-pcard-img img,
.pro-product-grid .ex-pcard .ex-pcard-img img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pro-product-scroll .ex-pcard:hover .ex-pcard-img img,
.pro-product-grid .ex-pcard:hover .ex-pcard-img img {
    transform: scale(1.08);
}

/* Discount Badge */
.pro-product-scroll .ex-pcard .ex-pcard-badge,
.pro-product-grid .ex-pcard .ex-pcard-badge {
    font-size: 0.68rem;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
}

/* Card Body */
.pro-product-scroll .ex-pcard .ex-pcard-body,
.pro-product-grid .ex-pcard .ex-pcard-body {
    padding: 12px 12px 8px;
}

/* Add to Cart button */
.pro-product-scroll .ex-pcard .ex-pcard-btn,
.pro-product-grid .ex-pcard .ex-pcard-btn {
    font-size: 0.75rem;
    padding: 9px;
    gap: 5px;
}

/* ---- PRO Banner Grid ---- */
.pro-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pro-banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 4px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
    min-height: 120px;
}
.pro-banner-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pro-banner-dark { background: linear-gradient(135deg, #ff6d00, #e65c00); }
.pro-banner-warm { background: linear-gradient(135deg, #ff8c00, #ff6d00); }
.pro-banner-green { background: linear-gradient(135deg, #ff6d00, #ff5500); }
.pro-banner-body {
    position: relative;
    z-index: 1;
}
.pro-banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.pro-banner-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}
.pro-banner-card p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 14px;
}
.pro-banner-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pro-banner-link i {
    transition: transform 0.2s;
}
.pro-banner-card:hover .pro-banner-link i {
    transform: translateX(4px);
}
.pro-banner-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.08);
    position: absolute;
    right: 20px;
    bottom: 15px;
}

/* ---- PRO Trust Section ---- */
.pro-trust {
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.pro-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pro-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 4px;
    background: #f9fafb;
    transition: all 0.2s;
}
.pro-trust-item:hover {
    background: var(--ex-accent-l);
}
.pro-trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--ex-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pro-trust-green { background: var(--ex-accent); }
.pro-trust-amber { background: #f59e0b; }
.pro-trust-purple { background: #8b5cf6; }
.pro-trust-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}
.pro-trust-text span {
    font-size: 0.75rem;
    color: #64748b;
}

/* ---- PRO Review Cards ---- */
.pro-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pro-review-card {
    background: #fff;
    border: 1px solid var(--ex-border);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.25s;
}
.pro-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    border-color: var(--ex-accent);
}
.pro-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.pro-review-stars i {
    color: var(--ex-gold);
    font-size: 0.8rem;
}
.pro-review-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 14px;
    font-style: italic;
}
.pro-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pro-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d97706;
    flex-shrink: 0;
}
.pro-av-green { background: linear-gradient(135deg, #d1fae5, #bbf7d0); color: #059669; }
.pro-av-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.pro-review-author strong {
    font-size: 0.85rem;
    color: #0f172a;
    display: block;
}
.pro-review-author small {
    font-size: 0.72rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- PRO Store Grid ---- */
.pro-store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.pro-store-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.25s;
    background: #fff;
}
.pro-store-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.pro-store-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--sc, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.pro-store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pro-store-avatar span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}
.pro-store-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}
.pro-store-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0 0 8px;
}
.pro-store-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    color: #94a3b8;
}
.pro-store-meta i { margin-right: 3px; }
.pro-verified {
    color: #10b981;
    font-weight: 600;
}

/* ---- PRO CTA Section ---- */
.pro-cta {
    padding: 32px 0;
    background: var(--ex-accent);
    position: relative;
    overflow: hidden;
}
.pro-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    top: -80px;
    right: -80px;
}
.pro-cta::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -60px;
    left: -40px;
}
.pro-cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.pro-cta-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.pro-cta-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 24px;
}
.pro-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- PRO Newsletter ---- */
.pro-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111827;
    border-radius: 16px;
    padding: 32px 36px;
    gap: 24px;
    flex-wrap: wrap;
}
.pro-nl-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.pro-nl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 109, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ex-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.pro-newsletter h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.pro-newsletter p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.pro-nl-form {
    display: flex;
    gap: 8px;
}
.pro-nl-form input {
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    width: 260px;
    outline: none;
    transition: border-color 0.2s;
}
.pro-nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.pro-nl-form input:focus { border-color: #f59e0b; }
.pro-nl-form button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: filter 0.2s;
    white-space: nowrap;
}
.pro-nl-form button:hover { filter: brightness(1.1); }

/* ---- PRO Promo Banner ---- */
.pro-promo-banner {
    display: block;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #f59e0b 200%);
    border-radius: 16px;
    padding: 40px 36px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.pro-promo-banner:hover {
    transform: translateY(-3px);
}
.pro-promo-banner::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 60%);
}
.pro-promo-content { position: relative; z-index: 1; }
.pro-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 12px;
}
.pro-promo-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
}
.pro-promo-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 16px;
    max-width: 500px;
}
.pro-promo-perks {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.pro-promo-perks span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pro-promo-perks i {
    color: #34D399;
}
.pro-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: filter 0.2s;
}
.pro-promo-banner:hover .pro-promo-cta {
    filter: brightness(1.1);
}

/* ---- PRO Mobile Bottom Bar ---- */
.pro-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--ex-border);
    padding: 6px 0 env(safe-area-inset-bottom, 4px);
    box-shadow: 0 -3px 12px rgba(0,0,0,0.06);
}
.pro-mobile-bar {
    display: none;
}
.pro-mb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 600;
    color: #888;
    padding: 4px 0;
    transition: color 0.2s;
    flex: 1;
}
.pro-mb-item i {
    font-size: 1.1rem;
}
.pro-mb-item.pro-mb-active {
    color: var(--ex-accent);
}
.pro-mb-cart {
    position: relative;
}

/* ================================================================
   PRO RESPONSIVE - Tablet
   ================================================================ */
@media (max-width: 1024px) {
    .pro-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .pro-hero-img { height: 420px; }
    .pro-hero-content h1 { font-size: 2.2rem; }
    .pro-banner-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-banner-grid .pro-banner-card:last-child {
        grid-column: span 2;
    }
    .pro-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pro-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pro-review-grid .pro-review-card:last-child {
        grid-column: span 2;
    }
    .pro-store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================================
   PRO RESPONSIVE - Mobile
   ================================================================ */
@media (max-width: 768px) {
    .pro-hero-img { height: 360px; }
    .pro-hero-content {
        padding: 0 20px;
    }
    .pro-hero-content h1 {
        font-size: 1.7rem;
    }
    .pro-hero-content p {
        font-size: 0.88rem;
    }
    .pro-hero-cta {
        flex-direction: column;
        gap: 8px;
    }
    .pro-btn-primary, .pro-btn-ghost {
        padding: 12px 24px;
        font-size: 0.88rem;
        text-align: center;
        justify-content: center;
    }
    .pro-hero-arrow { display: none; }

    .pro-section { padding: 24px 0; }

    .pro-sec-head h2 {
        font-size: 1.1rem;
    }

    .pro-card {
        padding: 16px;
        border-radius: 14px;
    }

    /* Categories - horizontal scroll on mobile */
    .pro-cat-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .pro-cat-grid::-webkit-scrollbar { display: none; }
    .pro-cat-card {
        min-width: 90px;
        padding: 14px 10px;
    }
    .pro-cat-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .pro-cat-name {
        font-size: 0.7rem;
    }

    /* Deals meta */
    .pro-deals-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Product grid: 2 columns */
    .pro-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pro-product-scroll .ex-pcard {
        min-width: 170px;
        flex: 0 0 170px;
    }

    /* Banners */
    .pro-banner-grid {
        grid-template-columns: 1fr;
    }
    .pro-banner-grid .pro-banner-card:last-child {
        grid-column: span 1;
    }
    .pro-banner-card {
        min-height: 130px;
        padding: 20px;
    }
    .pro-banner-card h3 { font-size: 1.1rem; }

    /* Trust */
    .pro-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pro-trust-item {
        padding: 12px 14px;
    }
    .pro-trust-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .pro-trust-text strong { font-size: 0.78rem; }
    .pro-trust-text span { font-size: 0.68rem; }

    /* Reviews */
    .pro-review-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pro-review-grid .pro-review-card:last-child {
        grid-column: span 1;
    }
    .pro-review-card { padding: 18px; }

    /* Stores */
    .pro-store-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* CTA */
    .pro-cta { padding: 36px 0; }
    .pro-cta-box h2 { font-size: 1.4rem; }

    /* Newsletter */
    .pro-newsletter {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
    }
    .pro-nl-left {
        flex-direction: column;
    }
    .pro-nl-form {
        width: 100%;
        flex-direction: column;
    }
    .pro-nl-form input {
        width: 100%;
    }

    /* Promo */
    .pro-promo-banner { padding: 28px 20px; }
    .pro-promo-content h2 { font-size: 1.3rem; }
    .pro-promo-perks { gap: 10px; }
    .pro-promo-perks span { font-size: 0.75rem; }

    /* Mobile bottom bar */
    .pro-mobile-bar {
        display: flex !important;
    }

    /* Add padding at bottom for mobile bar */
    .footer-v2 {
        padding-bottom: 64px;
    }
}

/* ================================================================
   PRO RESPONSIVE - Small Mobile
   ================================================================ */
@media (max-width: 480px) {
    .pro-hero-img { height: 300px; }
    .pro-hero-content h1 { font-size: 1.4rem; }
    .pro-hero-content p { font-size: 0.82rem; }
    .pro-hero-tag { font-size: 0.65rem; padding: 4px 10px; }

    .pro-countdown {
        flex-direction: column;
        padding: 8px 12px;
        gap: 4px;
    }

    .pro-product-grid {
        gap: 8px;
    }
    .pro-product-grid .ex-pcard .ex-pcard-body {
        padding: 10px 12px 8px;
    }
    .pro-product-grid .ex-pcard .ex-pcard-name {
        font-size: 0.75rem;
    }

    .pro-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .pro-trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 10px;
    }
}

/* ================================================================
   PRO TRUSTED PARTNERS MARQUEE
   ================================================================ */
.pro-partners {
    background: #111827;
    padding: 40px 0;
    overflow: hidden;
}
.pro-partners-inner {
    max-width: 1440px;
    margin: 0 auto;
}
.pro-partners-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: -0.3px;
}
.pro-marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.pro-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: proMarqueeScroll 35s linear infinite;
}
.pro-marquee-wrap:hover .pro-marquee-track {
    animation-play-state: paused;
}
@keyframes proMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.pro-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 140px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
    flex-shrink: 0;
}
.pro-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.pro-partner-card i {
    font-size: 1.5rem;
    color: #f59e0b;
}
.pro-partner-card strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    line-height: 1.3;
}

/* ================================================================
   TRUSTED SELLERS SECTION
   ================================================================ */
.pro-trusted-sellers .pro-sec-head h2 i {
    color: #ef4444;
}
.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ts-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
}
.ts-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.ts-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ts-color, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ts-avatar span {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}
.ts-info {
    flex: 1;
    min-width: 0;
}
.ts-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-rank {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.ts-rank-gold { background: #fef3c7; color: #d97706; }
.ts-rank-silver { background: #f1f5f9; color: #64748b; }
.ts-rank-platinum { background: #ede9fe; color: #7c3aed; }
.ts-trust-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    color: #10b981;
    font-size: 0.9rem;
}
.ts-stats {
    display: flex;
    gap: 4px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 8px;
}
.ts-stat {
    flex: 1;
    text-align: center;
}
.ts-stat strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.ts-stat span {
    font-size: 0.62rem;
    color: #94a3b8;
    font-weight: 500;
}
.ts-visit {
    font-size: 0.78rem;
    font-weight: 700;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    background: #fffbeb;
    transition: all 0.2s;
}
.ts-card:hover .ts-visit {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}
.ts-card:hover .ts-visit i {
    transform: translateX(3px);
}
.ts-visit i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

/* Trusted Sellers Responsive */
@media (max-width: 1024px) {
    .ts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ts-card { padding: 14px; gap: 12px; }
    .ts-avatar { width: 40px; height: 40px; border-radius: 10px; }
    .ts-info h4 { font-size: 0.78rem; }
    .ts-stat strong { font-size: 0.75rem; }
    .ts-stats { padding: 8px 6px; }
}
@media (max-width: 480px) {
    .ts-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .ts-card { padding: 12px; }
}

/* Marquee mobile */
@media (max-width: 768px) {
    .pro-partners { padding: 28px 0; }
    .pro-partners-title { font-size: 1.1rem; margin-bottom: 20px; }
    .pro-partner-card {
        min-width: 110px;
        padding: 14px 16px;
        gap: 8px;
    }
    .pro-partner-card i { font-size: 1.2rem; }
    .pro-partner-card strong { font-size: 0.7rem; }
    .pro-marquee-track { gap: 10px; animation-duration: 25s; }
}

/* ================================================================
   PRO STORE PAGE - Complete Redesign
   ================================================================ */

/* ---- Body ---- */
.st-body {
    background: #f6f7fb;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
    min-height: 100vh;
}

/* ---- Store Header ---- */
.st-header {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, rgba(var(--store-primary-rgb), 0.35) 100%);
    padding: 0;
    overflow: hidden;
}
.st-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--store-primary-rgb), 0.15), transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04), transparent 50%);
    pointer-events: none;
}
.st-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.st-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-back-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.st-back-link:hover { color: #fff; }
.st-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.st-cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}
.st-cart-btn:hover {
    background: rgba(255,255,255,0.18);
}
.st-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--store-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-auth-btn {
    padding: 8px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.st-auth-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Store Profile */
.st-store-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
}
.st-avatar {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    border: 3px solid rgba(255,255,255,0.15);
    background: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.st-avatar span {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}
.st-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.st-store-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.5px;
}
.st-store-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 10px;
    max-width: 500px;
    line-height: 1.5;
}
.st-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.st-store-meta i {
    margin-right: 4px;
    color: rgba(var(--store-primary-rgb), 0.8);
}

/* ---- Store Nav ---- */
.st-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 100;
    transition: box-shadow 0.3s;
}
.st-nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.st-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 52px;
    overflow-x: auto;
    scrollbar-width: none;
}
.st-nav-inner::-webkit-scrollbar { display: none; }
.st-nav-item {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 14px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.st-nav-item:hover {
    color: var(--store-primary);
}
.st-nav-item.active {
    color: var(--store-primary);
    border-bottom-color: var(--store-primary);
}
.st-nav-item i {
    font-size: 0.85rem;
}

/* ---- Flash Alert ---- */
.st-flash {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 0 24px;
}
.st-alert {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.st-alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.st-alert-danger { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ---- Main Content ---- */
.st-main {
    min-height: 60vh;
}

/* Banner */
.st-banner {
    position: relative;
    max-height: 280px;
    overflow: hidden;
}
.st-banner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.st-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

/* Content Area */
.st-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 64px;
}

/* Store Info Strip */
.st-info-strip {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}
.st-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.25s;
}
.st-info-item:hover {
    border-color: rgba(var(--store-primary-rgb), 0.25);
    box-shadow: 0 4px 16px rgba(var(--store-primary-rgb), 0.08);
    transform: translateY(-2px);
}
.st-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--store-primary) 10%, transparent);
    color: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 4px;
}
.st-info-item strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}
.st-info-item small {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Stats Strip */
.st-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.st-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.2s;
}
.st-stat-item:hover {
    border-color: rgba(var(--store-primary-rgb), 0.3);
    box-shadow: 0 4px 16px rgba(var(--store-primary-rgb), 0.08);
}
.st-stat-item i {
    font-size: 1.1rem;
    color: var(--store-primary);
}
.st-stat-item strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}
.st-stat-item span {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Section Head */
.st-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}
.st-section-head h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}
.st-section-head p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 2px 0 0;
}
.st-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--store-primary);
    color: var(--store-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.st-link-btn:hover {
    background: var(--store-primary);
    color: #fff;
}

/* Empty State */
.st-empty {
    text-align: center;
    padding: 64px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}
.st-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #94a3b8;
}
.st-empty h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #334155;
    margin: 0 0 6px;
}
.st-empty p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin: 0;
}

/* ---- Product Grid ---- */
.st-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Product Card */
.st-pcard {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.st-pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
}
.st-pcard-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
}
.st-pcard-img {
    position: relative;
    aspect-ratio: 1;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.st-pcard-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.st-pcard:hover .st-pcard-img img {
    transform: scale(1.06);
}
.st-pcard-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.st-pcard-noimg i {
    font-size: 2.5rem;
    color: #cbd5e1;
}
.st-pcard-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    background: #dc2626;
}
.st-pcard-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}
.st-pcard-rating i { color: #fbbf24; font-size: 0.6rem; }
.st-pcard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.st-pcard:hover .st-pcard-overlay {
    opacity: 1;
}
.st-pcard-view {
    padding: 10px 20px;
    background: #fff;
    color: #0f172a;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s;
}
.st-pcard:hover .st-pcard-view {
    transform: translateY(0);
    opacity: 1;
}
.st-pcard-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.st-pcard-cat {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--store-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.st-pcard-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.st-pcard:hover .st-pcard-name {
    color: var(--store-primary);
}
.st-pcard-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}
.st-pcard-now {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}
.st-pcard-old {
    font-size: 0.78rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.st-pcard-reviews {
    font-size: 0.68rem;
    color: #94a3b8;
    margin-top: 2px;
}
.st-pcard-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: var(--store-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s;
    width: 100%;
    border-top: 1px solid #f1f5f9;
}
.st-pcard-cart:hover {
    filter: brightness(1.1);
}
.st-pcard-cart:active {
    transform: scale(0.97);
}

/* ---- Store Footer ---- */
.st-footer {
    background: #0f172a;
    padding: 40px 0;
}
.st-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.st-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}
.st-footer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.st-footer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.st-footer-avatar span {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
}
.st-footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.st-footer-brand p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}
.st-footer-brand p a {
    color: var(--store-primary);
    text-decoration: none;
}
.st-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.st-footer-links span,
.st-footer-links a {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.st-footer-links a:hover { color: #fff; }
.st-footer-copy {
    font-size: 0.72rem;
    color: #475569;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}

/* ================================================================
   STORE RESPONSIVE - Tablet
   ================================================================ */
@media (max-width: 1024px) {
    .st-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .st-store-name { font-size: 1.5rem; }
}

/* ================================================================
   STORE RESPONSIVE - Mobile
   ================================================================ */
@media (max-width: 768px) {
    .st-store-profile {
        flex-direction: column;
        text-align: center;
        padding: 24px 0;
    }
    .st-store-meta {
        justify-content: center;
    }
    .st-store-name { font-size: 1.3rem; }
    .st-store-desc { font-size: 0.82rem; }
    .st-avatar {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .st-content {
        padding: 16px 16px 48px;
    }

    .st-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }
    .st-stat-item {
        padding: 14px 10px;
    }

    .st-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .st-pcard-img {
        padding: 12px;
    }
    .st-pcard-body {
        padding: 10px 12px 8px;
    }
    .st-pcard-name {
        font-size: 0.78rem;
    }
    .st-pcard-now {
        font-size: 1rem;
    }
    .st-pcard-cart {
        padding: 10px;
        font-size: 0.75rem;
    }

    .st-section-head h2 {
        font-size: 1.1rem;
    }

    .st-banner img {
        height: 180px;
    }

    .st-footer-links {
        gap: 16px;
    }
}

/* ================================================================
   STORE RESPONSIVE - Small Mobile
   ================================================================ */
@media (max-width: 480px) {
    .st-header-top {
        padding: 10px 0;
    }
    .st-store-name { font-size: 1.15rem; }
    .st-avatar {
        width: 60px;
        height: 60px;
    }
    .st-pcard-body {
        padding: 8px 10px 6px;
    }
    .st-pcard-name { font-size: 0.72rem; }
    .st-pcard-now { font-size: 0.9rem; }
    .st-pcard-cat { font-size: 0.6rem; }
}

/* ================================================================
   STORE - Modern Real-World Design
   ================================================================ */

:root {
    --st-radius: 16px;
    --st-radius-sm: 10px;
    --st-radius-xs: 6px;
    --st-shadow: 0 2px 16px rgba(0,0,0,0.06);
    --st-shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --st-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

.st-body {
    background: #f4f6f9;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ---- Top Bar ---- */
.st-topbar {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 500;
}
.st-topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}
.st-topbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: color 0.2s;
}
.st-topbar-brand:hover { color: #fff; }
.st-topbar-actions { display: flex; align-items: center; gap: 4px; }
.st-topbar-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
}
.st-topbar-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.st-topbar-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--store-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ---- Store Header / Hero ---- */
.st-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, rgba(var(--store-primary-rgb), 0.25) 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 48px;
}
.st-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.st-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(var(--store-primary-rgb), 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 20%, rgba(var(--store-primary-rgb), 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.st-hero-content {
    display: flex;
    justify-content: center;
}
.st-hero-store-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 800px;
    width: 100%;
}
.st-hero-left {
    flex-shrink: 0;
}
.st-hero-avatar {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(var(--store-primary-rgb), 0.25), 0 8px 32px rgba(0,0,0,0.3);
}
.st-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.st-hero-avatar span { font-size: 2.4rem; font-weight: 900; color: #fff; }
.st-hero-right { flex: 1; min-width: 0; }
.st-hero-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.st-hero-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.st-hero-verified i { font-size: 0.65rem; }
.st-hero-rank {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.st-hero-rank.rank-gold { background: rgba(250,204,21,0.12); color: #fbbf24; }
.st-hero-rank.rank-silver { background: rgba(148,163,184,0.12); color: #94a3b8; }
.st-hero-rank.rank-bronze { background: rgba(180,120,60,0.12); color: #b4783c; }
.st-hero-name {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.st-hero-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 14px;
    line-height: 1.6;
    max-width: 520px;
}
.st-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.st-hero-meta span { display: flex; align-items: center; gap: 5px; }
.st-hero-meta i { color: rgba(var(--store-primary-rgb), 0.9); font-size: 0.75rem; }
.st-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.st-hero-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.st-hero-share-btn:hover { background: rgba(255,255,255,0.18); }
.st-hero-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #25D366;
    border: none;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.st-hero-wa-btn:hover { background: #20bd5a; transform: translateY(-1px); }

/* ---- Store Nav ---- */
.st-nav {
    background: #fff;
    border-bottom: 1px solid #e8eaf0;
    position: sticky;
    top: 52px;
    z-index: 400;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.st-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 50px;
    overflow-x: auto;
    scrollbar-width: none;
}
.st-nav-inner::-webkit-scrollbar { display: none; }
.st-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--st-radius-xs);
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
.st-nav-item:hover { color: var(--store-primary); background: rgba(var(--store-primary-rgb), 0.05); }
.st-nav-item.active { color: var(--store-primary); border-bottom-color: var(--store-primary); background: rgba(var(--store-primary-rgb), 0.05); }
.st-nav-item i { font-size: 0.8rem; }
.st-nav-sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ---- Flash ---- */
.st-flash {
    max-width: 1240px;
    margin: 16px auto 0;
    padding: 0 20px;
}
.st-alert {
    padding: 12px 18px;
    border-radius: var(--st-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.st-alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.st-alert-danger { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ---- Main Content ---- */
.st-main { min-height: 60vh; }
.st-content { padding: 0 0 60px; }

/* ---- Stats Strip ---- */
.st-stats-section {
    background: #fff;
    border-bottom: 1px solid #e8eaf0;
    padding: 20px 0;
}
.st-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.st-stats-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafb;
    border-radius: var(--st-radius-sm);
    border: 1px solid #eef0f4;
    transition: all 0.25s;
}
.st-stats-card:hover {
    border-color: rgba(var(--store-primary-rgb), 0.3);
    box-shadow: var(--st-shadow);
    transform: translateY(-1px);
}
.st-stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--store-primary-rgb), 0.1);
    color: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.st-stats-icon.verified { color: #059669; background: rgba(5,150,105,0.1); }
.st-stats-data strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}
.st-stats-data span {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ---- Products Section ---- */
.st-products-section { padding: 32px 0 0; }
.st-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.st-section-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--store-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.st-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 2px;
    letter-spacing: -0.3px;
}
.st-section-sub {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
}
.st-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--st-radius-xs);
    border: 1.5px solid var(--store-primary);
    color: var(--store-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.st-btn-back:hover { background: var(--store-primary); color: #fff; }

/* ---- Empty State ---- */
.st-empty-state {
    text-align: center;
    padding: 72px 24px;
    background: #fff;
    border-radius: var(--st-radius);
    border: 1px solid #eef0f4;
}
.st-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.st-empty-state h3 { font-size: 1.1rem; font-weight: 700; color: #475569; margin: 0 0 6px; }
.st-empty-state p { font-size: 0.88rem; color: #94a3b8; margin: 0; }

/* ---- Product Grid ---- */
.st-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ---- Product Card ---- */
.st-product-card {
    background: #fff;
    border-radius: var(--st-radius);
    border: 1px solid #eef0f4;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.st-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--st-shadow-lg);
    border-color: transparent;
}
.st-product-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.st-product-img {
    position: relative;
    aspect-ratio: 1;
    background: #f8fafb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.st-product-card:hover .st-product-img img { transform: scale(1.04); }
.st-product-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e2e8f0;
    font-size: 2.5rem;
}
.st-product-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
}
.st-product-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.st-product-rating i { color: #fbbf24; font-size: 0.6rem; }
.st-product-info {
    padding: 14px 16px 10px;
    flex: 1;
}
.st-product-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--store-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.st-product-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.st-product-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}
.st-product-price-current {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
}
.st-product-price-original {
    font-size: 0.78rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.st-product-reviews {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    margin-top: 4px;
}
.st-product-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 12px;
    background: var(--store-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s;
    font-family: inherit;
}
.st-product-cart:hover { filter: brightness(1.08); }
.st-product-cart:active { transform: scale(0.98); }

/* ---- Search Overlay ---- */
.st-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.st-search-overlay.active { opacity: 1; pointer-events: all; }
.st-search-container {
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}
.st-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.st-search-box > i { color: #94a3b8; font-size: 1rem; flex-shrink: 0; }
.st-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: #1a1a2e;
}
.st-search-box input::placeholder { color: #94a3b8; }
.st-search-box button {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color 0.2s;
}
.st-search-box button:hover { color: #1a1a2e; }
.st-search-results {
    background: #fff;
    border-radius: 16px;
    margin-top: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-height: 420px;
    overflow-y: auto;
}
.st-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1a1a2e;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s;
}
.st-search-item:last-child { border-bottom: none; }
.st-search-item:hover { background: #f8fafb; }
.st-search-item img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f5f9;
    flex-shrink: 0;
}
.st-search-item div { flex: 1; min-width: 0; }
.st-search-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.st-search-item span { font-size: 0.78rem; color: var(--store-primary); font-weight: 600; }
.st-search-item > i { color: #cbd5e1; font-size: 0.8rem; }
.st-search-loading, .st-search-empty {
    padding: 28px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
}
.st-search-empty i { display: block; font-size: 1.5rem; margin-bottom: 8px; }

/* ---- Toast ---- */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #0f172a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 0.9rem; }
.toast-success i { color: #34d399; }
.toast-info i { color: #60a5fa; }

/* ---- Footer ---- */
.st-footer {
    background: #0f172a;
    padding: 40px 0 24px;
    margin-top: 48px;
}
.st-footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.st-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.st-footer-brand { display: flex; align-items: center; gap: 14px; }
.st-footer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--store-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.st-footer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.st-footer-avatar span { font-size: 1.1rem; font-weight: 900; color: #fff; }
.st-footer-brand h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 3px; }
.st-footer-brand p { font-size: 0.78rem; color: #64748b; margin: 0; }
.st-footer-brand p a { color: var(--store-primary); text-decoration: none; }
.st-footer-contact { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.st-footer-contact a, .st-footer-contact span {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.st-footer-contact a:hover { color: #fff; }
.st-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.st-footer-copy { font-size: 0.75rem; color: #475569; }
.st-footer-social a {
    font-size: 0.75rem;
    color: var(--store-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.st-footer-social a:hover { color: #fff; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--store-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(var(--store-primary-rgb), 0.3);
}
.back-to-top.show { opacity: 1; pointer-events: all; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .st-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .st-hero-name { font-size: 1.4rem; }
    .st-hero-store-card { gap: 18px; }
    .st-hero-avatar { width: 72px; height: 72px; border-radius: 16px; }
    .st-hero-avatar span { font-size: 1.8rem; }
    .st-hero-desc { display: none; }
    .st-hero-actions { flex-direction: row; }
    .st-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .st-stats-card { padding: 12px; }
    .st-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .st-section-header { flex-direction: column; align-items: flex-start; }
    .st-footer-top { flex-direction: column; }
}
@media (max-width: 480px) {
    .st-hero-name { font-size: 1.2rem; }
    .st-hero-meta { display: none; }
    .st-hero-avatar { width: 60px; height: 60px; border-radius: 14px; }
    .st-hero-avatar span { font-size: 1.5rem; }
    .st-hero-actions { flex-wrap: wrap; }
    .st-product-grid { gap: 8px; }
}

/* Reveal */
.lp-reveal { opacity:0; transform:translateY(28px); transition:opacity .55s cubic-bezier(.4,0,.2,1),transform .55s cubic-bezier(.4,0,.2,1); }
.lp-visible { opacity:1!important; transform:translateY(0)!important; }
.lp-section { padding:56px 0; }

/* ---- HERO ---- */
.lp-hero { position:relative; width:100%; background:#0a0a0a; overflow:hidden; }
.lp-hero-slider { position:relative; min-height:520px; }
.lp-hero-slide { position:absolute; inset:0; opacity:0; transition:opacity .7s ease; z-index:0; }
.lp-hero-slide.active { opacity:1; z-index:1; position:relative; }
.lp-hero-img { width:100%; height:520px; object-fit:cover; display:block; }
.lp-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.65),rgba(0,0,0,.3)); }
.lp-hero-grad { width:100%; min-height:520px; position:relative; }
.lp-hero-grad-0 { background:linear-gradient(135deg,#0f172a 0%,#0078ad 50%,#00b4d8 100%); }
.lp-hero-grad-1 { background:linear-gradient(135deg,#1e1b4b 0%,#7c3aed 50%,#a78bfa 100%); }
.lp-hero-grad-2 { background:linear-gradient(135deg,#052e16 0%,#059669 50%,#34d399 100%); }
.lp-hero-body { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:48px 24px; color:#fff; z-index:2; }
.lp-hero-chip { display:inline-block; background:rgba(255,255,255,.15); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.2); border-radius:50px; padding:7px 22px; font-size:.75rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; }
.lp-hero-chip i { margin-right:6px; }
.lp-hero-body h1 { font-size:3.2rem; font-weight:900; line-height:1.12; margin:0 0 16px; max-width:720px; text-shadow:0 2px 20px rgba(0,0,0,.2); }
.lp-hero-body p { font-size:1.12rem; opacity:.88; margin:0 0 32px; max-width:560px; line-height:1.6; }
.lp-hero-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }

/* Buttons */
.lp-btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:50px; font-weight:700; font-size:.95rem; text-decoration:none; transition:all .25s; cursor:pointer; border:2px solid transparent; }
.lp-btn-white { background:#fff; color:#111; border-color:#fff; }
.lp-btn-white:hover { background:#f0f0f0; transform:translateY(-2px); box-shadow:0 6px 24px rgba(0,0,0,.15); }
.lp-btn-ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.lp-btn-ghost:hover { background:rgba(255,255,255,.1); border-color:#fff; }
.lp-btn-primary { background:#0078ad; color:#fff; border-color:#0078ad; }
.lp-btn-primary:hover { background:#005f8a; border-color:#005f8a; transform:translateY(-2px); box-shadow:0 4px 16px rgba(0,120,173,.3); }

/* Hero arrows & dots */
.lp-hero-arr { position:absolute; top:50%; transform:translateY(-50%); z-index:5; width:48px; height:48px; border-radius:50%; border:none; background:rgba(255,255,255,.15); backdrop-filter:blur(8px); color:#fff; font-size:1rem; cursor:pointer; transition:all .2s; display:flex; align-items:center; justify-content:center; }
.lp-hero-arr:hover { background:rgba(255,255,255,.3); }
.lp-hero-prev { left:20px; }
.lp-hero-next { right:20px; }
.lp-hero-dots { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:5; }
.lp-dot { width:10px; height:10px; border-radius:50%; border:2px solid rgba(255,255,255,.5); background:transparent; cursor:pointer; padding:0; transition:all .25s; }
.lp-dot.active { background:#fff; border-color:#fff; width:30px; border-radius:10px; }

/* ---- STATS BAR ---- */
.lp-stats-bar { background:#fff; border-bottom:1px solid #e5e7eb; padding:22px 0; }
.lp-stats-row { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; }
.lp-stat { text-align:center; padding:8px 36px; }
.lp-stat strong { display:block; font-size:1.8rem; font-weight:900; color:#111; line-height:1; }
.lp-stat span { font-size:.78rem; color:#6b7280; font-weight:500; }
.lp-stat-sep { width:1px; height:40px; background:#e5e7eb; }

/* ---- SECTION HEADERS ---- */
.lp-sec-head { text-align:center; margin-bottom:36px; }
.lp-sec-chip { display:inline-block; background:#eff6ff; color:#0078ad; font-size:.72rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; padding:5px 16px; border-radius:50px; margin-bottom:12px; }
.lp-sec-head h2 { font-size:2rem; font-weight:900; color:#111; margin:0 0 10px; }
.lp-sec-head p { font-size:1rem; color:#6b7280; max-width:600px; margin:0 auto; line-height:1.6; }
.lp-sec-cta { text-align:center; margin-top:32px; }

/* ---- CATEGORIES GRID ---- */
.lp-categories { background:#f8f9fa; }
.lp-cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:16px; }
.lp-cat-card { display:flex; flex-direction:column; align-items:center; gap:10px; background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:24px 12px 18px; text-decoration:none; transition:all .25s; text-align:center; }
.lp-cat-card:hover { border-color:var(--cc); box-shadow:0 8px 24px color-mix(in srgb,var(--cc) 15%,transparent); transform:translateY(-4px); }
.lp-cat-icon { width:56px; height:56px; border-radius:50%; background:color-mix(in srgb,var(--cc) 10%,white); color:var(--cc); display:flex; align-items:center; justify-content:center; font-size:1.4rem; transition:all .25s; }
.lp-cat-card:hover .lp-cat-icon { background:var(--cc); color:#fff; }
.lp-cat-card h4 { font-size:.82rem; font-weight:700; color:#111; margin:0; line-height:1.2; }
.lp-cat-count { font-size:.68rem; color:#9ca3af; }
.lp-cat-subs { font-size:.66rem; color:#6b7280; max-width:130px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* ---- HOW IT WORKS ---- */
.lp-how { background:#fff; }
.lp-how-grid { display:flex; align-items:flex-start; justify-content:center; gap:0; flex-wrap:wrap; }
.lp-how-step { text-align:center; max-width:240px; padding:20px; position:relative; }
.lp-how-num { position:absolute; top:12px; right:12px; width:28px; height:28px; border-radius:50%; background:#eff6ff; color:#0078ad; font-size:.75rem; font-weight:800; display:flex; align-items:center; justify-content:center; }
.lp-how-icon { width:72px; height:72px; border-radius:20px; background:#eff6ff; color:#0078ad; display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 16px; }
.lp-how-green { background:#ecfdf5; color:#059669; }
.lp-how-amber { background:#fffbeb; color:#d97706; }
.lp-how-step h4 { font-size:1rem; font-weight:700; color:#111; margin:0 0 8px; }
.lp-how-step p { font-size:.84rem; color:#6b7280; margin:0; line-height:1.5; }
.lp-how-arrow { display:flex; align-items:center; padding-top:40px; color:#d1d5db; font-size:1.2rem; }

/* ---- OFFERS GRID ---- */
.lp-offers { background:#f8f9fa; }
.lp-offer-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.lp-offer-card { display:block; border-radius:16px; overflow:hidden; text-decoration:none; color:#fff; position:relative; min-height:180px; transition:all .25s; }
.lp-offer-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.15); }
.lp-offer-blue { background:linear-gradient(135deg,#0078ad,#00b4d8); }
.lp-offer-orange { background:linear-gradient(135deg,#f59e0b,#f97316); }
.lp-offer-green { background:linear-gradient(135deg,#059669,#34d399); }
.lp-offer-purple { background:linear-gradient(135deg,#7c3aed,#a78bfa); }
.lp-offer-img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.lp-offer-body { position:relative; z-index:1; padding:28px; }
.lp-offer-code { display:inline-block; background:rgba(255,255,255,.2); border-radius:4px; padding:3px 10px; font-size:.7rem; font-weight:700; letter-spacing:1px; margin-bottom:8px; }
.lp-offer-body h3 { font-size:1.3rem; font-weight:800; margin:0 0 6px; }
.lp-offer-body p { font-size:.84rem; opacity:.85; margin:0 0 14px; }
.lp-offer-link { font-size:.82rem; font-weight:700; display:inline-flex; align-items:center; gap:6px; }

/* ---- PARTNER SECTION ---- */
.lp-partners-section { background:#fff; }
.lp-partner-tabs { display:flex; justify-content:center; gap:6px; margin-bottom:32px; flex-wrap:wrap; }
.lp-ptab { display:flex; align-items:center; gap:6px; padding:10px 20px; border-radius:50px; border:2px solid #e5e7eb; background:#fff; font-size:.84rem; font-weight:600; color:#6b7280; cursor:pointer; transition:all .2s; }
.lp-ptab:hover { border-color:#0078ad; color:#0078ad; }
.lp-ptab.active { background:#0078ad; color:#fff; border-color:#0078ad; }
.lp-ptab i { font-size:.9rem; }
.lp-ptab-content { display:none; }
.lp-ptab-content.active { display:block; animation:lpFadeIn .4s ease; }
@keyframes lpFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* Partner Hero (inside tab) */
.lp-partner-hero { display:flex; gap:40px; align-items:center; margin-bottom:36px; }
.lp-partner-info { flex:1; }
.lp-partner-badge { display:inline-flex; align-items:center; gap:8px; background:color-mix(in srgb,var(--pc) 10%,white); color:var(--pc); padding:6px 16px; border-radius:50px; font-size:.75rem; font-weight:700; margin-bottom:14px; }
.lp-partner-info h3 { font-size:1.6rem; font-weight:900; color:#111; margin:0 0 12px; line-height:1.2; }
.lp-partner-info>p { font-size:.95rem; color:#6b7280; line-height:1.6; margin:0 0 20px; }
.lp-partner-highlights { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.lp-ph { display:flex; align-items:center; gap:8px; font-size:.84rem; font-weight:500; color:#333; }
.lp-ph i { color:#059669; font-size:.8rem; }
.lp-partner-visual { flex-shrink:0; }
.lp-pv-icon { width:180px; height:180px; border-radius:50%; background:color-mix(in srgb,var(--pc) 8%,white); border:2px solid color-mix(in srgb,var(--pc) 15%,white); display:flex; align-items:center; justify-content:center; font-size:4rem; color:var(--pc); }
.lp-partner-cta { text-align:center; margin-top:28px; padding-top:24px; border-top:1px solid #f0f0f0; }

/* Plans Grid */
.lp-plans-title { font-size:1.1rem; font-weight:800; color:#111; margin:0 0 20px; text-align:center; }
.lp-plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:20px; }
.lp-plans-grid.lp-plans-4 { grid-template-columns:repeat(4,1fr); }
.lp-plan-card { background:#fff; border:2px solid #e5e7eb; border-radius:18px; padding:28px 22px; text-align:center; transition:all .25s; position:relative; }
.lp-plan-card:hover { border-color:var(--plc); box-shadow:0 8px 28px color-mix(in srgb,var(--plc) 15%,transparent); transform:translateY(-4px); }
.lp-plan-head { margin-bottom:16px; }
.lp-plan-head i { font-size:1.6rem; color:var(--plc); display:block; margin-bottom:8px; }
.lp-plan-head h4 { font-size:1rem; font-weight:800; color:#111; margin:0; }
.lp-plan-price { margin-bottom:4px; }
.lp-plan-amount { font-size:2rem; font-weight:900; color:#111; }
.lp-plan-period { font-size:.82rem; color:#6b7280; }
.lp-plan-yearly { font-size:.75rem; color:#9ca3af; margin-bottom:18px; }
.lp-plan-features { list-style:none; padding:0; margin:0 0 22px; text-align:left; }
.lp-plan-features li { font-size:.8rem; color:#4b5563; padding:5px 0; display:flex; align-items:center; gap:8px; border-bottom:1px solid #f5f5f5; }
.lp-plan-features li:last-child { border-bottom:none; }
.lp-plan-features i.fa-check { color:#059669; font-size:.7rem; }
.lp-plan-features i.fa-times { color:#d1d5db; font-size:.7rem; }
.lp-plan-btn { display:block; background:var(--plc); color:#fff; padding:11px 20px; border-radius:50px; font-weight:700; font-size:.84rem; text-decoration:none; transition:all .2s; }
.lp-plan-btn:hover { filter:brightness(1.1); transform:translateY(-1px); }

/* Ad Tier Cards */
.lp-ad-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; }
.lp-ad-card { background:#fff; border:2px solid #e5e7eb; border-radius:14px; padding:24px; text-align:center; transition:all .2s; }
.lp-ad-card:hover { border-color:var(--adc); }
.lp-ad-head { font-size:.88rem; font-weight:700; color:var(--adc); margin-bottom:10px; display:flex; align-items:center; justify-content:center; gap:6px; }
.lp-ad-price { font-size:1.8rem; font-weight:900; color:#111; margin-bottom:8px; }
.lp-ad-price small { font-size:.75rem; font-weight:500; color:#6b7280; }
.lp-ad-card p { font-size:.8rem; color:#6b7280; margin:0; line-height:1.5; }

/* More Partners Grid */
.lp-more-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:20px; }
.lp-more-card { background:#fff; border:2px solid #e5e7eb; border-radius:16px; padding:28px; text-align:center; transition:all .2s; }
.lp-more-card:hover { border-color:var(--mc); }
.lp-more-icon { width:56px; height:56px; border-radius:16px; background:color-mix(in srgb,var(--mc) 10%,white); color:var(--mc); display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin:0 auto 14px; }
.lp-more-card h4 { font-size:1rem; font-weight:800; color:#111; margin:0 0 8px; }
.lp-more-card p { font-size:.82rem; color:#6b7280; margin:0 0 14px; line-height:1.5; }
.lp-more-link { font-size:.82rem; font-weight:700; color:var(--mc); text-decoration:none; display:inline-flex; align-items:center; gap:4px; }

/* ---- COMMISSION VISUAL ---- */
.lp-commission { background:#f8f9fa; }
.lp-comm-visual { max-width:600px; margin:0 auto; }
.lp-comm-flow { text-align:center; }
.lp-comm-box { display:inline-flex; align-items:center; gap:10px; background:#111; color:#fff; padding:16px 32px; border-radius:14px; font-weight:700; margin-bottom:8px; }
.lp-comm-box i { font-size:1.2rem; }
.lp-comm-box strong { font-size:1rem; }
.lp-comm-box span { font-size:.78rem; opacity:.7; }
.lp-comm-arrow { font-size:1.4rem; color:#d1d5db; margin:8px 0; }
.lp-comm-splits { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:12px 0 20px; }
.lp-comm-split { background:#fff; border:2px solid color-mix(in srgb,var(--sc) 20%,white); border-radius:12px; padding:16px 10px; text-align:center; }
.lp-comm-amount { font-size:1.3rem; font-weight:900; color:var(--sc); }
.lp-comm-split strong { display:block; font-size:.82rem; color:#111; margin-top:4px; }
.lp-comm-split span { font-size:.7rem; color:#9ca3af; }
.lp-comm-note { background:#fff; border:1px solid #e5e7eb; border-radius:10px; padding:12px 20px; font-size:.78rem; color:#6b7280; display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap; }
.lp-comm-note i { color:#0078ad; }

/* ---- TESTIMONIALS ---- */
.lp-trust { background:#fff; }
.lp-testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:36px; }
.lp-test-card { background:#f8f9fa; border:1px solid #e5e7eb; border-radius:16px; padding:28px; }
.lp-test-stars { color:#f59e0b; font-size:.85rem; margin-bottom:14px; display:flex; gap:2px; }
.lp-test-card p { font-size:.9rem; color:#333; line-height:1.6; margin:0 0 18px; font-style:italic; }
.lp-test-author { display:flex; align-items:center; gap:12px; }
.lp-test-av { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:1rem; flex-shrink:0; }
.lp-test-author strong { display:block; font-size:.85rem; color:#111; }
.lp-test-author small { font-size:.72rem; color:#6b7280; }

/* Trust badges */
.lp-trust-badges { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; }
.lp-trust-badge { display:flex; align-items:center; gap:12px; }
.lp-trust-badge i { font-size:1.4rem; color:#0078ad; }
.lp-trust-badge strong { display:block; font-size:.85rem; color:#111; }
.lp-trust-badge span { font-size:.72rem; color:#6b7280; }

/* ---- FINAL CTA ---- */
.lp-final-cta { background:linear-gradient(135deg,#0f172a,#0078ad); padding:72px 0; }
.lp-fcta-box { text-align:center; color:#fff; }
.lp-fcta-box h2 { font-size:2.4rem; font-weight:900; margin:0 0 12px; }
.lp-fcta-box p { font-size:1.05rem; opacity:.8; margin:0 0 32px; max-width:520px; margin-left:auto; margin-right:auto; }
.lp-fcta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---- NEWSLETTER ---- */
.lp-newsletter { background:#f8f9fa; }
.lp-nl-card { display:flex; align-items:center; gap:24px; background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:28px 36px; flex-wrap:wrap; }
.lp-nl-icon { width:52px; height:52px; border-radius:14px; background:#0078ad; color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; flex-shrink:0; }
.lp-nl-text { flex:1; min-width:200px; }
.lp-nl-text h3 { font-size:1.15rem; font-weight:800; color:#111; margin:0 0 4px; }
.lp-nl-text p { font-size:.85rem; color:#6b7280; margin:0; }
.lp-nl-form { display:flex; }
.lp-nl-form input { padding:12px 18px; border:2px solid #d1d5db; border-right:none; border-radius:50px 0 0 50px; font-size:.88rem; width:240px; outline:none; transition:border-color .2s; }
.lp-nl-form input:focus { border-color:#0078ad; }
.lp-nl-form button { background:#0078ad; color:#fff; border:none; padding:12px 24px; border-radius:0 50px 50px 0; font-weight:700; font-size:.88rem; cursor:pointer; white-space:nowrap; transition:background .2s; display:flex; align-items:center; gap:6px; }
.lp-nl-form button:hover { background:#005f8a; }

/* ---- MOBILE NAV ---- */
.lp-mob-nav { display:none; position:fixed; bottom:0; left:0; right:0; background:#fff; border-top:1px solid #e5e7eb; z-index:999; padding:6px 0 env(safe-area-inset-bottom,4px); justify-content:space-around; }
.lp-mn { display:flex; flex-direction:column; align-items:center; gap:2px; font-size:.62rem; font-weight:600; color:#6b7280; text-decoration:none; padding:6px 8px; }
.lp-mn i { font-size:1.15rem; }
.lp-mn.active,.lp-mn:hover { color:#0078ad; }

/* ---- RESPONSIVE ---- */
@media(max-width:1024px) {
    .lp-plans-grid { grid-template-columns:repeat(3,1fr); }
    .lp-plans-grid.lp-plans-4 { grid-template-columns:repeat(2,1fr); }
    .lp-partner-hero { gap:24px; }
    .lp-pv-icon { width:140px; height:140px; font-size:3rem; }
}
@media(max-width:768px) {
    .lp-hero-slider { min-height:400px; }
    .lp-hero-img { height:400px; }
    .lp-hero-grad { min-height:400px; }
    .lp-hero-body h1 { font-size:2rem; }
    .lp-hero-body p { font-size:.92rem; }
    .lp-hero-arr { width:38px; height:38px; font-size:.85rem; }
    .lp-btn { padding:12px 24px; font-size:.88rem; }
    .lp-section { padding:36px 0; }
    .lp-sec-head h2 { font-size:1.5rem; }
    .lp-stat strong { font-size:1.4rem; }
    .lp-stat { padding:8px 20px; }
    .lp-cat-grid { grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:10px; }
    .lp-cat-card { padding:16px 8px 14px; }
    .lp-how-arrow { display:none; }
    .lp-how-grid { gap:16px; }
    .lp-offer-grid { grid-template-columns:1fr; }
    .lp-partner-hero { flex-direction:column; text-align:center; }
    .lp-partner-highlights { grid-template-columns:1fr; text-align:left; }
    .lp-pv-icon { width:100px; height:100px; font-size:2.4rem; }
    .lp-plans-grid,.lp-plans-grid.lp-plans-4 { grid-template-columns:1fr; max-width:360px; margin-left:auto; margin-right:auto; }
    .lp-ad-grid { grid-template-columns:1fr; max-width:320px; margin-left:auto; margin-right:auto; }
    .lp-more-grid { grid-template-columns:1fr; }
    .lp-comm-splits { grid-template-columns:repeat(2,1fr); }
    .lp-testimonial-grid { grid-template-columns:1fr; }
    .lp-trust-badges { gap:20px; }
    .lp-fcta-box h2 { font-size:1.6rem; }
    .lp-nl-card { flex-direction:column; text-align:center; padding:24px 20px; }
    .lp-nl-form { width:100%; }
    .lp-nl-form input { width:100%; min-width:0; }
    .lp-ptab { padding:8px 14px; font-size:.76rem; }
    .lp-partner-info h3 { font-size:1.2rem; }
    .lp-mob-nav { display:flex; }
    .lp-newsletter { padding-bottom:80px; }
}
@media(max-width:480px) {
    .lp-hero-slider { min-height:340px; }
    .lp-hero-img { height:340px; }
    .lp-hero-grad { min-height:340px; }
    .lp-hero-body h1 { font-size:1.6rem; }
    .lp-hero-chip { font-size:.65rem; padding:5px 14px; }
    .lp-stat strong { font-size:1.2rem; }
    .lp-stat { padding:6px 12px; }
    .lp-stat-sep { height:28px; }
    .lp-cat-icon { width:44px; height:44px; font-size:1.1rem; }
    .lp-cat-card h4 { font-size:.72rem; }
}
