﻿:root {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    /*----------------------------------------*/
    --primary-background-color-cream: #f5f5dc;
    --primary-background-color-light-yellow: #f6ffd4;
    --primary-background-color-dark-green: #6ca46c;
    --primary-background-color-very-light-cream: #fffff9;
    /*----------------------------------------*/
    --navigation-background-color: white;
    /*----------------------------------------*/
    --primary-text-color: black;
    /*----------------------------------------*/
    --footer-text-color: #e0e0e0;
    --footer-text-hover-color: white;
    /*----------------------------------------*/
    --link-hover-text-color: rgb(73, 73, 73);
    /*----------------------------------------*/
    --button-hover-background-color: #ebf1bd;
    --button-active-background-color: #d4d9ab;
    --button-background-color: #f5f5dc;
    --button-background-color-transparent: transparent;
    /*----------------------------------------*/
    --out-of-stock-text-color: orangered;
    /*----------------------------------------*/
    --product-card-background-color: white;
    /*----------------------------------------*/
    --bottom-border-line-color: #282828;
    /*----------------------------------------*/
    --contactus-link-text-color: #3e3e3e;
    --contactus-link-text-hover-color: black;
    /*----------------------------------------*/
    --forgot-password-text-color: #2b2b2b;
    --forgot-password-text-hover-active-color: black;
    /*----------------------------------------*/
    --black-button-text-color: white;
    --black-button-background-color: black;
    --black-button-text-hover-color: black;
    --black-button-background-hover-color: transparent;
    /*----------------------------------------*/
    --transparent-black-button-text-color: black;
    --transparent-black-button-background-color: transparent;
    --transparent-black-button-text-hover-color: white;
    --transparent-black-button-background-hover-color: black;
    /*----------------------------------------*/
    --warning-text-color: red;
    /*----------------------------------------*/
    --success-text-color: green; 
    /*----------------------------------------*/
    --red-button-text-color: white;
    --red-button-background-color: #FF4742;
    --red-button-border-color: red;
    --red-button-hover-text-color: #FF4742;
    --red-button-hover-background-color: white;
    --red-button-active-background-color: red;
    /*----------------------------------------*/
    transition: font-size 0.5s ease-in-out;
}


@media (min-width: 500px) {
    :root {
        font-size: 16px;
    }
}

@media (min-width: 800px) {
    :root {
        font-size: 18px;
    }
}

@media (min-width: 400px) {
}

@media (min-width: 500px) {
}

@media (min-width: 800px) {
}

@media (min-width: 1000px) {
}


/* General Styles */

.black-button {
    color: var(--black-button-text-color); 
    background-color: var(--black-button-background-color); 
}

    .black-button:hover {
        color: var(--black-button-text-hover-color);
        background-color: var(--black-button-background-hover-color);
    }

    .black-button:active {
        color: var(--black-button-text-color);
        background-color: var(--black-button-background-color);
    }



.transparent-black-button {
    color: var(--transparent-black-button-text-color); 
    background-color: var(--transparent-black-button-background-color); 
}

    .transparent-black-button:hover {
        color: var(--transparent-black-button-text-hover-color);
        background-color: var(--transparent-black-button-background-hover-color);
    }

    .transparent-black-button:active {
        color: var(--transparent-black-button-text-color);
        background-color: var(--transparent-black-button-background-color);
    }



.red-button {
    color: var(--red-button-text-color);
    background-color: var(--red-button-background-color);
    border-color: var(--red-button-border-color);
    font-weight: bold;
}

    .red-button:hover {
        color: var(--red-button-hover-text-color);
        background-color: var(--red-button-hover-background-color);
    }

    .red-button:active {
        color: var(--red-button-text-color);
        background-color: var(--red-button-active-background-color);
    }







body {
    margin: 0px 0px;
    padding: 0px;
}

/* To make the footer stick to the bottom */
html, 
body {
    height: 100%; 
}

body {
    display: flex; 
    flex-direction: column; 
}

main {
    flex: 1 0 auto; 
}

footer {
    flex: 0 0 auto; 
}





/* Navigation */
.navigation {
    margin: 0;
    padding: 10px;
    background-color: var(--navigation-background-color);
}

    .navigation nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

/* Main navigation */
.main-navigation {
    list-style-type: none;
    padding: 0;
    margin: 1px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

    .main-navigation .navigation-icons {
        display: flex;
        flex: 0 1 auto; 
    }

    /* Main Title */
    .main-navigation .title {
        flex: 1 0 auto;
        display: flex;
        justify-content: center;
    }

        .main-navigation .title a {
            display: inline-block;
            text-decoration: none;
            color: var(--primary-text-color);
        }

            .main-navigation .title a:hover {
                color: var(--link-hover-text-color);
            }

            .main-navigation .title a:active {
                color: var(--primary-text-color);
            }

            .main-navigation .title a h1 {
                margin: 0;
            }


    /* Main Navigation links */
    .main-navigation .menu-icon,
    .main-navigation .desktop-link {
        margin: 0px 4px;
        transition: margin 0.5s ease-in;
    }

    .main-navigation .navigation-logo-link {
        display: inline-block;
        text-decoration: none;
        color: var(--primary-text-color);
    }

    .main-navigation .navigation-logo-link {
        cursor: pointer;
    }

.navigation-logo-link img {
    width: 20px;
    transition: width 0.5s ease-in;
}

.main-navigation .desktop-link .word {
    display: none;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}







/* Search Overlay */
.main-navigation .search-area {
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 0.1);
    overflow-y: hidden;
    transition: height 0.05s ease-in;
    display: flex;
    flex-direction: column;
}

.search-area .search-area-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    background-color: var(--navigation-background-color); 
}

