html body {
    font-family: 'Rokkitt', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

nav {
    display: flex;
    justify-content: space-evenly;
    width: 100vw;
    transition: ease-out 0.5s;
    padding: 20px;
    position: relative;
}

nav::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50px;
    background-color: #a88100;
    width: 0%;
    height: 1.2px;
    transition: all 0.5s;
    color: rgba(255, 236, 180, 0.5);
}

nav:hover::before {
    width: 93%;
}

nav .navdiv {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
}

nav .navdiv ul {
    margin: auto 0;
    display: flex;
    gap: 5rem;
}

@media (max-width: 991.98px) {
    nav .navdiv {
        flex-wrap: wrap;
    }

    #navbarNav {
        width: 100%;
    }

    nav .navdiv ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

nav .navdiv ul li {
    margin: auto 0;
    list-style-type: none;
}

nav .navdiv ul li a {
    color: black;
    text-decoration: none;
}

nav .navdiv .logo img {
    height: 4em;
}

nav button {
    background-color: #a88100;
    height: 50px;
    margin: auto 0;
    border-radius: 10px;
    border: #a88100 1px solid;
    width: 170px;
    transition: 0.3s ease-in-out;
}

nav a {
    color: white;
    text-decoration: none;
}

nav button:hover {
    background-color: rgba(255, 236, 180, 0.5);
}

nav button:hover a {
    color: #a88100;
    font-weight: 500;
}

nav .navdiv ul li a:hover {
    text-decoration: underline #a88100 1px;
    color: #a88100;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.refiners {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.refiners>* {
    flex-shrink: 0;
}

.refiners .search-bar {
    width: max-content;
    border: 1px rgba(0, 0, 0, 0.2) solid;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 236, 180, 0.1);
}

.refiners .search-bar:hover {
    background-color: rgba(255, 236, 180, 0.2);
}

.refiners .search-bar .search-input {
    border: none;
    background-color: transparent;
}

.refiners .search-bar .search-input:focus-within {
    border: none;
    outline: none;
}

.refiners .search-bar:has(.search-input:focus) {
    border: 1px solid #f4be0e;
}

.refiners .search-bar .search-input::placeholder {
    font-family: "Roboto", sans-serif;
    color: rgba(0, 0, 0, 0.3);
    font-size: 15px;
}

input[type='search'] {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.refiners .dropfilter {
    display: flex;
    align-items: center;
    border: 1px rgba(0, 0, 0, 0.2) solid;
    border-radius: 6px;
    width: max-content;
    background-color: rgba(255, 236, 180, 0.1);
}

.refiners .dropfilter:hover {
    background-color: rgba(255, 236, 180, 0.2);
}

.refiners .dropfilter:has(.dropdown:focus-within) {
    border: 1px solid #f4be0e;
}

.refiners .dropfilter .dropdown {
    border: none;
    font-family: "Roboto", sans-serif;
    color: rgba(0, 0, 0, 0.5);
    position: relative;
    background-color: transparent;
}

.refiners .dropfilter .dropdown:focus-within {
    border: none;
    outline: none;
}

.refiners .dropfilter .dropdown option {
    font-family: "Roboto", sans-serif;
    color: rgba(0, 0, 0, 0.5);
}

.refiners .cart .yourCart .viewCart {
    text-decoration: none;
    color: #a88100;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.refiners .cart .yourCart .transactionPage {
    text-decoration: none;
    color: #a88100;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.refiners .cart .yourCart .transactionPage::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transform: translateY(6px);
    transition: all 0.3s;
    border: 0.95px solid #a88100;
    opacity: 0;
    background-color: rgba(188, 148, 18, 0.5);
}

.refiners .cart .yourCart .transactionPage:hover::before {
    opacity: 1;
    width: 100%;
}

.refiners .cart .yourCart .viewCart::after {
    content: "\f07a";
    position: absolute;
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    color: #a88100;
    padding-left: 5px;
    opacity: 0;
    transform: translate(-100px);
    transition: all 0.5s;
}

.refiners .cart .yourCart .viewCart:hover::after {
    opacity: 1;
    transform: translate(0px);
}

.wrapper .filterSection .budget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper .filterSection .budget .budgetHeader {
    position: relative;
}

.wrapper .filterSection .budget .budgetHeader::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #a88100;
    height: 1px;
    width: 100%;
}

.wrapper .filterSection .budget .price-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wrapper .filterSection .budget .range-slider {
    width: 100%;
    height: 20px;
    position: relative;
}

.wrapper .filterSection .budget .range-fill {
    height: 6px;
    background-color: rgba(188, 148, 18, 0.5);
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

input[type='range'] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #a88100;
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-top: -2px;
}

