/* ═══════════════════════════════════════════════════════════════
   ESHOPYNAKLUC.SK - Design System v4 LIGHT
   Clean white + purple/blue gradient accents
   Inspired by instaprepodnik.sk, Linear — 2026 premium light design
   Mobile-first responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Backgrounds — LIGHT */
    --eweby-bg: #ffffff;
    --eweby-surface: #ffffff;
    --eweby-surface-hover: #f8fafc;
    --eweby-surface-border: rgba(0, 0, 0, 0.08);
    --eweby-bg-alt: #f4f1fe;

    /* Brand — purple/violet gradient */
    --eweby-primary: #7c3aed;
    --eweby-primary-light: #8b5cf6;
    --eweby-secondary: #2563eb;
    --eweby-accent: #f59e0b;
    --eweby-danger: #ef4444;

    /* Gradients */
    --eweby-primary-gradient: linear-gradient(135deg, #7c3aed, #2563eb);
    --eweby-gradient: linear-gradient(135deg, #7c3aed, #8b5cf6, #2563eb);
    --eweby-gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
    --eweby-gradient-hero: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #06b6d4 100%);
    --eweby-gradient-cool: linear-gradient(135deg, #06b6d4, #2563eb);

    /* Text — DARK on light */
    --eweby-text: #0f172a;
    --eweby-text-muted: #475569;
    --eweby-text-dim: #94a3b8;

    /* Status */
    --eweby-success: #22c55e;
    --eweby-warning: #f59e0b;

    /* Typography — Syne for bold expressive headings */
    --eweby-font-heading: 'Syne', 'Inter', sans-serif;
    --eweby-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --eweby-radius: 16px;
    --eweby-radius-lg: 24px;
    --eweby-radius-sm: 10px;
    --eweby-container: 1200px;

    /* Shadows — soft light-mode shadows */
    --eweby-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --eweby-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --eweby-glow: 0 0 30px rgba(124, 58, 237, 0.08);

    /* Niche accent colors */
    --niche-fitness: #22c55e;
    --niche-beauty: #ec4899;
    --niche-kids: #f59e0b;
    --niche-tech: #3b82f6;
    --niche-home: #f97316;
    --niche-eco: #10b981;
    --niche-pets: #a855f7;
    --niche-auto: #ef4444;
    --niche-garden: #84cc16;
    --niche-travel: #06b6d4;
}


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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: var(--eweby-bg);
    font-family: var(--eweby-font-body);
    color: var(--eweby-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--eweby-primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--eweby-primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--eweby-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--eweby-text);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); letter-spacing: -0.02em; font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--eweby-text-muted); }

::selection {
    background: rgba(124, 58, 237, 0.15);
    color: var(--eweby-text);
}

/* ─── Aurora / Mesh Gradient Backgrounds ─────────────────────── */
.eweby-hero {
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}
.eweby-hero::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    filter: blur(60px);
    animation: aurora-drift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
.eweby-hero > * { position: relative; z-index: 1; }

@keyframes aurora-drift {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    33%  { transform: translate(20px, -30px) rotate(3deg) scale(1.03); }
    66%  { transform: translate(-15px, 15px) rotate(-2deg) scale(0.98); }
    100% { transform: translate(30px, -20px) rotate(4deg) scale(1.01); }
}

/* Geometric shapes decoration */
.eweby-section { position: relative; }
.eweby-section--decorated::before,
.eweby-section--decorated::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
}
.eweby-section--decorated::before {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    top: -100px; right: -100px;
}
.eweby-section--decorated::after {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    bottom: -80px; left: -80px;
}

/* Alt background sections */
.eweby-section--dark {
    background: var(--eweby-bg-alt);
}

/* True dark sections */
.eweby-section--footer {
    background: #0f172a;
    color: #f1f5f9;
}
.eweby-section--footer p,
.eweby-section--footer span {
    color: #94a3b8;
}

