*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
:root{
    --background : rgb(233, 228, 226);
    --background2 : rgb(76, 35, 19);
}
body{
    overflow-x: hidden;
}
.whatsapp{
    height: 70px;
    width: 70px;
    /* background-color: aqua; */
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    animation: pulse 2s infinite ease-in-out, 
      bounce 2s infinite ease-in-out;;
    /* animation: bounce 1.8s infinite ease-in-out; */
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(19, 164, 72, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
  }
/* -----------------------------MOBILE VIEW---------------------------- */
@media screen and (max-width : 715px) {
      .topup{
        min-height: 40px;
        /* background: rgb(4, 116, 213); */
        /* background-color: rgb(48, 19, 8); */
    background-color: var(--background2);

    
        color: white;
        overflow-x: hidden;
        /* opacity: 0.5; */
    }
#one{
    display: none;
}
#two{
    display: none;
}
/* #three{
    width: 40%;
    background-color: bisque;
    margin: auto;
    text-align: start;
    float: inline-end;
    margin-right: 10%;
} */
#four{
    display: none;
}
#icons{
    display: none;
}
    .removecrt{
        display: none;
        
    }
    #icons{
        font-size: 35px;
        margin-right: 7px;
        margin-left: 10px;
        margin-top: 10px;
    }
    #sixipad{
        width: 90%;
        margin-top: 27px;
        margin: auto;
    }
    #canu{
        display: none;
    }
    #canumblbtn{
        color: white;
        margin-top: 23px;
    }
    #laptopcanu{
        display: none;
    }
    .tablelaptop{
        width: 90%;
        margin: auto;
    }
    .ordercomplete{
        height: 35px;
        width: 35px;
    }
    #three{
        /* background-color: bisque; */
        /* margin: auto; */
        text-align: start;
        float: inline-end;
        font-size: 30px;
        margin-top: 5px;
        /* background-color: #1877f2; */
        animation: scroll-left 15s linear infinite;

    }

    @keyframes scroll-left {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

    .profile-container {
        max-width: 1200px;
        margin: 20px auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .modal {
        display: none;  /* Hidden by default */
        position: fixed;
        z-index: 1050; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);  /* Semi-transparent background */
        animation: fadeIn 1s; /* Smooth fade-in effect */
    }

    /* Modal content */
    .modal-dialog {
        max-width: 70%;
        margin: 10% auto;  /* Center vertically and horizontally */
    }

    .modal-content {
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Close button */
    .close-btn {
        background-color: transparent;
        border: none;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1051;
        transition: 0.3s;
    }

    .close-btn:hover {
        color: #f44336; /* Red color when hovered */
    }

    /* Modal body */
    .modal-body {
        padding: 0;
    }

    /* Modal Image */
    .modal-body img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Smooth fade-in effect */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .out-of-stock {
        pointer-events: none; /* Disable click interaction */
        opacity: 0.5; /* Make it appear faded */
      }
    
    /* Cover Photo */
    .cover-photo {
        height: 350px;
        overflow: hidden;
        position: relative;
    }
    
    .cover-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Picture */
    .profile-info {
        display: flex;
        align-items: flex-end;
        padding: 20px;
        margin-top: -100px;
        position: relative;
    }
    
    .profile-pic {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 5px solid #fff;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Details */
    .details {
        margin-left: 20px;
        flex: 1;
    }
    
    .name {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }
    
    .bio {
        font-size: 1rem;
        color: #666;
        margin-top: 5px;
    }
    
    .stats {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
    }
    
    .stats span {
        margin-right: 15px;
    }
    
    /* Navigation Tabs */
    .tabs {
        display: flex;
        border-top: 1px solid #e4e6eb;
        padding: 0 20px;
        background: #f0f2f5;
    }
    
    .tab {
        padding: 15px 20px;
        text-decoration: none;
        color: #606770;
        font-size: 0.9rem;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    
    .tab:hover {
        background: #e4e6eb;
    }
    
    .tab.active {
        color: #1877f2;
        border-bottom: 3px solid #1877f2;
    }

    .five{
        /* background-color: rgb(236, 233, 233); */
        background-color: var(--background);
        min-height: 75px;
        /* margin-top: -16px ; */
        color: rgb(82, 81, 81);
    
    }
    
    /* ------------------------------------------------------------------------- */
    #icons1{
        float: right;
        font-size: 30px;
        margin-right: 2%;
        color: var(--background2);
        margin-top: 20px;
        
    }
    #icons2{
        display: none;

    }
    #icons3{
        /* margin-top: 12px;
        float: right;
        font-size: 30px;
        margin-right: 5px;
        color: rgb(239, 238, 238); */
        display: none;
    }
    #icons4{
        /* margin-top: 12px;
        float: right;
        font-size: 30px;     
        color: rgb(239, 238, 238); */
        display: none;
    }
    .logoimg{
        height: 70px;
        width: auto;
        /* background-color: #333; */
        margin-bottom: 12px;
    }
    .laptopcanu{
        margin-top: 30px;
    }
    #seven{
        color: rgb(239, 238, 238);
        margin: auto;
        /* background-color: blue; */
        width: fit-content;
        
        padding-top: 10px;
    }
        
    #six{
        /* width: 35%;
        float: inline-end;
        margin-right: 4%;
        margin-top: 20px; */
        /* background-color: blue; */
        display: none;
    }
    .category-main{
        /* background-color: aqua; */
        min-height: 100px;
        display: flex;
        /* justify-content: center; */
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-width: thin;
        scrollbar-color:  rgb(235, 234, 234) rgb(255, 255, 255);
        
    }
    .category-title {
    height: 2.8em;
}
    .cate-1:hover{
        background-color: rgb(224, 224, 224);
    }
   
    .cate-1{
        /* height: 100%; */
        min-width: 120px;
        background-color: rgb(255, 255, 255);

    }
    .cate-1-1{
        /* background-color: aquamarine; */
        height: 60px;
        width: 60px;
        margin: auto;

    }
    #main3-1{
        height: 60px;
        /* background-color: blue; */
        text-align: left;
        margin-bottom: 50px;
        position: relative;
    
    }
    /* #main3-1::after{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        left: 0px;
        bottom: 0px;
        position: absolute;
        animation: mover 40s linear infinite forwards alternate;
    
    }
    #main3-1::before{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        right: 0px;
        top: 0px;
        position: absolute;
        animation: mover2 40s linear infinite alternate;
    
    } */
    /* @keyframes mover {
        0%{
            left: 0%;
        }
        100%{
            left: 65%;
        }
        
    }
    @keyframes mover2 {
        0%{
            right: 0%;
        }
        100%{
            right: 65%;
        }
        
    } */
    #m3-1-1{
        /* background-color: aqua; */
        width: fit-content;
        margin: auto;
        float: left;
        color: white;
        position: relative;
        top: 50%;
        left: 20px;
        /* bottom: -5px; */
    }
    #m3-1-1::after{
        content: "";
        height: 2px;
        width: 20%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        bottom: -5px;
        left: 10px;
        transition: all .5s;
    }
    #m3-1-1:hover::after{
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        left: 0px;
        bottom: -5px;

    }
    .products-1{
        /* background-color: aqua; */
        height: 600px;
    }
    /* --------------------------------------Premium products---------------------------- */
    .seventhshift{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        background-image: url("/static/images/darkchocolate.jpg");
        /* position: absolute; */
        width: 100%;
        /* z-index: -1; */
    }
    #m3-1-11{
        width: fit-content;
        margin: auto;
        /* float: left; */
        color: rgb(156, 19, 19);
        position: relative;
        top: 50%;
        /* left: 70px; */
        /* bottom: -5px; p*/
    }
    .category_shift{
        /* margin-top: 200px; */
        top: -350px;
        /* background-color: aquamarine; */
        /* min-height: 500px; */
        position: relative;

    }
    .category_shift111{
        /* margin-top: 200px; */
        /* top: -350px; */
        /* background-color: aquamarine; */
        /* min-height: 500px; */
        position: relative;

    }
    #main3-111{
        /* height: 80px; */
        /* background-color: blue; */
        text-align: left;
        /* margin-bottom: 50px; */
        position: relative;
        /* background-color: aqua; */
    
    }
    #main3-111::after{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background2);
        left: 0px;
        bottom: 0px;
        position: absolute;
        animation: mover 40s linear infinite forwards alternate;
    
    }
    #main3-111::before{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background2);
        right: 0px;
        top: 0px;
        position: absolute;
        animation: mover2 40s linear infinite alternate;
    
    } 
    @keyframes mover {
        0%{
            left: 0%;
        }
        100%{
            left: 65%;
        }
        
    }
    @keyframes mover2 {
        0%{
            right: 0%;
        }
        100%{
            right: 65%;
        }
        
    } 
    .S7-1{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        /* background-color: blue; */
    }
    #main3-2{
        /* background-color: rgb(142, 89, 20); */
        height: 100%;
        width: 45%;
        /* margin-right: 1%; */
        /* margin-top: 10; */
        /* margin-left: 3%; */
    }
    #main3-2-1{
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
        text-align: center;
        min-height: 90%;
        width: 100%;
        margin: auto;
        margin-top: 30px;
    }
    .S7-111{
        width: 100%;
        /* margin: auto; */
        display: flex;
        /* justify-content: center; */
        /* flex-wrap: wrap; */
        gap: 10px;
        overflow-x: scroll;
        scrollbar-width: none;
        /* background-color: rgb(132, 132, 160); */
    }
    
    #main3-222{
        /* background-color: rgb(142, 89, 20); */
        min-height: 300px;
        min-width: 250px;
        margin-left: 5%;
        /* margin-top: 10; */
        /* margin-left: 3%; */
    }
    #main3-2-1-222{
        /* color: white; */
        width: 80%;
        /* background-color: aqua; */
        /* text-align: left; */
        margin: auto;
        margin-top: -10px;
    }
    
    
    #main3-2-1-1{
        position: relative;
        top: 0px;
        /* background-color: rgb(138, 138, 54); */
    }
    /* #main3-2-1-1::before{
        content: "";
        position: absolute;
        left: 0px;
        top: -30px;
        height: 400px;
        width: 275px;
        background-color: var(--background);
        border-radius: 10px;
        margin-top: 20px;
        z-index: 0;
    } */
    #main3-2-1-2{
        /* color: white; */
        width: 96%;
        /* background-color: aqua; */
        text-align: left;
        margin: auto;
        margin-top: -10px;
    }
    
    #pic3-2{
        z-index: 1;
        height: auto;
        width: 100%;
        /* margin-left: 12%; */
        /* border-radius: 10px; */
        /* transform: rotate(10deg); */
        /* margin-top: 20px; */
        /* border: 1px solid var(--background); */

    
    }
    .mt-4{
        /* background-color: aqua; */
        text-align: left;
    }
    #b1{
        /* background-color: var(--background); */
        border-radius: 5px;
        position: relative;
        bottom: 10px;
        margin-top: 30px;
        width: 65%;
        /* margin: auto; */
        border: 1px solid green;
        text-align: center;
    }
    
    /* -------------------------Top Rated: ---------------------------- */
    /* .category_shift2{
        margin-top: 30px;
        background-color: aliceblue;
        height: 400px;
    } */
    .seventhshift2{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/purple.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------Special discount---------------------------- */

    .seventhshift3{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------All products---------------------------- */

    .seventhshift4{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: 20px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

/* --------------------------------------------FOOTER------------------------------ */
.lastshift{
    /* min-height: 600px; */
    /* background-color: aqua; */
    background-color: var(--background2);
    /* position: relative; */
    /* top: 230px; */
    color: white;
    margin-top: -150px;
}
.f5{
    display: none;
}
.footerlast{
    width: 100%;
    height: 50%;
    background-color: var(--background2);
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 36px;
}
.f5mbl{
    height: 80%;
    width: 100%;
    /* background-color: #007bff; */
    /* text-align: center; */

}
.f1{
    /* background-color: rgb(78, 73, 66); */
    margin-right: 3%;
    width: 100%;
    margin-top: 20px;
    color: white;
    padding-left: 20px;


}
.f2{
    margin-left: 2%;
}
.f3{
    line-height: 30px;
}
.f3 p{
    /* width: 30%; */
    text-align: left;
    color: white;

}

#f4{
    font-size: 20px;
    margin-right: 10px;
    color: white;

}
#f5{
    color: white;
    
}
#S7-3{
    background-color: var(--background2);
    min-height: 60px;
    position: relative;

}
#S7-3-1{
    /* background-color: rgb(49, 42, 28); */
    /* width: 20%; */
    display: none;
    /* position: absolute; */
    /* bottom: 20px; */
    /* right: 2px; */
    /* margin: auto; */
}
#icons2{
    font-size: 25px;
    margin-right: 10px;

}
#S7-3-2{
    min-height: 90%;
    max-height: 90%;
    background-color: var(--background);
    width: 8%;
    max-width: 10%;
    /* margin-top: 10px; */
    margin-left: 60px;
    position: absolute;
    top: -10px;

}
#S7-3-2-1{
    height: 72px;
    width: 70px;
    position: absolute;
    left: 20%;
    top: 13%;
}
#S7-3-3{
    bottom: 10px;
        /* left: 30%; */
        width: 70%;
        margin: auto;
        text-align: center;
        font-size: 15px;
}
.hrline{
    width: 20%;
    /* margin: auto; */
}
    /* --------------------------------PRODUCT DETAIL------------------------------ */
