/* Importing Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
nav img{
    width: 85px;
    cursor: pointer;
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 8%;
}

nav ul{
    flex: 1;
    text-align: right;
    padding-right: 25px;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin: 10px 25px;
    padding: 10px 0;
    position: relative;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #777;
    display: block;
    margin: auto;
    transition: 0.5s;
}

nav ul li:hover::after{
    width: 100%;
}

nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    position: relative;
}

nav .cart{
    width: 30px;
    cursor: pointer;
}
.sidebar {
    position:fixed;
    top: 0;
    left: 0;
    width: 110px;
    height: 100%;
    display:flex;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(17px);
    --webkit-backdrop-filter: blur(17px);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

.sidebar:hover{
    width:260px;
}


.sidebar .logo {
    color: #000;
    display: flex;
    align-items: center;
    padding: 25px 10px 15px;
}

.logo img {
    width: 43px;
    border-radius: 50%;
}

.logo h2 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-left: 15px;
    display: none;
}
.sidebar:hover .logo h2 {
    display: block;
}
.sidebar .links {
    list-style: none;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: none;
    height: calc(100% - 140px);
}

.sidebar .links::-webkit-scrollbar {
    display: none;
}

.links li {
    display: flex;
    border-radius: 4px;
    align-items: center;
}

.links li:hover {
    cursor: pointer;
    background: #fff;
}

.links h4 {
    color: #222;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
}

.sidebar:hover .links h4 {
    display: block;
}


.links hr {
    margin: 10px 8px;
    border: 1px solid #4c4c4c;
}

.sidebar:hover .links hr {
    border-color: transparent;
}

.links li span {
    padding: 12px 10px;
}

.links li a {
    padding: 10px;
    color: #000;
    display: none;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
}

.sidebar:hover .links li a {
    display: block;
}



.links .logout-link {
    margin-top: 20px;
}
#product1
{
    text-align: center;
}

.section-p1 h2{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
}

.section-p1 h2 span{
    font-size: 35px;
    font-weight: 600;
}

.section-p1 p{
    color: #777;
}

#product1 .pro-container
{
    display:inline-flex;
    justify-content: space-evenly;
    padding-top: 20px;
    flex-wrap: wrap;

}

#product1 .pro
{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #777;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position:relative;
}

#product1 .pro:hover
{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);  
}

#product1 .pro img
{
    width: 100%;
}

#product1 .pro .des
{
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span
{
    color: #606063;
    font-size: 12px;
    text-transform: uppercase;
}

#product1 .pro .des h5
{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des h4
{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #777;
}

#product1 .pro .smallcart
{
    width: 35px;
    height: 35px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    transition: 0.1s;
}

#product1 .pro .smallcart:hover{
    transform: translateY(-2px);
}
footer
{
    width: 100%;
    position: relative;
    bottom: 0;
    background: #262626;
    color: #fff;
    padding: 50px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.footerrow
{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footerrow-col
{
    flex-basis: 25%;
    padding: 10px;
}

.footerlogo
{
    width: 120px;
}

.footerrow-col h3
{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
}

.email-id
{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.footerrow-col ul li
{
    list-style: none;
    margin-bottom: 12px;
}

.footerrow-col ul li a
{
    text-decoration: none;
    color: #fff;
    
}

form
{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form input
{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

hr
{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright
{
    text-align: center;
}

.underline
{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.underline span
{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
@keyframes moving
{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

.social-icn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.social-icn img{
    width: 40px;
    margin-right: 10px;
}