﻿
html {
    box-sizing: border-box;
}

#cart-content:hover{
    text-decoration: none;
}

.btn{
    cursor:pointer;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.nav-custom {
    background: #F9F9F9;
}

.font-secondary {
    font-family: 'Libre Baskerville', Arial, Helvetica, sans-serif;
}

.primary-button {
    background: #514B94;
    border-radius: 30px;
}
.bg-black {
    background: #000;
}
.hero {
    background: rgb(194,196,211);
    background: url(../images/zzz-bg.png), linear-gradient(270deg, rgba(194,196,211,1) 0%, rgba(247,246,255,1) 100%);
    background-repeat: no-repeat;
    background-position: 100% 20%;
}

@media (min-width: 992px) {
    .hero {
        height: 720px;
    }

    .card--1 {
        height: 440px;
    }
}

.border {
    height: 100%;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    transition: border 1s;
    position: relative;
    border: 0 !important
}



.card {
    height: 440px;
    width: 100%;
    /* background: #f9f9f9 !important; */
    border-radius: 10px;
    transition: background 0.8s;
    overflow: hidden;
    background: #000;
    box-shadow: 0 70px 63px -60px #000;
    display: flex;
    position: relative;
}

.item-desc {
    background: #4f4a91ad;
    position: absolute;
    bottom: 20px;
    width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.card0 {
    background: url("../images/image1.png") #fff center center no-repeat;
    background-size: 200px;
}

    .card0:hover {
        background: url("../images/image1.png") #fff center center no-repeat;
        background-size: 400px;
    }

        .card0:hover h2 {
            opacity: 1;
        }

        .card0:hover .fa {
            opacity: 1;
        }

.card1 {
    background: url("../images/image2.png") #fff center center no-repeat;
    background-size: 100px;
    height: 215px !important;
}

    .card1:hover {
        background: url("../images/image2.png") #fff center center no-repeat;
        background-size: 200px;
    }

        .card1:hover h2 {
            opacity: 1;
        }

        .card1:hover .fa {
            opacity: 1;
        }

.card2 {
    background: url("../images/image3.png") #fff center center no-repeat;
    background-size: 200px;
    height: 215px !important;
}

    .card2:hover {
        background:  url("../images/image3.png") #fff left center no-repeat;
        background-size: 400px;
    }

        .card2:hover h2 {
            opacity: 1;
        }

        .card2:hover .fa {
            opacity: 1;
        }



.fa {
    opacity: 0;
    transition: opacity 1s;
}

.icons {
    position: absolute;
    fill: #fff;
    color: #fff;
    height: 130px;
    top: 226px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.featured {
    background: #6A669A;
}

.floating {
    animation: 3s infinite alternate floating;
}

.shadowx {
    height: 2px;
    display: block;
    margin: 15px auto;
    animation: 3s infinite alternate shadow;
}

@keyframes floating {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes shadow {
    0% {
        width: 180px;
        box-shadow: 0px 10px 8px rgba(0,0,0,.8);
    }

    50% {
        width: 150px;
        box-shadow: 0px 10px 8px rgba(0,0,0,.5);
    }

    100% {
        width: 180px;
        box-shadow: 0px 10px 8px rgba(0,0,0,.8);
    }
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .menu > li {
        margin: 0 1rem;
        overflow: hidden;
    }

.menu-button-container {
    display: none;
    height: 100%;
    width: 60px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #514b94;
    position: absolute;
    height: 2px;
    width: 20px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

    .menu-button::before {
        content: '';
        margin-top: -8px;
    }

    .menu-button::after {
        content: '';
        margin-top: 8px;
    }

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

    #menu-toggle:checked + .menu-button-container .menu-button::after {
        margin-top: 0px;
        transform: rotate(-405deg);
    }

@media (max-width: 700px) {
    .menu-button-container {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 45px;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle ~ .menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked ~ .menu li {
        border: 0;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: #ffffff;
        background-color: #4b4b4bba;
    }

        .menu > li:not(:last-child) {
            border-bottom: 1px solid #444;
        }
}

.text-secondary {
    color: #aaa !important;
}

ul.list-unstyled li {
    padding: 10px 0;
    font-size: 14px;
    margin: 0 10px;
}

.cartCount {
    position: absolute;
    right: 0px;
    top: 2px;
    display: flex; /* or inline-flex */
    align-items: center;
    justify-content: center;
    background-color: #fa9c12;
    padding: 0px;
    width: 21px;
    height: 21px;
    border-radius: 23px;
    text-align: center;
    color: white;
    font-weight: 400;
    display: none;
    cursor: pointer;
    font-size: 11px;
}

.cartItem {
    font-size: 12px;
    background: rgba(255, 255, 255, 1);
    padding: 17px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .15);
}
.bi-bag {
    cursor: pointer;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 654px;
        margin: 1.75rem auto;
    }
}

.form-control {
    font-size: 14px!important
}

@media screen and (max-width: 768px) {
    ul.list-unstyled {
        display: block !important;
    }

    .card {
        height: auto;
    }

    .top-logo {
        width: 80px !important;
    }
    .quantity {
        width: 30% !important;
    }
}

.btn-link.collapsed {
    color: #8b8b8b !important;
}

.btn-link {
    color: #8528A3 !important;
}

.quantity {
    width: 8%;
}
