:root {
    /*Main Colours*/


    --blue-color-600: #007cb0;
    --blue-color-900: #2f3234;
    --yellow-color-200: #FCE181;
    --white-color-100: #F9F9F9;
    --white-color-200: #F5F5F5;
    --grey-color-100: #F7FCF8;
    --grey-color-200: #F9F9F9;
    --grey-color-300: #9C9C9C;
    --grey-color-400: #D0D0D0;
    --grey-color-500: #D9D9D9;
    --grey-color-700: #858585;
    --black-color-200: #252424;
    --red-color: #F53838;
    /*Fonts*/
    --primaryFont: "Outfit", sans-serif;
}
main {
    max-width: 2200px;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: var(--primaryFont);
}

.primaryFont {
    font-family: var(--primaryFont);
}

.extendBanner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
 
.outfit-font {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.font-thin {
    font-weight: 100;
    font-style: normal;
}

.font-extralight {
    font-weight: 200;
    font-style: normal;
}

.font-light {
    font-weight: 300;
    font-style: normal;
}

.font-regular {
    font-weight: 400;
    font-style: normal;
}

.font-medium {
    font-weight: 500;
    font-style: normal;
}

.font-semibold {
    font-weight: 600;
    font-style: normal;
}

.font-bold {
    font-weight: 700;
    font-style: normal;
}

.font-extrabold {
    font-weight: 800;
    font-style: normal;
}

.font-black {
    font-weight: 900;
    font-style: normal;
}


.fontSize09rem {
    font-size: 0.9rem;
}

.fontSize1rem {
    font-size: 1rem;
}

.fontSize12rem {
    font-size: 1.2rem;
}

.fontSize15rem {
    font-size: 1.5rem;
}

.fontSize18rem {
    font-size: 1.8rem;
}

.fontSize2rem {
    font-size: 2rem;
}

.fontSize3rem {
    font-size: 2rem;
}


.colorBlue600 {
    color: var( --blue-color-600);
}

.colorBlue900 {
    color: var( --blue-color-900);
}

.colorGrey300 {
    color: var(--grey-color-300);
}


.colorGrey700 {
    color: var(--grey-color-700);
}

.colorBlack200 {
    color: var(--black-color-200);
}

.color--red {
    color: var(--red-color);
}

.background-colorYellow200 {
    background-color: var( --yellow-color-200);
}

.background-colorBlue600 {
    background-color: var(--blue-color-600)
}


.background-colorBlue900 {
    background-color: var(--blue-color-900)
}

.background-colorGrey500 {
    background-color: var(--grey-color-500);
}

.background-colorGrey200 {
    background-color: var( --grey-color-200);
}

.borderRadius2px {
    border-radius: 2px;
}


.form-control:focus {
    border-color: #294235 !important;
    box-shadow: 0 0 0 .25rem rgba(41,66 ,53, .25) !important;
}

.cursorPointer {
    cursor: pointer;
}

.minHeight70vh {
    min-height: 70vh;
}

.mainContainerPadding {
    padding: 2rem;
}

.noPaddingHomeBanner {
    margin: -2rem;
}


.mainContainer {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}


.pLengthClamp2 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.buttonTemplate {
    background-color: var(--blue-color-600);
    outline: none;
    border: none;
    color: white;
    min-height: 40px;
    min-width: 200px;
    border-radius: 2px;
    font-family: var(--primaryFont);
    text-align: center;
}





#desktopMenuAppliances {
    z-index: 900;
    max-height: 0;
    opacity: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden; /* Ensure content doesn't show when height is 0 */
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out; /* Smooth transition */
    color: var(--black-color-200);
    pointer-events: none; /* Disable interactions */
    visibility: hidden; /* Make it hidden */
}

#desktopMenuAppliances.active {
    max-height: 6000px; /* A value that is high enough to contain the full height */
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

#desktopMenuAppliances a {
    text-decoration: none;
    color: inherit;
}

nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background-color: #f7f7f7;
}

nav .logo img {
    max-width:140px
}

.navItems {
    grid-column: span 3
}

.navigationMobile {
    display: none;
}

.navigationMobile img {
    max-width: 180px;
    width: 100%;
}


#resultsPartial ul {
    max-width: 600px;
    max-height: 50svh;
    overflow-x: hidden;
    overflow-y: auto
}


.resultsMobilePartial ul {
    overflow-x: hidden;
    overflow-y: auto
}

