﻿
@font-face {
    font-family: 'inriaserif';
    src: url('fonts/inriaserif-bold.ttf') format('truetype'), url('fonts/inriaserif-bolditalic.ttf') format('truetype'), url('fonts/inriaserif-italic.ttf') format('truetype'), url('fonts/inriaserif-light.ttf') format('truetype'), url('fonts/inriaserif-lightitalic.ttf') format('truetype'), url('fonts/inriaserif-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'inriaserif-light';
    src: url('fonts/inriaserif-light.ttf') format('truetype'), url('fonts/inriaserif-lightitalic.ttf') format('truetype'), url('fonts/inriaserif-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'inter-variablefont_opsz,wght';
    src: url('fonts/inter-variablefont_opsz,wght.ttf') format('truetype');
}

@font-face {
    font-family: 'inter-italic-variablefont_opsz,wght';
    src: url('fonts/inter-italic-variablefont_opsz,wght.ttf') format('truetype');
}

:root {
    --primary: #9e5205;
    --primary-light: #dd7d21;
    --primary-alt: #3C1D00;
    --primary-view: rgba(221, 125, 33, 0.77);
    --secondary: #996533;
    --secondary-alt: #653D16;
    --secondary-light: #FFF2E0;
    --secondary-view: rgba(153, 101, 51, 0.77);
    --accent: #757575;
    --light-bg: #FFF7EC;
    --text-dark: #1e1e1e;
    --text-muted: #6c6772;
    --white: #ffffff;
    --black: #000000;
}



body {
    background-color: var(--light-bg);
    font-family: 'inter-variablefont_opsz,wght';
} 

h1, h2, h3, h4 {
    font-family: inriaserif;
}
    /* Chrome, Edge, Safari */
    ::-webkit-scrollbar {
        height: 7px; /* scrollbar thickness */
    }

    ::-webkit-scrollbar-track {
        background: var(--secondary); /* track color */
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--primary-light); /* thumb color */
        border-radius: 5px;
        border: 2px solid var(--secondary); /* adds spacing effect */
    }

        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--secondary-light); /* darker on hover */
        }

    ::-webkit-scrollbar-button {
        display: none; /* hides the arrows */
    }

    .text-primary {
        color: var(--primary);
    }

    .text-secondary {
        color: var(--secondary);
    }

    .text-dark {
        color: var(--text-dark);
    }

    a {
        text-decoration: none;
        color: var(--primary-light);
    }

        a:focus, a:active {
            outline: none;
        }

        a:hover {
            color: var(--accent);
            text-decoration: none;
        }
    /* Skeleton container */
    .skeleton {
        border-radius: 8px;
        padding: 10%;
        max-width: 100%;
        height: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    /* Shimmer animation */
    .shimmer {
        position: relative;
        overflow: hidden;
        background-color: #e2e2e2;
    }

        .shimmer::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150px;
            height: 100%;
            width: 150px;
            background: linear-gradient( to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100% );
            animation: shimmer 1.5s infinite;
        }

    @keyframes shimmer {
        100% {
            transform: translateX(400px);
        }
    }
    /* Skeleton shapes */
    .avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-bottom: 12px;
    }

    .line {
        height: 12px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

        .line.short {
            width: 60%;
        }

        .line.medium {
            width: 80%;
        }

        .line.long {
            width: 100%;
        }

    .navbar {
        background-color: var(--light-bg);
        box-shadow: 0px 4px 4px rgba(153, 101, 51, 0.5);
        border-bottom: none;
    }

        .navbar ul li {
            font-family: 'inter-variablefont_opsz,wght';
            font-weight: 400;
            padding-top: 5px;
            margin-left: 15px;
        }

            .navbar ul li .form-control-sm {
                outline: none;
                border-style: none;
                border-radius: 50px;
                background-color: #FFFEFE;
                box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0.07);
                padding: 12px 38px 12px 15px;
                width: 400px;
                background-image: url('lucide_search.svg'); /* your search icon */
                background-repeat: no-repeat;
                background-position: right 20px center; /* position inside input */
                background-size: 20px 20px; /* adjust icon size */
            }

                .navbar ul li .form-control-sm:hover {
                    box-shadow: 0px 4px 4px 3px rgba(221, 125, 33, 0.31);
                    cursor: pointer;
                }


    .navbar-inverse .navbar-nav > li > a:hover,
    .navbar-inverse .navbar-nav > li > a:focus {
        color: black;
        background-color: rgba(153, 101, 51, 0.19);
        border-radius: 30px;
    }

    .nav-store {
        font-family: 'inter-variablefont_opsz,wght';
    }

        .nav-store a {
            float: left;
            font-size: larger;
            color: var(--accent);
        }

            .nav-store a:hover {
                color: var(--secondary);
            }



    a.nav-cart {
        width: 30px;
        max-width: 30px;
        height: 35px;
        margin-right: 10px;
        position: relative;
    }

        a.nav-cart.bag {
            z-index: 1;
        }

        a.nav-cart.favy {
            z-index: 2;
        }

        a.nav-cart.profy {
            z-index: 3;
        }

    a.btn.btn-outline-secondary.sign-in {
        position: relative;
        z-index: 4;
    }

    a.btn.btn-secondary.sign-up {
        position: relative;
        z-index: 5;
    }

    button.navbar-toggle {
        position: relative;
        z-index: 6;
    }

    a.nav-cart .cart-count {
        position: absolute;
        font-size: small;
        top: 0;
        right: -8px;
        z-index: 15;
        color: var(--primary);
    }


    .btn-primary {
        background-color: var(--primary);
        color: white;
        border-radius: 10px;
        outline: none;
        border: none;
    }

        .btn-primary:hover {
            background-color: var(--secondary);
            box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
            color: var(--light-bg);
        }

    .btn-secondary {
        background-color: var(--secondary);
        color: white;
        border-radius: 10px;
        outline: none;
        border: none;
    }

    .btn-outline-secondary {
        border-color: var(--secondary);
        color: var(--secondary);
        border-radius: 10px;
        outline: none;
        border: 2px solid;
    }


    a.btn-primary, a.btn-secondary {
        color: white;
        font-weight: 400;
        font-size: 14px;
        padding: 10px 8px;
        margin-top: 3px;
        margin-right: 10px;
        margin-left: 10px;
    }

    a.btn-outline-primary, a.btn-outline-secondary {
        color: var(--secondary);
        font-weight: 400;
        font-size: 14px;
        padding: 8px 8px;
        margin-top: 3px;
        margin-right: 10px;
    }


    a.btn-primary:hover, a.btn-secondary:hover {
        color: white;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .foot_rem {
        padding-top: 20px;
    }

    #cookie-note {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: var(--light-bg);
        border: 1px solid var(--primary);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        width: fit-content;
        display: none;
        z-index: 150000;
    }

    #accept-cookie {
        margin-left: 10px;
        padding: 6px 12px;
        border: none;
        background: var(--secondary);
        color: #fff;
        border-radius: 4px;
        cursor: pointer;
    }

        #accept-cookie:hover {
            background: var(--primary);
        }

    .wbusiness p {
        background-color: var(--white)
    }

    .wbusiness .cover {
        background-color: var(--white)
    }

    footer {
        background-color: var(--light-bg);
        font-family: 'inter-variablefont_opsz,wght';
    }

        footer h3, footer h4 {
            font-family: inriaserif;
            font-weight: bold;
            color: var(--primary)
        }

        footer a {
            color: var(--text-dark);
        }

            footer a:hover {
                color: var(--primary);
                text-decoration: none;
            }

        footer .btn-primary {
            background-color: var(--secondary);
            color: white;
            border-radius: 5px;
            outline: none;
            border: none;
            margin-top: 10px;
        }

            footer .btn-primary i {
                font-size: 18px;
            }


    .subscribe-box {
        display: flex;
        align-items: center;
        border: 2px solid var(--secondary);
        border-radius: 8px;
        padding: 6px;
        width: 350px; /* adjust as needed */
    }

        .subscribe-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 8px;
            font-size: 14px;
            outline: none;
        }

            .subscribe-box input::placeholder {
                color: var(--primary);
            }

        .subscribe-box button {
            background-color: #996533; /* brown color */
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
        }

            .subscribe-box button:hover {
                background-color: #7a4f29; /* darker brown on hover */
            }
    /*HOME PAGE*/

    .splash-media {
        position: relative;
        width: 100%;
        height: 90vh;
    }

        .splash-media video {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

    .mute-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1000;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 4px;
    }

        .mute-btn:hover {
            background: rgba(0,0,0);
        }

    video {
        width: 100%;
        height: auto;
        display: block;
    }


    .splash-caption {
        display: flex;
        height: 90vh;
        position: absolute;
        z-index: 200;
        top: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 20%;
        text-align: center;
    }

        .splash-caption h1 {
            font-family: inriaserif;
            font-weight: bold;
            color: var(--light-bg);
            font-size: 80px;
            /*    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);*/
        }

        .splash-caption p {
            font-family: 'inter-variablefont_opsz,wght';
            font-weight: 400;
            color: var(--light-bg);
            font-size: 24px;
            margin-top: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .splash-caption a.btn-white {
            margin-top: 30px;
            padding: 12px 24px;
            font-size: 18px;
            background-color: var(--white);
            color: var(--primary-light);
            text-shadow: none;
            border-radius: 30px;
            font-weight: bold;
        }

            .splash-caption a.btn-white:hover {
                background: linear-gradient(to right, #DD7D21 0%, #9E5205 100%);
                color: var(--white);
            }

        .splash-caption a.btn-outline {
            margin-top: 30px;
            padding: 12px 24px;
            font-size: 18px;
            color: var(--white);
            text-shadow: none;
            border-radius: 30px;
            font-weight: bold;
            border-color: var(--white);
            border-width: 2px;
        }

            .splash-caption a.btn-outline:hover {
                color: var(--primary-light);
                border-color: var(--primary-light);
            }


    .word-container {
        position: relative;
        overflow: hidden;
        height: 85px;
        color: var(--light-bg);
        /*  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);*/
    }

    .word {
        font-family: inriaserif;
        position: absolute;
        width: 100%;
        font-size: 75px;
        font-weight: bold;
        opacity: 0;
        animation-duration: 4s;
        animation-iteration-count: infinite;
        margin-top: -5px;
    }

    .worda {
        animation-name: slideDown;
    }

    .wordb {
        animation-name: slideUp;
        animation-delay: 2s; /* stagger so it alternates */
    }

    @keyframes slideDown {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }

        20% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(0);
            opacity: 1;
        }

        70% {
            transform: translateY(100%);
            opacity: 0;
        }

        100% {
            transform: translateY(100%);
            opacity: 0;
        }
    }

    @keyframes slideUp {
        0% {
            transform: translateY(100%);
            opacity: 0;
        }

        20% {
            transform: translateY(0);
            opacity: 1;
        }

        50% {
            transform: translateY(0);
            opacity: 1;
        }

        70% {
            transform: translateY(-100%);
            opacity: 0;
        }

        100% {
            transform: translateY(-100%);
            opacity: 0;
        }
    }


    .collections {
        padding: 20px 0px;
        min-height: 70vh;
        background: linear-gradient(170deg, #996533 0%, #C37C38 49%, #4C2702 100% );
    }

        .collections h1 {
            font-family: inriaserif;
            color: var(--white);
            margin: 40px 10px;
        }

        .collections .collection-wrapper {
            width: 100%;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: auto; /* enables horizontal scroll */
            white-space: nowrap; /* prevents wrapping */ /* Firefox */
            padding: 10px;
        }



        .collections .collection-item {
            background-color: var(--white);
            border-radius: 10px;
            border-radius: 20px;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
            margin: 20px 0 20px 0;
            width: 290px;
            height: 400px;
            position: relative;
            display: inline-block;
            margin-right: 20px;
            flex: 0 0 auto; /* prevents shrinking */
        }

            .collections .collection-item img {
                width: 100%;
                height: 400px;
                object-fit: cover;
                border-radius: 20px;
                position: absolute;
                z-index: 5;
                top: 0;
            }

            .collections .collection-item .content {
                width: 100%;
                height: 400px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .collections .collection-item .collection-name {
                background-color: rgba(221, 125, 33, 0.77);
                width: 100%;
                text-align: center;
                position: absolute;
                padding: 12px 10px;
                z-index: 10;
                font-size: large;
                color: var(--white);
            }

            .collections .collection-item .hint {
                display: none;
            }

            .collections .collection-item:hover .hint {
                display: block;
                width: 100%;
                text-align: center;
                position: absolute;
                padding: 12px 10px;
                z-index: 10;
                bottom: 30px;
                font-size: large;
                color: var(--white);
                text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            }

    .collection-item:hover .collection-name {
        background-color: rgba(158, 82, 5, 0.77);
    }

    .action {
        padding: 8px 12px;
        text-align: center;
    }

        .action a.btn-outline {
            color: var(--white);
            border: 2px solid var(--white);
            padding: 20px 10%;
            font-size: 20px;
            border-radius: 45px;
            margin: 30px 0;
        }

        .action a.btn-outline-sec {
            color: var(--secondary);
            border: 2px solid var(--secondary);
            padding: 20px 10%;
            font-size: 20px;
            border-radius: 45px;
            margin: 30px 0;
        }

        .action a.btn-outline:hover {
            border-color: var(--primary-light);
            color: var(--primary-light);
        }

        .action a.btn-outline-sec:hover {
            border-color: var(--primary-light);
            color: var(--primary-light);
        }


    .home-container .arrivals {
        min-height: 80vh;
        width: 100%;
        padding: 20px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .home-container .arrivals h1 {
            font-family: inriaserif-light;
            color: var(--primary);
            font-size: 65px;
            font-weight: 500;
        }

        .home-container .arrivals h3 {
            color: var(--primary);
            font-weight: normal;
        }

        .home-container .arrivals .arrivals-wrapper {
            display: flex;
            overflow-x: auto; /* enables horizontal scroll */
            white-space: nowrap; /* prevents wrapping */ /* Firefox */
            padding: 10px;
        }


        .home-container .arrivals .arrivals-item {
            margin: 20px 0 20px 0;
            display: inline-block;
            margin-right: 20px;
            flex: 0 0 auto; /* prevents shrinking */
        }

        .home-container .arrivals .product-img {
            margin: 20px 0 10px 0;
            width: 380px;
            height: 500px;
            position: relative;
            display: inline-block;
            margin-right: 20px;
            border-radius: 20px;
            flex: 0 0 auto; /* prevents shrinking */
            box-shadow: 0px 0px 12px rgba(153, 101, 51, 0.83);
        }

            .home-container .arrivals .product-img:hover {
                box-shadow: 0px 0px 14px rgba(221, 125, 33, 0.9);
                width: 378px;
                height: 498px;
            }

            .home-container .arrivals .product-img img {
                width: 100%;
                height: 500px;
                object-fit: cover;
                border-radius: 20px;
                position: absolute;
                z-index: 5;
                top: 0;
            }

        .home-container .arrivals .arrivals-item .new-tag {
            background-color: var(--white);
            color: var(--primary-light);
            padding: 10px 15px;
            border-radius: 20px;
            position: absolute;
            z-index: 7;
            top: 12px;
            left: 10px;
            font-weight: bold;
        }

        .home-container .arrivals .arrivals-item .favourite {
            color: var(--white);
            position: absolute;
            z-index: 7;
            top: 15px;
            right: 25px;
            font-weight: normal;
        }

        .home-container .arrivals .arrivals-item .pricing .product-title {
            color: var(--primary-light);
            font-family: inter-variablefont_opsz,wght;
            font-size: 25px;
        }

        .home-container .arrivals .arrivals-item .pricing {
            width: 378px;
            white-space: wrap;
        }

            .home-container .arrivals .arrivals-item .pricing p {
                color: var(--secondary);
            }

            .home-container .arrivals .arrivals-item .pricing h2 {
                font-size: 26px;
                margin-top: 3px;
            }


    .featured {
        min-height: 80vh;
        width: 100%;
        padding: 20px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


        .featured .featured-wrapper {
            display: flex;
            overflow-x: auto; /* enables horizontal scroll */
            white-space: nowrap; /* prevents wrapping */ /* Firefox */
            padding: 10px;
        }


        .featured .featured-item {
            width: 380px;
            white-space: wrap;
            margin-right: 40px;
            display: inline-block;
            flex: 0 0 auto; /* prevents shrinking */
        }


            .featured .featured-item h3 {
                color: var(--primary-light);
                font-family: inter-variablefont_opsz,wght;
                font-size: 25px;
            }


            .featured .featured-item p {
                color: var(--secondary);
            }

            .featured .featured-item h2 {
                font-size: 20px;
                margin-top: 3px;
            }

        .featured a {
            color: var(--primary);
        }

            .featured a:hover {
                color: var(--primary-light);
                font-weight: bold;
            }

        .featured img {
            width: 380px;
            height: 500px;
            object-fit: cover;
            display: inline-block;
            margin-right: 20px;
            border-radius: 20px;
            flex: 0 0 auto; /* prevents shrinking */
        }

            .featured img:hover {
                width: 378px;
                height: 498px;
            }


    .not-found {
        min-height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        .not-found h1 {
            font-family: inter-variablefont_opsz,wght;
            color: var(--primary);
            font-size: 60px;
            font-weight: bold;
        }

    .about .banner {
        width: 100%;
        min-height: 70vh;
        position: relative;
    }

    .about img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
    }

    .about .banner .overlay {
        background-color: rgba(0,0,0,0.4);
        width: 100%;
        position: absolute;
        height: 70vh;
        z-index: 3;
        top: 0;
    }

    .about .banner .banner-content {
        position: absolute;
        z-index: 5;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--light-bg);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        text-align: center;
    }

        .about .banner .banner-content h1 {
            font-family: inriaserif;
            font-weight: bold;
            font-size: 60px;
        }

        .about .banner .banner-content h2 {
            font-family: 'inter-variablefont_opsz,wght';
            font-weight: 400;
            font-size: 25px;
            margin-top: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }


    .about a.btn-outline {
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 18px;
        color: var(--white);
        text-shadow: none;
        border-radius: 30px;
        font-weight: bold;
        border-color: var(--white);
        border-width: 2px;
    }

        .about a.btn-outline:hover {
            color: var(--primary-light);
            border-color: var(--primary-light);
        }

    .about a.btn-primary {
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 18px;
        background-color: var(--primary-light);
        color: var(--white);
        text-shadow: none;
        border-radius: 30px;
        font-weight: bold;
    }

        .about a.btn-primary:hover {
            background: linear-gradient(to right, #DD7D21 0%, #9E5205 100%);
            color: var(--white);
        }

    .about .about-founder {
        margin: 40px 0;
    }

        .about .about-founder img {
        }

        .about .about-founder h1 {
            color: var(--primary);
            font-family: inter-variablefont_opsz,wght;
            margin-bottom: 50px;
        }

    .about p {
        font-size: 20px;
    }

    .about .founder-img {
        height: 80vh;
        object-fit: cover;
        border-radius: 20px;
    }

    .image-roll {
        margin: 50px 0;
    }

    .image-row {
        overflow: hidden;
        white-space: nowrap;
        margin-top: 30px;
    }

    .image-track {
        display: inline-flex;
    }

        .image-track img {
            height: 500px; /* adjust as needed */
            margin-right: 15px;
            border-radius: 15px;
        }
    /* Scroll left */
    .scroll-left .image-track {
        animation: scroll-left 20s linear infinite;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }
    /* Scroll right */
    .scroll-right .image-track {
        animation: scroll-right 20s linear infinite;
    }

    @keyframes scroll-right {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0);
        }
    }
    /* Pause on hover */
    .image-row:hover .image-track {
        animation-play-state: paused;
    }

    .contact {
        padding: 0;
        margin-bottom: 5%;
    }

        .contact h1 {
            color: var(--accent);
            font-family: inter-variablefont_opsz,wght;
            margin: 40px 0 20px 0px;
            font-size: 40px;
        }

        .contact .tagline {
            width: 100%;
            height: 100px;
            text-align: center;
            display: flex;
            background-color: var(--secondary);
            align-items: center;
            justify-content: center;
        }

            .contact .tagline a {
                color: var(--light-bg);
                font-size: 20px;
                margin-right: 5%;
            }

        .contact .base-img {
            object-fit: cover;
            height: 350px;
            width: 40%;
            margin: 20px 10px;
            border-radius: 20px;
        }

        .contact a {
            font-size: 18px;
            margin: 0;
            padding: 0;
        }

        .contact .mapouter {
            border-radius: 20px;
            margin-top: 20px;
        }

        .contact .brand-icons {
            font-size: 30px;
            border-radius: 50%;
            height: 70px;
            width: 70px;
            background-color: var(--secondary);
            padding: 10px;
            color: var(--light-bg);
        }

            .contact .brand-icons:hover {
                background-color: var(--primary);
                color: var(--white);
            }

        .contact .form-control-sm {
            border: none;
            background-color: var(--secondary-light);
            color: var(--text-dark);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            padding: 10px;
            min-width:100%;
        }

        .contact .form-control {
            min-width: 100%;
            border: none;
            background-color: var(--secondary-light);
            color: var(--text-dark);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
            margin: 10px 0;
        }

        .contact .tagliner {
            width: 100%;
            height: 100px;
            text-align: center;
            background: linear-gradient(to right, var(--secondary-light), var(--secondary));
            margin: 5% 0;
        }

            .contact .tagliner h1 {
                color: var(--light-bg);
                font-family: inter-variablefont_opsz,wght;
            }

    .tagline-item {
        padding: 10px 20px;
        display: inline-block;
    }

        .tagline-item img {
            height: 45px;
        }

        .tagline-item h1 {
            color: var(--accent);
            font-family: inter-variablefont_opsz,wght;
            margin-top: 0;
        }


    .contact .btn-secondary {
        max-width: unset;
        width: 100%;
        padding: 10px;
    }

    .userauth {
        min-height: 90vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        margin: 30px 0;
    }

        .userauth .label-warning {
            white-space: pre-wrap;
        }


        .userauth .intro {
            margin-bottom: 40px;
        }

        .userauth .auth-container {
            background: linear-gradient(to bottom left, #996533 0%, #653d16 50%, #3c1d00 100%);
            padding: 40px;
            border-radius: 20px;
            min-height: 400px;
            width: 500px;
            text-align: center;
        }

            .userauth .auth-container img {
                height: 100px;
                margin: 5px;
            }

        .userauth .form-control-sm {
            border-radius: 30px;
            background-color: var(--light-bg);
            color: var(--secondary);
            outline: none;
            border: none;
            margin-top: 20px;
            padding: 8px 20px;
        }

        .userauth .forgot {
            margin-top: -5px;
        }

        .userauth a {
            color: var(--primary-light)
        }

            .userauth a:hover {
                color: var(--secondary-light)
            }


        .userauth .btn-white {
            margin-top: 45px;
            padding: 8px 24px;
            width: 60%;
            font-size: 18px;
            background-color: var(--light-bg);
            color: var(--primary-light);
            text-shadow: none;
            border-radius: 30px;
        }

            .userauth .btn-white:hover {
                background: linear-gradient(to right, #DD7D21 0%, #9E5205 100%);
                color: var(--white);
            }

    .categories {
    }

        .categories h1 {
            font-family: inriaserif;
            color: var(--accent);
            display: block;
            font-weight: 400;
            font-size: 40px;
            padding: 30px 0 5px 0;
        }



    .all-categories .collection-wrapper {
        width: 100%;
        min-height: 60vh;
        padding: 20px 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }


    .all-categories .collection-item {
        width: 280px;
        height: 400px;
        position: relative;
        margin: 35px;
    }

        .all-categories .collection-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            position: absolute;
            z-index: 5;
            top: 0;
        }

            .all-categories .collection-item img:hover {
                width: 100%;
                height: 398px;
            }

        .all-categories .collection-item .content {
            width: 100%;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .all-categories .collection-item .collection-name {
            background-color: rgba(221, 125, 33, 0.77);
            width: 100%;
            text-align: center;
            position: absolute;
            padding: 12px 10px;
            z-index: 10;
            font-size: large;
            color: var(--white);
        }

        .all-categories .collection-item .hint {
            display: none;
        }

        .all-categories .collection-item:hover .hint {
            display: block;
            width: 100%;
            text-align: center;
            position: absolute;
            padding: 12px 10px;
            z-index: 10;
            bottom: 30px;
            font-size: large;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }


    .single-category {
        min-height: 65vh;
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


        .single-category .featured-wrapper {
            display: flex;
            overflow-x: auto; /* enables horizontal scroll */
            white-space: nowrap; /* prevents wrapping */ /* Firefox */
            padding: 10px;
        }

    .bg-white {
        background-color: var(--white);
    }

    .single-category .featured-item {
        margin-right: 40px;
        display: inline-block;
        flex: 0 0 auto; /* prevents shrinking */
        width: 280px;
        white-space: wrap;
    }

    .single-category img {
        width: 280px;
        height: 400px;
        object-fit: cover;
        display: inline-block;
        margin-right: 20px;
        border-radius: 20px;
        flex: 0 0 auto; /* prevents shrinking */
        box-shadow: 0px 0px 12px 1px rgba(153, 101, 51, 0.83);
    }

        .single-category img:hover {
            width: 280px;
            height: 400px;
        }

    .single-category .featured-item h3 {
        color: var(--primary-light);
        font-family: inter-variablefont_opsz,wght;
        font-size: 25px;
    }

    .single-category .featured-item p {
        color: var(--secondary);
    }

    .single-category .featured-item h2 {
        font-size: 20px;
        margin-top: 3px;
        font-weight: bold;
    }

    .single-category a {
        color: var(--primary);
    }

        .single-category a h2 {
            color: var(--text-dark);
        }

        .single-category a:hover {
            color: var(--primary-light);
            font-weight: bold;
        }

    .privacy, .faq, .refunds, .policy {
        width: 100%;
        min-height: 90vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        background-image: url('media/bg-patttern.png');
        background-repeat: repeat;
    }

    .ml-15 {
        margin-left: 15px;
    }

    .refunds .container, .privacy .container, .faq .container, .policy .container {
        background: linear-gradient(320deg, var(--secondary) 0%, var(--primary-light) 40%, var(--primary) 100%);
        padding: 20px;
        color: var(--light-bg);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        width: 60%;
        border-radius: 20px;
        margin: 3% 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .container .border-line {
        padding: 20px;
        margin: 20px;
        border: 5px solid var(--secondary-light);
    }

    .refunds h1, .privacy h1, .faq h1, .policy h1 {
        font-family: inriaserif;
        font-weight: bold;
        font-size: 40px;
    }

    .refunds h2, .privacy h2, .faq h2, .policy h2 {
        font-family: inter-variablefont_opsz,wght;
        font-weight: bold;
        font-size: 25px;
    }


    .faq-container {
        max-width: 800px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

    .faq-question {
        cursor: pointer;
        font-weight: bold;
        position: relative;
        padding-right: 20px;
        color: white;
    }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            font-weight: bold;
        }

        .faq-question.active::after {
            content: '-';
        }

    .faq-answer {
        display: none;
        margin-top: 10px;
        color: var(--light-bg );
        line-height: 1.6;
        text-shadow: none;
    }

        .faq-answer.show {
            display: block;
        }

    .wbusiness {
        text-align: center;
        position: fixed;
        right: 20px;
        bottom: 50px;
        z-index: 10000;
    }

        .wbusiness .cover {
            margin-bottom: 5px;
            background: linear-gradient( to right, var(--primary), var(--primary-alt) );
            border-radius: 30px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
            padding: 10px 15px;
        }

            .wbusiness .cover a {
                color: var(--light-bg);
                font-size: 16px;
            }

                .wbusiness .cover a:hover, .wbusiness .cover a:focus {
                    color: var(--primary-light);
                    text-decoration: none;
                }

                .wbusiness .cover a i {
                    font-size: 18px;
                }
    /* #######################################  */
    /*#######################################  */
    /* #############    MOBILE    ################  */
    /* ########################################  */
    /* ##########################################  */




    @media (max-width:900px) {
    }

    @media (min-width: 965px) and (max-width: 1920px) {

        .about .about-founder .founder-bio {
            float: left;
        }
    }

    @media (min-width: 1920px) {
    }

    @media (max-width: 965px) {

        body {
            font-size: 14px;
            margin: 0;
            padding: 0;
        }

        .body-content {
            margin: 0px;
            margin-top: 60px;
            padding: 0px;
        }

        .no-mobile {
            display: none;
        }

        .site_logo {
            height: 50px;
            width: 50px
        }


        .navbar {
            font-size: 10px;
            height: 70px;
        }


            .navbar ul li {
                padding-top: 0px;
                margin-left: 5px;
            }

                .navbar ul li .form-control-sm {
                    outline: none;
                    border-style: none;
                    border-radius: 50px;
                    background-color: #FFFEFE;
                    box-shadow: 0px 4px 4px 3px rgba(0, 0, 0, 0.07);
                    padding: 12px 38px 12px 15px;
                    width: 400px;
                    background-image: url('lucide_search.svg'); /* your search icon */
                    background-repeat: no-repeat;
                    background-position: right 20px center; /* position inside input */
                    background-size: 20px 20px; /* adjust icon size */
                }



        .nav-store a {
            float: left;
            font-size: 12px;
            margin-top: 0px;
            margin-left: 5px;
            padding-top: 0px;
        }


        a.btn-primary, a.btn-secondary {
            font-weight: 400;
            font-size: 12px;
            padding: 10px 8px;
            margin: 5px 5px;
        }

        a.btn-outline-primary, a.btn-outline-secondary {
            font-weight: 400;
            font-size: 12px;
            padding: 8px 8px;
            margin: 5px 5px;
        }

        .nav-store a.btn-outline-secondary {
            margin: 0px;
            margin-top: -6px;
            margin-right: 8px;
        }

        .navbar-toggle {
            margin-top: -1px;
        }


        a.nav-cart {
            width: 30px;
            font-size: 12px;
            margin-top: -9px;
            margin-right: 5px;
        }


            a.nav-cart .cart-count {
                position: absolute;
                font-size: x-small;
            }


        .navbar-inverse .navbar-toggle:hover,
        .navbar-inverse .navbar-toggle:focus {
            background-color: var(--primary);
            border-bottom: solid;
            border-radius: 10px;
            color: var(--light-bg);
            border-color: var(--secondary)
        }


        .navbar-collapse.collapse.show .nav.navbar-nav.menu li > a {
            margin-bottom: 5px;
            text-align: center;
        }

        .navbar-collapse.collapse.show {
            background: linear-gradient( 180deg, var(--light-bg), #f1e3d0 );
        }

            .navbar-collapse.collapse.show .nav.navbar-nav.menu li .form-control-sm {
                width: 80%;
                margin-left: 10%;
            }

        footer {
            margin: 0;
            padding: 0px;
            overflow: hidden;
            margin-bottom: 35px;
        }

        .foot_rem {
            padding: 0;
            margin: 0;
        }

        footer .btn-primary {
            font-size: 10px;
        }

        footer img-responsive {
            max-height: 50px
        }

        footer .img-logo {
            height: 100px;
        }

        .subscribe-box {
            padding: 6px 5px;
            max-width: 100%; /* adjust as needed */
            margin: 0;
        }

            .subscribe-box input {
                flex: 1;
                padding: 8px 5px;
                font-size: 12px;
            }



        .mute-btn {
            z-index: 100000000000;
        }

        .splash-caption h1 {
            font-size: 40px;
            /*  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);*/
        }

        .splash-caption p {
            color: var(--light-bg);
            font-size: 14px;
            margin-top: 10px;
            /* text-shadow: 1px 1px 3px rgba(0,0,0,0.5);*/
        }

        .splash-caption a.btn-white {
            margin-top: 15px;
            padding: 6px 12px;
            font-size: 14px;
        }


        .splash-caption a.btn-outline {
            margin-top: 15px;
            padding: 6px 12px;
            font-size: 14px;
        }


        .word-container {
            height: 40px;
        }

        .word {
            font-size: 38px;
            font-weight: normal;
            margin-top: -5px;
        }

        .collections .collection-wrapper {
            align-items: unset;
            justify-content: unset;
        }

        .collections .collection-item {
            width: 290px;
            height: 400px;
        }

            .collections .collection-item img {
                width: 100%;
                height: 400px;
                object-fit: cover;
                border-radius: 20px;
                position: absolute;
                z-index: 5;
                top: 0;
            }

            .collections .collection-item .content {
                width: 100%;
                height: 400px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .collections .collection-item .collection-name {
                background-color: rgba(221, 125, 33, 0.77);
                width: 100%;
                text-align: center;
                position: absolute;
                padding: 12px 10px;
                z-index: 10;
                font-size: large;
                color: var(--white);
            }


            .collections .collection-item .hint {
                display: none;
            }

            .collections .collection-item:hover .hint {
                display: block;
                width: 100%;
                text-align: center;
                position: absolute;
                padding: 12px 10px;
                z-index: 10;
                bottom: 30px;
                font-size: large;
                color: var(--white);
                text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            }


        .action a.btn-outline, .action a.btn-outline-sec {
            padding: 15px 20px;
            font-size: 14px;
            margin: 20px 0;
        }




        .home-container .arrivals {
            display: block;
        }

            .home-container .arrivals h1 {
                font-size: 35px;
                font-weight: 500;
            }

            .home-container .arrivals h3 {
                color: var(--primary);
                font-size: 18px;
                font-weight: normal;
            }

            .home-container .arrivals .arrivals-wrapper {
                display: flex;
                overflow-x: auto; /* enables horizontal scroll */
                white-space: nowrap; /* prevents wrapping */ /* Firefox */
            }

            .home-container .arrivals .arrivals-item {
                margin-right: 10px;
            }

            .home-container .arrivals .product-img {
                width: 250px;
                height: 350px;
            }

                .home-container .arrivals .product-img:hover {
                    width: 248px;
                    height: 348px;
                }

                .home-container .arrivals .product-img img {
                    width: 100%;
                    height: 350px;
                }

            .home-container .arrivals .arrivals-item .new-tag {
                background-color: var(--white);
                color: var(--primary-light);
                padding: 5px 10px;
                border-radius: 20px;
                position: absolute;
                z-index: 7;
                top: 12px;
                left: 10px;
                font-weight: bold;
            }

            .home-container .arrivals .arrivals-item .favourite {
                color: var(--white);
                position: absolute;
                z-index: 7;
                top: 15px;
                right: 25px;
                font-weight: normal;
            }

            .home-container .arrivals .arrivals-item .pricing {
                width: 230px;
                white-space: wrap;
                margin-left: 15px;
                margin-top: -20px;
            }

                .home-container .arrivals .arrivals-item .pricing .product-title {
                    color: var(--primary-light);
                    font-family: inter-variablefont_opsz,wght;
                    font-size: 20px;
                }


        .arrivals .arrivals-item .pricing h2 {
            font-size: 20px;
            margin-top: 3px;
        }


        .featured {
            min-height: 80vh;
            width: 100%;
            padding: 20px 0px;
            display: block;
            justify-content: unset;
            align-items: unset;
        }


            .featured .featured-wrapper {
                display: unset;
                overflow-x: unset; /* enables horizontal scroll */
                white-space: unset; /* prevents wrapping */ /* Firefox */
            }


            .featured .featured-item {
                margin: 20px 0;
                display: unset;
                flex: unset; /* prevents shrinking */
                width: 100%;
            }

            .featured img {
                margin-top: 35px;
                max-width: 100%;
                width: 100%;
                height: 350px;
                max-height: 350px;
                object-fit: cover;
                display: block;
                border-radius: 20px 20px 20px 0;
                flex: 0 0 auto; /* prevents shrinking */
            }

            .featured .featured-item img:hover {
                width: 100%;
                height: 348px;
            }

        .about .banner {
            width: 100%;
            min-height: 50vh;
            position: relative;
        }

        .about img {
            width: 100%;
            height: 50vh;
            object-fit: cover;
        }

        .about .banner .overlay {
            background-color: rgba(0,0,0,0.4);
            width: 100%;
            position: absolute;
            height: 50vh;
            z-index: 3;
            top: 0;
        }

        .about .banner .banner-content {
            width: 100%;
            padding: 15px;
        }

            .about .banner .banner-content h1 {
                font-family: inriaserif;
                font-weight: bold;
                font-size: 25px;
            }

            .about .banner .banner-content h2 {
                font-family: 'inter-variablefont_opsz,wght';
                font-weight: 400;
                font-size: 14px;
                margin-top: 20px;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
            }


        .about a.btn-outline {
            margin-top: -1px;
            padding: 6px 8px;
            font-size: 12px;
        }

        .about a.btn-primary {
            margin-top: 5px;
            padding: 10px 8px;
            font-size: 12px;
        }

        .about .about-founder {
            margin: 40px 0;
        }

            .about .about-founder img {
                margin-bottom: 20px;
            }

            .about .about-founder .founder-bio {
                display: block;
                text-align: justify;
            }

            .about .about-founder h1 {
                color: var(--primary);
                font-family: inter-variablefont_opsz,wght;
                margin-bottom: 20px;
                font-size: 30px;
            }

        .about p {
            font-size: 14px;
        }

        .about .founder-img {
            height: 80vh;
            object-fit: cover;
            border-radius: 20px;
        }


        .image-track img {
            height: 250px; /* adjust as needed */
            margin-right: 5px;
        }


        .contact h1 {
            margin-top: 25px 0 5px 0;
            font-size: 30px;
        }

        .contact h2 {
            font-size: 25px;
        }

        .contact .tagline {
            width: 100%;
            height: 100px;
            text-align: center;
            display: flex;
            background-color: var(--secondary);
            align-items: center;
            justify-content: center;
        }

            .contact .tagline a {
                color: var(--light-bg);
                font-size: 14px;
                margin-right: 5px;
            }

        .contact .base-img {
            object-fit: cover;
            height: 250px;
            width: 45%;
            margin: 20px 2%;
            border-radius: 10px;
        }

        .contact a {
            font-size: 14px;
            margin: 0;
            padding: 0;
        }

        .contact .mapouter {
            border-radius: 20px;
            margin-top: 20px;
        }

        .contact .brand-icons {
            font-size: 14px;
            height: 70px;
            width: 70px;
            padding: 10px;
        }

        .contact .form-control-sm {
            max-width: 45%;
            margin: 10px 2%;
        }

        .contact .tagliner {
            width: 100%;
            height: fit-content;
            min-height: 100px;
            padding: 10px;
            text-align: center;
            background: linear-gradient(to right, var(--secondary-light), var(--secondary));
            margin: 50px 0;
        }


        .tagline-item {
            padding: 10px 20px;
            display: inline-block;
        }

            .tagline-item img {
                height: 45px;
            }

            .tagline-item h1 {
                color: var(--accent);
                font-family: inter-variablefont_opsz,wght;
                margin-top: 0;
            }


        .userauth {
            min-height: 90vh;
            padding: 30px 20px;
        }


            .userauth .intro {
                margin-bottom: 20px;
            }

            .userauth .auth-container {
                padding: 10px;
                width: 280px;
            }

                .userauth .auth-container img {
                    height: 100px;
                    margin: 5px;
                }

            .userauth .form-control-sm {
                border-radius: 30px;
                background-color: var(--light-bg);
                color: var(--secondary);
                outline: none;
                border: none;
                margin-top: 20px;
                padding: 8px 20px;
            }

            .userauth .forgot {
                margin-top: -5px;
            }

            .userauth a {
                color: var(--primary-light)
            }

                .userauth a:hover {
                    color: var(--secondary-light)
                }


            .userauth .btn-white {
                margin-top: 25px;
                width: fit-content;
                font-size: 14px;
            }

        .categories h1 {
            font-size: 25px;
            padding: 5% 0px;
        }

        .all-categories .collection-wrapper {
            width: 100%;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .all-categories .collection-item .content {
            height: 300px;
        }

        .all-categories .collection-item {
            width: 48%;
            height: 300px;
            margin: 20px 1%;
        }

            .all-categories .collection-item img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                border-radius: 20px;
                position: absolute;
                z-index: 5;
                top: 0;
            }

                .all-categories .collection-item img:hover {
                    width: 100%;
                    height: 298px;
                }


        .single-category .featured-item {
            width: 250px;
        }

        .single-category img {
            width: 250px;
            height: 350px;
        }

            .single-category img:hover {
                width: 248px;
                height: 348px;
            }

        .refunds .container, .privacy .container, .faq .container, .policy .container {
            background: linear-gradient(320deg, var(--secondary) 0%, var(--primary) 100%);
            padding: 5px;
            color: var(--light-bg);
            text-shadow: none;
            width: 90%;
            border-radius: 0px;
            margin: 15% 0;
        }

        .container .border-line {
            padding: 10px;
            margin: 10px;
            border: 5px solid var(--secondary-light);
        }

        .refunds h1, .privacy h1, .faq h1, .policy h1 {
            font-size: 25px;
        }

        .refunds h2, .privacy h2, .faq h2, .policy h2 {
            font-size: 20px;
        }

        .refunds p, .privacy p, .faq p, .policy p {
            font-size: 14px;
        }
    }
