/* Variables------------------------------------------------------------------------------------------*/
:root {
    /* Mobile first*/
    --header-height: 110px;

    --heading-font: 'Nunito Sans', sans-serif;
    --heading-color: #27322C;

    --text-font: 'Roboto', sans-serif;
    --text-color: #13181A;

    --background-color-main: #fbf9fa;
    --background-color-light: #f2f0f2;
    --background-color-dark: #eae8ea;
    --background-color-darkest: #4b4a4f;

    --box-shadow-color1: #5c090a;
    --box-shadow-color2: #8c0a0f;

    --primary-btn1: #8F987E;
    --primary-btn2: rgba(163, 191, 133, 0.781);
    --secondary-btn1: #eae8ea;
    --secondary-btn2: whitesmoke;

    --link-color: #4f6a73;
}

/*----------------------------------------------------------------------------------------------------*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* General style rules ---------------------------------------------------------------------------------*/
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    font-family: var(--text-font);
    font-weight: 300;
    padding-top: var(--header-height);
}

h1,
h2 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

h3 {
    margin-bottom: 0.9rem;
    font-weight: 500;
}

h4 {
    font-family: var(--text-font);
    font-weight: 500;
}

h5 {
    font-family: var(--text-font);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.2rem;
}

p {
    margin-bottom: 12px;
}

hr {
    border-bottom: 0.5px groove #ac989d;
    margin-top: 20px;
    margin-bottom: 60px;
}

.xtra-space {
    padding-bottom: 30px;
}

.xtra-space-top {
    padding-top: 30px;
}

.xtra-small-space {
    padding-bottom: 12px;
}

.xtra-small-space-top {
    padding-top: 12px;
}

.xtra-xtra-small-space {
    padding-bottom: 8px;
}

.nowrap {
    white-space: nowrap;
}

/* Most likely not needed anymore .lead - tbd */
.lead {
    font-weight: 500;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Buttons -------------------------------*/

.btn-container,
.single-product-btn-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.products-btn-container {
    margin-top: auto;
}

.single-product-btn-container {
    margin-top: 2rem;
}

button,
.btn {
    font: inherit;

    text-decoration: none;
    line-height: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: transform 0.1s ease;
}

.primary-btn {
    font-weight: 500;
    padding: 0.9rem 2rem;
    min-width: 250px;
    background-color: var(--primary-btn2);
    box-shadow: 0 1px 3px var(--background-color-darkest);
}

.secondary-btn {
    min-width: 210px;
    background-color: var(--background-color-dark);
    box-shadow: 0 1px 3px var(--background-color-darkest);
}

.multi-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* Gap button - button */
    gap: 1rem;
}

.btn:hover {
    border-color: #aaa;
    filter: brightness(0.97);
    cursor: pointer;
}

.btn:active {
    text-decoration: none;
    color: inherit;
    filter: brightness(1.1);
    transform: scale(0.9);
}

.btn,
.btn:visited {
    color: inherit;
}

/* Links and inline links */

.inline-link {
    color: inherit;
}

.inline-link:hover {
    cursor: pointer;
}

.inline-link:visited {
    color: inherit;
}

/* Header -----------------------------------------------------------------------------------*/
header {
    /* To include navbar toggle in header */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*Variable header height to screen size*/
    height: var(--header-height);
    z-index: 10;
    /* Padding right and left for margin*/
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background: var(--background-color-dark);*/
    background: linear-gradient(to bottom,
            var(--background-color-light),
            var(--background-color-dark));
    /*For "3D effect"*/
    box-shadow: 0 2px 4px var(--box-shadow-color2);
}

header a {
    text-decoration: none;
    color: inherit;
}

.header-heading {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--heading-color);
}

/* Logo in header ------------------------------------------------*/
.brand {
    text-decoration: none;
    color: inherit;
}

#header-logo {
    max-width: 10rem;
}

/* Navbar --------------------------------------------------------- */

/* Navbar dropdown toggle style for small screens */
nav {
    /* To seperate from parent element: header */
    position: absolute;
    /* styles like header*/
    background-color: var(--background-color-dark);
    padding: 0 1rem;
    box-shadow: 0 3px 3px var(--box-shadow-color2);
    /* To hide unless toggled, i.e. checkbox input checked */
    display: none;
    /* To not to cover the h1 header when dropdown menu toggled.*/
    top: 100%;
    /* Fill out screen width*/
    left: 0;
    right: 0;
    z-index: 5;
}