.pdS1{
    /* background-color: aquamarine; */
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 180px;
}

.pdS1-1{
    /* background-color: blue; */
    min-height: 100%;
    width: 100%;
    display: flex;

}
.pdS1-1-1{
    /* background-color: blueviolet; */
    min-height: 100%;
    width: 30%;
    display: flex;
    margin-left: 40px;
    flex-wrap: wrap;
}
.shades{
    height: 200px;
    width: 125px;
    /* background-color: antiquewhite; */
    margin-right: 10px;
    margin-top: 10px;

}
.shadespic{
    height: 150px;
    width: 125px;
    border-radius: 10px;
}
.pdS1-1-2{
    /* background-color: rgb(79, 53, 103); */
    justify-items: center;
    min-height: 100%;
    width: 80%;
    margin: auto;
    text-align: center;
    /* margin-left: 35px; */
}
.pdS1-pic{
    height: 450px;
    width: 450px;
    margin: auto;
    margin-top: 10px;
    border-radius: 10px;
    display: block;
    /* background-color: beige; */

}
.pdS1-2{
    /* background-color: brown; */
    min-height: 100%;
    width: 100%;
}
.pdetailleft{
    text-align: left;
    /* background-color: #1877f2; */
    /* width: 50%; */
}
.pds1-2-1{
    /* background-color: aquamarine; */
    width: 90%;
    min-height: 90%;
    margin: auto;
    justify-items: center;
    margin-top: 30px;
    position: relative;

}
#pds1-2-2{
    background-color: var(--background2);
    /* margin: auto; */
    border: 1px solid black;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    /* position: absolute; */
    /* bottom: 65px; */
    color: white;
    /* left: 0%; */
    margin: auto;

}
.maincrousel{
    margin: auto;
    /* background-color: #1877f2; */
    margin-top: 20px;
}
#pds1-2-3{
    /* margin: auto; */
    border: 1px solid black;
    /* position: absolute; */
    /* bottom: 10px; */
    /* left: 0%; */
    margin: auto;
    margin-top: 20px;

}
/* ---------------------------------OFF CANVAS------------------------------------ */
#main{
    /* line-height: 40px; */
    margin-right: 2%;
}
#cntipad{
    margin-right: 5%;
    /* background-color: rgb(221, 145, 2); */
    background-color: var(--background);
    border-radius: 40px;
    margin-top: 20px;
    padding-top: 2px;
    padding-bottom: 3px;
    color: rgb(255, 255, 255);
    margin-left: 10px;

}
.navli{
    position: relative;
    /* background-color: aqua; */
    margin-top: -10px;
    margin-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.navli:hover{
    background-color: var(--background);
    color: white;
}
.dash{
    color: rgb(221, 145, 2);
    margin-left: 5px;
}
#navlink{
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin-left: 10px;
    /* font-weight: bold; */
}

 .navli::before{
    content: "";
    position: absolute;
    bottom: -1px;
    height: 1.5px;
    width: 0%;
    background-color: black;
    transition: all .5s;

 }