.search-area .transparent-section-of-search {
    flex: 1 1 auto;
}

    .search-area .transparent-section-of-search .close-area-button {
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0 / 0.3);
    }



    .search-area .search-items {
        width: 100%;
        margin: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

/* Search close button syles */
.search-items .search-close-button {
    width: 100%;
    display: flex;
    justify-content: end;
}

.search-close-button .close-button {
    margin: 20px;
    border: none;
    border-radius: 10px;
    background-color: var(--navigation-background-color);
    cursor: pointer;
    font-size: 1rem;
}

    .search-close-button .close-button img {
        width: 70px;
    }



.search-area .search-items .close-button:hover {
    background-color: var(--button-hover-background-color);
}

.search-area .search-items .close-button:active {
    background-color: var(--button-active-background-color);
}



/* Search form styles */
.search-items .search-form-container {
    width: 100%;
}

.search-form-container .search-form {
    display: flex;
    width: 100%;
}

    .search-form-container .search-form input {
        display: block;
        height: 50px;
        width: 100%;
        border-radius: 10px;
        border: none;
        border-bottom: solid;
        font-size: 1.6rem;
        padding: 0px 10px;
        margin: 10px;
        background-color: var(--primary-background-color-cream);
    }



@media (min-width: 300px) {

    .main-navigation .desktop-link,
    .main-navigation .menu-icon {
        margin: 0px 10px;
    }

    .navigation-logo-link img {
        width: 25px;
    }
}

@media (min-width: 500px) {
    .main-navigation .title a {
        padding: 5px;
    }

    .navigation-logo-link img {
        width: 30px;
    }
}

@media (min-width: 800px) {
    /* Hide mobile version of navigation */
    .menu-icon {
        display: none;
    }

    .main-navigation .search-container {
        flex: 1 0 auto;
    }

    .main-navigation .desktop-link a {
        display: flex;
        align-items: center;
        padding: 5px 15px;
        border-radius: 10px;
    }

    .main-navigation .desktop-link .word {
        display: block;
        margin: 5px;
    }

    .main-navigation .search a {
        background-color: var(--primary-background-color-cream);
    }

    .main-navigation .desktop-link .search-word {
        color: var(--link-hover-text-color);
    }

        .main-navigation .desktop-link .search-word:hover {
            color: var(--primary-text-color);
        }


    .main-navigation .desktop-link a:hover {
        background-color: var(--button-hover-background-color);
    }

    .main-navigation .desktop-link a:active {
        background-color: var(--button-active-background-color);
    }
}


@media (min-width: 1000px) {

    .main-navigation {
        max-width: 1000px;
    }

        .main-navigation .search-area .search-items {
            max-width: 1000px;
        }
}







/* Product Navigation */

/* For small screen */

@media (max-width: 800px) {
    .product-navigation {
        font-size: 1.5rem;
    }
}

/* Menu Overlay */
.menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: var(--primary-background-color-cream);
    overflow-x: hidden;
}

.menu-overlay-content {
    display: flex;
    flex-direction: column;
}

.menu-overlay-close-button {
    display: flex;
    justify-content: end;
}

    .menu-overlay-close-button .close-button {
        display: block;
        margin: 20px;
        padding: 5px;
        cursor: pointer;
        border: none;
        border-radius: 10px;
        background-color: var(--primary-background-color-cream);
    }

        .menu-overlay-close-button .close-button img {
            width: 70px;
        }


        .menu-overlay-close-button .close-button:hover {
            background-color: var(--button-hover-background-color);
        }

        .menu-overlay-close-button .close-button:active {
            background-color: var(--button-active-background-color);
        }




