

@media (max-width:767px) {

    .logo{
        position: absolute;
        top: 10px;
    }
    
    .header_bg{
   display: none;
}
    
.wrap {
  width: 55% !important;
  margin-right: -14% !important;
  margin-top: 32px !important;
}

    
    .slide .cat_link a{
     font-size: 12px;
    padding: 5px 7px !important;
    
}
    
    
}

@media (min-width:768px) and (max-width:991px) {
	
   

	
}




@media (min-width:992px) and (max-width:1199px) {
	
	
}


@media (min-width:1200px) {


}






.top_border{
    width: 100%;
    height: 10px;
    background: #df090b;
}



body{
font-family: 'Poppins', sans-serif;
}

h1, h2{
   font-family: 'Playfair Display', serif; 
}

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 1px solid #df090b;
  border-right: none;
  padding: 5px;
  height: 36px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #df090b;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #12284B;
  background: #df090b;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.wrap{
  width: 50%;
  /*margin-right: 4%;*/
  margin-top: 35px;
  transform: translate(-4%, -50%);
}


.client_slider{
    background: #fff;
    padding: 10px 0px;
}


section{
    margin-top: 5%;
}




.new_arrivals .slick-initialized .slick-slide {
  padding: 10px;
  border: 2px #DF090B solid;
}

.new_arrivals .slick-initialized .slick-slide:hover {
  padding: 10px;
  border: 2px #12284B solid;
}


.b_text{
    font-size: 14px;
    color: #878787;
}

.newarrivals h3 a{
    font-size: 18px;
    color: #2E2E2E;
}

.newarrivals h3 a:hover{
    text-decoration: none;
}

.newarrivals img{
    border-radius: 10px;
    
}


.newarrivals .slide img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.newarrivals  .slide:hover img {
  transform: scale(1.1);
    overflow: hidden;
}

.newarrivals .slick-slide img {
  
  padding: 20px;
}


.header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 20px 0px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.title {
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
}

.divider {
  width: 1px;
  height: 40px;
  background: #999;
  margin-right: 20px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  max-width: 500px;
}

/* RIGHT SIDE */
.right a {
  color: red;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid red;
  padding-bottom: 3px;
  transition: 0.3s;
}

.right a:hover {
  opacity: 0.7;
}

/* 🔽 TABLET */
@media (max-width: 992px) {
  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 14px;
  }
}

/* 🔽 MOBILE */
@media (max-width: 576px) {

  .header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }

  .left {
    flex-direction: column;
    align-items: flex-start;
  }

  .divider {
    display: none; /* mobile me hide */
  }

  .title {
    font-size: 24px;
    margin-right: 0;
  }

  .subtitle {
    margin-top: 5px;
    font-size: 13px;
  }

  .right {
    width: 100%;
  }

  .right a {
    font-size: 14px;
  }
}




.category h3 a{
    font-size: 18px;
    color: #2E2E2E;
}

.category h3 a:hover{
    text-decoration: none;
}

.category img{
    border-radius: 10px;
   
}


.slide .cat_link{
   position: absolute;
    bottom: -60px; /* initially neeche hidden */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

.slide .cat_link a{
     color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    background: #df090b;
    text-decoration: none;
}

.slide .cat_link a:hover{
    background: #444;
    text-decoration: none;
}


.slide:hover .cat_link {
    bottom: 30px; /* upar aa jayega */
    opacity: 1;
}

.slide {
    position: relative;
    overflow: hidden; /* animation clean rahe */
}

.about-section {
    background: #ffe7e7;
    padding: 80px 60px 120px;
}

/* FLEX LAYOUT */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */
.about-text {
    width: 50%;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 40px;
    background: #999;
    margin-left: 20px;
}

.about-text p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.about-text b {
    font-weight: 700;
}

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #eee;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
}

/* RIGHT IMAGE */
.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* STATS BOX */
.stats-box {
    background: #df090b;
    margin: -80px auto 0;
    width: 100%;
    border-radius: 15px;
    padding: 40px 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #fff;
}

.stat {
    flex: 1;
    position: relative;
}

.stat img{
    margin-bottom: 30px;
}

.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.5);
}

.stat h3 {
    font-size: 36px;
    margin: 10px 0;
}

.stat p {
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .about-text, .about-image {
        width: 100%;
    }
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat::after {
        display: none;
    }
}



.services {
    text-align: center;
    padding: 80px 40px;
    background: #df090b;
}

.services h2 {
    font-size: 44px;
  margin-bottom: 60px;
  color: #fff;
}

/* CARDS WRAPPER */
.service-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

/* SINGLE CARD */
.service-box {
   
    text-align: center;
    position: relative;
}