/* Pseudo-class chacked to toggle when burger menu activated, i.e. checkbox input checked. Tilde to target adjoining nav element.*/
#navbar-toggle:checked~nav {
    display: block;
}

/* To hide the checkbox */
#navbar-toggle {
    display: none;
}

/* Enlargen navbar-toggle-label to make it easier to target */
.navbar-toggle-label {
    font-size: 2rem;
    /* Push Burger Menu Icon under Language switch */
    position: absolute;
    right: 1rem;
    top: 2rem;
    z-index: 11;
}

#navbar {
    font-size: 1.1rem;
    letter-spacing: 2px;
    list-style-type: none;
    text-align: right;
    margin-right: 1.5rem;
}

#navbar li {
    margin-bottom: 1em;
}

#navbar a:active {
    font-size: 1.2rem;
    color: var(--link-color);
    text-decoration: underline;
}

.current {
    border-bottom: 2px groove #ac989d;
}

/* Language switch ------------------------------------------------*/
.language-switch {
    position: absolute;
    top: 0.4rem;
    right: 1rem;
    font-size: 0.9rem;
    z-index: 11;
}

.language-switch a {
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.7;
}

.active {
    text-decoration: underline;
}

.language-switch a.active {
    font-weight: 600;
    opacity: 1;
}

/* Main content ---------------------------------------------------------------------------------*/
main {
    background-color: var(--background-color-main);
    /* Push Footer down */
    flex: 1 0 auto;
    /* Push down from header */
    padding-top: 0;
    padding-bottom: 2rem;
}

.container {
    margin: 20px auto;
    padding: 0 24px;
    max-width: 1100px;
}

.box-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Hero image section ---------------------------------------------------------------------------*/

#hero-image {
    width: 100%;
    height: clamp(220px, 68vw, 320px);
    background: url("../images/hero-image.webp") no-repeat center 70%;
    background-size: cover;
    margin-bottom: 18px;
}

#hero-text {
    background: rgba(251, 249, 250, 0.86);
    position: static;
    width: 90%;
    max-width: 900px;
    margin: 15px auto;
    padding: 14px 16px;
}

#hero-text h1 {
    font-size: 1.1rem;
    line-height: 1.25;
}

#hero-text h2 {
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
}

/* Home page - General information -------------------------------------------------------------*/

.section-heading {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}

.box {
    padding: 0 0 40px 0;
    margin-bottom: 40px;
    border-bottom: 1.6px groove #ac989d;
}

.box:last-child {
    border-bottom: none;
}

.company-name {
    text-align: center;
}

.company-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

/* left column: fixed width */
.company-media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.partner-company-logo {
    width: 75%;
    max-width: 300px;
    height: auto;
    display: block;
}

/* Under construction notification --------------------------------*/


/* Products-------------------------------------------------------------------------------------*/

.card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card-container h1 {
    grid-column: 1 / -1;
    text-align: center;
}

.card {
    /* Consistent look on boarder-radius and color */
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    padding-top: 1rem;
}

.products-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-card-content {
    padding: 0.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
}

.coming-soon-card {
    grid-column: 1 / -1;
    font-style: italic;
    text-align: center;
    color: #13181a98;
}

.coming-soon-card h2 {
    color: inherit;
}

/* Single product pages-------------------------------------------------------------------------*/

/* Heading and logo */
.single-product-logo-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.single-product-logo-heading img {
    width: 3rem;
    height: auto;
    display: block;
    transform: translateY(-1px);
}

.single-product-logo-heading h1 {
    margin: 0;
    line-height: 1;
}

/* Single Products container and cards */
.company-product-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.company-product-container h2 {
    margin-top: 1.5rem;
}

.single-product-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.single-product-card-content {
    padding: 0.5rem 1.5rem 1.5rem;
    display: grid;
    gap: 0;
}

/* Single Products content */

.product-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    /*max-width: 767px;*/
    margin: 0 auto;
}