.navli:hover::before{
    width: 70%;
}
.table th, .table td {
    text-align: left;
    vertical-align: middle;
}
.total-section {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
}
/* --------------------------------cart-------------------------------------- */
#main3-11{
    height: 80px;
    margin-top: 50px;
    /* background-color: blue; */
    text-align: right;
    margin-bottom: 50px;
    position: relative;

}
#main3-11::after{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background2);
    left: 0px;
    bottom: 0px;
    position: absolute;
    animation: mover 40s linear infinite forwards alternate;

}
#main3-11::before{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background2);
    right: 0px;
    top: 0px;
    position: absolute;
    animation: mover2 40s linear infinite alternate;

}
@keyframes mover {
    0%{
        left: 0%;
    }
    100%{
        left: 65%;
    }
    
}
@keyframes mover2 {
    0%{
        right: 0%;
    }
    100%{
        right: 65%;
    }
    
}
#m3-1-11{
    /* background-color: aqua; */
    width: fit-content;
    margin: auto;
    position: relative;
    top: 20%;
}
#m3-1-11::after{
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 10px;
    transition: all .5s;
}
#m3-1-11:hover::after{
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 0px;
}

.colorvariant{
    /* background-color: #606770; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.cv-1{
    /* background-color: #48afff; */
    margin-right: 10px;
    width: 18%;
    height: 120px;
}
.color-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 5px;
    transition: border-color 0.3s;
  }
  
  .color-label input[type="radio"] {
    display: none;
  }
  
  .color-label img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
  }
  
  .color-label span {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .color-label input[type="radio"]:checked + img {
    border: 2px solid #000;
  }

}
/* ------------------------------ipad view--------------------------- */
@media screen and (min-width : 715px) and (max-width : 975px){
        .topup{
    min-height: 40px;
    /* background: rgb(4, 116, 213); */
    background-color: var(--background2);

    color: white;
}
#one{
    float: inline-end; 
    cursor: pointer;
}
#two{
    float: inline-end; 
    cursor: pointer; 
    margin-right: 20px;
}
#three{
    width: 45%;
    /* background-color: bisque; */
    /* margin: auto; */
    text-align: start;
    float: inline-end;
    margin-right: 5%;
}
#four{
    width: 20%;
    float: inline-start;
    /* margin-top: -20px; */
    margin-left: 5%;
    /* background-color: bisque; */
}
.S7-111{
        width: 100%;
        /* margin: auto; */
        display: flex;
        /* justify-content: center; */
        /* flex-wrap: wrap; */
        gap: 10px;
        overflow-x: scroll;
        scrollbar-width: none;

        scrollbar-width: thin;
        scrollbar-color:  rgb(235, 234, 234) rgb(255, 255, 255);
        /* background-color: rgb(132, 132, 160); */
        margin-bottom: 80px;
    }
    #main3-222{
        
        margin-left: 1.5%;
   
    }