/* ─── Colorful Feature Cards ─────────────────────────────────── */
.eweby-feature-card--purple { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); color: #fff; }
.eweby-feature-card--blue { background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%); color: #fff; }
.eweby-feature-card--pink { background: linear-gradient(135deg, #ec4899 0%, #f9a8d4 100%); color: #fff; }
.eweby-feature-card--teal { background: linear-gradient(135deg, #0d9488 0%, #5eead4 100%); color: #fff; }
.eweby-feature-card--orange { background: linear-gradient(135deg, #f97316 0%, #fdba74 100%); color: #fff; }
.eweby-feature-card--green { background: linear-gradient(135deg, #16a34a 0%, #86efac 100%); color: #fff; }
.eweby-feature-card--indigo { background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%); color: #fff; }
.eweby-feature-card--rose { background: linear-gradient(135deg, #e11d48 0%, #fda4af 100%); color: #fff; }

.eweby-feature-card--purple *,
.eweby-feature-card--blue *,
.eweby-feature-card--pink *,
.eweby-feature-card--teal *,
.eweby-feature-card--orange *,
.eweby-feature-card--green *,
.eweby-feature-card--indigo *,
.eweby-feature-card--rose * {
    color: #fff !important;
}

[class*="eweby-feature-card--"] {
    border-radius: var(--eweby-radius-lg);
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[class*="eweby-feature-card--"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

/* ─── Bento Grid Layout ──────────────────────────────────────── */
.eweby-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.eweby-bento--wide { grid-column: span 2; }
.eweby-bento--tall { grid-row: span 2; }
@media (max-width: 768px) {
    .eweby-bento {
        grid-template-columns: 1fr;
    }
    .eweby-bento--wide,
    .eweby-bento--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ─── Layout ────────────────────────────────────────────────── */
.eweby-container {
    max-width: var(--eweby-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.eweby-section {
    padding: 80px 0;
    position: relative;
}

.eweby-section--dark {
    background: var(--eweby-surface);
}

.eweby-section--alt {
    background: linear-gradient(180deg, var(--eweby-bg) 0%, var(--eweby-surface) 100%);
}

.eweby-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.eweby-section__header h2 {
    margin-bottom: 16px;
}

.eweby-section__header p {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
}

.eweby-section-footer {
    text-align: center;
    margin-top: 40px;
}


/* ─── Card (light mode) ─────────────────────────────────────── */
.eweby-glass {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--eweby-radius);
    box-shadow: var(--eweby-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eweby-glass:hover {
    box-shadow: var(--eweby-shadow-lg);
    transform: translateY(-6px);
}


/* ─── Gradient Text ─────────────────────────────────────────── */
.eweby-gradient-text {
    background: var(--eweby-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a { color: var(--eweby-primary); }
a:hover { color: var(--eweby-primary-light); }


/* ─── Buttons ───────────────────────────────────────────────── */
.eweby-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--eweby-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.eweby-btn--primary {
    background: var(--eweby-primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}

.eweby-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
    color: #fff;
}

.eweby-btn--secondary {
    background: var(--eweby-gradient-warm);
    color: #fff;
}

.eweby-btn--secondary:hover {
    transform: translateY(-2px);
    color: #fff;
}

.eweby-btn--ghost {
    background: transparent;
    color: var(--eweby-text);
    border: 2px solid rgba(0, 0, 0, 0.12);
}

.eweby-btn--ghost:hover {
    border-color: var(--eweby-primary);
    color: var(--eweby-primary);
    background: rgba(124, 58, 237, 0.04);
}

.eweby-btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.eweby-btn--xl { padding: 20px 48px; font-size: 1.15rem; }
.eweby-btn--sm { padding: 8px 18px; font-size: 0.85rem; }

.eweby-btn svg { flex-shrink: 0; }

.eweby-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--eweby-primary-light);
    transition: gap 0.3s, color 0.3s;
}

.eweby-link:hover {
    gap: 10px;
    color: var(--eweby-primary);
}


/* ─── Tags ──────────────────────────────────────────────────── */
.eweby-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--eweby-primary);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.eweby-tag--sm { padding: 2px 8px; font-size: 0.75rem; }

.eweby-tag--accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--eweby-accent);
    border-color: rgba(245, 158, 11, 0.15);
}


/* ─── Top Bar ───────────────────────────────────────────────── */
.eweby-topbar {
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}

.eweby-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eweby-topbar__contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.eweby-topbar__link {
    color: var(--eweby-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.eweby-topbar__link:hover { color: var(--eweby-primary); }

.eweby-topbar__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.eweby-topbar__social a {
    color: var(--eweby-text-dim);
    transition: color 0.2s;
}

.eweby-topbar__social a:hover { color: var(--eweby-primary); }


/* ─── Header ────────────────────────────────────────────────── */
.eweby-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.eweby-header.is-scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.eweby-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.eweby-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.eweby-logo__custom-img {
    max-width: 160px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.eweby-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.eweby-logo__name {
    font-family: var(--eweby-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--eweby-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.eweby-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.eweby-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--eweby-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--eweby-radius-sm);
    transition: color 0.2s, background 0.2s;
}

.eweby-nav__link:hover,
.eweby-nav__item.is-active > .eweby-nav__link {
    color: var(--eweby-primary);
    background: rgba(124, 58, 237, 0.06);
}

.eweby-nav__chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 4px;
    transition: transform 0.2s;
}

/* Header CTA */
.eweby-header__cta {
    flex-shrink: 0;
}


/* ─── Hamburger ─────────────────────────────────────────────── */
.eweby-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.eweby-hamburger__line {
    width: 24px;
    height: 2px;
    background: var(--eweby-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(2) {
    opacity: 0;
}

.eweby-hamburger.is-active .eweby-hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ─── Mega Menu ─────────────────────────────────────────────── */
.eweby-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--eweby-radius-lg);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1100;
}

.eweby-nav__item--has-mega:hover .eweby-megamenu,
.eweby-nav__item--has-mega:focus-within .eweby-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.eweby-megamenu__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.eweby-megamenu__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eweby-primary-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eweby-megamenu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eweby-megamenu__list li a {
    display: block;
    padding: 6px 0;
    color: var(--eweby-text-muted);
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
}

.eweby-megamenu__list li a:hover {
    color: var(--eweby-text);
    padding-left: 8px;
}

.eweby-megamenu__footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--eweby-surface-border);
}

.eweby-megamenu__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--eweby-primary-light);
    font-size: 0.9rem;
}


/* ─── Hero Section ──────────────────────────────────────────── */
.eweby-hero {
    position: relative;
    padding: 100px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.eweby-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.eweby-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.eweby-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eweby-hero__content { max-width: 600px; }

.eweby-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--eweby-primary-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.eweby-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--eweby-primary);
    border-radius: 50%;
    animation: eweby-pulse 2s infinite;
}

.eweby-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.eweby-hero__subtitle {
    font-size: 1.2rem;
    color: var(--eweby-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.eweby-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.eweby-hero__stats {
    display: flex;
    gap: 32px;
}

.eweby-hero__stat {
    text-align: center;
}

.eweby-hero__stat-number {
    display: block;
    font-family: var(--eweby-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eweby-primary-light);
}

.eweby-hero__stat-label {
    font-size: 0.8rem;
    color: var(--eweby-text-dim);
}

/* Hero Visual (right side) */
.eweby-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eweby-hero__visual-card {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: var(--eweby-radius-lg);
    overflow: hidden;
    box-shadow: var(--eweby-shadow-lg);
    position: relative;
}

.eweby-hero__visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--eweby-primary-gradient);
    opacity: 0.03;
}

.eweby-hero__visual-dots {
    position: absolute;
    top: 12px;
    left: 16px;
    display: flex;
    gap: 6px;
}

.eweby-hero__visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.eweby-hero__visual-dot--red { background: #ef4444; }
.eweby-hero__visual-dot--yellow { background: #f59e0b; }
.eweby-hero__visual-dot--green { background: #22c55e; }

.eweby-hero__visual-content {
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ─── Trust Strip ───────────────────────────────────────────── */
.eweby-trust {
    padding: 40px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.eweby-trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.eweby-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eweby-text-dim);
    font-size: 0.9rem;
}

.eweby-trust__item svg {
    color: var(--eweby-primary);
    flex-shrink: 0;
}


/* ─── Steps / How It Works ──────────────────────────────────── */
.eweby-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.eweby-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    counter-increment: step;
}

.eweby-step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    color: var(--eweby-primary);
    position: relative;
}

.eweby-step__icon::before {
    content: counter(step);
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--eweby-primary-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--eweby-font-heading);
}

.eweby-step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.eweby-step p {
    font-size: 0.95rem;
}

.eweby-step__arrow {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eweby-primary);
    opacity: 0.3;
}


/* ─── Eshop Cards (Bento-style Grid) ────────────────────────── */
.eweby-eshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* Featured/first card gets bigger */
.eweby-eshop-grid .eweby-eshop-card:first-child {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .eweby-eshop-grid { grid-template-columns: repeat(3, 1fr); }
    .eweby-eshop-grid .eweby-eshop-card:first-child { grid-column: span 2; }
    .eweby-eshop-grid .eweby-eshop-card:first-child .eweby-eshop-card__image { aspect-ratio: 21/9; }
}

/* Per-niche accent colors on cards */
.eweby-eshop-card[data-niche="fitness"] { --card-accent: var(--niche-fitness); }
.eweby-eshop-card[data-niche="beauty"] { --card-accent: var(--niche-beauty); }
.eweby-eshop-card[data-niche="kids"] { --card-accent: var(--niche-kids); }
.eweby-eshop-card[data-niche="tech"] { --card-accent: var(--niche-tech); }
.eweby-eshop-card[data-niche="home"] { --card-accent: var(--niche-home); }
.eweby-eshop-card[data-niche="eco"] { --card-accent: var(--niche-eco); }
.eweby-eshop-card[data-niche="pets"] { --card-accent: var(--niche-pets); }
.eweby-eshop-card[data-niche="auto"] { --card-accent: var(--niche-auto); }
.eweby-eshop-card[data-niche="garden"] { --card-accent: var(--niche-garden); }
.eweby-eshop-card[data-niche="travel"] { --card-accent: var(--niche-travel); }

.eweby-eshop-card { --card-accent: var(--eweby-primary); }

.eweby-eshop-card:hover {
    border-color: color-mix(in srgb, var(--card-accent) 40%, transparent);
    box-shadow: 0 0 40px color-mix(in srgb, var(--card-accent) 10%, transparent);
}

.eweby-eshop-card__badge {
    background: var(--card-accent) !important;
}

.eweby-eshop-card__niche {
    color: var(--card-accent);
}

.eweby-eshop-card__price {
    color: var(--card-accent) !important;
}

.eweby-eshop-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eweby-eshop-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: var(--eweby-radius) var(--eweby-radius) 0 0;
}

.eweby-eshop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eweby-eshop-card:hover .eweby-eshop-card__img {
    transform: scale(1.05);
}

.eweby-eshop-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eweby-surface);
    color: var(--eweby-text-dim);
}

.eweby-eshop-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--eweby-primary-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.eweby-eshop-card__badge--hot {
    background: var(--eweby-gradient-warm);
}

.eweby-eshop-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eweby-eshop-card:hover .eweby-eshop-card__overlay {
    opacity: 1;
}

.eweby-eshop-card__overlay .eweby-btn {
    position: relative;
    z-index: 3;
}

.eweby-eshop-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eweby-eshop-card__niche {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--eweby-primary-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.eweby-eshop-card__title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.eweby-eshop-card__title a {
    color: var(--eweby-text);
    text-decoration: none;
}

.eweby-eshop-card__title a:hover {
    color: var(--eweby-primary-light);
}

.eweby-eshop-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--eweby-text-dim);
}

.eweby-eshop-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.eweby-eshop-card__meta-item svg {
    color: var(--eweby-primary);
}

.eweby-eshop-card__techs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.eweby-eshop-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--eweby-surface-border);
}

.eweby-eshop-card__price {
    font-family: var(--eweby-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eweby-primary-light);
}

.eweby-eshop-card__price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--eweby-text-dim);
    font-weight: 400;
}


/* ─── Feature Cards ─────────────────────────────────────────── */
.eweby-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.eweby-feature-card {
    padding: 32px;
    text-align: left;
}

.eweby-feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--eweby-radius);
    color: var(--eweby-primary);
    margin-bottom: 20px;
}