/* ICON CIRCLE */
.services .icon {
   /* width: 120px;
    height: 120px;*/
    margin: 0 auto 28px;
   /* background: #39b9bf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.services .icon img {
    width: 160px;
}

/* TEXT */
.service-box p {
    color: #fff;
  font-size: 17px;
  line-height: 1.5;
}

/* DIVIDER LINE */
.service-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 30px;
    width: 1px;
    height: 140px;
    background: #555;
}

/* BUTTON */
.services .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;       /* white background */
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 40px; 
}

/* hover effect */
.services .btn:hover {
    transform: scale(1.08);  /* thoda large */
    background: #f1f1f1;     /* light grey hover */
}

/* RESPONSIVE */
@media(max-width: 900px){
    .service-container{
        flex-direction: column;
        align-items: center;
    }

    .service-box:not(:last-child)::after{
        display:none;
    }
}




.bestsellers .slick-initialized .slick-slide {
  padding: 10px;
  border: 2px #00B4CC solid;
}

.bestsellers .slick-initialized .slick-slide:hover {
  padding: 10px;
  border: 2px #12284B solid;
}


.b_text{
    font-size: 14px;
    color: #878787;
}

.bestseller h3 a{
    font-size: 18px;
    color: #2E2E2E;
}

.bestseller h3 a:hover{
    text-decoration: none;
}

.bestseller img{
    border-radius: 10px;
    
}


.bestseller .slide img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.bestseller  .slide:hover img {
  transform: scale(1.1);
    overflow: hidden;
}

.bestseller .slick-slide img {
  
  padding: 20px;
}


.add_banner{
 /* padding:0px 30px;
background: linear-gradient(to right,  #df090b 0%,#3ab6bc 100%);*/
    /*border-radius: 10px;*/
}

.add_banner img{
 /* padding:0px 30px;
background: linear-gradient(to right,  #df090b 0%,#3ab6bc 100%);*/
    border-radius: 10px;
	margin-bottom: 20px;
}

.add_banner h3{
  color: #fff;
    font-weight: bold;
    font-size: 45px;
    line-height: 4rem;
}

.add_banner p{
  color: #fff;
    
    font-size: 16px;
    
}


ul.we_dell{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    text-align: center;
}

ul.we_dell li{
    display: inline-block;
    margin: 0px 20px;
}

ul.we_dell li a{
   background: #df090b;
  border-radius: 5px;
  color: #fff;
  font-size: 26px;
  padding: 12px 50px;
  text-transform: uppercase;
  font-weight: 600;
}

ul.we_dell li a:hover{
    background: #10B1B8;
    text-decoration: none;
}


footer{
    background: #fff;
  margin-top: 50px;
  -webkit-box-shadow: 0 0 20px 0 #C9C9C9;
  box-shadow: 0 0 20px 0 #C9C9C9;
  padding: 35px 35px 0px 35px;
  border-radius: 40px 40px 0px 0px;
}

footer h4{
   font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
    /*margin-top: 16%;
    margin-bottom: 10%;*/
	margin-top: 30px;
  margin-bottom: 30px;
}

footer p{
    font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  color: #000;
}

ul.f_link{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

ul.f_link li{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  color: #000;
}

ul.f_link li a{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-size: 17px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0px;
    line-height: 40px;
  color: #000;
}


.social-bar {
    display: flex;
    align-items: center;
    gap: 15px;
   
    padding: 10px 0px;
}

.social-bar span {
    font-weight: 500;
    color: #333;
}

/* ICON STYLE */
.social-icon {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.social-icon:hover {
    transform: scale(1.1);
    background: #000;
    color: #fff;
}

.copyright{
    border-top: 1px #ccc solid;
    padding: 5px 0px;
    
}

.copyright p{
    font-size: 12px;
    margin-bottom: 0px;
    
}


.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
  font-size:30px;
    box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
    margin-top:16px;
}


.cat_pro {
   text-align: center;
  background: #fff;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  border: 1px #ccc solid;
  border-radius: 10px;
  margin-bottom: 30px;
	
}

.cat_pro img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.cat_pro h2{
  margin: 20px 0px;
	text-align: center;
}

.cat_pro h2 a{
  
	color: #444;
	font-size: 20px;
	font-weight: 600;
}

.cat_pro h2 a:hover{
  
	color: #df090b;
	text-decoration: none;
}

.pro_link{
	display: block;
	margin-bottom: 20px;
}
.pro_link a{
	background: #444;
  color: #fff;
  padding: 10px 20px;
  margin: 0px 0px;
}

.pro_link a:hover{
	background: #df090b;
  color: #fff;
 text-decoration: none;
}


.pro_detail h1{
	margin-bottom: 30px;
}