#icons{
    font-size: 20px;
    margin-right: 7px;
}
    #canumblbtn{
        display: none;
    }
    #canumbl{
        display: none;

    }
    .imgcrousal{
        height: 400px;
        width: 400px;
    }
    .f5mbl{
        display: none;
    }
    .tablelaptop{
        width: 90%;
        margin: auto;
    }
    .ordercomplete{
        height: 35px;
        width: 35px;
    }
    /* #three{
        background-color: bisque;
        margin: auto;
        text-align: start;
        float: inline-end;
        font-size: 30px;
        margin-top: 5px;
        background-color: #1877f2;
        animation: scroll-left 25s linear infinite;

    } */

    /* @keyframes scroll-left {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-300%);
        }
      } */

    .profile-container {
        max-width: 1200px;
        margin: 20px auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .modal {
        display: none;  /* Hidden by default */
        position: fixed;
        z-index: 1050; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);  /* Semi-transparent background */
        animation: fadeIn 1s; /* Smooth fade-in effect */
    }

    /* Modal content */
    .modal-dialog {
        max-width: 70%;
        margin: 10% auto;  /* Center vertically and horizontally */
    }

    .modal-content {
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Close button */
    .close-btn {
        background-color: transparent;
        border: none;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1051;
        transition: 0.3s;
    }

    .close-btn:hover {
        color: #f44336; /* Red color when hovered */
    }

    /* Modal body */
    .modal-body {
        padding: 0;
    }

    /* Modal Image */
    .modal-body img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Smooth fade-in effect */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .out-of-stock {
        pointer-events: none; /* Disable click interaction */
        opacity: 0.5; /* Make it appear faded */
      }
    
    /* Cover Photo */
    .cover-photo {
        height: 350px;
        overflow: hidden;
        position: relative;
    }
    
    .cover-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Picture */
    .profile-info {
        display: flex;
        align-items: flex-end;
        padding: 20px;
        margin-top: -100px;
        position: relative;
    }
    
    .profile-pic {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 5px solid #fff;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Details */
    .details {
        margin-left: 20px;
        flex: 1;
    }
    
    .name {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }
    
    .bio {
        font-size: 1rem;
        color: #666;
        margin-top: 5px;
    }
    
    .stats {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
    }
    
    .stats span {
        margin-right: 15px;
    }
    
    /* Navigation Tabs */
    .tabs {
        display: flex;
        border-top: 1px solid #e4e6eb;
        padding: 0 20px;
        background: #f0f2f5;
    }
    
    .tab {
        padding: 15px 20px;
        text-decoration: none;
        color: #606770;
        font-size: 0.9rem;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    
    .tab:hover {
        background: #e4e6eb;
    }
    
    .tab.active {
        color: #1877f2;
        border-bottom: 3px solid #1877f2;
    }

    .five{
        /* background-color: rgb(236, 233, 233); */
        background-color: var(--background);
        min-height: 75px;
        /* margin-top: -16px ; */
        color: rgb(82, 81, 81);
    
    }
    
    /* ------------------------------------------------------------------------- */
    #icons1{
        float: right;
        font-size: 30px;
        margin-right: 2%;
        color: var(--background2);
        margin-top: 12px;
        
    }
    #icons2{
        margin-top: 12px;
        float: right;
        font-size: 30px;
        margin-right: 5px;
        /* background-color: #1877f2; */
        color: rgb(239, 238, 238);

    }
    #icons3{
        margin-top: 12px;
        /* background-color: #1877f2; */
        float: right;
        font-size: 30px;
        margin-right: 5px;
        color: var(--background2);
    }
    #icons4{
        /* margin-top: 12px;
        float: right;
        font-size: 30px;     
        color: rgb(239, 238, 238); */
        display: none;
    }
    .logoimg{
        height: 55px;
        width: 150px;
    }
    .laptopcanu{
        margin-top: 23px;
    }
    #seven{
        color: rgb(239, 238, 238);
        margin-left: 8%;
        /* background-color: blue; */
        width: 200px;
        padding-top: 10px;
    }
        
    #six{
        width: 35%;
        float: inline-end;
        margin-right: 4%;
        /* background-color: blue; */
        margin-top: 20px;
    }
    .category-main{
        /* background-color: aqua; */
        height: 125px;
        display: flex;
        /* justify-content: center; */
        margin: auto;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-width: thin;
        scrollbar-color:  rgb(235, 234, 234) rgb(255, 255, 255);
        
    }
    .cate-1:hover{
        background-color: rgb(224, 224, 224);
    }
   
    .cate-1{
        /* height: 100%; */
        min-width: 200px;
        background-color: rgb(255, 255, 255);

    }
    .cate-1-1{
        /* background-color: aquamarine; */
        height: 80px;
        width: 80px;
        margin: auto;

    }
    #main3-1{
        height: 80px;
        /* background-color: blue; */
        text-align: left;
        margin-bottom: 50px;
        position: relative;
    
    }
    /* #main3-111::after{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        left: 0px;
        bottom: 0px;
        position: absolute;
        animation: mover 40s linear infinite forwards alternate;
    
    }
    #main3-111::before{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        right: 0px;
        top: 0px;
        position: absolute;
        animation: mover2 40s linear infinite alternate;
    
    } */
    /* @keyframes mover {
        0%{
            left: 0%;
        }
        100%{
            left: 65%;
        }
        
    }
    @keyframes mover2 {
        0%{
            right: 0%;
        }
        100%{
            right: 65%;
        }
        
    } */
    #m3-1-1{
        /* background-color: aqua; */
        width: fit-content;
        margin: auto;
        float: left;
        color: white;
        position: relative;
        top: 50%;
        left: 40px;
        /* bottom: -5px; */
    }
    #m3-1-1::after{
        content: "";
        height: 2px;
        width: 20%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        bottom: -5px;
        left: 10px;
        transition: all .5s;
    }
    #m3-1-1:hover::after{
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        left: 0px;
        bottom: -5px;

    }
    .products-1{
        /* background-color: aqua; */
        height: 600px;
    }
    /* --------------------------------------Premium products---------------------------- */
    .seventhshift{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        background-image: url("/static/images/darkchocolate.jpg");
        /* position: absolute; */
        width: 100%;
        /* z-index: -1; */
    }
    .category_shift{
        /* margin-top: 200px; */
        top: -350px;
        /* background-color: aquamarine; */
        /* min-height: 500px; */
        position: relative;

    }
    .S7-1{
        width: 100%;
        margin: auto;
        display: flex;
        /* justify-content: center; */
        flex-wrap: wrap;
        justify-content: center;
        /* background-color: blue; */
    }
    #main3-2{
        /* background-color: rgb(142, 89, 20); */
        height: 100%;
        /* width: 30%; */
        width: auto;
        /* margin-top: 10; */
        margin-left: 1%;
    }
    #main3-2-1{
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
        text-align: center;
        min-height: 90%;
        width: 200px;
        margin: auto;
        margin-top: 30px;
    }
    
    #main3-2-1-1{
        position: relative;
        top: 0px;
        /* background-color: beige; */
    }
    /* #main3-2-1-1::before{
        content: "";
        position: absolute;
        left: 0px;
        top: -30px;
        height: 400px;
        width: 275px;
        background-color: var(--background);
        border-radius: 10px;
        margin-top: 20px;
        z-index: 0;
    } */
    #main3-2-1-2{
        /* color: white; */
        width: 80%;
        /* background-color: aqua; */
        text-align: left;
        margin-left: 25px;
    }
    #pic3-2{
        z-index: 1;
        height: 200px;
        width: 200px;
        /* margin-left: 12%; */
        /* border-radius: 10px; */
        /* transform: rotate(10deg); */
        /* margin-top: 20px; */
        /* border: 1px solid var(--background); */

    
    }
    .mt-4{
        /* background-color: aqua; */
        text-align: left;
    }
    #b1{
        /* background-color: var(--background); */
        border-radius: 5px;
        position: relative;
        bottom: 10px;
        margin-top: 30px;
        width: 60%;
        border: 1px solid green;
        text-align: center;
    }
    
    /* -------------------------Top Rated: ---------------------------- */
    /* .category_shift2{
        margin-top: 30px;
        background-color: aliceblue;
        height: 400px;
    } */
    .seventhshift2{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/purple.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------Special discount---------------------------- */

    .seventhshift3{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------All products---------------------------- */

    .seventhshift4{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: 20px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

/* --------------------------------------------FOOTER------------------------------ */
.lastshift{
    /* min-height: 600px; */
    /* background-color: aqua; */
    background-color: var(--background2);
    /* position: relative; */
    /* top: 230px; */
    color: white;
    margin-top: -150px;
}
.f5{
    height: 80%;
    width: 100%;
}
.footerlast{
    width: 100%;
    height: 50%;
    background-color: var(--background2);
    display: flex;
    padding-bottom: 36px;
}
.f1{
    /* background-color: rgb(78, 73, 66); */
    margin-right: 3%;
    width: 100%;
    margin-top: 20px;
    color: white;

}
.f2{
    margin-left: 2%;
}
.f3{
    line-height: 30px;
}
.f3 p{
    /* width: 30%; */
    text-align: left;
    color: white;

}

#f4{
    font-size: 20px;
    margin-right: 10px;
    color: white;

}
#f5{
    color: white;
    
}
#S7-3{
    background-color: var(--background2);
    min-height: 60px;
    position: relative;

}
#S7-3-1{
    /* background-color: rgb(49, 42, 28); */
    /* width: 20%; */
    display: none;
    /* position: absolute; */
    /* bottom: 20px; */
    /* right: 2px; */
    /* margin: auto; */
}
#icons2{
    font-size: 25px;
    margin-right: 10px;

}
#S7-3-2{
    min-height: 90%;
    max-height: 90%;
    background-color: var(--background);
    width: 8%;
    max-width: 10%;
    /* margin-top: 10px; */
    margin-left: 60px;
    position: absolute;
    top: -10px;

}
#S7-3-2-1{
    height: 72px;
    width: 70px;
    position: absolute;
    left: 20%;
    top: 13%;
}
#S7-3-3{
    position: absolute;
    /* background-color: blue; */
    bottom: 10px;
    left: 30%;
    font-size: 15px;
}
.hrline{
    width: 20%;
    /* margin: auto; */
}
    /* --------------------------------PRODUCT DETAIL------------------------------ */