.product-feature h4 {
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.h4-small-margin,
.product-feature h4.h4-small-margin {
    margin-bottom: 0.5rem;
}

.product-feature img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-feature>img,
.product-feature>picture {
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
    margin-top: 1rem;
}

.product-feature-text {
    max-width: 100%;
}

.product-specs-list {
    padding-left: 1.5rem;
    line-height: 1.5;
}

.product-specs-subheading {
    font-weight: 350;
    margin: 0.4rem auto;
}

.product-main-image {
    display: block;
    height: auto;
    width: 100%;
}

.product-purchase {
    text-align: center;
    margin: 1.5rem auto 0;
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    margin-bottom: 0.2rem;
}

.price-value {
    white-space: nowrap;
}

.price-amount,
.price-currency {
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

.price-note {
    font-size: 0.85rem;
    color: #6b6b6b;
    font-style: italic;
    margin-left: 0;
}

.price-gov {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin-bottom: 1rem;
}

/* Single-product product catalogues */

.product-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-items: center;
    gap: 1rem;
    width: 100%;
    margin: 0.7rem auto;
}

.product-nav-card {
    text-align: center;
    width: 100%;
    max-width: 420px;
    transition: box-shadow 0.18s ease;
}

.product-nav-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-nav-card h3 {
    margin-bottom: 0;
    text-align: center;
}

.product-nav-card .card-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 90px;
    margin: 0.75rem auto 0;
    padding-top: 0;
    aspect-ratio: auto;
    object-fit: contain;
}

.product-nav-card .card-content {
    padding: 0.5rem 0.8rem 0.8rem;
    gap: 0.2rem;
}

.product-nav-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-nav-card:hover {
    /*transform: translateY(-1px);*/
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.329);
}

.product-nav-card:active {
    /*transform: translateY(-1px);*/
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.329);
    transform: scale(0.9);
}

/* Single-product color choices */
.product-colors {
    margin: 2rem auto;
    text-align: center;
}

.product-colors h3 {
    text-align: center;
    margin: 2rem auto;
}

.color-row {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: fit-content;
    margin: 0 auto;
}

.color-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    /*margin-left: 30%;*/
}

.color-swatch {
    display: inline-block;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    /*box-shadow: 0 0 0 2px #fff, 0 0 0 3px #d8d6d8;*/
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.35),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15),
        0 0 0 2px #fff,
        0 0 0 3px #d8d6d8;
    transition: transform 0.15s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        0 0 0 2px #fff,
        0 0 0 3px #bfbdbf;
}

.black {
    background: #0f0f0f;
}

.ranger-green {
    background: #aca88f;
}

.coyote {
    background: #d0a270;
}

/* Single Product: UNHINGED */
#unhinged .product-main-image {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
}

.product-main-image {
    width: 100%;
    display: block;
}

.product-logo-overlay {
    position: absolute;

    bottom: clamp(8px, 2vw, 20px);
    left: clamp(8px, 2vw, 20px);

    width: clamp(70px, 18vw, 180px);
    height: auto;

    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

#unhinged h4 {
    margin-bottom: 5px;
}

.btw-note {
    max-width: 420px;
    margin: 0.2rem auto 0;
    text-align: right;
    font-size: 0.7rem;
    font-style: italic;
}

.specification-note {
    font-style: italic;
    color: #6b6b6b;
}

/* Single Product: Ventumgear */
#ventumgear-beak-muzzle .product-main-image {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    object-position: center bottom;
}

.ventum-image {
    transform: rotate(90deg);
}

.ventum-product-main-image {
    display: block;
    width: clamp(300px, 70vw, 700px);
    height: auto;
    margin: 0 auto;
}



/* Dowload links for pdf data sheets */
.pdf-download {
    font-size: 0.85rem;
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 300;
}

.pdf-download a:visited {
    color: inherit;
}

.pdf-download i {
    color: #8c0a0f;
    font-size: 1.1rem;
}

/* Create margin-top for anchors to products due to fixed header */
.company-product-container .card {
    scroll-margin-top: 120px;
}

/* Smooth scrolling for products anchors only */
.company-product-container {
    scroll-behavior: smooth;
}