.eweby-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.eweby-feature-card p {
    font-size: 0.9rem;
}


/* ─── Comparison Table ──────────────────────────────────────── */
.eweby-comparison {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--eweby-radius);
    overflow: hidden;
}

.eweby-comparison th,
.eweby-comparison td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--eweby-surface-border);
}

.eweby-comparison th {
    background: var(--eweby-surface);
    font-family: var(--eweby-font-heading);
    font-weight: 600;
    color: var(--eweby-text);
    font-size: 0.95rem;
}

.eweby-comparison td {
    background: #fff;
    color: #475569;
    font-size: 0.9rem;
}

.eweby-comparison tr:nth-child(even) td {
    background: #f8fafc;
}

.eweby-comparison__highlight {
    background: rgba(124, 58, 237, 0.04) !important;
    border-left: 3px solid #7c3aed;
    color: #0f172a;
}

.eweby-comparison tr:nth-child(even) .eweby-comparison__highlight {
    background: rgba(124, 58, 237, 0.06) !important;
}

.eweby-comparison .eweby-check {
    color: var(--eweby-success);
}

.eweby-comparison .eweby-cross {
    color: var(--eweby-danger);
}


/* ─── Testimonials ──────────────────────────────────────────── */
.eweby-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.eweby-testimonial {
    padding: 28px;
}