.pdS1{
    /* background-color: aquamarine; */
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 180px;
}

.pdS1-1{
    /* background-color: blue; */
    min-height: 100%;
    width: 100%;
    display: flex;

}
.pdS1-1-1{
    background-color: blueviolet;
    min-height: 100%;
    width: 30%;
    display: flex;
    margin-left: 40px;
    flex-wrap: wrap;
}
.shades{
    height: 200px;
    width: 125px;
    /* background-color: antiquewhite; */
    margin-right: 10px;
    margin-top: 10px;

}
.shadespic{
    height: 150px;
    width: 125px;
    border-radius: 10px;
}
.pdS1-1-2{
    /* background-color: rgb(79, 53, 103); */
    justify-items: center;
    min-height: 100%;
    width: 100%;
    text-align: center;
    /* margin-left: 35px; */
}
.pdS1-pic{
    height: 450px;
    width: 450px;
    margin: auto;
    margin-top: 10px;
    border-radius: 10px;
    display: block;
    /* background-color: beige; */

}
.pdS1-2{
    /* background-color: brown; */
    min-height: 100%;
    width: 100%;
}
.pdetailleft{
    text-align: left;
    /* background-color: #1877f2; */
    /* width: 50%; */
}
.pds1-2-1{
    /* background-color: aquamarine; */
    width: 90%;
    min-height: 90%;
    margin: auto;
    justify-items: center;
    margin-top: 30px;
    position: relative;

}
#pds1-2-2{
    background-color: var(--background2);
    /* margin: auto; */
    border: 1px solid black;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    /* position: absolute; */
    /* bottom: 65px; */
    color: white;
    /* left: 0%; */
    margin: auto;

}
.maincrousel{
    margin: auto;
    background-color: #1877f2;
    margin-top: 20px;
}
#pds1-2-3{
    /* margin: auto; */
    border: 1px solid black;
    /* position: absolute; */
    /* bottom: 10px; */
    /* left: 0%; */
    margin: auto;
    margin-top: 20px;

}
/* ---------------------------------OFF CANVAS------------------------------------ */
#main{
    /* line-height: 40px; */
    margin-right: 2%;
}
#cntipad{
    margin-right: 5%;
    /* background-color: rgb(221, 145, 2); */
    background-color: var(--background);
    border-radius: 40px;
    margin-top: 20px;
    padding-top: 2px;
    padding-bottom: 3px;
    color: rgb(255, 255, 255);
    margin-left: 10px;

}
.navli{
    position: relative;
    /* background-color: aqua; */
    margin-top: -10px;
    margin-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.navli:hover{
    background-color: var(--background);
    color: white;
}
.dash{
    color: rgb(221, 145, 2);
    margin-left: 5px;
}
#navlink{
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin-left: 10px;
    /* font-weight: bold; */
}

 .navli::before{
    content: "";
    position: absolute;
    bottom: -1px;
    height: 1.5px;
    width: 0%;
    background-color: black;
    transition: all .5s;

 }

.navli:hover::before{
    width: 70%;
}
.table th, .table td {
    text-align: center;
    vertical-align: middle;
}
.total-section {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
}
/* --------------------------------cart-------------------------------------- */
#main3-111{
    height: 80px;
    margin-top: 50px;
    /* background-color: blue; */
    text-align: right;
    margin-bottom: 50px;
    position: relative;

}
#main3-111::after{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background2);
    left: 0px;
    bottom: 0px;
    position: absolute;
    animation: mover 40s linear infinite forwards alternate;

}
#main3-111::before{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background2);
    right: 0px;
    top: 5px;
    position: absolute;
    animation: mover2 40s linear infinite alternate;

}
@keyframes mover {
    0%{
        left: 0%;
    }
    100%{
        left: 65%;
    }
    
}
@keyframes mover2 {
    0%{
        right: 0%;
    }
    100%{
        right: 65%;
    }
    
}
#m3-1-11{
    /* background-color: aqua; */
    width: fit-content;
    margin: auto;
    position: relative;
    top: 20%;
}
#m3-1-11::after{
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 10px;
    transition: all .5s;
}
#m3-1-11:hover::after{
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 0px;
}

