/* ============================================================
   Ventova Store — Front Page Styles
   ============================================================ */

/* ── Hero Section ── */
.vs-hero {
    background: linear-gradient(135deg, var(--vs-primary-dark) 0%, var(--vs-primary) 50%, var(--vs-primary-light) 100%);
    padding: var(--vs-space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.vs-hero::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.04'%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");
    pointer-events: none;
}

.vs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.vs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247, 168, 37, 0.2);
    border: 1px solid var(--vs-accent);
    color: var(--vs-accent);
    padding: 6px 16px;
    border-radius: var(--vs-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--vs-space-lg);
}

.vs-hero-title {
    font-family: var(--vs-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: var(--vs-space-md);
}

.vs-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: var(--vs-space-xl);
}

.vs-btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}


/* ── Category Grid ── */
.vs-grid-cat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vs-space-lg);
}

.vs-cat-card {
    display: flex;
    align-items: center;
    gap: var(--vs-space-md);
    background: var(--vs-bg-white);
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-md);
    padding: var(--vs-space-md) var(--vs-space-lg);
    transition: var(--vs-transition);
    text-decoration: none;
    color: var(--vs-text);
}

.vs-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vs-shadow-hover);
    border-color: var(--vs-primary-light);
    color: var(--vs-text);
}

.vs-cat-img {
    width: 60px;
    height: 60px;
    border-radius: var(--vs-radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--vs-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-cat-img i {
    font-size: 1.5rem;
    color: var(--vs-text-light);
}

.vs-cat-name {
    font-family: var(--vs-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vs-bg-dark);
    margin-bottom: 2px;
}

.vs-cat-count {
    font-size: 0.8rem;
    color: var(--vs-text-muted);
}


/* ── Sale Section Header ── */
.vs-sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--vs-space-xl);
}

.vs-sale-header .vs-section-title {
    margin-bottom: 0;
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .vs-hero {
        padding: var(--vs-space-2xl) 0;
    }

    .vs-hero-title {
        font-size: 1.75rem;
    }

    .vs-hero-desc {
        font-size: 0.9rem;
    }

    .vs-grid-cat {
        grid-template-columns: repeat(2, 1fr);
    }

    .vs-sale-header {
        flex-direction: column;
        gap: var(--vs-space-md);
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .vs-grid-cat {
        grid-template-columns: 1fr;
    }
}