.eweby-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--eweby-accent);
}

.eweby-testimonial__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--eweby-text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.eweby-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eweby-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eweby-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.eweby-testimonial__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--eweby-text);
}

.eweby-testimonial__role {
    font-size: 0.8rem;
    color: var(--eweby-text-dim);
}


/* ─── FAQ Accordion ─────────────────────────────────────────── */
.eweby-faq { max-width: 800px; margin: 0 auto; }

.eweby-faq__item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--eweby-radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eweby-faq__item[open] {
    border-color: rgba(124, 58, 237, 0.3);
    background: #faf8ff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.eweby-faq__item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-family: var(--eweby-font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--eweby-text);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}

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

.eweby-faq__item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--eweby-primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.eweby-faq__item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.eweby-faq__item summary:hover { color: var(--eweby-primary-light); }

.eweby-faq__answer {
    padding: 0 24px 18px;
    color: var(--eweby-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ─── Profit Calculator ─────────────────────────────────────── */
.eweby-calculator {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

.eweby-calculator__field {
    margin-bottom: 24px;
}

.eweby-calculator__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--eweby-text);
    font-size: 0.95rem;
}

.eweby-calculator__input {
    width: 100%;
    padding: 12px 16px;
    background: var(--eweby-bg);
    border: 1px solid var(--eweby-surface-border);
    border-radius: var(--eweby-radius-sm);
    color: var(--eweby-text);
    font-size: 1rem;
    font-family: var(--eweby-font-body);
    transition: border-color 0.2s;
}

.eweby-calculator__input:focus {
    outline: none;
    border-color: var(--eweby-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.eweby-calculator__result {
    text-align: center;
    padding: 28px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--eweby-radius);
    margin-top: 24px;
}

.eweby-calculator__result-value {
    font-family: var(--eweby-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--eweby-primary-light);
}

.eweby-calculator__result-label {
    font-size: 0.9rem;
    color: var(--eweby-text-dim);
    margin-top: 4px;
}


/* ─── Stats / Counters ──────────────────────────────────────── */
.eweby-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eweby-stat {
    text-align: center;
    padding: 28px 16px;
}

.eweby-stat__number {
    font-family: var(--eweby-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--eweby-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.eweby-stat__label {
    font-size: 0.9rem;
    color: var(--eweby-text-dim);
}


/* ─── Blog Slider ───────────────────────────────────────────── */
.eweby-slider {
    position: relative;
    overflow: hidden;
}

.eweby-slider__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.eweby-slider__track:active { cursor: grabbing; }

.eweby-slider__slide {
    min-width: 350px;
    flex-shrink: 0;
}

.eweby-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.eweby-slider__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: 50%;
    color: var(--eweby-text);
    cursor: pointer;
    transition: all 0.2s;
}

.eweby-slider__btn:hover {
    border-color: var(--eweby-primary);
    color: var(--eweby-primary);
}

.eweby-slider__dots {
    display: flex;
    gap: 6px;
}

.eweby-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--eweby-text-dim);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.eweby-slider__dot.is-active {
    background: var(--eweby-primary);
    width: 24px;
    border-radius: 4px;
}

/* Blog slider cards */
.eweby-blog-slider__card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eweby-blog-slider__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.eweby-blog-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eweby-blog-slider__card:hover .eweby-blog-slider__image img {
    transform: scale(1.05);
}

.eweby-blog-slider__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eweby-blog-slider__cat {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--eweby-primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.eweby-blog-slider__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--eweby-text-dim);
    margin-bottom: 8px;
}

.eweby-blog-slider__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.eweby-blog-slider__title a {
    color: var(--eweby-text);
    text-decoration: none;
}

.eweby-blog-slider__title a:hover { color: var(--eweby-primary-light); }

.eweby-blog-slider__excerpt {
    font-size: 0.9rem;
    color: var(--eweby-text-muted);
    margin-bottom: 16px;
    flex: 1;
}


/* ─── Breadcrumbs ───────────────────────────────────────────── */
.eweby-breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
}

.eweby-breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.eweby-breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.eweby-breadcrumbs__link { color: var(--eweby-text-dim); }
.eweby-breadcrumbs__link:hover { color: var(--eweby-primary); }
.eweby-breadcrumbs__sep { color: var(--eweby-text-dim); }
.eweby-breadcrumbs__current { color: var(--eweby-text-muted); }


/* ─── Blog Archive ──────────────────────────────────────────── */
.eweby-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.eweby-post-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eweby-post-card__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.eweby-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eweby-post-card:hover .eweby-post-card__image img {
    transform: scale(1.05);
}

.eweby-post-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eweby-post-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--eweby-text-dim);
}