.colorvariant{
    /* background-color: #606770; */
    display: flex;
    flex-wrap: wrap;
}
.cv-1{
    /* background-color: #48afff; */
    margin-right: 10px;
    width: 18%;
    height: 120px;
}
.color-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 5px;
    transition: border-color 0.3s;
  }
  
  .color-label input[type="radio"] {
    display: none;
  }
  
  .color-label img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
  }
  
  .color-label span {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .color-label input[type="radio"]:checked + img {
    border: 2px solid #000;
  }



}
/* ------------------------------Laptop view------------------------- */

@media screen and (min-width : 975px) {
    .topup{
    min-height: 40px;
    /* background: rgb(4, 116, 213); */
    background-color: rgb(76, 35, 19);

    color: white;
}
#one{
    float: inline-end; 
    cursor: pointer;
}
#two{
    float: inline-end; 
    cursor: pointer; 
    margin-right: 20px;
}
#three{
    width: 40%;
    /* background-color: bisque; */
    /* margin: auto; */
    text-align: start;
    float: inline-end;
    margin-right: 10%;
}
#four{
    width: 20%;
    float: inline-start;
    /* margin-top: -20px; */
    margin-left: 5%;
    /* background-color: bisque; */
}
#icons{
    font-size: 20px;
    margin-right: 7px;
}

    #canumblbtn{
        display: none;
    }
    #canumbl{
        display: none;

    }
    .imgcrousal{
        height: 400px;
        width: 400px;
        
    }
    .f5mbl{
        display: none;
    }
    .tablelaptop{
        width: 90%;
        margin: auto;
    }
    .laptopcanu{
        margin-top: 34px;
    }
    /* -------------------------------categories---------------------------- */
    #m3-1-11{
        width: fit-content;
        margin: auto;
        /* float: left; */
        color: #36190e;
        position: relative;
        top: 50%;
        /* left: 70px; */
        /* bottom: -5px; p*/
    }
    .category_shift111{
        /* margin-top: 200px; */
        /* top: -350px; */
        /* background-color: aquamarine; */
        /* min-height: 500px; */
        position: relative;

    }
    #main3-111{
        /* height: 80px; */
        /* background-color: blue; */
        text-align: left;
        /* margin-bottom: 50px; */
        position: relative;
        /* background-color: aqua; */
    
    }
    #main3-111::after{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background2);
        left: 0px;
        bottom: 0px;
        position: absolute;
        animation: mover 40s linear infinite forwards alternate;
    
    }
    #main3-111::before{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background2);
        right: 0px;
        top: 0px;
        position: absolute;
        animation: mover2 40s linear infinite alternate;
    
    } 
    @keyframes mover {
        0%{
            left: 0%;
        }
        100%{
            left: 65%;
        }
        
    }
    @keyframes mover2 {
        0%{
            right: 0%;
        }
        100%{
            right: 65%;
        }
        
    }

    .S7-111{
        width: 100%;
        /* margin: auto; */
        display: flex;
        /* justify-content: center; */
        /* flex-wrap: wrap; */
        gap: 10px;
        overflow-x: scroll;
        scrollbar-width: none;

        scrollbar-width: thin;
        scrollbar-color:  rgb(235, 234, 234) rgb(255, 255, 255);
        /* background-color: rgb(132, 132, 160); */
        margin-bottom: 80px;
    }
    
    #main3-222{
        /* background-color: rgb(142, 89, 20); */
        /* min-height: 300px;
        min-width: 250px; */
        margin-left: 1.5%;
        /* margin-top: 10; */
        /* margin-left: 3%; */
    }
    #main3-2-1-222{
        /* color: white; */
        width: 80%;
        /* background-color: aqua; */
        /* text-align: left; */
        margin: auto;
        margin-top: -10px;
    }
    
    



    /* ------------------------------------------------------------------------- */
    .logoimg{
        height: 70px;
        width: auto;
        margin-bottom: 10px;
        margin-top: 5px;
    }
    .ordercomplete{
        height: 45px;
        width: 45px;
    }
    /* #three{ */
        /* background-color: bisque; */
        /* margin: auto; */
        /* text-align: start; */
        /* float: inline-end; */
        /* font-size: 30px; */
        /* margin-top: 5px; */
        /* background-color: #1877f2; */
        /* animation: scroll-left 25s linear infinite; */

    /* } */

    /* @keyframes scroll-left {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-300%);
        }
      } */

    .profile-container {
        max-width: 1200px;
        margin: 20px auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    .modal {
        display: none;  /* Hidden by default */
        position: fixed;
        z-index: 1050; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);  /* Semi-transparent background */
        animation: fadeIn 1s; /* Smooth fade-in effect */
    }

    /* Modal content */
    .modal-dialog {
        max-width: 70%;
        margin: 10% auto;  /* Center vertically and horizontally */
    }

    .modal-content {
        border-radius: 15px;
        overflow: hidden;
        background: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Close button */
    .close-btn {
        background-color: transparent;
        border: none;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 1051;
        transition: 0.3s;
    }

    .close-btn:hover {
        color: #f44336; /* Red color when hovered */
    }

    /* Modal body */
    .modal-body {
        padding: 0;
    }

    /* Modal Image */
    .modal-body img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Smooth fade-in effect */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    .out-of-stock {
        pointer-events: none; /* Disable click interaction */
        opacity: 0.5; /* Make it appear faded */
      }
    
    /* Cover Photo */
    .cover-photo {
        height: 350px;
        overflow: hidden;
        position: relative;
    }
    
    .cover-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Picture */
    .profile-info {
        display: flex;
        align-items: flex-end;
        padding: 20px;
        margin-top: -100px;
        position: relative;
    }
    
    .profile-pic {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 5px solid #fff;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Profile Details */
    .details {
        margin-left: 20px;
        flex: 1;
    }
    
    .name {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }
    
    .bio {
        font-size: 1rem;
        color: #666;
        margin-top: 5px;
    }
    
    .stats {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
    }
    
    .stats span {
        margin-right: 15px;
    }
    
    /* Navigation Tabs */
    .tabs {
        display: flex;
        border-top: 1px solid #e4e6eb;
        padding: 0 20px;
        background: #f0f2f5;
    }
    
    .tab {
        padding: 15px 20px;
        text-decoration: none;
        color: #606770;
        font-size: 0.9rem;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    
    .tab:hover {
        background: #e4e6eb;
    }
    
    .tab.active {
        color: #1877f2;
        border-bottom: 3px solid #1877f2;
    }

    .five{
        /* background-color: rgb(236, 233, 233); */
        background-color: var(--background);
        min-height: 100px;
        /* margin-top: -16px ; */
        color: rgb(82, 81, 81);
    
    }
    
    /* ---------------------DROPDOWN OF LOGIN------------------------------- */

    /* #one{
        display: none;
        background-color: rgb(239, 238, 238);
        width: fit-content;
        font-size: 18px;
        position: absolute;
        color: black;
        border-radius: 10px;

    } */
    .list{
        width: 200px;
        text-align: left;
        list-style-type: none;
    }
    .list1{
        text-decoration: none; 
        
    }
    /* .list2{
        width: 100%;
    } */
    .list2:hover{
        background-color: #48afff;
        z-index: 2;
    }
    .login-btn:hover #one{
        display: block;

    }



    /* ------------------------------------------------------------------------- */
    #icons1{
        float: right;
        font-size: 40px;
        margin-right: 3%;
        color: var(--background2);
        margin-top: 12px;
        
    }
    #icons2{
        margin-top: 12px;
        float: right;
        font-size: 40px;
        margin-right: 10px;
        /* color: rgb(128, 12, 51); */

    }
    #icons3{
        margin-top: 12px;

        float: right;
        font-size: 40px;
        margin-right: 10px;
        color: var(--background2);
    }
    #icons4{
        margin-top: 12px;
        float: right;
        font-size: 40px;
        /* margin-right: 2%; */
        /* background-color: #48afff; */
        color: rgb(128, 12, 51);
    }
    #seven{
        color: rgb(239, 238, 238);
        margin-left: 8%;
        /* background-color: blue; */
        width: 200px;
        padding-top: 10px;
    }
        
    #six{
        width: 37%;
        float: inline-end;
        margin-right: 8%;
        /* background-color: blue; */
        margin-top: 30px;
    }
    .category-main{
        /* background-color: aqua; */
        height: 125px;
        display: flex;
        /* justify-content: center; */
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-width: thin;
        scrollbar-color:  rgb(235, 234, 234) rgb(255, 255, 255);
        
    }
    .cate-1:hover{
        background-color: rgb(224, 224, 224);
    }
   
    .cate-1{
        /* height: 100%; */
        min-width: 300px;
        background-color: rgb(255, 255, 255);

    }
    .cate-1-1{
        /* background-color: aquamarine; */
        height: 80px;
        width: 80px;
        margin: auto;

    }
    #main3-1{
        height: 80px;
        /* background-color: blue; */
        text-align: left;
        margin-bottom: 50px;
        position: relative;
    
    }
    /* #main3-1::after{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        left: 0px;
        bottom: 0px;
        position: absolute;
        animation: mover 40s linear infinite forwards alternate;
    
    }
    #main3-1::before{
        content: "";
        height: 5px;
        width: 30%;
        background-color: var(--background);
        right: 0px;
        top: 0px;
        position: absolute;
        animation: mover2 40s linear infinite alternate;
    
    } */
    /* @keyframes mover {
        0%{
            left: 0%;
        }
        100%{
            left: 65%;
        }
        
    }
    @keyframes mover2 {
        0%{
            right: 0%;
        }
        100%{
            right: 65%;
        }
        
    } */
    #m3-1-1{
        /* background-color: aqua; */
        width: fit-content;
        margin: auto;
        float: left;
        color: white;
        position: relative;
        top: 50%;
        left: 40px;
        /* bottom: -5px; */
    }
    #m3-1-1::after{
        content: "";
        height: 2px;
        width: 20%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        bottom: -5px;
        left: 10px;
        transition: all .5s;
    }
    #m3-1-1:hover::after{
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        background-color: rgb(255, 255, 255);
        left: 0px;
        bottom: -5px;

    }
    .products-1{
        /* background-color: aqua; */
        height: 600px;
    }
    /* --------------------------------------Premium products---------------------------- */
    .seventhshift{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        background-image: url("/static/images/darkchocolate.jpg");
        /* position: absolute; */
        width: 100%;
        /* z-index: -1; */
    }
    .category_shift{
        /* margin-top: 200px; */
        top: -350px;
        /* background-color: aquamarine; */
        /* min-height: 500px; */
        position: relative;

    }
    .S7-1{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        /* background-color: blue; */
    }
    #main3-2{
        /* background-color: rgb(142, 89, 20); */
        /* height: 100%;
        width: 20%; */
        width: auto;
        /* margin-top: 10; */
        margin-left: 2%;
    }
    #main3-2-1{
        background-color: rgb(255, 255, 255);
        /* border-radius: 10px; */
        text-align: center;
        min-height: 90%;
        /* width: 225px; */
        margin: auto;
        margin-top: 30px;
    }
    
    #main3-2-1-1{
        position: relative;
        top: 0px;
        /* background-color: beige; */
    }
    /* #main3-2-1-1::before{
        content: "";
        position: absolute;
        left: 0px;
        top: -30px;
        height: 400px;
        width: 275px;
        background-color: var(--background);
        border-radius: 10px;
        margin-top: 20px;
        z-index: 0;
    } */
    #main3-2-1-2{
        /* color: white; */
        /* width: 80%; */
        /* background-color: aqua; */
        text-align: left;
        margin-left: 25px;
    }
    #pic3-2{
        z-index: 1;
        height: 225px;
        width: auto;
        /* margin-left: 12%; */
        /* border-radius: 10px; */
        /* transform: rotate(10deg); */
        /* margin-top: 20px; */
        /* border: 1px solid var(--background); */

    
    }
    .mt-4{
        /* background-color: aqua; */
        text-align: left;
    }
    #b1{
        /* background-color: var(--background); */
        border-radius: 5px;
        position: relative;
        bottom: 10px;
        margin-top: 30px;
        width: 60%;
        border: 1px solid green;
        text-align: center;
    }
    
    /* -------------------------Top Rated: ---------------------------- */
    /* .category_shift2{
        margin-top: 30px;
        background-color: aliceblue;
        height: 400px;
    } */
    .seventhshift2{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/purple.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------Special discount---------------------------- */

    .seventhshift3{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: -200px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* -------------------------All products---------------------------- */

    .seventhshift4{
        min-height: 400px;
        /* background-color: rgb(246, 122, 142); */
        /* padding-top: 40px; */
        /* position: relative; */
        /* top: 100px; */
        margin-top: 20px;
        background-image: url("/static/images/darknavy.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

/* --------------------------------------------FOOTER------------------------------ */
.lastshift{
    /* min-height: 600px; */
    /* background-color: aqua; */
    background-color: var(--background2);
    /* position: relative; */
    /* top: 230px; */
    color: white;
    margin-top: -150px;
}
.f5{
    height: 80%;
    width: 100%;
}
.footerlast{
    width: 100%;
    height: 50%;
    background-color: var(--background2);
    display: flex;
    padding-bottom: 36px;
}
.f1{
    /* background-color: rgb(78, 73, 66); */
    margin-right: 3%;
    width: 100%;
    margin-top: 20px;
    color: white;

}
.f2{
    margin-left: 2%;
}
.f3{
    line-height: 30px;
}
.f3 p{
    /* width: 30%; */
    text-align: left;
    color: white;

}

#f4{
    font-size: 20px;
    margin-right: 10px;
    color: white;

}
#f5{
    color: white;
    
}
#S7-3{
    background-color: var(--background2);
    min-height: 60px;
    position: relative;

}
#S7-3-1{
    /* background-color: rgb(243, 171, 29); */
    width: 20%;
    /* position: absolute; */
    /* margin-bottom: 80px; */
    /* right: 2px; */
    margin: auto;
}
#icons2{
    font-size: 30px;
    color: white;
    margin-right: 10px;
    /* background-color: #1877f2; */
    /* padding-bottom: 20px; */
    margin-top: -3px;

}
#S7-3-2{
    min-height: 90%;
    max-height: 90%;
    background-color: var(--background2);
    width: 8%;
    max-width: 10%;
    /* margin-top: 10px; */
    margin-left: 60px;
    position: absolute;
    top: -10px;

}
#S7-3-2-1{
    height: 72px;
    width: 70px;
    position: absolute;
    left: 20%;
    top: 13%;
}
#S7-3-3{
    position: absolute;
    /* background-color: blue; */
    bottom: 10px;
    left: 2%;
    font-size: 15px;
}
.hrline{
    width: 20%;
    /* margin: auto; */
}
    /* --------------------------------PRODUCT DETAIL------------------------------ */
