/* RESET SCOPE */
.jv-container * {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, .navigation a, .btn, .btn-jarvist, .filters .filter{
    font-family: 'Arial', sans-serif;
}
/* GLOBAL */
.jv-container {
    max-width: 1280px;
    margin: auto;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    color: #0f172a;
}

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

/* HERO */
.jv-hero {
    background: #ffffff;
}

.jv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.jv-logo {
    max-width: 280px;
    margin-bottom: 0px;
}

.jv-hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.jv-hero h1 span {
    color: #2563eb;
}

.jv-hero p {
    font-size: 16px;
    color: #475569;
}

/* SECTION */
.jv-section {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}
.retail-section {
    background: #F9FAFB;
}
.online-stores-section {
    background: #FFFFFF;
}

.jv-gray {
    background: #f8fafc;
}

.jv-title {
    text-align: center;
    margin-bottom: 48px;
}

/* GRID */
.jv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jv-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.jv-card h3 {
    margin-bottom: 10px;
}

.jv-card p {
    color: #475569;
}

/* TWO COLUMN */
.jv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.jv-reverse {
    direction: rtl;
}

.jv-reverse > * {
    direction: ltr;
}

/* LIST */
.jv-list {
    margin-top: 16px;
    padding-left: 20px;
}

.jv-list li {
    margin-bottom: 10px;
    color: #334155;
}

/* CTA */
.jv-cta {
    background: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.jv-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.jv-cta p {
    color: #cbd5f5;
}

.jv-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .jv-hero-grid,
    .jv-two-col,
    .jv-feature-grid {
        grid-template-columns: 1fr;
    }

    .jv-hero h1 {
        font-size: 32px;
    }
}