.product-navigation {
    list-style-type: none;
    padding: 10px;
    margin: 10px;
}

    .product-navigation .login-link {
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: solid 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-navigation .login-link img {
        display: none; 
    }

    .product-navigation li {
        margin: 20px;
    }

        .product-navigation li a {
            text-decoration: none;
            color: var(--primary-text-color);
        }

            .product-navigation li a:hover {
                color: var(--link-hover-text-color);
            }

            .product-navigation li a:active {
                color: var(--primary-text-color);
            }


/* For Big Screen */
@media (min-width: 800px) {

    .menu-overlay {
        height: auto;
        width: 100%;
        position: relative;
        z-index: 0;
        background-color: var(--navigation-background-color);
        margin: 20px;
    }

    .menu-overlay-content {
        display: block;
        padding: 0;
        width: 100%;
    }

    .menu-overlay-close-button .close-button {
        display: none;
    }

    .product-navigation {
        display: flex;
        justify-content: space-evenly;
        padding: 0;
        margin: 0;
        width: 100%;
    }

        .product-navigation li {
            margin: 0;
        }

        .product-navigation .login-link {
            display: none;
        }
}

@media (min-width: 1000px) {

    .menu-overlay {
        max-width: 1000px;
    }
}






/* Footer */

footer {
    background-color: #06402B; 
    margin: 0px;
    padding: 10px;
}

    footer section {
        display: flex;
        justify-content: center;
    }

    footer .container {
        flex: 1 0 auto;
        max-width: 800px; 
        display: flex; 
        justify-content: space-around; 
    }

    footer ul {
        padding: 0px; 
        list-style-type: none; 
    }

    footer ul li {
        text-align: center; 
    }

        footer ul .heading {
            font-size: 1.2rem; 
            color: var(--footer-text-color); 
        }

        footer ul li a {
            display: inline-block;
            margin: 5px;
            padding: 5px;
            color: var(--footer-text-color);
            text-decoration-line: none;
        }

            footer ul li a:hover {
                text-decoration-line: underline;
                color: var(--footer-text-hover-color);
            }






/* Home page */

.home-page {
    margin-top: 20px;
    height: 100%;
}

/* First section for categories */

.first-categories-section {
    background-color: var(--primary-background-color-cream);
    margin: 20px 0px 0px 0px;
    display: flex;
    justify-content: center; 
}

    /* Scroll buttons for category cards */
    .first-categories-section .scroll-button-container {
        flex: 0 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

    .first-categories-section .scroll-button {
        height: 40px;
        width: 40px;
        border: none;
        border-radius: 10px;
        background-color: var(--button-background-color);
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }

        .first-categories-section .scroll-button img {
            width: inherit;
            margin: 0px;
            padding: 0px;
            object-fit: contain;
        }


    /* Category cards */
    .first-categories-section .product-categories-container {
        flex: 1 1 auto; 
        height: 100%;
        margin: 10px 0px;
        display: flex;
        flex-direction: row;
/*        flex-wrap: nowrap;*/
        overflow-x: auto;
        scroll-behavior: smooth;
        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
        max-width: 1000px; 
    }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .first-categories-section .product-categories-container::-webkit-scrollbar {
            display: none;
        }

    .first-categories-section .product-category {
        flex: 1 0 auto;
        margin: 20px 5px;
    }

    .first-categories-section .category-link {
        width: 20vw;
    }

        .first-categories-section .category-link img {
            width: inherit;
            height: 80%;
            min-width: 200px;
            max-width: 300px;
            object-fit: cover;
            border-radius: 2px;
            border-radius: 20px;
        }

    .first-categories-section .category-name {
        text-align: center;
        font-size: 1.4rem;
        margin: 10px 0px;
    }


@media (min-width: 800px) {

    .first-categories-section .category-link {
        width: 30vw;
    }
}





/* Second section for categories */

.second-categories-section {
    padding: 40px 0px;
    display: flex; 
    justify-content: center;  
}

.second-categories-section .section-container {
    flex: 1 0 auto; 
/*    max-width: 1000px; */
}

    .second-categories-section .product-categories-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-gap: 30px;
        margin: 10px;
    }


    .second-categories-section .product-category {
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

    .second-categories-section .category-link-image {
        display: flex;
        justify-content: center;
    }

    .second-categories-section .category-link {
        display: flex;
        justify-content: center;
    }


    .second-categories-section img {
        width: 150px;
        height: 150px;
        max-height: 200px;
        object-fit: cover;
        border-radius: 20px;
    }

    .second-categories-section .category-name {
        text-align: center;
        font-size: 1.2rem;
        margin-top: 5px; 
    }




@media (min-width: 800px) {

    .second-categories-section .section-container {
        max-width: 1000px;
    }
}









/* Third section of hope page */

.third-product-section {
    background-color: var(--primary-background-color-cream);
    padding: 20px 0px;
    margin-bottom: 0px; 
    display: flex;
    justify-content: center;
}

.third-product-section .section-container {
    flex: 1 0 auto; 
    max-width: 1000px; 
}

    .third-product-section .products-container {
        margin: 10px;
        padding: 10px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-gap: 20px;
    }

    .third-product-section .product-container {
        margin: 5px;
        background-color: var(--product-card-background-color);
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        padding: 5px;
    }


    .third-product-section .product-link-container {
        display: flex;
        justify-content: center;
    }

    .third-product-section .product-link {
        width: 100%;
        height: 150px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .third-product-section .image-container {
        display: flex;
        justify-content: center;
    }

    .third-product-section img {
        width: 100%;
        max-height: 150px;
        max-width: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    .third-product-section .product-details-container {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .third-product-section .product-details-container {
        margin-top: 10px;
    }


    .third-product-section .product-details {
        display: flex;
        justify-content: center;
    }

    .third-product-section .product-name {
        margin-right: 10px;
    }

    .third-product-section .product-price {
        font-size: 0.9rem; 
    }

    .third-product-section .out-of-stock {
        text-align: center;
        margin: 5px;
        font-size: 1.1rem;
        font-weight: 550;
        color: var(--out-of-stock-text-color);
    }



@media (min-width: 500px) {

    .third-product-section .section-container {
        max-width: 700px;
    }

    .third-product-section .product-name,
    .third-product-section .product-price-container,
    .third-product-section .out-of-stock {
        font-size: 0.8rem;
    }
}

@media (min-width: 800px) {

    .third-product-section .section-container {
        max-width: 800px;
    }
}





/* Product List page */

.product-list-page {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--primary-background-color-cream);
}

    .product-list-page .section-container {
        flex: 1 1 auto; 
        max-width: 800px; 
        margin: 40px 0px; 
    }

    .product-list-page .category-title-and-orderby-section {
        margin: 10px 20px; 
    }

    .product-list-page .category-title {
        font-size: 1.5rem; 
        margin: 5px; 
    }


    .product-list-page .order-by-container {
        display:flex;  
        justify-content: end; 
        margin: 5px; 
        padding: 5px; 
    }

        .product-list-page .order-by-container .order-by-title {
            display:flex; 
            flex-direction:column; 
            justify-content: center; 
            align-content: center; 
        }

        .product-list-page .order-by-container .order-by-title header {
            flex: 0 0 auto; 
            display: inline-block;
            text-align: center;
        }

        .product-list-page .order-by-container .drop-down {
            display:flex; 
            flex-direction: column; 
            align-content: center; 
            justify-content: center; 
        }

        .product-list-page .order-by-container .drop-down form {
            
        }

        .product-list-page .order-by-container .order-by-drop-down-select {
            font-size: 1rem;
            background-color: var(--primary-background-color-cream);
            border: none;
            border-radius: 5px;
            padding: 5px 2px; 
            cursor: pointer; 
        }

        .product-list-page .order-by-container .order-by-drop-down-select:hover {
            background-color: var(--button-hover-background-color);
        }
            .product-list-page .order-by-container .order-by-drop-down-select:active {
                background-color: var(--button-active-background-color);
            }





/* Product list container */

.product-list-page .product-list-contaienr {
    margin: 10px;
       
}

    .product-list-page .product-list {
        margin: 10px; 
        padding: 10px; 
        display: grid; 
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
        grid-gap: 20px; 
    }

    .product-list-page .product-container {
        margin: 5px; 
        background-color: var(--product-card-background-color); 
        display: flex; 
        flex-direction: column; 
        border-radius: 10px;
        padding: 5px; 
    }

    

    .product-list-page .product-link-container {
        display: flex; 
        justify-content: center; 
    }

    .product-list-page .product-link {
        width: 100%;
        height: 150px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-list-page .image-container {
        display: flex;
        justify-content: center;
    }

    .product-list-page img {
        width: 100%;
        max-height: 150px;
        max-width: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    .product-list-page .product-details-container {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-list-page .product-details-container {
        margin-top: 10px; 
    }


.product-list-page .product-details {
    display: flex; 
    justify-content: center; 
    
}

.product-list-page .product-name {
    margin-right: 10px; 
}

    .product-list-page .out-of-stock {
        text-align: center; 
        margin: 5px; 
        font-size: 1.1rem; 
        font-weight: 550; 
        color: var(--out-of-stock-text-color); 
    }


@media (min-width: 500px) {

    .product-list-page .product-name,
    .product-list-page .product-price-container,
    .product-list-page .out-of-stock {
        font-size: 0.9rem;
    }

    
}

/* page navigation buttons */

.product-list-page .page-navigation-container {
    display: flex; 
    justify-content: center; 
}

.product-list-page .page-navigatoin-section {
    flex: 1 1 auto; 
    max-width: 400px; 
}

.product-list-page .page-navigatoin {
    display: flex; 
    justify-content: center;
    align-content: center; 
}


.product-list-page .page-number-container {
    display: flex; 
    flex-direction: column; 
    align-content: center; 
    justify-content: center; 
}


.product-list-page .page-number {
    margin: 5px; 
    text-align:center; 
}

.product-list-page .navigation-button {
    margin: 10px;
    padding: 0px;
    height: 30px;
    width: 50px;
    cursor: pointer;
    background-color: var(--button-background-color);
    border-radius: 5px;
    border: 1px solid black;
    display: flex; 
    justify-content: center; 
    align-content: center; 
}

    .product-list-page .navigation-button img {
        width: 35px; 
        height: 20px; 
        margin: 4px 0px;
        padding: 0px;
        object-fit: contain;
    }

.product-list-page .navigation-button:hover {
    background-color: var(--button-hover-background-color)
}

.product-list-page .navigation-button:active {
    background-color: var(--button-active-background-color)
}






/* Single product page */


.single-product-page {
    height: 100%; 
    background-color: var(--primary-background-color-cream); 
    display: flex; 
    justify-content: center; 
}

    .single-product-page .section-container {
        flex: 1 1 auto;  
        margin: 20px 0px; 
        max-width: 800px;
    }

    .single-product-page .product-container {
        display: flex;
        flex-direction: column;
    }

    .single-product-page .missing-product {
        font-size: 1.5rem;
        font-weight: bold;
    }


    .single-product-page .product-image-container {
        display: flex;
        justify-content: center;
    }

        .single-product-page .product-image-container img {
            flex: 1 1 auto; 
            width: 100%; 
            max-width: 300px; 
            border-radius: 20px; 
        }

    .single-product-page .product-details-container {
        display: flex; 
        justify-content: center; 
    }

    .single-product-page .product-details {
        flex: 1 1 auto;
        padding: 5px 10px;
        max-width: 300px;
    }

    .single-product-page .product-details-column {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column; 
        margin-left: 10px; 
    }

    .single-product-page .product-name {
        text-align: center; 
        font-size: 1.6rem; 
        margin: 10px 0px; 
    }


    .single-product-page .review-summary {
        display: flex; 
        justify-content: space-around; 
        margin-bottom: 10px; 
        margin-top: 5px; 
    }

    .single-product-page .product-price-container {
        font-size: 1.2rem;
        margin: 5px 0px;
    }

    .single-product-page .out-of-stock {
        text-align: center;
        margin: 5px;
        font-size: 1.1rem;
        font-weight: 550;
        color: var(--out-of-stock-text-color);
    }

    .single-product-page .product-description {
        margin: 10px 0px;
    }

    .single-product-page .product-description .title {
        font-size: 1.3rem; 
    }

    .single-product-page .drop-down {
        display: flex; 
        justify-content: start; 
        margin: 10px 0px; 
    }

    .single-product-page .drop-down .title {
        font-size: 1.2rem; 
        margin-right: 10px; 
    }

        .single-product-page .drop-down .quantity-drop-down-select {
            font-size: 1rem;
            background-color: var(--primary-background-color-cream);
            border: solid 1px;
            border-radius: 5px;
            cursor: pointer;
            text-align:center; 
            width: 80px; 
        }

            .single-product-page .drop-down .quantity-drop-down-select:hover {
                background-color: var(--button-hover-background-color);
            }

            .single-product-page .drop-down .quantity-drop-down-select:active {
                background-color: var(--button-active-background-color);
            }

    .single-product-page .add-to-bag {
        display: flex; 
        justify-content: center; 
        margin-top: 30px; 
    }


        .single-product-page .add-to-bag form {
            
        }

            .single-product-page .add-to-bag form button { 
                cursor: pointer;
                font-size: 1.2rem;
                width: 200px;
                height: 50px;
                border-radius: 10px;
            }


    .single-product-page .product-added-to-cart-confirmation {
        padding: 10px; 
        font-size: 0.9rem;
        max-width: 200px; 
    }

    .single-product-page .product-successfully-added {
        color: var(--success-text-color);
    }

    .single-product-page .failed-add-product-to-cart {
        color: var(--warning-text-color);
    }



/* Sinlge product reviews */

    .single-product-page .review-conainer {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .single-product-page .review-child-container {
        flex: 1 1 auto;
        max-width: 400px;
    }

    .single-product-page .review-title {
        text-align: center;
        font-size: 1.5rem;
    }


    .single-product-page .review-list {
        list-style-type: none;
        padding: 5px;
    }

    .single-product-page .single-review-contaienr {
        border-radius: 10px;
        background-color: var(--primary-background-color-very-light-cream);
        padding: 20px 10px;
        margin-bottom: 20px;
    }

    .single-product-page .user-comment {
        margin: 5px;
    }

        .single-product-page .user-comment .commnet {
            margin: 0px;
        }

    .single-product-page .rating-user-name-container {
        display: flex;
        justify-content: space-between;
    }

        .single-product-page .rating-user-name-container .user-name {
            font-size: 0.8rem;
            height: 1em;
            margin: auto 0;
        }



    /* Desktop view */
    @media (min-width: 800px) {
        .single-product-page .section-container {

    }

    .single-product-page .product-container {
        flex-direction: row;
        justify-content: space-around;
        padding-top: 50px;
    }

    .single-product-page .product-image-container {
        flex-direction: column; 
        justify-content: start; 
    }

        .single-product-page .product-image-container img {
            flex: 0 1 auto;
        }

    .single-product-page .product-details {
        margin-left: 20px; 
    }
    .single-product-page .product-details-column {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        margin-left: 0px;
    }

        .single-product-page .product-name {
            text-align: start;
        }

        .single-product-page .add-to-bag {
            justify-content: start;
        }
}






/* Search result page */

.search-result-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .search-result-page .search-result-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
    }

    .search-result-page .searched-for {
        font-size: 1.5rem; 
        margin: 10px; 
    }


    .search-result-page .search-products-continer {
        margin: 5px;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-gap: 20px;
    }

    .search-result-page .product-container {
        margin: 5px;
        background-color: var(--product-card-background-color);
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        padding: 5px;
    }


    .search-result-page .product-link-container {
        display: flex;
        justify-content: center;
    }

    .search-result-page .product-link {
        width: 100%;
        height: 150px;
        border-radius: 10px;
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
    }

    .search-result-page .image-container {
        display: flex; 
        justify-content: center; 
    }

    .search-result-page img {
        width: 100%;
        max-height: 150px; 
        max-width: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    .search-result-page .product-details-container {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .search-result-page .product-details-container {
        margin-top: 10px;
    }

    .search-result-page .product-details {
        display: flex;
        justify-content: center;
    }

    .search-result-page .product-name {
        margin-right: 10px;
    }

    .search-result-page .out-of-stock {
        text-align: center;
        margin: 5px;
        font-size: 1.1rem;
        font-weight: 550;
        color: var(--out-of-stock-text-color);
    }


@media (min-width: 500px) {

    .search-result-page .product-name,
    .search-result-page .product-price-container,
    .search-result-page .out-of-stock {
        font-size: 0.9rem;
    }
}







/* About us page */

.about-us-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .about-us-page .about-us-section {
        flex: 1 1 auto; 
        margin: 20px 0px; 
        max-width: 500px; 
        padding: 20px; 
    }

    .about-us-page .about-us-title {
        font-size: 1.5rem;
        text-align: center;
        border-bottom: solid 1px;
        border-color: var(--bottom-border-line-color); 
        padding-bottom: 10px
    }

    .about-us-page .about-us-paragraph {
        text-align: center; 
    }

        .about-us-page .about-us-paragraph a {
            color: var(--primary-text-color);
        }

        .about-us-page .about-us-paragraph a:hover {
            text-decoration:none; 
        }





/* Contact us page */

.contact-us-page {
    height: 100%; 
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .contact-us-page .contact-us-Section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 500px;
        padding: 20px;
    }

    .contact-us-page .contact-us-title {
        font-size: 1.5rem;
        text-align: center;
        border-bottom: solid 1px;
        border-color: var(--bottom-border-line-color);
        padding-bottom: 10px
    }

    .contact-us-page .email-container {
        margin: 20px 0px; 
    }

    .contact-us-page .email-title {
        text-align: center;
        font-size: 1.3rem;
    }

    .contact-us-page .email {
        text-align: center; 
        margin-top: 5px; 
    }

    .contact-us-page .external-links-container {
        display: flex; 
        flex-direction: column;
        margin-top: 20px; 
    }

    .contact-us-page .external-link {
        display: flex; 
        justify-content: center; 
        margin: 5px 5px; 
    }

    .contact-us-page .external-link a {
        font-size: 1.2rem;
        padding: 5px 5px; 
        color: var(--contactus-link-text-color); 
    }

        .contact-us-page .external-link a:hover {
            color: var(--contactus-link-text-hover-color);
            text-decoration-line: none; 
        }





/* Login Page */

.login-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .login-page .login-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 300px;
        padding: 10px;
    }

    .login-page .login-container {
        margin-top: 50px; 
    }

    .login-page .title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .login-page .validation-message {
        color: var(--warning-text-color); 
        text-align:center; 
        margin: 10px 0px; 
    }

    .login-page form {

    }

    .login-page .form-group {
        margin-bottom: 20px; 
    }

    .login-page .input-container {
        display: flex;
        flex-direction: column;
    }

        .login-page .input-container label {
            font-size: 1.2rem;
            margin-left: 3px; 
        }

        .login-page .input-container input {
            font-size: 1.2rem;
            border-radius: 5px;
        }


    .login-page .forgot-password-link {
        color: var(--forgot-password-text-color); 
        font-size: 1.1rem;
    }

        .login-page .forgot-password-link:hover,
        .login-page .forgot-password-link:active {
            color: var(--forgot-password-text-hover-active-color);
            font-size: 1.1rem;
            text-decoration-line:none; 
        }


    .login-page .login-create-account-container {
        display: flex; 
        justify-content: space-evenly; 
    }

        .login-page .login-create-account-container .create-account-link,
        .login-page .login-create-account-container .login-button {
            font-size: 1rem;
            padding: 10px; 
            border-radius: 10px; 
        }

        .login-page .login-create-account-container .create-account-link {
            display: block;
            text-decoration-line: none;
            border: solid 2px;
            border-radius: 10px;
        }

        .login-page .login-create-account-container .login-button {
            cursor: pointer;
        }

            





/* Create Account page  */

.create-account-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .create-account-page .create-account-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 300px;
        padding: 10px;
    }

    .create-account-page .create-account-container {
        margin-top: 50px;
    }

    .create-account-page .title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 20px; 
    }

    .create-account-page .validation-message {
        color: var(--warning-text-color);
        text-align: center;
        margin-top: 10px;
    }

    .create-account-page form {
    }

    .create-account-page .form-group {
        margin-bottom: 20px;
    }

    .create-account-page .input-container {
        display: flex;
        flex-direction: column;
    }

        .create-account-page .input-container label {
            font-size: 1.2rem;
            margin-left: 3px;
        }

        .create-account-page .input-container input {
            font-size: 1.2rem;
            border-radius: 5px;
        }

    .create-account-page .login-create-account-container {
        display: flex;
        justify-content: space-evenly;
    }

    .create-account-page .login-link,
    .create-account-page .create-account-button {
        font-size: 1rem;
        padding: 10px;
        border-radius: 10px;
    }

    .create-account-page .login-link {
        display: block;
        text-decoration-line: none;
        border: solid 2px;
        border-radius: 10px;
    }

    .create-account-page .create-account-button {
        cursor: pointer;
    }






/* Reset Password */

.reset-password-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .reset-password-page .reset-password-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 300px;
        padding: 10px;
    }

    .reset-password-page .reset-password-container {
        margin-top: 50px;
    }

    .reset-password-page .title {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .reset-password-page .validation-message {
        color: var(--warning-text-color);
        text-align: center;
        margin-top: 10px;
    }

    .reset-password-page form {
    }

    .reset-password-page .form-group {
        margin-bottom: 20px;
    }

    .reset-password-page .input-container {
        display: flex;
        flex-direction: column;
    }

        .reset-password-page .input-container label {
            font-size: 1.2rem;
            margin-left: 3px;
        }

        .reset-password-page .input-container input {
            font-size: 1.2rem;
            border-radius: 5px;
        }

    .reset-password-page .save-button-container {
        display: flex;
        justify-content: end;
    }

    .reset-password-page .save-button {
        font-size: 1rem;
        padding: 10px 15px;
        margin-right: 5px;
        border-radius: 10px;
        cursor: pointer;
    }




/* Profile Navigation layout */
.profile-navigation-layout {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}


    .profile-navigation-layout .profile-navigation-layout-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }

    .profile-navigation-layout .navigation-content-container {
        
    }

    .profile-navigation-layout .navigation-container {
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); 
        grid-gap: 20px; 
        margin:20px; 
    }

    .profile-navigation-layout .navigation-link {
        display: block;
        text-align: center;
        font-size: 1.4rem;
        text-decoration-line: none;
        padding: 10px; 
        border-radius: 10px;
        color: var(--primary-text-color);
        background-color: var(--primary-background-color-very-light-cream);
    }

        .profile-navigation-layout .navigation-link:hover {
            /*need to create var for this colour*/
            background-color: var(--button-hover-background-color);
        }

        .profile-navigation-layout .navigation-link:active {
            background-color: var(--button-active-background-color); 
        }



    .profile-navigation-layout .content-container {
        margin: 5px;
        background-color: var(--primary-background-color-very-light-cream); 
/*        border: solid 2px; */
        border-radius: 10px; 
        padding: 5px; 
/*        overflow: hidden; */
    }

    .profile-navigation-layout .logout-container {
        display: flex; 
        justify-content: end; 
        margin: 10px;  
    }

    .profile-navigation-layout .log-out-button {
        font-size: 1.2rem;
        padding: 10px 15px;
        cursor: pointer;
        border-radius: 10px;
    }



@media (min-width: 500px) {

    .profile-navigation-layout .navigation-content-container {
        display: flex; 
    }

    .profile-navigation-layout .navigation-container {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        margin: 10px;
        grid-gap: 10px;
    }

    .profile-navigation-layout .content-container {
        flex: 1 1 auto;
        margin: 5px;
        padding: 10px;
    }

    .profile-navigation-layout .navigation-link {
        padding: 10px 10px;
        font-size: 1.2rem;
    }

}




/* User Details Section */

.user-details-section {
    
}

    .user-details-section .failed-to-load-user-details {
        color: var(--warning-text-color); 
        font-size: 1.2rem; 
    }

    .user-details-section .title {
        font-size: 1.4rem; 
        text-align: center; 
        margin: 10px; 
    }

    .user-details-section .user-details-table-container {
        display: flex; 
        justify-content: center; 
    }

    .user-details-section table {
        border-collapse: collapse; 
        table-layout:fixed; 
        font-size: 1rem; 
        width: 100%; 
    }

        .user-details-section table tr,
        .user-details-section table th {
            padding: 5px 10px;
        }

        .user-details-section table .property {
            font-size: 1.1rem; 
            width: 20%; 
        }

        .user-details-section table td {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }





/* User orders section */

.user-orders-section {
    
}

    .user-orders-section .order-detail-title {
        text-align: center; 
        font-size: 1.1rem;
        margin: 10px 0px; 
    }

    .user-orders-section .error-message {
        color: var(--warning-text-color); 
        text-align: center; 
    }

    .user-orders-section .no-orders-text {
        text-align: center; 
    }

    .user-orders-section .order-details-container {
        border-radius: 10px; 
        background-color: var(--primary-background-color-cream); 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        margin: 20px 5px; 
        padding: 5px; 
        
    }

    .user-orders-section .order-items {
        flex: 1 1 auto; 
        margin: 5px;
        padding: 5px;
    }

    .user-orders-section .order-summary-container {
        flex: 1 1 auto;
    }


        .user-orders-section .order-items .title {
            text-align: center; 
        }

    .user-orders-section .order-items-table {
        border-collapse: collapse; 
        table-layout: fixed; 
        font-size: 0.9rem; 
        text-align: center; 
        width: 100%; 
    }

        .user-orders-section .order-items-table .product-name-title {
            text-align: left;
            width: 60%;
        }

        .user-orders-section .order-items-table .product-name {
            text-align: left;  
        }



    .user-orders-section .order-summary-container {
        margin: 5px; 
        padding: 5px; 
        display: flex; 
        flex-direction: column; 
        align-content: center; 
        justify-content: space-around; 
    }

    .user-orders-section .order-date-status-container {
        display: flex; 
        justify-content: space-around; 
    }

    .user-orders-section .date-title,
    .user-orders-section .status-title{
        text-align: center;
        font-size: 0.9rem; 
    }

    .user-orders-section .order-date-container {
        display: flex; 
        justify-content: center; 
    }

    .user-orders-section .order-date {
        font-size: 0.8rem;
    }

    .user-orders-section .order-status-container {
        display: flex; 
        justify-content: center; 
    }

    .user-orders-section .order-status{
        font-size: 0.8rem; 
    }


    .user-orders-section .order-total-container {
/*        margin: 5px;*/
    }

        .user-orders-section .order-total {
            text-align: center; 
        }




@media (min-width: 800px) {

    .user-orders-section .order-details-container {
        flex-direction: row; 
        justify-content: center;
    }

    .user-orders-section .order-summary-container {
        flex: 1 0 200px;
    }

}





/* Edit Profile section */


.edit-profile-section {
    height: 100%;
    display: flex; 
    justify-content: center; 
}

    .edit-profile-section .edit-profile-container {
        flex: 1 1 auto;
        max-width: 300px;
    }

    .edit-profile-section .title {
        text-align: center;
        font-size: 1.1rem;
        margin: 10px 0px;
    }

    .edit-profile-section .validation-message {
        color: var(--warning-text-color);
        text-align: center;
        margin-top: 10px;
    }

    .edit-profile-section form {
    }

    .edit-profile-section .form-group {
        margin-bottom: 20px;
    }

    .edit-profile-section .input-container {
        display: flex;
        flex-direction: column;
    }

        .edit-profile-section .input-container label {
            font-size: 1rem;
            margin-left: 3px;
        }

        .edit-profile-section .input-container input {
            font-size: 1rem;
            border-radius: 5px;
        }

    .edit-profile-section .save-profile-container {
        display: flex; 
        justify-content: center; 
    }

    .edit-profile-section .save-profile-button {
        font-size: 1rem; 
        padding: 10px 20px; 
        border-radius: 10px; 
        display: block; 
        cursor: pointer; 
    }



/* Delete account section */


.delete-account-section {

}

    .delete-account-section .title {
        text-align: center;
        font-size: 1.1rem;
        margin: 10px 0px;
    }

    .delete-account-section .validation-message {
        color: var(--warning-text-color);
        text-align: center;
        margin-top: 10px;
    }


    .delete-account-section .account-deletion-question {
        text-align: center; 
        font-size: 1.1rem; 
        margin-bottom: 10px; 
    }


    .delete-account-section .delete-account-user-answer {
        display: flex;
        justify-content: space-evenly;
    }

    .delete-account-section .delete-account-yes-button,
    .delete-account-section .delete-account-no-link {
        font-size: 1rem; 
        padding: 10px 20px; 
        border-radius: 10px; 
    }

    .delete-account-section .delete-account-no-link {
        display: block;
        text-decoration-line: none;
        border: solid 2px;
        border-radius: 10px;
        font-weight: bold;
    }

    .delete-account-section .delete-account-yes-button {
        cursor: pointer;
    }






/* Your Bag Page */

.your-bag-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .your-bag-page .your-bag-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }

    .your-bag-page .bag-title {
        text-align: center; 
        font-size: 1.8rem; 
    }

    .your-bag-page .bag-items-and-summary-container {
        display: flex; 
        flex-direction:column; 
        margin: 20px 10px; 
    }

    .your-bag-page .items-container {
        margin: 0px 10px;
        display: flex; 
        justify-content: center; 
    }

    .your-bag-page .items-list {
        flex: 1 1 auto;
        list-style-type: none;
        padding: 0px;
        max-width: 500px;
        margin: 0px; 
    }

    .your-bag-page .single-item-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px; 
        background-color: var(--primary-background-color-very-light-cream);
        border-radius: 10px;
    }

    .your-bag-page .item-image-container {
        flex: 0 1 auto; 
    }

    .your-bag-page .item-summary {
        flex: 1 1 auto;
    }

    .your-bag-page .item-image-container {
        display: flex; 
        justify-content: center; 
    }

    .your-bag-page .item-image-container img {
        width: 100%; 
        max-width: 100px; 
        object-fit: contain; 
        border-radius: 10px; 
        margin: 10px; 
    }

    .your-bag-page .item-summary {
        display: flex; 
        justify-content: center; 
        margin: 10px; 
    }

    .your-bag-page .item-summary-container {
        flex: 1 1 auto; 
        max-width: 200px; 
    }

        .your-bag-page .item-summary-container .item-info {
            margin: 5px 0px;
            text-align: center;
        }

        .your-bag-page .item-summary-container .item-name {
            font-size: 1rem;
        }

        .your-bag-page .item-summary-container .item-price {
            font-size: 1rem;
        }

        .your-bag-page .item-summary-container .item-quantity {
            font-size: 1rem;
        }

        .your-bag-page .item-summary-container form {
            display: flex; 
            justify-content: center; 
        }

        .your-bag-page .item-summary-container .item-remove-button {
            font-size: 1rem;
            margin: 5px;
            border-radius: 6px; 
            padding: 5px; 
            cursor: pointer; 
            font-weight: normal; 
        }

    .your-bag-page .bag-summary-container {
        display: flex;
        justify-content: center;
        height: 100%;
    }

    .your-bag-page .bag-summary {
        background-color: var(--primary-background-color-very-light-cream);
        border-radius: 10px;
        margin: 0px 10px;
        max-width: 400px;
    }

    .your-bag-page .summary-title {
        text-align: center; 
        font-size: 1.3rem; 
        margin: 10px; 
    }

    .your-bag-page .total-items {
        text-align: center; 
        margin: 5px; 
    }

    .your-bag-page .summary-table {
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%; 
        margin: 10px 0px; 
    }

    .your-bag-page .summary-table tr th {
        padding: 5px 0px; 
    }

    .your-bag-page .check-out-container {
        display: flex; 
        justify-content: center; 
        margin: 20px; 
    }

    .your-bag-page .checkout-button {
        padding: 10px 20px; 
        border-radius: 10px; 
        font-size: 1.1rem; 
        text-decoration-line: none; 
        border: solid 2px; 
    }


    .your-bag-page .successfully-removed-item,
    .your-bag-page .failed-to-removed-item {
        font-size: 0.8rem;
        margin: 10px 0px 0px 0px; 
        text-align: center; 
    }

    .your-bag-page .successfully-removed-item {
        color: var(--success-text-color);
        
    }

    .your-bag-page .failed-to-removed-item {
        color: var(--warning-text-color); 
    }



    @media (min-width: 340px) {
        .your-bag-page .single-item-container {
        flex-direction: row;
    }

    .your-bag-page .item-summary-container form {
        justify-content: end;
    }
}



@media (min-width: 500px) {

    .your-bag-page .item-summary-container {
        max-width: none;
    }

    .your-bag-page .item-summary {
        width: none;    
    }
}
    

@media (min-width: 800px) {

    .your-bag-page .bag-items-and-summary-container {
        flex-direction:row; 
    }

    .your-bag-page .items-list {
        max-width: none;
    }

    .your-bag-page .items-container {
        flex: 1 1 auto;
    }

    .your-bag-page .bag-summary {
        flex: 1 1 300px;
    }

    .your-bag-page .bag-summary-container {
        position: sticky;
        top: 40px;
    }
        
}







/* Checkout page */

.checkout-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .checkout-page .checkout-page-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }

    .checkout-page .checkout-title {
        text-align: center; 
        font-size: 1.8rem; 
    }

    .checkout-page .failed-to-load-user-details,
    .checkout-page .user-cart-empty {
        text-align: center; 
        color: var(--warning-text-color); 
        font-size: 0.9rem; 
    }


    .checkout-page .checkout-container {

    }

    .checkout-page .message {
        text-align: center; 
    }

    .checkout-page .order-summary-and-payment-container {
        
    }

    .checkout-page .order-summary {
        max-width: 300px; 
        margin: 10px auto; 
        padding: 10px; 
        border-radius: 10px; 
        background-color: var(--primary-background-color-very-light-cream); 
    }

    .checkout-page .summary-title {
        font-size: 1.2rem; 
        text-align: center;
        margin-bottom: 10px; 
    }

    .checkout-page .total-items {
        display: block;
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .checkout-page .summary-table {
        border-collapse: collapse; 
        table-layout: fixed; 
        width: 100%; 
        text-align: center; 
    }

        .checkout-page .summary-table tr {
            height: 10px; 
        }

        .checkout-page .summary-table tr td {
            padding: 2px 0px; 
        }

        .checkout-page .summary-table .quantity-in-table {
            width: 2em;  
        }

        .checkout-page .summary-table .product-name-in-table {
            text-align: start; 
        }

        .checkout-page .summary-table .price-in-table {
            width: 5em; 
        }



    .checkout-page .payment-container {
        max-width: 300px;
        max-height: 300px; 
        margin: 10px auto;
        padding: 10px;
        border-radius: 10px;
        background-color: var(--primary-background-color-very-light-cream);
    }

    .checkout-page .payment-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .checkout-page .user-name-title,
    .checkout-page .user-email-title {
        font-weight: bold;
        padding-left: 10px; 
    }

    .checkout-page .user-name,
    .checkout-page .user-email {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-left: 10px;
    }

    .checkout-page .shipping-form {
        
    }

        .checkout-page .shipping-form .shipping-input {
            margin: 10px 0px;
            display: flex;
            flex-direction: column;
        }

        .checkout-page .shipping-form .form-group label{
            font-weight: bold; 
        }

            .checkout-page .shipping-form .form-group input {
                font-size: 1rem; 
            }

    .checkout-page .place-order-button-container {
        display: flex; 
        justify-content: center; 
    }

    .checkout-page .place-order-button {
        padding: 10px;
        font-size: 1rem;
        border-radius: 10px;
        cursor: pointer; 
    }

    .checkout-page .error-message {
        color: var(--warning-text-color); 
        text-align: center; 
        margin-top: 10px; 
    }



@media (min-width: 800px) {

    .checkout-page .order-summary-and-payment-container {
        display: flex; 
    }


    .checkout-page .order-summary {
        flex: 1 1 auto; 
    }

    .checkout-page .payment-container {
        flex: 1 1 auto; 
    }
}



/* Access denied page */

.access-denied-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .access-denied-page .access-denied-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }

    .access-denied-page .title {
        font-size: 2.5rem; 
        text-align: center; 
    }

    .access-denied-page .explanation {
        text-align: center;
        font-size: 1.5rem;
    }




/*body * {
    border: solid 1px;
}*/


/* Error page */

.error-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .error-page .error-page-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }


    .error-page .title {
        color: var(--warning-text-color); 
        font-weight: bold; 
        font-size: 2.5rem;
        text-align: center;
    }

    .error-page .explanation {
        text-align: center;
        font-size: 1.5rem; 
    }





/* Missing Page */

.missing-page {
    height: 100%;
    background-color: var(--primary-background-color-cream);
    display: flex;
    justify-content: center;
}

    .missing-page .missing-page-section {
        flex: 1 1 auto;
        margin: 20px 0px;
        max-width: 800px;
        padding: 10px;
    }


    .missing-page .title {
        font-weight: bold;
        font-size: 2.5rem;
        text-align: center;
    }

    .missing-page .explanation {
        text-align: center;
        font-size: 1.5rem;
    }