.pdS1{
    /* background-color: aquamarine; */
    min-height: 500px;
    display: flex;
    margin-top: 20px;
    margin-bottom: 180px;
}

.pdS1-1{
    /* background-color: blue; */
    min-height: 100%;
    width: 50%;
    display: flex;

}
.pdS1-1-1{
    /* background-color: blueviolet; */
    min-height: 100%;
    width: 30%;
    display: flex;
    margin-left: 40px;
    flex-wrap: wrap;
}
.shades{
    height: 200px;
    width: 125px;
    /* background-color: antiquewhite; */
    margin-right: 10px;
    margin-top: 10px;

}
.shadespic{
    height: 150px;
    width: 125px;
    border-radius: 10px;
}
.pdS1-1-2{
    /* background-color: rgb(79, 53, 103); */
    min-height: 100%;
    width: 70%;
    margin-left: 15%;
    margin-top: 20px;
    
}
.pdS1-pic{
    height: 450px;
    width: 450px;
    margin: auto;
    margin-top: 10px;
    border-radius: 10px;
    display: block;
    /* background-color: beige; */

}
.pdS1-2{
    /* background-color: brown; */
    min-height: 100%;
    width: 50%;
}
.pds1-2-1{
    /* background-color: aquamarine; */
    width: 90%;
    min-height: 90%;
    margin: auto;
    margin-top: 30px;
    position: relative;

}
#pds1-2-2{
    background-color: var(--background2);
    /* margin: auto; */
    border: 1px solid black;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    /* position: absolute; */
    /* bottom: 65px; */
    color: white;
    left: 0%;

}
#pds1-2-3{
    /* margin: auto; */
    border: 1px solid black;
    /* position: absolute; */
    /* bottom: 10px; */
    left: 0%;

}
/* ---------------------------------OFF CANVAS------------------------------------ */
#main{
    /* line-height: 40px; */
    margin-right: 2%;
}
#cntipad{
    margin-right: 5%;
    /* background-color: rgb(221, 145, 2); */
    background-color: var(--background);
    border-radius: 40px;
    margin-top: 20px;
    padding-top: 2px;
    padding-bottom: 3px;
    color: rgb(255, 255, 255);
    margin-left: 10px;

}
.navli{
    position: relative;
    /* background-color: aqua; */
    margin-top: -10px;
    margin-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.navli:hover{
    background-color: var(--background);
    color: white;
}
.dash{
    color: rgb(221, 145, 2);
    margin-left: 5px;
}
#navlink{
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin-left: 10px;
    /* font-weight: bold; */
}

 .navli::before{
    content: "";
    position: absolute;
    bottom: -1px;
    height: 1.5px;
    width: 0%;
    background-color: black;
    transition: all .5s;

 }