/* Single Product: Videos ---------- */
.product-video {
    text-align: center;
}

.product-video h3 {
    text-align: center;
}

.video-credits {
    max-width: 420px;
    margin: 0.2rem auto 0;
    text-align: right;
    font-size: 0.7rem;
    font-style: italic;
}

.product-video-card .single-product-card-content {
    padding: 1.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.video-tile {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    color: white;
}

.video-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay */
.video-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.45rem 0.65rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
}

/* Contact --------------------------------------------------------------------------------------*/

/*

.box-contact {
    text-align: center;
    padding: 5%;
    margin-top: 20px;
    line-height: 1.2;
    border: 2px solid var(--background-color-darkest);
}

.contact-container {
    text-align: center;
    max-width: 90%;
}

.contact-container h2 {
    text-align: center;
}

*/

.contact-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
}

.contact-wrap>p {
    width: 100%;
    max-width: 700px;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.box-contact {
    width: 100%;
    max-width: 700px;
    padding: 24px;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    background-color: var(--background-color-light);
    border: 2px solid var(--background-color-darkest);
}

.contact-container {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.contact-container h2 {
    text-align: center;
}

/* Contact form */

.contact-form {
    width: 100%;
    max-width: 700px;
    padding: 32px;
    background-color: var(--background-color-main);
    border: 1px solid var(--background-color-dark);
    box-shadow: 0 10px 30px rgba(19, 24, 26, 0.1);
}

.contact-form h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--heading-color);
    text-align: center;
}

.contact-form label {
    display: block;
    margin: 16px 0 8px;
    font-family: var(--text-font);
    font-weight: 500;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--text-font);
    font-size: 1rem;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid var(--background-color-darkest);
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(143, 152, 126, 0.35);
    border-color: var(--primary-btn1);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
    padding: 14px 16px;
    font-family: var(--text-font);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--background-color-darkest);
}

/* Honeypot field */

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Footer ---------------------------------------------------------------------------------------*/
footer {
    background-color: var(--background-color-darkest);
    box-shadow: 0 -3px 3px var(--box-shadow-color1);
}

.footer-inner {
    display: flex;
    justify-content: space-evenly;
    padding: 10px 0;
    list-style-type: none;
}

.footer-inner li {
    text-align: center;
}

.footer-inner a {
    color: var(--background-color-main);
    text-decoration: none;
    font-weight: 400;
    min-height: 40px;
}

.footer-inner a:hover {
    text-decoration: underline;
}

.footer-inner a:visited {
    color: var(--background-color-main);
}

.footer-inner i {
    font-size: 1.2rem;
    padding: 0.2rem;
    transition: 0.2s ease;
}

.footer-inner a:hover i {
    transform: scale(1.1);
}

/* Media queries ------------------------------------------------------------------------------------------------------------*/

/* Media query: screens ≥767 (mobiles) -------------------------------------------------*/
@media (max-width: 767px) {

    /* Header: 2 rows (top: logo+burger-menu, bottom: h1) */
    header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 0.5rem 1rem;
    }

    .header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* logo links, burger rechts */
        width: 100%;
    }

    #header-logo {
        max-width: 7rem;
        height: auto;
        display: block;
    }

    .navbar-toggle-label {
        font-size: 2rem;
        line-height: 1;
    }

    .header-heading {
        margin: 0;
        text-align: center;
        line-height: 1.1;
        letter-spacing: 1px;
    }
}