.eweby-post-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.eweby-post-card__title a { color: var(--eweby-text); text-decoration: none; }
.eweby-post-card__title a:hover { color: var(--eweby-primary-light); }

.eweby-post-card__excerpt {
    font-size: 0.9rem;
    color: var(--eweby-text-muted);
    margin-bottom: 16px;
    flex: 1;
}


/* ─── Single Post / Page Content ────────────────────────────── */
.eweby-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.eweby-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.eweby-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.eweby-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.eweby-content ul,
.eweby-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--eweby-text-muted);
}

.eweby-content li { margin-bottom: 8px; line-height: 1.6; }

.eweby-content img {
    border-radius: var(--eweby-radius);
    margin: 24px 0;
}

.eweby-content blockquote {
    border-left: 3px solid var(--eweby-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 0 var(--eweby-radius) var(--eweby-radius) 0;
    font-style: italic;
    color: var(--eweby-text-muted);
}

/* SEO content (wider layout for service pages) */
.eweby-seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.eweby-seo-content h2 { margin-top: 48px; margin-bottom: 16px; }
.eweby-seo-content p { margin-bottom: 16px; line-height: 1.8; color: var(--eweby-text-muted); }


/* ─── Service Hero ──────────────────────────────────────────── */
.eweby-service-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.eweby-service-hero h1 {
    margin-bottom: 16px;
}

.eweby-service-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


/* ─── Floating Buttons ──────────────────────────────────────── */
.eweby-float-btns {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.eweby-float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    box-shadow: var(--eweby-shadow);
}

.eweby-float-btn:hover {
    width: auto;
    border-radius: 24px;
    padding: 0 18px;
}

.eweby-float-btn__icon { flex-shrink: 0; display: flex; }
.eweby-float-btn__text {
    display: none;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.eweby-float-btn:hover .eweby-float-btn__text { display: block; }

.eweby-float-btn--phone { background: var(--eweby-primary); color: #fff; }
.eweby-float-btn--email { background: #3b82f6; color: #fff; }
.eweby-float-btn--whatsapp { background: #25d366; color: #fff; }


/* ─── Back to Top ───────────────────────────────────────────── */
.eweby-totop {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--eweby-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.eweby-totop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eweby-totop:hover {
    border-color: var(--eweby-primary);
    color: var(--eweby-primary);
}


/* ─── Scroll Progress ───────────────────────────────────────── */
.eweby-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--eweby-primary-gradient);
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}


/* ─── Sticky CTA Bar ────────────────────────────────────────── */
.eweby-sticky-cta {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    transition: bottom 0.4s ease;
}

.eweby-sticky-cta.is-visible {
    bottom: 0;
}

.eweby-sticky-cta__inner {
    max-width: var(--eweby-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.eweby-sticky-cta__text {
    font-size: 0.9rem;
    color: var(--eweby-text);
}

.eweby-sticky-cta__sub {
    display: block;
    font-size: 0.75rem;
    color: var(--eweby-text-dim);
    font-weight: 400;
}


/* ─── Exit Popup ────────────────────────────────────────────── */
.eweby-exit-popup {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.eweby-exit-popup.is-visible { display: flex; }

.eweby-exit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.eweby-exit-popup__box {
    position: relative;
    max-width: 480px;
    width: 90%;
    padding: 40px;
    text-align: center;
}

.eweby-exit-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    color: var(--eweby-text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eweby-exit-popup__icon { margin-bottom: 16px; }

.eweby-exit-popup__title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.eweby-exit-popup__desc {
    font-size: 0.95rem;
    color: var(--eweby-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.eweby-exit-popup__cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.eweby-exit-popup__dismiss {
    background: none;
    border: none;
    color: var(--eweby-text-dim);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px;
}

.eweby-exit-popup__dismiss:hover { color: var(--eweby-text); }


/* ─── Footer (DARK for contrast) ────────────────────────────── */
.eweby-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 0 0;
}

.eweby-footer a { color: #94a3b8; }
.eweby-footer a:hover { color: #7c3aed; }
.eweby-footer h3 { color: #f1f5f9; }

.eweby-footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
}

.eweby-footer__tagline {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #64748b;
}

.eweby-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.eweby-footer__heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--eweby-text);
}

.eweby-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eweby-footer__list li { margin-bottom: 8px; }

.eweby-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--eweby-text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.eweby-footer__list a:hover { color: var(--eweby-primary-light); }

.eweby-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.eweby-footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    transition: all 0.2s;
}

.eweby-footer__social-link:hover {
    background: #7c3aed;
    color: #fff;
}

.eweby-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.eweby-footer__copy { color: #64748b; }

.eweby-footer__legal {
    display: flex;
    gap: 20px;
}

.eweby-footer__legal a { color: #64748b; }
.eweby-footer__legal a:hover { color: #8b5cf6; }

.eweby-footer__project-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--eweby-text-dim);
    font-size: 0.8rem;
    margin-top: 24px;
}


/* ─── Empty State ───────────────────────────────────────────── */
.eweby-empty {
    text-align: center;
    padding: 60px 20px;
}

.eweby-empty h2 { margin-bottom: 12px; }


/* ─── Urgency Banner ────────────────────────────────────────── */
.eweby-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--eweby-radius-sm);
    color: var(--eweby-accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.eweby-urgency__dot {
    width: 8px;
    height: 8px;
    background: var(--eweby-accent);
    border-radius: 50%;
    animation: eweby-pulse 2s infinite;
}


/* ─── Eshop Filter ──────────────────────────────────────────── */
.eweby-eshop-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.eweby-eshop-filter__btn {
    padding: 8px 20px;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: 24px;
    color: var(--eweby-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.eweby-eshop-filter__btn:hover,
.eweby-eshop-filter__btn.is-active {
    background: var(--eweby-primary);
    border-color: var(--eweby-primary);
    color: #fff;
}


/* ─── Spinner ───────────────────────────────────────────────── */
.eweby-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid var(--eweby-surface-border);
    border-top-color: var(--eweby-primary);
    border-radius: 50%;
    animation: eweby-spin 0.8s linear infinite;
}


/* ─── Animations ────────────────────────────────────────────── */
@keyframes eweby-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes eweby-spin {
    to { transform: rotate(360deg); }
}

@keyframes eweby-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.2); }
    50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.4); }
}

.eweby-glow-border {
    animation: eweby-glow 3s ease-in-out infinite;
}


/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .eweby-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .eweby-hero__content { max-width: 100%; }

    .eweby-hero__actions { justify-content: center; }

    .eweby-hero__stats { justify-content: center; }

    .eweby-hero__visual { display: none; }

    .eweby-steps { grid-template-columns: 1fr; gap: 20px; }

    .eweby-step__arrow { display: none; }

    .eweby-stats { grid-template-columns: repeat(2, 1fr); }

    .eweby-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eweby-megamenu { width: 90vw; }
}

@media (max-width: 768px) {
    .eweby-topbar { display: none; }
    .eweby-header__cta { display: none; }
    .eweby-hamburger { display: flex; }

    /* ─── MOBILE SLIDE-IN MENU (from right) ───────────────── */
    .eweby-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: #ffffff;
        padding: 80px 24px 40px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(0,0,0,0.08);
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    }

    .eweby-nav.is-open {
        transform: translateX(0) !important;
    }

    /* Overlay behind menu */
    .eweby-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .eweby-nav.is-open::before {
        opacity: 1;
        pointer-events: auto;
    }

    .eweby-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .eweby-nav__link {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--eweby-surface-border);
        color: var(--eweby-text);
    }

    .eweby-nav__link:hover {
        color: var(--eweby-primary-light);
        padding-left: 8px;
    }

    /* Mobile CTA at bottom of slide menu */
    .eweby-nav::after {
        content: 'Vybrať e-shop →';
        display: block;
        margin-top: auto;
        padding: 14px 24px;
        background: var(--eweby-primary-gradient);
        color: #fff;
        text-align: center;
        border-radius: var(--eweby-radius);
        font-weight: 600;
        font-family: var(--eweby-font-heading);
        font-size: 0.95rem;
    }

    .eweby-megamenu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 8px 16px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .eweby-megamenu__inner { grid-template-columns: 1fr; gap: 8px; }
    .eweby-megamenu__heading { font-size: 0.75rem; margin-bottom: 6px; }
    .eweby-megamenu__list li a { padding: 4px 0; font-size: 0.85rem; }
    .eweby-megamenu__footer { display: none; }

    /* ─── SECTIONS ─────────────────────────────────────────── */
    .eweby-section { padding: 40px 0; }
    .eweby-hero { padding: 48px 0 32px; min-height: auto; }
    .eweby-hero h1 { font-size: 1.75rem; line-height: 1.2; }
    .eweby-hero__subtitle { font-size: 1rem; }

    /* ─── GRIDS → single column ────────────────────────────── */
    .eweby-eshop-grid { grid-template-columns: 1fr !important; }
    .eweby-eshop-grid .eweby-eshop-card:first-child { grid-column: span 1 !important; }
    .eweby-eshop-grid .eweby-eshop-card:first-child .eweby-eshop-card__image { aspect-ratio: 16/10 !important; }
    .eweby-post-grid { grid-template-columns: 1fr; }
    .eweby-features { grid-template-columns: 1fr; }
    .eweby-testimonials { grid-template-columns: 1fr; }
    .eweby-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .eweby-steps { grid-template-columns: 1fr; gap: 16px; }

    /* ─── COMPARISON TABLE — responsive ────────────────────── */
    .eweby-comparison-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -24px;
        padding: 0 24px;
    }
    .eweby-comparison { min-width: 580px; font-size: 0.8rem; }
    .eweby-comparison th,
    .eweby-comparison td { padding: 8px 10px; white-space: nowrap; }

    /* ─── FOOTER ───────────────────────────────────────────── */
    .eweby-footer__top { grid-template-columns: 1fr; gap: 32px; }
    .eweby-footer__links { grid-template-columns: 1fr; gap: 24px; }
    .eweby-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* ─── SLIDER ───────────────────────────────────────────── */
    .eweby-slider__slide { min-width: 85vw !important; flex: 0 0 85vw !important; }
    .eweby-blog-slider .eweby-slider__slide,
    .eweby-blog-slider__slide { min-width: 85vw !important; flex: 0 0 85vw !important; }

    /* ─── FLOATING BTNS ────────────────────────────────────── */
    .eweby-float-btns { right: 12px; bottom: 80px; }
    .eweby-float-btn { width: 44px; height: 44px; }

    /* ─── GO TO TOP — LEFT SIDE on mobile ──────────────────── */
    .eweby-totop { left: 16px; right: auto; bottom: 80px; }

    /* ─── STICKY CTA — centered ────────────────────────────── */
    .eweby-sticky-cta__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }
    .eweby-sticky-cta__text { text-align: center; }

    /* ─── CALCULATOR ───────────────────────────────────────── */
    .eweby-calculator { padding: 20px; }

    /* ─── CONTACT ──────────────────────────────────────────── */
    .eweby-contact-grid { grid-template-columns: 1fr; gap: 32px; }

    /* ─── HERO layout ──────────────────────────────────────── */
    .eweby-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .eweby-hero__content { max-width: 100%; }
    .eweby-hero__actions { justify-content: center; }
    .eweby-hero__stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .eweby-hero__visual { display: none; }

    /* ─── ALL 2-col grids → single column on mobile ─────────── */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns:repeat(2,1fr)"],
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    /* ─── Section headers ──────────────────────────────────── */
    .eweby-section__header h2 { font-size: 1.5rem; }
    .eweby-section__header p { font-size: 0.95rem; }

    /* ─── Step arrows hide on mobile ───────────────────────── */
    .eweby-step__arrow { display: none; }
}

