﻿

:root {
    --primary: #9e5205;
    --primary-light: #dd7d21;
    --primary-alt: #3C1D00;
    --primary-view: rgba(221, 125, 33, 0.77);
    --secondary: #996533;
    --secondary-light: #FFF2E0;
    --secondary-alt: #653D16;
    --secondary-view: rgba(153, 101, 51, 0.77);
    --secondary-view-alt: rgba(153, 101, 51, 0.15);
    --accent: #757575;
    --light-bg: #FFF7EC;
    --text-dark: #1e1e1e;
    --text-muted: #6c6772;
    --white: #ffffff;
    --black: #000000;
}


.shop {
    margin-bottom: 50px;
}

.shop-header {
    margin: 35px 0;
}

    .shop-header h1 {
        font-family: inter-variablefont_opsz,wght;
        color: var(--accent);
    }

    .shop-header h4 {
        color: var(--secondary);
    }

.shop-menu ul {
    list-style: none;
    margin: 0;
}


.shop-menu li {
    margin-bottom: 10px;
    position: relative;
}

.shop-menu a,
.shop-menu span {
    display: block;
    padding: 3px 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 10px;
}

.shop-menu ul li span {
    padding: 3px 10px;
    background-color: var(--secondary);
    color: white;
    border-radius: 10px;
}



/* Arrow indicators */
.has-submenu > span::after {
    content: "▶"; /* right arrow */
    font-size: 0.8em;
    float: right;
    transition: transform 0.2s ease;
}

.shop-menu a:hover {
    background-color: var(--secondary-light);
    color: #000;
}

/* Submenu hidden by default */
.shop-menu .submenu {
    display: none;
    margin-left: 15px;
    border-left: 2px solid #ddd;
    padding-left: 10px;
}

/* Active state: show submenu and rotate arrow */
.has-submenu.active > span::after {
    content: "▼"; /* down arrow */
}

/* Expand submenu when parent is active */
.shop-menu .active .submenu {
    display: block;
}

/* Highlight active link */
.shop-menu .active-link {
    background-color: var(--primary-light);
    color: #fff;
    font-weight: bold;
}

