body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
}
a {
    text-decoration: none;
}
header {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    padding: 1dvh 10%;
    background-color: #f5f5f5;   
    
}

.logo {
    margin-right: 10dvw;
}
.left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: end;
}
nav {
    flex: 1;
    text-align: center;
}
nav ul  {
    display: flex;
    justify-content: space-around;
    gap: 30%;
    list-style-type: none;
}
nav ul li {
    display: inline-block;
    font-size: 1.25rem;
    color: black;
}
ul li a {
    text-decoration: none;
    color: black;
}
.icon {
    margin: 0 1dvw;
}

.hero-section {
    padding-top: 1%;
    margin-bottom: 0;
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height:100dvh;
    
}
.hero-left {
   margin: 2dvh 10%;
}
.hero-text {
    font-size: 5.25rem;
    font-weight: bold;
    font-family: "Futura";
    line-height: 0.8;
    letter-spacing: 0.8;
    margin-bottom: 25dvh;
}

.shop-btn {
    padding: 2.5dvh 5dvw;
    justify-content: center;
    border-radius: 60px;
    background-color: black;
    margin-bottom: 40px;
}
.shop-btn a {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
}
.stats-section {
    margin-top: 5%;
    margin-bottom: 5%;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
    justify-items: center;
    display: flex;
    justify-content: space-around;
}

.stats-section div  {
    display: inline;
    
}

.numbers {
    font-size: 2.5rem;
    font-family: "Futura";
    font-weight: bold;
    padding: 0;
}
.desc-number {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.4);
}

.mid {
    padding: 0 10%;
    border-left: solid 2px rgba(0, 0, 0, 0.10) ;
    border-right: solid 2px rgba(0, 0, 0, 0.10) ;

}

.brands-section {
    background-color: black;
    padding: 2% 5%; 
}

.brand {
    margin: 1dvw;
}
.br1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.title-text {
    text-align: center;
    font-size: 3rem;
    font-family: "Lato";
    font-weight: bold;
}
.most-selled-pr {
    margin: 0 5%;
}
.products-list {
    margin-top: 10dvh;
}
.products-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15dvw,1fr));
    gap: 1.5dvw;
}
.products-list ul li {
    list-style-type: none;
    display: block;
}
.products-list ul li,.shop-products-list ul li {
    display: inline-block;
    transition: transform .5s
}
.products-list ul li:hover,.shop-products-list ul li:hover {
    transform: scale(1.05);
    transition: 0.5s;
}
.prd-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: fit-content;
}
.pr-name {
    font-size: 1.1rem;
    font-weight: bold;
    font-family: "Satoshi";
}
.pr-price {
    font-size:1.1rem;
    font-weight: 600;
}

.product-item {
    border-radius:1rem;
    justify-content: center;
    align-items: center;
    padding: 3dvh 1.5dvw;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.btn-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0;
}
.btn {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 60px;
    padding: 2dvh 4dvw;
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.Feedbacks ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15dvw,1fr));
    gap: 2dvw;
}
.Feedbacks ul li {
    list-style-type: none;
    display: block;
}
.feedback{
    padding:2dvw;
    width: 22dvw;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}
.feedback p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-weight: 400;
    
}
.container {
    margin: 0 5%;
}
ul li {
    list-style-type: none;
}
footer {
    background: #F0F0F0;
    margin-top: 5%;
}
.footer-container {
    margin: 0 8%;
    padding-top: 3%;
    display: flex;
    justify-content: space-around;
    align-items: top;
}



.footer-item ul {
    margin-bottom: 1.25rem;
    padding: 0;

}

.title {
    color: #000;
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.footer-item ul li {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    padding-top: 1dvh;
    font-weight: 400;
    line-height: 19px;
}

.copyrights {
    color: rgba(0, 0, 0, 0.60);
    text-align: right;
    font-size: 1rem;
    font-weight: 400;
    justify-content: space-around;
}
.flex-items {
    display: flex;
    margin: 0 5%;
    justify-content: space-between;
}

.socials {
    margin-top: 10dvh;
}

.main-shop {
    display: flex;
    gap: 2%;
    margin-top: 5dvh;
}
.filters-card {
    border: solid 1px #0000002d;
    border-radius: 20px;
    background-color: #ffffff;
    padding: 2dvh 1.5dvw;
    width: 20%;
    height: fit-content;
}

.shop-right {
    width: 80%;
}
.video-bg {
    width: 100%;
    height: 100%;
}
.medium-title {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom:30px ;
    margin-top: 0;
    margin-left: 20px;
}
.shop-products-list {
    margin-bottom: 10dvh;
}
.shop-products-list ul {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15dvw,1fr));
  gap: 1.5dvh;
}

.page-footer {
    margin-top: 5dvh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-p {
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    padding: 1.5dvh 1.5dvw;
    color: black;
    font-size: 1rem;
    font-weight: 400;
}
.fliter-text {
    font-size: 1.25rem;
    font-weight: bold;  
}
.filter-detail {
    overflow-y: scroll;
}
.main {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size:1.1rem;
}

.main input[type=checkbox] {
    visibility: hidden;
}

.checkbox-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 3dvh;
    width: 3dvh;
    background-color: #eee;
    border-radius: 2px;
}

/* Hover effect */
.main:hover input~.checkbox-container {
    background-color: #ccc;
    border-radius: 2px;
}


/* Checked effect */
.main input:checked~.checkbox-container {
    background-color: rgb(0, 0, 0);
}

.checkbox-container::after {
    content: "";
    position: absolute;
    display: none;
    left:1.2dvh;
    top: .8dvh;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Display checkmark when checked */
.main input:checked~.checkbox-container::after {
    display: block;
}

hr {
    border: solid 1px #00000017;
}

.filter-btn {
    background-color: black;
    color: white;
    font-size: 1rem;
    border-radius: 60px;
    padding: 1dvh 0;
    width: 100%;
    text-decoration: none;
    margin-top: 4dvh;
}
.curPage {
    color: black;
    background-color: #00000050;
    border-radius: 10px;
    font-size: 13px;
    padding: 6px 10px;
}
.pages {
    display: flex;
    align-items: center;
    gap: 0.5dvw;
    justify-content: space-between;
}
.pages a {
    display: block;
    text-decoration: none;
    color: #000;
}
.nrml-page {
    border: 1px solid hwb(0 0% 100% / 0.6);
    color: black;
    border-radius: 10px;
    font-size: 13px;
    padding: 6px 10px;
}