/* Media query: screens ≥ 768px (tablets)---------------------------------------------- */
@media screen and (min-width: 768px) {
    h2 {
        text-align: center;
    }

    h3 {
        text-align: left;
    }

    header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 1.25rem;
        padding: 0.75rem 1rem;
        height: var(--header-height);
    }

    .header-top {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
    }

    .header-heading {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        text-align: center;
        align-self: center;
        justify-self: center;
    }

    nav {
        grid-column: 3;
        grid-row: 1;
        position: static;
        display: block;
        width: auto;
        padding: 0;
        box-shadow: none;
        align-self: center;
        justify-self: end;
        margin-top: 1rem;
    }

    #navbar {
        display: flex;
        gap: 1rem;
        margin: 0;
        padding: 0;
        list-style: none;
        background: none;
    }

    #navbar a:hover {
        border-bottom: 2px groove #ac989d;
    }

    #navbar li {
        margin: 0;
    }

    .navbar-toggle-label {
        display: none;
    }

    .language-switch {
        position: static;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: start;
        font-size: 0.9rem;
    }

    /* Main section ---------------------------*/

    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px 24px;
    }

    /* Hero image section ----------------------*/

    #hero-image {
        height: clamp(360px, 55vh, 560px);
    }

    #hero-text {
        padding: 24px 20px;
    }

    #hero-text h1 {
        font-size: 2rem;
    }

    #hero-text h2 {
        font-size: 1.2rem;
    }

    /* Partner companies section ----------------*/

    .company-name {
        text-align: left;
    }

    .company-box {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .company-media {
        width: auto;
        flex: 0 0 120px;
        justify-content: flex-start;
    }

    .box-text {
        flex: 1;
    }

    .btn-container {
        align-items: flex-start;
    }

    .partner-company-logo {
        width: 100%;
        max-width: 120px;
        height: auto;
        display: block;
    }

    .box-text {
        padding-left: 20px;
    }

    /* Products --------------------------- */
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Single product pages ---------------- */
    .company-product-container .card-content {
        gap: 0;
    }

    .product-feature {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .product-feature-text,
    .product-intro {
        padding: 1rem;
    }

    .product-feature>img,
    .product-feature>picture {
        width: 100%;
        max-width: 480px;
        height: auto;
        margin-top: 0;
    }

    .product-feature:nth-of-type(even)>img,
    .product-feature:nth-of-type(even)>picture {
        order: 2;
    }

    .product-feature:nth-of-type(even) .product-feature-text {
        order: 1;
    }

    .product-feature-text .text-block+.text-block {
        margin-top: 2rem;
    }

    /* Color choices */
    .color-row {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .color-item {
        display: grid;
        grid-template-columns: 40px auto;
        align-items: center;
        gap: 0.7rem;
        min-width: 170px;
    }

    /* Single Product: Ventumgear */
    #ventumgear-beak-muzzle .product-feature img {
        max-height: 420px;
        width: 100%;
        object-fit: contain;
    }

    /* Product Videos ----------------------*/
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
        gap: 1rem;
        justify-content: center;
    }

    /* Contact -----------------------------*/
    .contact-container {
        max-width: 70%;
    }
}

/* Media query: screens ≥992px (laptops, desktops)--------------------------------------*/
@media screen and (min-width: 992px) {

    /* Hero image section --------------------*/
    #hero-image {
        height: clamp(480px, 60vh, 720px);
    }

    /* Home page - General information --------*/
    .company-box {
        flex-direction: row;
        gap: 2rem;
    }

    .company-media {
        flex: 0 0 140px;
        justify-content: flex-start;
    }

    .partner-company-logo {
        max-width: 140px;
    }

    /* Products --------------------------- */
    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-feature,
    .product-intro {
        max-width: 1000px;
        margin: 0 auto;
    }

    .product-feature>img,
    .product-feature>picture {
        max-width: 500px;
    }

    /*
    #unhinged .product-feature,
    #unhinged .product-intro {
        max-width: 1200px;
        margin: 0 auto;
    }

    #unhinged .product-feature {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    #unhinged .product-feature>img,
    #unhinged .product-feature>picture {
        max-width: none;
        width: 100%;
    }
    */

    /* Contact -----------------------------*/
    .contact-container {
        max-width: 50%;
    }
}

/* Media query: screens ≥1200px (laptops, desktops)------------------------------------*/
@media screen and (min-width: 1200px) {
    #hero-text {
        max-width: 900px;
        width: 90%;
    }

    /* General information ---------------*/
    .container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 24px;
    }

    /* Partner companies section ---------*/

    .section-heading {
        margin: 1.5rem 0 1.5rem;
    }

    .partner-company-logo {
        max-width: 180px;
    }

    /* Contact -----------------------------*/
    .contact-container {
        max-width: 45%;
    }
}

/* Media query: screens ≥1400px (XL desktops)------------------------------------------*/
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    /* Contact -----------------------------*/
    .contact-container {
        max-width: 40%;
    }
}