input[type='range']::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #e8e8e8;
    border-radius: 3px;
    border: none;
}

.wrapper .filterSection .clearButton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .filterSection .clearButton .clearFilter {
    border: 1px #a88100 solid;
    outline: none;
    background-color: #a88100;
    color: white;
    border-radius: 6px;
    padding: 6px 10px;
    transition: 0.2s ease-in;
}

.wrapper .filterSection .clearButton .clearFilter:hover {
    border: 1px #a88100 solid;
    background-color: rgba(255, 236, 180, 0.5);
    color: #a88100;
}

.wrapper .productSection .pHeader {
    display: flex;
    justify-content: center;
}

.wrapper .productSection .productHeader {
    width: max-content;
    position: relative;
}

.wrapper .productSection .productHeader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #a88100;
    bottom: 0;
}

.wrapper .productSection .products {
    display: flex;
    justify-content: space-evenly;
}

.wrapper .productSection .products .card {
    border: 1px solid rgba(188, 148, 18, 0.3);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    animation: fadeUp 1s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wrapper .productSection .products .card .card-body {
    border-top: 1px rgb(188, 148, 18, 0.3) solid;
}

.wrapper .productSection .products .card img {
    height: 170px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    outline: 1px rgb(188, 148, 18, 0.05) solid;
    object-fit: contain;
    object-position: center;
}

.wrapper .productSection .products .card .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.wrapper .productSection .products .card .recentlyAdded {
    border: rgba(188, 148, 18, 0.5) 1px solid;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    background-color: rgba(255, 236, 180, 0.5);
    color: #a88100;
    border-radius: 8px;
    padding: 5px;
    height: fit-content;
    font-weight: 400;
    width: 82px;
    text-align: center;
}

.wrapper .productSection .products .card .best_selling_header {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #a88100;
    border: 1px rgba(188, 148, 18, 0.5) solid;
    background-color: rgba(255, 236, 180, 0.5);
    text-align: center;
    border-radius: 8px;
    padding: 5px 10px;
}

.wrapper .productSection .products .card .card-body .card_header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper .productSection #notFound,
#noProducts {
    text-align: center;
    font-size: 50px;
    color: #a88100;
    font-weight: 500;
}

.wrapper .productSection .products .card .card-body .card_footer {
    display: flex;
    justify-content: space-between;
}

.wrapper .productSection .products .card .card-body .card_footer .read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #a88100;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    position: relative;
}

.wrapper .productSection .products .card .card-body .card_footer .read-more::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    border: 0.95px solid #a88100;
    opacity: 0;
    background-color: rgba(188, 148, 18, 0.5);
}

.wrapper .productSection .products .card .card-body .card_footer .read-more:hover::before {
    width: 100%;
    opacity: 1;
}

.productSection .best_sellers .bHeader {
    display: flex;
    justify-content: center;
}

.productSection .best_sellers .bestHeader {
    position: relative;
}

.productSection .best_sellers .bestHeader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #a88100;
    bottom: 0;
}

.productSection .best_sellers .best-selling-products {
    justify-items: center;
}

.productSection .best_sellers .best-product {
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border: 0.5px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: fit-content;
}

.productSection .best_sellers .best-product .image-best {
    height: 15rem;
}

.productSection .best_sellers .best-product .image-best .card-img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.productSection .best_sellers .best-product .best_descriptions .product_material {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.productSection .best_sellers .best-product .best_descriptions .best_selling_title,
.recentlyAdded {
    color: #a88100;
    background-color: rgba(255, 236, 180, 0.5);
    border: rgba(168, 129, 0, 0.5) 1px solid;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
}

.productSection .best_sellers .best-product .best_descriptions #bestTitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}

.productSection .best_sellers .best-product .best_descriptions .cardFooter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.productSection .best_sellers .best-product .best_descriptions .cardFooter .read-more {
    color: #a88100;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 28px;
    position: relative;
}

.productSection .best_sellers .best-product .best_descriptions .cardFooter .read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    opacity: 0;
    background-color: rgba(255, 236, 180, 0.5);
    border: 0.95px #a88100 solid;
    transition: all 0.3s;
}

.productSection .best_sellers .best-product .best_descriptions .cardFooter .read-more:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border: 0.95px #a88100 solid;
    opacity: 1;
}

.minimal_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
}

.minimal_footer .copyright {
    font-size: 12px;
    font-weight: 300;
}

.minimal_footer .terms_and_condition {
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
}

.minimal_footer .terms_and_condition a {
    text-decoration: none;
    color: black;
}

/* 
*{
    outline: 1px red solid;
} */