











body{
    color: #333;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
  
    position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 25px 9%;
background: #fff;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 99;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);}
.logo{
    font-size: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    width:40px;
    height:40px;
    
    
}

#carticon{

    position: relative;
    display: flex;
    font-size: 30px;
    cursor: pointer;
}
#carticon .cartitemcount{
    position: absolute;
    top: 0;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #e35f26;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}


 

.shop{
    padding: 100px 9% 30px;
}
@media (max-width:600px){
.shop{
     padding:50px 4% 20px;}

}

.sectiontitle{
    font-size: 35px;
    text-align: center;
    margin-bottom: 15px;
}
.productcontent{display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    
}
@media (max-width: 500px)
 {.productcontent{
display: grid;
grid-template-columns: 48% 48%;
gap: 15px

 }   
 
 }   

.productbox .imgbox{
    display: flex;
    
    border-radius: 10px;
    overflow: hidden;
      border: 0.5px solid #d3d3d3;
}
@media(max-width: 500px){

.productbox .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

}

.imgbox img{width: 100%;
transition: 0.5s;}
.imgbox:hover img{transform: scale(1.1);}
.productbox .prroducttitle{
    font-size: 20px;
    margin-top: 10px;

}
.productbox .pricecart{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pricecart .price{
    font-size: 18px;
    font-weight: 500;
}
.pricecart .adcart{
    padding: 10px;
    background: #e35f26;
    border-radius: 6px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
@media (max-width: 500px)
{.adcart{
    padding: 1px;
    font-size: 5px;
    display: grid;
    grid-template-columns: 48% 48%;
}
    


}

.cart{
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 65px 20px 40px;
    z-index: 100;
    overflow: auto;
    transition: 0.5s;
}
.cart.active{
    right: 0
}
.carttitle{
    text-align: center;
    font-size: 20px;
}
.cartbox{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.cartbox img{
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 20px;
}
.cartdetail{
    display: grid;
    gap: 8px;
    margin-right: auto;
}
.cartproducttitle{font-size: 16px;
line-height: 1;}
.cartquantity{display: flex;
width: 100px;
border: 1px solid #999;
border-radius: 6px;}
.cartquantity button{background: transparent;
width: 30px;
border: none;
font-size: 20px;
cursor: pointer;}
.cartquantity #dec{
    color: #999;
}
.cartquantity .nmb{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    cursor: default;
}
.cartremove{
    font-size: 25px;
    cursor: pointer;
}
.total{display: flex;
justify-content: flex-end;
align-items: center;
margin-top: 20px;
font-size: 18px;
border-top: 1px solid #333;
}
.totalprice{
    margin-left: 10px;
    font-weight: 600;
}
.btnbuy{
    display: block
    ;
    padding:  10px 30px;
    background: #e35f26;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    color: #fff;
    margin: 20px auto 0;
    cursor: pointer;
}
#cartclose{
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 35px;
    cursor: pointer;
}
.con{
    width: 80%;
    justify-content: center;
    align-items: center;
    background-color: #e35f26;
    color: #fff;
    padding: 35px;
    margin: auto;
}
input,textarea{
    display: flex;
    width: 70%;
    flex-direction: column;
    margin: 11px;
    padding: 7px;
    font-size: 24px;
justify-content: center;
align-items: center;
}
.btns, .btnr{
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px;
    font-size: 20px;

}



















.product-gallery {
  width: 100%;
  
}

.main-image {
  width: 240px;
  height: 330px;
  object-fit: cover;
  cursor: pointer;
}

.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;


padding: 10px;
border: 1px solid #ddd;

}

.thumbnail {
  width: 20%;
  margin: 10px;
  cursor: pointer;
}

.thumbnail.active {
  border: 2px solid #333;
}











footer{width: 100%;
position: absolute;

background: linear-gradient(to right,#00093c,#2d0b00);
color: #fff;
padding: 100px 0 30px;
border-top-left-radius: 125px;
font-size: 13px;
line-height: 20px;}
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}
.col{
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2),.col:nth-child(3){
    flex-basis: 15%;
}



.logi{
    width:80px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.col h3{
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
    font-size: large;
}
.emailid{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li{
    list-style: none;
    margin-bottom: 12px;

}
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 #ri{
    font-size: 28px;
    margin-right: 10px;
}
form input{
   width: 100%;
   background: transparent;
   color: #ccc;
   border: 0;
   outline: none; 

}
form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
form button #fas{
    font-size: 28px;
    color: #ccc;
}
.social #rim{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 28px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    
}
.copy{
    text-align: center;
    justify-content: center;
    
}
hr{
    width: 90%;
    border:0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}


.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%;
    }
}
@media(max-width:700px){
footer{
    bottom: unset;
}
.col{
    flex-basis: 100%;
    padding: 10px;
}

.col:nth-child(2),.col:nth-child(3){
    flex-basis: 100%;
}

}









.cont{
    width: 80%;
    height: 500px;
    margin: auto;
    margin-top: 100px;
    box-shadow: 0px 0px 3px grey;
    position: relative;
    overflow: hidden;
}
@media(max-width:600px){.cont{ 
    width: 100%;
    height: 250px;
    margin: auto;
    margin-top: 100px;
    box-shadow: 0px 0px 3px grey;
    position: relative;
    overflow: hidden}}
.slide{
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 1s;
    
    
}




.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  font-size: 16px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


















.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 111;
}

.fullscreen-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.fullscreen-image {
  width: 50%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.fullscreen-price{
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.fullscreen-title{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.close-button {
  background-color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}