@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap");

.vdv-products-page {
    --vdv-font: "Roboto", "Segoe UI", Arial, sans-serif;

    --background: oklch(1 0 0);
    --foreground: oklch(0.2 0.12 250);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.2 0.12 250);
    --primary: oklch(0.7 0.12 250);
    --primary-foreground: oklch(0.15 0.1 255);
    --secondary: oklch(0.96 0.02 250);
    --secondary-foreground: oklch(0.25 0.12 255);
    --muted: oklch(0.96 0.01 250);
    --muted-foreground: oklch(0.25 0.12 255);
    --accent: oklch(0.25 0.12 255);
    --accent-foreground: oklch(0.99 0 0);
    --border: oklch(0.92 0.02 250);

    min-height: 100vh;
    color: var(--foreground);
    background: var(--background);
    font-family: var(--vdv-font) !important;
    font-size: 16px;
    line-height: 1.5;
}

.vdv-products-page,
.vdv-products-page * {
    box-sizing: border-box;
    font-family: var(--vdv-font) !important;
}

.vdv-products-page img {
    display: block;
    max-width: 100%;
}

.vdv-products-page a {
    color: inherit;
}

/* Layout */

.vdv-products-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

/* Hero */

.vdv-products-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background:
        linear-gradient(
            to bottom,
            var(--background),
            color-mix(in oklch, var(--muted) 20%, transparent)
        );
}

.vdv-products-hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.vdv-products-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid color-mix(in oklch, var(--primary) 20%, transparent);
    border-radius: 999px;
    color: var(--primary);
    background: color-mix(in oklch, var(--primary) 10%, transparent);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
}

.vdv-products-hero h1 {
    margin: 0 0 1.5rem;
    color: var(--primary);
    font-size: 2.25rem;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.vdv-products-hero h1 span {
    color: var(--accent);
}

@media (min-width: 768px) {
    .vdv-products-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .vdv-products-hero h1 {
        font-size: 3.75rem;
    }
}

.vdv-products-hero p {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.75;
    text-wrap: balance;
}

/* Main */

.vdv-products-main {
    padding: 4rem 0;
}

.vdv-products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .vdv-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.vdv-products-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--card-foreground);
    background: var(--card);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vdv-products-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
}

.vdv-products-card-image {
    position: relative;
    overflow: hidden;
    height: 16rem;
    background: var(--muted);
}

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

.vdv-products-card:hover .vdv-products-card-image img {
    transform: scale(1.05);
}

.vdv-products-card-body {
    padding: 1.5rem;
}

.vdv-products-icon-box {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    color: var(--accent);
    background: color-mix(in oklch, var(--accent) 10%, transparent);
}

.vdv-products-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
}

.vdv-products-card h2 {
    margin: 0 0 0.75rem;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

.vdv-products-card p {
    margin: 0 0 1rem;
    color: var(--muted-foreground);
    line-height: 1.55;
}

.vdv-products-button {
    width: 100%;
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vdv-products-button:hover {
    color: var(--foreground);
    background: var(--muted);
    text-decoration: none;
}

.vdv-products-button-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.vdv-products-button:hover .vdv-products-button-icon {
    transform: translateX(0.25rem);
}

/* CTA */

.vdv-products-cta {
    padding: 4rem 0;
    background: color-mix(in oklch, var(--muted) 30%, transparent);
}

.vdv-products-cta-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.vdv-products-cta h2 {
    margin: 0 0 1.5rem;
    color: var(--primary);
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.vdv-products-cta p {
    margin: 0 0 2rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.vdv-products-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.5rem;
    border-radius: 0.5rem;
    color: var(--accent-foreground);
    background: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vdv-products-cta-button:hover {
    color: var(--accent-foreground);
    background: color-mix(in oklch, var(--accent) 90%, black);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Mobile */

@media (max-width: 767px) {
    .vdv-products-container {
        width: min(100% - 24px, 1280px);
    }

    .vdv-products-hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .vdv-products-main {
        padding: 3rem 0;
    }

    .vdv-products-card-image {
        height: 14rem;
    }
}