.navli:hover::before{
    width: 70%;
}
.table th, .table td {
    text-align: center;
    vertical-align: middle;
}
.total-section {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
}
/* --------------------------------cart-------------------------------------- */
#main3-11{
    height: 80px;
    margin-top: 50px;
    /* background-color: blue; */
    text-align: right;
    margin-bottom: 50px;
    position: relative;

}
#main3-11::after{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background);
    left: 0px;
    bottom: 0px;
    position: absolute;
    animation: mover 40s linear infinite forwards alternate;

}
#main3-11::before{
    content: "";
    height: 5px;
    width: 30%;
    background-color: var(--background);
    right: 0px;
    top: 0px;
    position: absolute;
    animation: mover2 40s linear infinite alternate;

}
@keyframes mover {
    0%{
        left: 0%;
    }
    100%{
        left: 65%;
    }
    
}
@keyframes mover2 {
    0%{
        right: 0%;
    }
    100%{
        right: 65%;
    }
    
}
#m3-1-11{
    /* background-color: aqua; */
    width: fit-content;
    margin: auto;
    position: relative;
    top: 20%;
}
#m3-1-11::after{
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 10px;
    transition: all .5s;
}
#m3-1-11:hover::after{
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: black;
    bottom: 0px;
    left: 0px;
}

.colorvariant{
    /* background-color: #606770; */
    display: flex;
    flex-wrap: wrap;
}
.cv-1{
    /* background-color: #48afff; */
    margin-right: 10px;
    width: 18%;
    height: 120px;
}
.color-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 5px;
    transition: border-color 0.3s;
  }
  
  .color-label input[type="radio"] {
    display: none;
  }
  
  .color-label img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
  }
  
  .color-label span {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .color-label input[type="radio"]:checked + img {
    border: 2px solid #000;
  }
}
