:root {
    --marvin-main-color: #ffc10e;
}

.marvin-page-wrapper {
    display: flex;
    display: 20px;
}

.marvin-content-wrapper {
    max-width: 1800px;
    width: 98%;
    margin-inline: auto;
}

.marvin-section-padding {
    padding: 60px 20px;
}

.marvin-main-wrapper {
    display: flex;
    flex-flow: row wrap;
    padding: 35px 10px;
}

.marvin-reverse-wrapper {
    flex-wrap: wrap-reverse;
}

.marvin-main-left,
.marvin-main-right {
    width: 50%;
    margin-inline: auto;
}




.marvin-site-button {
    position: relative;
    display: block;
    font-size: .85em;
    font-weight: 500;
    letter-spacing: .05em;
    max-width: fit-content;
    width: 100%;
    text-align: center;
    margin-block: 25px auto;
    padding: 8px 12px;
    text-decoration: none;
    background-color: var(--marvin-main-color);
    color: #000;
    border: none;
    border-radius: 3px;
    z-index: 0;
    overflow: hidden;
    transition: all .3s;
    height: fit-content;
}

.marvin-alt-button {
    background-color: transparent;
    color: #000;
    border: 2px solid var(--marvin-main-color);
}

.marvin-site-button a {
    color: #fff;
}

.marvin-centered-button {
    margin-inline: auto;
}

/* .site-button-white {
color: var(--primary-color);
background: #fff;
} */

.marvin-site-button:hover,
.marvin-site-button:focus,
.marvin-site-button:active {
    color: #fff;
    opacity: .8;
    text-decoration: none;

}


/* Hero Section */
.marvin-hero-wrapper {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .26) 25%, rgba(0, 0, 0, .34) 100%), url(/imageserver/Reusable/Marvin/signature-ultimate-hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 0 80px;

}

.marvin-hero-wrapper-content {
    -webkit-animation: fadeInRight 1.25s both;
    animation: fadeInRight 1.25s both;
    animation-delay: 1s;
}

.marvin-h1-heading.marvin-hero-title {
    font-size: 65px;
    color: #fff;
    max-width: 20ch;
    text-shadow: 2px 2px #0000008f;
    font-weight: 600;
    -webkit-animation: fadeInEft .8s both;
    animation: fadeInLeft .8s both;
    animation-delay: 1s;
}

.marvin-hero-subtitle.marvin-subtitle {
    font-size: 24px;
    color: #fff;
    max-width: 50ch;
    font-style: italic;
}


.inner-nav-wrapper {
    padding: 20px;
    display: flex;
    gap: 30px;
}

.inner-nav-item {
    background: #eaeaea;
    border-radius: 12px;
    padding: 4px 12px;
    border: 1px solid #a5a5a5;
    color: #111;
}

.inner-nav-item:hover {
    text-decoration: none;
    color: #111;
    border: 1px solid #0c0c0c;
}


.marvin-side-nav {
    background: #fafafa;
    padding: 0px;
    width: 75%;
    max-width: 225px;
}

.marvin-side-nav-wrapper {
    display: flex;
    flex-direction: column;
}

.marvin-side-nav-item {
    border-bottom: 1px solid #e3e3e3;
}

.marvin-side-nav-item a {
    color: #000;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 20px;
}

.marvin-side-nav-item a:hover,
.marvin-side-nav-item a.active-nav {
    color: #ffffff;
    background-color: var(--marvin-main-color);
}

.marvin-content-container {
    padding-inline: 2%;
}


/* Grid Cards */
.marvin-cards-section {
    background: #fafafa;
    padding-block: 50px;
    text-align: center;
}

.marvin-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.marvin-card-icon-container svg {
    width: 50px;
    height: 50px;
    fill: #000000;
}


.marvin-card {
    max-width: 650px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    padding: 60px 10px;
    text-align: center;
}

.marvin-card-icon-container .st0 {
    fill: #000000;
}


/* ——— Layout ——— */
.marvin-sidenav {
    --accent: #007acc;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e6ebf0;
    --bg: #f7f9fb;

    position: relative;
    max-width: 320px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.nav-header {
    padding: 8px 10px 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
}

.nav-title {
    font-weight: 700;
    color: var(--ink);
}

/* ——— Lists ——— */
.nav-root,
.nav-level {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-level>li {
    margin: 4px 0;
}

/* ——— Toggles ——— */
.group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}

.group-toggle:hover {
    background: #eef6ff;
    border-color: #d6e9ff;
}

/* Chevron indicator */
.chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(-45deg);
    transition: transform .2s ease, border-color .2s ease;
}

.group-toggle[aria-expanded="true"] .chevron {
    transform: rotate(45deg);
    border-color: var(--accent);
}

/* Inner lists (collapsed by default; JS toggles inline display) */
.nav-group>.nav-level {
    display: none;
    margin: 6px 0 6px 12px;
    padding-left: 10px;
    border-left: 2px solid #eef2f6;
}

/* Links */
.nav-link {
    display: block;
    padding: 9px 10px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s ease, color .15s ease;
}

.nav-link:hover {
    background: #f3f8ff;
    color: var(--accent);
}

/* Active link state */
.nav-link.active {
    background: linear-gradient(90deg, #e8f3ff, #ffffff);
    color: var(--accent);
    font-weight: 600;
    border: 1px solid #cfe7ff;
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
    .marvin-sidenav {
        max-width: 100%;
    }

    .nav-group>.nav-level {
        margin-left: 8px;
    }
}



/* Products Section */
.marvin-products-cards-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}


.marvin-product-card {
    max-width: 600px;
    width: 31.333%;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.marvin-product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.marvin-product-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.marvin-product-card-image {
    text-align: center;
    height: 200px;
    overflow: hidden;
    width: 100%;
    height: 260px;
}

.marvin-product-card-image img {
	max-width: 495px;
	width: 100%;
	object-fit: cover;
	height: 260px;
}


.marvin-product-logo img {
    max-width: 225px;
    width: 100%;
    margin: 20px auto;
}

.marvin-product-card .marvin-site-button {
    margin-inline: auto;
}


.marvin-americas-text.marvin-main-right {
    padding-inline: 30px;
}


@media (max-width: 982px) {

    .marvin-main-left,
    .marvin-main-right {
        width: 98.5%;
        margin-inline: auto;
    }

    .marvin-iframe-wrapper {
        padding-bottom: 45px;
        max-width: 750px;
        margin-inline: auto;
    }


    .marvin-product-card {
        width: 98.5%;
        max-width: 480px;
    }

}