.navigationDesktop {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1em 2em;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.navigationDesktop img {
    width: 135px;
    height: auto;
}

.navItems {
    display: flex;
}

.navItems li {
    cursor:pointer;
    font-weight:500;
    padding-right:10px;
    padding-left:10px;
}

.navItems li a{
    text-decoration:none;
    color:inherit;
}


.logoImage {
    max-width: 130px;
    width: 100%;
}

.logInButton {
    grid-column: span 2;
    gap: 15px; 
}

.logInButton .btn {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    color:inherit;
}

.btn-wholesale {
    background-color: #294235;
    color: white !important;
}

.btn-login {
    background-color: #dc9e34; 
    color: black !important;
}

.navigationSearchContainer {
    grid-column: span 5;
}

.navigationButtonsContainer {
    grid-column: span 2;
    display: flex;
    justify-content: end;
}

.mobileMenuNavigationDrawer {
    background-color: #f7f7f7;
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    transition: left 0.4s;
    overflow: scroll;
}

.categoryLinkMobile {
    border-bottom: solid #e9e9e9 2px;
    padding-bottom: 10px;
}

.mobileSearchContainer {
    display: none;
}

.mobileSearchContainer i {
    right: 30px;
}

.mobileSearch {
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 10px;
    position: relative;
}


.mobileSearch::placeholder {
    color: var(--grey-color-300);
}

.navigationDrawerActive {
    left: 0;
}

.navigationDrawerClose {
    left: -130%;
}

.mobileMenuNavigationDrawer ul li {
    padding: 25px 0px;
}

.mobileMenuNavigationDrawer img {
    max-width: 120px;
}

.mobileShopDrawer {
    background-color: #f7f7f7;
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    transition: left 0.4s;
    overflow: scroll;
}

.mobileShopDrawerClose {
    left: -130%;
}

.mobileShopDrawerActive {
    left: 0;
}



/* Validation Messages*/

/* Step 1: Common Duotone positioning properties: All required to make icons render reliably */
.icon-duotone {
    position: relative;
    padding-left: 1.25em; /* make space for the width of the absolutely positioned icon */
}

    /* Step 2: Set the font styles for Duotone */
    .icon-duotone::before,
    .icon-duotone::after {
        font: var(--fa-font-duotone);
        /* include the basic Font Awesome font style settings if you haven't already */
        display: inline-block;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        /* position both layers of the icon to the left, set our fixed-width width, horizontally center layers, and then vertically align them so they flex with different line heights */
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1.25em;
        text-align: center;
        box-sizing: inherit;
    }

    /* Step 3: Set the default opacity levels and colors for each layer */
    .icon-duotone::before {
        color: var(--fa-primary-color, inherit);
        opacity: 1;
        opacity: var(--fa-primary-opacity, 1.0);
    }

    .icon-duotone::after {
        color: var(--fa-secondary-color, inherit);
        opacity: var(--fa-secondary-opacity, 0.4);
    }

.field-validation-error {
    padding-left: 2rem;
    display: inline-block;
}

    .field-validation-error::before {
        font: var(--fa-font-duotone);
        content: '\f057';
        font-size: 1.3rem;
    }

    .field-validation-error::after {
        font: var(--fa-font-duotone);
        content: '\f057\f057';
        font-size: 1.3rem;
    }

.field-validation-valid-custom {
    padding-left: 2rem;
    display: inline-block;
}

    .field-validation-valid-custom::before {
        font: var(--fa-font-duotone);
        content: '\f058';
        font-size: 1.3rem;
    }

    .field-validation-valid-custom::after {
        font: var(--fa-font-duotone);
        content: '\f058\f058';
        font-size: 1.3rem;
    }


@media(max-width:995px) {
    .navigationDesktop {
        display: none;
    }

    .navigationMobile {
        display: flex;
        justify-content: space-between;
        padding: 1.2rem 2.1rem;
    }

    .mobileSearchContainer {
        display: flex;
    }

    .mainContainerPadding {
        padding: 1.5rem;
    }

    .noPaddingHomeBanner {
        margin: -1.5rem;
    }
}

@media(max-width:895px) {
    .navItems {
        grid-column:span 2 ;
  
    }
    .logInButton {
        grid-column:span 3;
    }
}

@media(max-width:600px) {
    .navItems {
        display: none;
    }

    .logo {
        grid-column: span 2;
    }

    .logInButton {
        grid-column: span 4;
    }
}


@media(max-width:500px) {



    .mainContainerPadding {
        padding: 1rem;
    }

    .noPaddingHomeBanner {
        margin: -1rem;
    }


    .navigationMobile {
        padding: 1.2rem 1rem;
    }

        .navigationMobile img {
            max-width: 100px;
        }
}