.no-items {
    width: 100%;
    display: flex;
    min-height: 40vh;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .no-items i {
        color: var(--primary-light);
    }

    .no-items a {
        color: var(--primary);
    }

        .no-items a:hover {
            color: var(--secondary);
        }

.product {
    float: left;
    display: inline-block;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 5px;
    width: 100%;
    height: 550px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}


.orig-pr {
    text-decoration-line: line-through;
    color: grey;
    font-weight: 300;
    font-size: smaller;
    display: block;
    line-height: 10px;
}

.disc-pr {
    color: var(--primary-light);
}

.shop .orig-pr, .arrivals .orig-pr {
    display: inline;
    margin-right: 10px;
}

.shop .disc-pr, .arrivals .disc-pr {
    color: black;
}

.product-header {
    width: 100%;
    padding: 5px;
}

.sort_area {
    font-size: small;
    text-align: right;
    width: 100%;
}

.search_area {
    position: fixed;
    top: 90px;
    text-align: center;
    width: 80%;
    margin: 5px 10%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    padding: 5px;
    border-radius: 10px;
    z-index: 199;
    background-color: white;
    display: none;
}

.search {
    border-radius: 0px;
    outline: none;
    border: none;
    width: 100%;
    border-width: 1px;
    margin: 5px;
}

    .search:focus {
        border: none;
    }

.product-wrapper {
    position: relative;
    z-index: 1;
    padding: 3px;
    float: left;
    color: black;
    width: 99%;
    margin: 0.5%;
}




    .product-wrapper .product-img {
        position: relative;
        z-index: 1;
        text-align: center;
    }

        .product-wrapper .product-img img {
            /*  height: 270px; */
            width: 100%;
            height: 400px;
            object-fit: cover;
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            border-radius: 20px;
            box-shadow: 0px 0px 3px rgb(182, 177, 172, 0.77);
        }

        .product-wrapper .product-img .hover-img {
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            position: absolute;
            top: 0;
            left: 0;
            height: 400px;
            width: 100%;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0px 0px 4.8px rgba(153, 101, 51, 0.77);
        }

    .product-wrapper .badge {
        z-index: 5;
        position: absolute;
        top: 5px;
        right: 5px;
        padding: 12px 15px;
        border-radius: 50%;
        color: var(--light-bg);
        box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
        background-color: var(--primary-light);
    }

    .product-wrapper .product-description {
        position: relative;
        z-index: 1;
        margin-top: 5px;
        padding: 5px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        height: fit-content;
    }


        .product-wrapper .product-description .product-meta-data .line {
            width: 80px;
            height: 3px;
            background-color: grey;
            margin-bottom: 15px;
            display: block;
        }

        .product-wrapper .product-description .product-meta-data .product-price {
            padding: 3px;
            font-weight: bold;
            font-family: inter-variablefont_opsz,wght;
            font-size: 25px;
            color: var(--text-dark);
        }

            .product-wrapper .product-description .product-meta-data .product-price:hover {
                color: var(--primary-light);
            }


        .product-wrapper .product-description .product-meta-data .product-name {
            font-family: inriaserif;
            color: var(--primary-light);
            display: block;
            margin-top: 5px;
            font-size: 18px;
            font-weight: bold;
        }

        .product-wrapper .product-description .product-meta-data .prod-category {
            color: var(--secondary);
        }

        .product-wrapper .product-description .product-meta-data a h6 {
            margin-bottom: 0;
        }

        .product-wrapper .product-description .product-def-data {
            display: none;
        }

.product-def-data:hover {
}

.product-wrapper .product-description .ratings-cart .ratings i:hover {
    font-size: 18px;
}

.product-wrapper .product-description .ratings-cart .ratings a:hover {
    text-decoration: none
}

.product-wrapper .product-description .ratings-cart {
    width: 60%;
    float: left;
}

.product-wrapper:hover .product-img .hover-img {
    opacity: 1;
    visibility: visible;
}

.product-wrapper:hover .product-img .product-favourite a {
    opacity: 1;
    visibility: visible;
}

.product-wrapper .product-description .box {
    width: 40%;
    float: left;
}

.box a {
    color: darkgoldenrod;
}

.box .text-right {
    float: left;
    width: 0%;
    text-align: center;
    display: none;
}

    .box .text-right:hover {
        font-size: larger;
    }

.box .text-left {
    float: left;
    width: 40%;
    text-align: center;
}

    .box .text-left:hover {
        font-size: larger;
    }

.box .text-center {
    /* margin: 0 auto;*/
    float: left;
    width: 50%;
    text-align: center;
}

    .box .text-center:hover {
        font-size: larger;
    }


.pagination {
    position: relative;
    z-index: 1;
}

    .pagination .page-item .page-link {
        width: 40px;
        height: 40px;
        border: none;
        font-size: 16px;
        font-weight: 400;
        line-height: 40px;
        padding: 0;
        text-align: center;
        color: #242424;
    }

        .pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus {
            color: #fff;
            box-shadow: none;
            background-color: grey;
        }

    .pagination .page-item.active .page-link {
        color: #fff;
        box-shadow: none;
        background-color: grey;
    }

    .pagination .page-item:first-child .page-link {
        margin-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .pagination .page-item:last-child .page-link {
        margin-left: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.user-account {
    box-shadow: 1px 2px 1px 1px #d5d5d5;
    border-radius: 3px;
    background-color: white;
    padding: 5px;
    align-content: center;
    text-align: center;
    float: right;
}

.foot_pager {
    clear: both;
    margin-top: 10px;
    display: block;
    z-index: 9999;
}

    .foot_pager input {
        padding: 5px 10px;
        background-color: var(--secondary);
        color: var(--light-bg);
        outline: none;
        border: none;
        border-radius: 10px;
    }

        .foot_pager input:hover {
            background-color: var(--primary);
            color: var(--white);
        }


.product-details .product-thumb {
    width: 100%;
}


.product-details .product_thumb .thumb_a {
    width: 50%;
}

.product-details .product_thumb .thumb_a {
    width: 25%;
}

/* Layout */
.gallery {
    display: grid;
    grid-template-columns: 1fr 2.5fr; /* left smaller, right larger */
    gap: 20px;
    margin-top: 30px;
    padding: 10% 20%;
}

.left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery img {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
}

/* Lightbox (zoom effect) */
.lightbox {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 120px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 25;
}

    .close:hover {
        color: var(--light-bg);
    }

.product-details .badge {
    background-color: var(--secondary);
    color: var(--secondary-light);
    box-shadow: 0px 4px 4px rgba(153, 101, 51, 0.5);
}

.product-details .product-description {
    padding: 10% 0;
}

    .product-details .product-description .product-name {
        font-family: inter-variablefont_opsz,wght;
        font-size: 45px;
        color: var(--secondary);
    }

.product-details .product-price {
    font-family: inter-variablefont_opsz,wght;
    font-size: 30px;
    color: var(--primary-light);
    margin-left: 5px;
}

.product-details .prod-stock {
    color: var(--primary);
    margin: 10px 5px;
}

.product-details .txt-qty {
    color: var(--text-dark);
    margin: 10px 5px;
    text-align: center;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--text-muted);
}

    .product-details .txt-qty:focus {
        border: none;
        outline: none;
        border-bottom: 1px solid var(--primary);
    }


.product-details .option-row {
    display: inline-block;
    width: 100%;
}

    .product-details .option-row .option-label {
        display: inline-block;
        vertical-align: middle;
        color: var(--primary);
        margin-top: -35px;
    }



.product-details .btn-listbox {
    border: none;
    padding: 0;
    background: none;
    overflow: hidden;
    width: auto;
    height: 30px;
    max-width: fit-content;
    max-height: fit-content;
}

    .product-details .btn-listbox:focus {
        outline: none;
    }

    .product-details .btn-listbox option {
        display: inline-block;
        vertical-align: middle;
        margin: 0 5px;
        padding: 4px 15px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        background-color: var(--secondary);
        transition: all 0.3s ease;
        color: white;
    }

        .product-details .btn-listbox option:hover {
            background-color: var(--primary);
        }

        .product-details .btn-listbox option:checked, .product-details .btn-listbox option:focus {
            background-color: var(--primary-light);
            color: var(--secondary-light);
            box-shadow: 0px 4px 4px rgba(153, 101, 51, 0.5);
        }


.product-details .btn-bag {
    color: var(--primary);
    width: 80%;
    background-color: var(--primary);
    border-radius: 25px;
    color: var(--secondary-light);
    margin-top: 20px;
}

    .product-details .btn-bag:hover {
        background-color: var(--secondary);
    }

.product-details .detailed-notes .containerx {
    display: flex;
    width: 100%;
    font-family: Arial, sans-serif;
    border-radius: 20px;
    padding: 0 15%;
    margin-bottom: 10px;
}

.product-details .detailed-notes .sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
}

    .product-details .detailed-notes .sidebar button {
        font-size: 22px;
    }

.product-details .detailed-notes .tablink {
    background: none;
    border: none;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    color: #5a3e2b;
}

    .product-details .detailed-notes .tablink:hover, .product-details .detailed-notes .tablink.active {
        color: var(--secondary);
    }

.product-details .detailed-notes .content {
    width: 75%;
    padding: 20px;
    border-radius: 20px;
    background-color: #99653332;
    border: 1px solid var(--secondary);
}

.product-details .detailed-notes .tabcontent {
    display: none;
}

    .product-details .detailed-notes .tabcontent.active {
        display: block;
    }

.product-details .prod-spec {
    width: 80%;
    border-radius: 5px;
    color: var(--white);
    margin-top: 10px;
}

    .product-details .prod-spec .accordion {
        border-radius: 5px;
        padding: 15px 10px;
        top: 50px;
        width: 100%;
    }

    .product-details .prod-spec .accordion-header {
        background-color: var(--secondary);
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-details .prod-spec .accordion-content {
        background-color: var(--secondary-view);
        padding: 15px 10px;
        margin-top: -5px;
        display: none; /* hidden by default */
    }

    .product-details .prod-spec .accordion.open .accordion-content {
        display: block; /* show when open */
    }

    .product-details .prod-spec .accordion.open {
        border-radius: 5px 0 0 5px;
    }

        .product-details .prod-spec .accordion.open .icon {
            content: "-"; /* switch to minus */
        }

    .product-details .prod-spec .form-control {
        min-width: 100%;
        background-color: var(--secondary-alt);
        outline: none;
        border: none;
        border-radius: 5px;
        height: auto;
        font-size: 14px;
        padding: 15px 10px;
        color: var(--secondary-light);
        margin-bottom: 10px;
    }

        .product-details .prod-spec .form-control:focus {
            outline: none;
            border: none;
            box-shadow: 1px 2px 2px var(--primary-light);
        }

.shopping-cart {
    min-height: 80vh;
}

    .shopping-cart .caption {
        text-align: center;
        padding: 10px 10px;
        background-color: var(--secondary-light);
        font-family: "inriaserif";
        color: var(--primary-alt);
    }


    .shopping-cart .cart-list {
        width: 100%;
        padding: 20px 15% 50px 15%;
    }

    .shopping-cart .item-wrapper {
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px solid var(--secondary-view);
    }



    .shopping-cart .product-img {
        position: relative;
        z-index: 1;
    }

        .shopping-cart .product-img img {
            width: 120px;
            height: 160px;
            object-fit: cover;
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            border-radius: 20px;
            box-shadow: 0px 0px 3px rgb(182, 177, 172, 0.77);
        }

        .shopping-cart .product-img .hover-img {
            -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
            position: absolute;
            top: 0;
            left: 0;
            width: 120px;
            height: 160px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0px 0px 4.8px rgba(153, 101, 51, 0.77);
        }

    .shopping-cart .item-wrapper:hover .product-img .hover-img {
        opacity: 1;
        visibility: visible;
    }

    .shopping-cart .product-info {
        margin-top: 20px;
    }

        .shopping-cart .product-info .btn-minus,
        .shopping-cart .product-info .btn-plus {
            outline: none;
            border-radius: 50%;
            height: 23px;
            width: 23px;
            border: 1px solid black;
            color: var(--dark);
            font-weight: bold;
            font-size: 12px;
            background-color: transparent;
        }

            .shopping-cart .product-info .btn-minus:hover,
            .shopping-cart .product-info .btn-plus:hover {
                border: 1px solid var(--primary);
            }

    .shopping-cart .prod-qty {
        color: var(--primary);
    }

    .shopping-cart .keep-shopping {
        text-align: center;
        margin: 30px 0;
    }

        .shopping-cart .keep-shopping .btn-shop {
            background-color: var(--secondary);
            border-radius: 25px;
            color: var(--secondary-light);
            margin: 20px 0;
            padding: 10px 60px;
        }

            .shopping-cart .keep-shopping .btn-shop:hover {
                background-color: var(--primary);
            }

    .shopping-cart .cart-list .no-cart {
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        .shopping-cart .cart-list .no-cart a {
            display: block;
            background-color: var(--secondary-light);
            border-radius: 25px;
            color: var(--text-dark);
            padding: 10px 30px;
            margin-top: 20px;
            box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
        }

            .shopping-cart .cart-list .no-cart a:hover {
                background-color: var(--secondary);
                color: var(--light-bg);
                text-decoration: none;
            }


    .shopping-cart .summary-area {
        margin-bottom: 50px;
        margin-top: 10%;
    }

        .shopping-cart .summary-area .summary-main {
            background-color: var(--secondary-light);
            width: 100%;
            color: var(--text-dark);
            padding: 10px;
            margin: 30px 0;
        }

            .shopping-cart .summary-area .summary-main .title {
                font-weight: bolder;
            }

            .shopping-cart .summary-area .summary-main .value {
                float: right;
            }

        .shopping-cart .summary-area .summary-splash {
            text-align: center;
            width: 100%;
            color: var(--text-dark);
            padding: 10px;
            margin: 30px 0;
        }

        .shopping-cart .summary-area .checkout-btn-area {
            text-align: center;
        }

            .shopping-cart .summary-area .checkout-btn-area .checkout-btn {
                text-align: center;
                width: 80%;
                padding: 20px 60px;
                background: linear-gradient( to right, #7cbd81 0%, #409f48 100%);
                color: white;
                border-radius: 30px;
                font-size: 20px;
            }

                .shopping-cart .summary-area .checkout-btn-area .checkout-btn:disabled {
                    background: linear-gradient( to right, rgb(155, 155, 155) 30%, #717171 80%);
                    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
                }


                .shopping-cart .summary-area .checkout-btn-area .checkout-btn:hover {
                    background: linear-gradient( to right, #7cbd81 30%, #409f48 80%);
                    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
                }


.check-out {
    margin-bottom: 30px;
}

    .check-out .main-content {
        margin-bottom: 30px;
        padding: 0 15%10%15%;
    }

        .check-out .main-content .label.label-warning {
            white-space: pre-wrap;
            color: black;
            background-color: yellow;
            border-radius: 5px;
        }

    .check-out .headliner {
        color: var(--secondary);
        padding: 30px 15% 10px 15%;
        border-bottom: 1px solid var(--primary);
        font-weight: 400;
    }

    .check-out .note {
        padding: 20px;
    }

    .check-out h2 {
        color: var(--secondary);
    }

    .check-out .form-control {
        min-width: 100%;
        height: auto;
        padding: 12px 8px;
        background-color: var(--secondary-light);
        outline: none;
        border: none;
        box-shadow: none;
        margin-bottom: 10px;
        /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;*/
    }


    .check-out .payment-summary .summary-info {
        padding: 20px 0;
    }

        .check-out .payment-summary .summary-info p, .check-out .payment-summary .summary-info h4 {
            padding: 15px 10px;
            background-color: var(--secondary-view-alt);
            border-radius: 5px;
        }

        .check-out .payment-summary .summary-info .title {
            font-weight: bolder;
        }

        .check-out .payment-summary .summary-info .value {
            float: right;
        }


    .check-out .payment-summary .payment-method {
        text-align: center;
    }

        .check-out .payment-summary .payment-method .checkout-btn {
            text-align: center;
            width: 80%;
            padding: 20px 60px;
            background: linear-gradient( to right, #7cbd81 0%, #409f48 100%);
            color: white;
            border-radius: 30px;
            font-size: 20px;
        }

            .check-out .payment-summary .payment-method .checkout-btn:disabled {
                background: linear-gradient( to right, rgb(155, 155, 155) 30%, #717171 80%);
                box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
            }

            .check-out .payment-summary .payment-method .checkout-btn:hover {
                background: linear-gradient( to right, #7cbd81 30%, #409f48 80%);
                box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
            }

            .check-out .payment-summary .payment-method .checkout-btn.disabled-link {
                background: linear-gradient( to right, rgb(155, 155, 155) 30%, #717171 80%);
                box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
                cursor: not-allowed;
            }

                .check-out .payment-summary .payment-method .checkout-btn.disabled-link:hover {
                    background: linear-gradient( to right, rgb(155, 155, 155) 30%, #717171 80%);
                    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
                }

.pay-online, .order-complete {
    min-height: 80vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .order-complete .btn-home {
        color: var(--primary);
        width: 80%;
        background-color: var(--primary);
        border-radius: 25px;
        color: var(--secondary-light);
        margin-top: 20px;
        padding: 15px;
    }

        .order-complete .btn-home:hover {
            background-color: var(--secondary);
        }

.user-profile {
    margin-top: 100px;
    margin-bottom: 100px;
    min-height: 80vh;
    padding-top: 50px;
}

    .user-profile .caption-top {
        margin-left: 5%;
    }

    .user-profile .profile-menu {
        width: 100%;
        background: linear-gradient(to bottom, var(--secondary) 20%, var(--primary) 100%);
        height: 20vh;
        text-align: center;
        border-radius: 30px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .user-profile .profile-menu.logout {
            background: linear-gradient(to bottom, maroon 20%, red 100%);
        }

    .user-profile .logout-paint {
        background: linear-gradient(to bottom, maroon 20%, red 100%);
        padding: 5px 3px 0 3px;
    }

    .user-profile a {
        color: var(--light-bg);
    }

        .user-profile a i {
            font-size: 50px;
            color: var(--white);
            display: block;
            margin: 10px 0;
            text-align: center;
        }

.your-orders {
    margin: 40px 0;
}
    .your-orders .all-orders {
        margin: 40px 0;
    }

    .your-orders .order-info {
        box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
        border-radius: 30px;
        padding: 20px 30px;
        background: linear-gradient(320deg, var(--primary-alt), var(--secondary-alt));
        color: var(--light-bg);
        height: max-content;
        min-height: 350px;
        margin-bottom: 20px;
    }

        .your-orders .order-info .container {
            color: var(--light-bg);
        }

    .your-orders img {
        border-radius: 8px;
    }

    .your-orders a {
        color: var(--secondary-light);
    }

.manage-account {
    padding: 30px 0px;
}


    .manage-account .form-control {
        min-width: 100%;
        height: auto;
        padding: 12px 8px;
        background-color: var(--secondary-light);
        outline: none;
        border: none;
        box-shadow: none;
        margin-bottom: 10px;
        /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;*/
    }

.favourites {
    min-height: 50vh;
    margin: 30px 0;
}

    .favourites .arrivals {
        min-height: 80vh;
        width: 100%;
        padding: 20px 0px;
    }

        .favourites .arrivals h1 {
            font-family: inriaserif-light;
            color: var(--primary);
            font-size: 35px;
            font-weight: 500;
        }

        .favourites .arrivals h3 {
            color: var(--primary);
            font-weight: normal;
        }


        .favourites .arrivals .arrivals-item {
            width: 100%;
            margin: 20px 0;
            display: block;
        }

        .favourites .arrivals .product-img {
            margin: 20px 0 10px 0;
            width: 100%;
            height: 350px;
            position: relative;
            margin-right: 20px;
            border-radius: 20px;
            box-shadow: 0px 0px 12px rgba(153, 101, 51, 0.83);
        }

            .favourites .arrivals .product-img:hover {
                box-shadow: 0px 0px 14px rgba(221, 125, 33, 0.9);
                width: 100%;
                height: 348px;
            }

            .favourites .arrivals .product-img img {
                width: 100%;
                height: 350px;
                object-fit: cover;
                border-radius: 20px;
                position: absolute;
                z-index: 5;
                top: 0;
            }

        .favourites .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;
        }

        .favourites .arrivals .arrivals-item .favourite {
            color: var(--white);
            position: absolute;
            z-index: 7;
            top: 15px;
            right: 25px;
            font-weight: normal;
        }

        .favourites .arrivals .arrivals-item .pricing .product-title {
            color: var(--primary-light);
            font-family: inter-variablefont_opsz,wght;
            font-size: 25px;
        }

        .favourites .arrivals .arrivals-item .pricing {
            width: 100%;
            white-space: wrap;
        }

            .favourites .arrivals .arrivals-item .pricing p {
                color: var(--secondary);
            }

            .favourites .arrivals .arrivals-item .pricing h2 {
                font-size: 26px;
                margin-top: 3px;
            }

.mobile-only {
    display: none;
}

.your-reviews {
    margin: 40px 0;
    min-height: 50vh;
}

    .your-reviews .review-me {
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        border-radius: 30px;
        margin-top: 15px;
        padding: 15px 10px;
        background: linear-gradient(to right, var(--secondary-light ), var(--secondary-view));
    }

    .your-reviews .review-box {
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
        border-radius: 30px;
        margin-top: 15px;
        padding: 15px 10px;
        background: linear-gradient(to right,var(--light-bg), var(--secondary-light ), var(--secondary-view));
    }

.review-me .form-control {
    min-width: 100%;
    height: auto;
    padding: 12px 8px;
    background-color: var(--secondary-light);
    outline: none;
    border: none;
    box-shadow: none;
    margin-bottom: 10px;
}
.review-me .ratings i{
    color: var(--text-muted);
}
.review-me .ratings i:hover{
    color:var(--primary-light);
}

.your-reviews .ratings {
    direction: rtl; /* makes stars fill left-to-right */
    unicode-bidi: bidi-override;
    margin-bottom:5px;
}

.your-reviews .review-box .ratings {
    direction: ltr; /* makes stars fill left-to-right */
    unicode-bidi: bidi-override;
    margin-bottom:5px;
}

    .your-reviews .ratings input {
        display: none; /* hide radio buttons */
    }

    .your-reviews .ratings label {
        font-size: 2rem;
        color: var(--text-muted);
        cursor: pointer;
    }

    .your-reviews .ratings input:checked ~ label {
        color: var(--primary-light);
    }

    .your-reviews .ratings label:hover,
    .your-reviews .ratings label:hover ~ label {
        color: var(--primary-light);
    }

    .border-0{
        border:none;
        outline:none;
    }




.table tr:nth-child(even) {
    background-color: var(--secondary-light) !important; /* light blue */
}

.table-striped tr:nth-child(odd) {
    background-color: transparent !important; /* white */
}
.zones{
    margin:40px 0 ;
    min-height:50vh;
}

/* #######################################  */
/*#######################################  */
/* #############    MOBILE    ################  */
/* ########################################  */
/* ##########################################  */

@media (min-width:850px) and (max-width: 1024px) {
    .product {
        padding: 5px;
    }

    .mobile-only {
        display: unset;
        color: black;
    }

    .smaller {
        font-size: smaller;
    }

    .product .product-wrapper {
        margin: 0;
        padding: 0;
    }

    .product-wrapper .product-img img {
        height: 350px;
    }

    .product-wrapper .product-img .hover-img {
        height: 350px;
    }
}

@media (max-width:850px) {

    .mobile-only {
        display: unset;
        color: black;
    }

    .smaller {
        font-size: smaller;
    }

    .product {
        width: 100%;
        margin: 5px 0;
        padding: 0px;
        height: 400px;
        border-radius: 20px 20px 0 0;
    }

        .product .product-wrapper {
            margin: 0;
            padding: 0 5px;
            height: 400px;
        }

    .product-wrapper .product-img img {
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        width: 100%;
        height: 260px;
    }

    .product-wrapper .product-img .hover-img {
        height: 260px;
    }

    .shop-menu ul.top-part {
        width: 100%;
    }

    .shop-menu a:hover {
        width: 100%
    }

    .shop-menu li.top-item, .shop-menu li.has-submenu {
        float: left;
        padding: 5px 7px;
        z-index: 20;
        width: fit-content;
        margin: 0;
        position: relative;
    }

        .shop-menu li.top-item ul, .shop-menu li.has-submenu ul {
            position: absolute;
            z-index: 500;
            padding: 5px 10px;
            box-shadow: 0px 0px 12px rgba(153, 101, 51, 0.83);
            background-color: var(--light-bg);
            margin-top: 5px;
            border-radius: 5px;
        }

    /* Arrow indicators */
    .has-submenu > span::after {
        content: "▶"; /* right arrow */
        font-size: 0.8em;
        float: right;
        margin-left: 10px;
        transition: transform 0.2s ease;
    }


    .product .product-wrapper .product-price {
        font-weight: bold;
        font-family: inter-variablefont_opsz,wght;
        font-size: 25px;
        font-size: 20px;
        text-align: center;
        padding: 10px 5px;
        border-radius: 5px;
        width: 100%;
        background-color: var(--primary-light);
        color: white;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3;
    }

    .shop-header h4 {
        font-size: 18px;
    }

    .shop .col-xs-6 {
        padding: 5px;
    }


    /* Layout */
    .gallery {
        padding: 5% 10%;
    }

    .close {
        right: unset;
        top: 80px;
        left: 30px;
        z-index: 5000000000000;
    }

    .product-details .product-description {
        padding: 5% 0;
    }

        .product-details .product-description .product-name {
            font-size: 25px;
        }

    .product-details .product-price {
        font-size: 20px;
    }


    .product-details .btn-listbox {
        border: none;
        padding: 0;
        background: none;
        max-width: 100%;
        height: 50px;
        max-width: fit-content;
        max-height: fit-content;
    }

    .product-details .option-row {
        display: block;
        margin-top: 20px;
        width: 100%;
    }

        .product-details .option-row .option-label {
            display: inline-block;
            vertical-align: middle;
            color: var(--primary);
            margin-top: -10px;
        }


    .product-details .btn-listbox option {
        display: inline-block;
        white-space: pre-wrap;
        vertical-align: middle;
        margin: 5px;
        padding: 5px 8px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        background-color: var(--secondary);
        transition: all 0.3s ease;
        color: white;
    }


    .product-details .btn-bag {
        width: 100%;
    }

    .product-details .detailed-notes .containerx {
        padding: 0;
        margin-bottom: 10px;
    }

    .product-details .detailed-notes .sidebar {
        width: 30%;
    }

        .product-details .detailed-notes .sidebar button {
            font-size: 14px;
        }

    .product-details .detailed-notes .tablink {
        padding: 5px;
        font-size: 14px;
    }

    .product-details .detailed-notes .content {
        width: 70%;
        padding: 5px;
        border: 1px solid var(--secondary);
    }

    .product-details .detailed-notes .tabcontent {
        display: none;
    }

        .product-details .detailed-notes .tabcontent.active {
            display: block;
        }

    .product-details .prod-spec {
        width: 100%;
        margin-top: 5px;
    }

        .product-details .prod-spec .accordion-content {
            padding: 15px 10px;
            margin-top: -5px;
        }

        .product-details .prod-spec .accordion.open {
            border-radius: 5px 0 0 5px;
        }

        .product-details .prod-spec .form-control {
            padding: 8px;
            margin-bottom: 5px;
        }

    .shopping-cart {
        background-color: white;
    }


        .shopping-cart .caption {
            text-align: left;
            padding: 10px 15px;
        }

        .shopping-cart .cart-list {
            padding: 0px;
            margin: 20px 0;
        }

        .shopping-cart .item-wrapper {
            margin: 0;
            padding: 0;
            padding-bottom: 10px;
            margin-bottom: 15px;
            border-bottom: none;
        }

            .shopping-cart .item-wrapper .col-xs-5 {
                padding: 2px;
            }

            .shopping-cart .item-wrapper .col-xs-7, .shopping-cart .item-wrapper .col-xs-3, .shopping-cart .item-wrapper .col-xs-9, .shopping-cart .item-wrapper .col-xs-6, .shopping-cart .item-wrapper .col-xs-12 {
                padding: 5px 3px;
                font-size: 12px;
            }

        .shopping-cart .product-img {
            position: relative;
            z-index: 1;
        }

            .shopping-cart .product-img img {
                width: 100%;
                height: 230px;
                border-radius: 10px;
                margin: 0 2px 0 0;
            }

            .shopping-cart .product-img .hover-img {
                width: 100%;
                height: 230px;
                margin: 0 2px 0 0;
            }

        .shopping-cart .product-info {
            margin-top: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px;
        }

            .shopping-cart .product-info h4 {
                font-size: 14px;
                margin: 0;
                padding: 0;
            }

            .shopping-cart .product-info .text-right {
                text-align: left;
            }

            .shopping-cart .product-info .btn-minus,
            .shopping-cart .product-info .btn-plus {
                height: 20px;
                width: 20px;
                font-size: 12px;
            }

        .shopping-cart .prod-qty {
            color: var(--primary);
        }

        .shopping-cart .keep-shopping {
            margin: 20px 0;
        }

            .shopping-cart .keep-shopping .btn-shop {
                margin: 0;
                padding: 10px 30px;
            }

        .shopping-cart .cart-list .no-cart {
            height: 40vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin-bottom: 30px;
        }

            .shopping-cart .cart-list .no-cart a {
                display: block;
                background-color: var(--secondary-light);
                border-radius: 25px;
                color: var(--text-dark);
                padding: 10px 30px;
                margin-top: 20px;
                box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
            }


        .shopping-cart .col-xs-12 {
            padding: 0px;
        }


        .shopping-cart .summary-area {
            margin-bottom: 50px;
            margin-top: 10%;
        }

            .shopping-cart .summary-area .summary-main {
                background-color: var(--light-bg);
                width: 100%;
                color: var(--text-dark);
                padding: 10px;
                margin: 30px 0;
            }

                .shopping-cart .summary-area .summary-main .title {
                    font-weight: bolder;
                }

                .shopping-cart .summary-area .summary-main .value {
                    float: right;
                }

            .shopping-cart .summary-area .summary-splash {
                text-align: center;
                width: 100%;
                color: var(--text-dark);
                padding: 10px;
                margin: 30px 0;
            }

            .shopping-cart .summary-area .checkout-btn-area {
                text-align: center;
            }

                .shopping-cart .summary-area .checkout-btn-area .checkout-btn {
                    width: 60%;
                    padding: 15px 30px;
                    font-size: 18px;
                }


    .pay-online, .order-complete {
        margin-top: 150px;
    }

        .order-complete .btn-home {
            margin-bottom: 50px;
        }


    .user-profile {
        margin-top: 50px;
        padding-top: 50px;
        position: relative;
    }

        .user-profile .profile-menu {
            width: 100%;
            height: 100px;
            border-radius: 10px;
            padding: 15px 5px;
            display: block;
        }

        .user-profile a {
            color: var(--light-bg);
            text-align: center;
        }

            .user-profile a i {
                font-size: 20px;
                color: var(--white);
                display: block;
                margin: 0 0 10px 0;
                text-align: center;
            }

        .user-profile .logout {
            display: none;
        }

        .user-profile .charts {
            box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
            margin-bottom: 35px;
        }

            .user-profile .charts a {
                color: var(--primary);
            }

                .user-profile .charts a:hover {
                    color: var(--secondary);
                }


    .favourites .arrivals .product-img {
        height: 250px;
    }

        .favourites .arrivals .product-img:hover {
            height: 248px;
        }

        .favourites .arrivals .product-img img {
            height: 250px;
        }

    .favourites {
        font-size: smaller;
    }

        .favourites h4.title {
            font-size: 14px;
            color: var(--primary);
        }


    .shop .orig-pr { 
        color:  var(--secondary-light); 
    }
     
    .shop .disc-pr {
        color: white;
    }



}