/* ─── Light Section Variant ──────────────────────────────────── */
.eweby-section--light {
    background: #f8fafc;
}

/* ─── Comparison table wrapper for mobile scroll ─────────────── */
.eweby-comparison-wrap {
    width: 100%;
}

/* ─── Gradient Accent Bars ───────────────────────────────────── */
.eweby-section--accent-top::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--eweby-primary-gradient);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* ─── Image Cards for stock photos ──────────────────────────── */
.eweby-image-card {
    border-radius: var(--eweby-radius-lg);
    overflow: hidden;
    border: 1px solid var(--eweby-surface-border);
    box-shadow: var(--eweby-shadow);
}

.eweby-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eweby-image-card:hover img {
    transform: scale(1.03);
}

/* ─── Logo SVG ──────────────────────────────────────────────── */
.eweby-logo__svg {
    height: 38px;
    width: auto;
}

.eweby-logo__svg-icon {
    fill: var(--eweby-primary);
}

.eweby-logo__svg-text {
    fill: var(--eweby-text);
    font-family: var(--eweby-font-heading);
    font-weight: 700;
}

.eweby-logo__svg-dot {
    fill: var(--eweby-primary-light);
}

/* ─── Fix slider to show 3 cards on desktop ─────────────────── */
.eweby-blog-slider .eweby-slider__slide,
.eweby-blog-slider__slide {
    min-width: calc(33.333% - 16px) !important;
    flex: 0 0 calc(33.333% - 16px);
}

@media (max-width: 1024px) {
    .eweby-blog-slider .eweby-slider__slide,
    .eweby-blog-slider__slide {
        min-width: calc(50% - 12px) !important;
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    .eweby-blog-slider .eweby-slider__slide,
    .eweby-blog-slider__slide {
        min-width: 100% !important;
        flex: 0 0 100%;
    }
}

/* ─── Brighter hero gradient ────────────────────────────────── */
.eweby-hero::before {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
}

.eweby-hero::after {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

/* ─── Contact grid fix ──────────────────────────────────────── */
.eweby-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.eweby-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: 12px;
    color: var(--eweby-text);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.eweby-contact-item:hover {
    border-color: var(--eweby-primary);
    transform: translateY(-2px);
    color: var(--eweby-text);
}

.eweby-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eweby-contact-icon--green { background: rgba(124, 58, 237, 0.1); color: var(--eweby-primary); }
.eweby-contact-icon--blue { background: rgba(6, 182, 212, 0.1); color: var(--eweby-secondary); }
.eweby-contact-icon--whatsapp { background: rgba(37, 211, 102, 0.1); color: #25d366; }

.eweby-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ─── Feature list with proper icons ────────────────────────── */
.eweby-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.eweby-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--eweby-surface);
    border: 1px solid var(--eweby-surface-border);
    border-radius: 12px;
}

.eweby-checklist__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ─── Responsive contact ────────────────────────────────────── */
@media (max-width: 768px) {
    .eweby-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .eweby-hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .eweby-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .eweby-hero__actions .eweby-btn { width: 100%; }

    .eweby-footer__links { grid-template-columns: 1fr; }
}
