/* fonts */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500&display=swap");
/* for all */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Inter" , sans-serif;
  color: var(--color-heading);
}
:root{
  --main-color:#ff8716;
  --p-color : #7b7b7b;
  --bg-color : #f3f3f3;
  --white-color :#fff;
  --color-heading : #121416;
  --border-color : #e5e5e5d5;
  --sale-color : #e51a1a;
}
body{
  padding-top: 180px;
}
span {
  color: var(--main-color);
}
p{
  color: var(--p-color);
}
h1,h2,h3,h4,h5,h6 {
  color: var(--color-heading);
  font-family: "DM Sanse" , sans-serif;
}
img {
  width: 100%;
}
input,select,button {
  border: none;
  outline: none;
}
.btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btns .btn {
  padding: 10px 18px;
  text-transform: capitalize;
  border-radius: 2px;
  cursor: pointer;
  background: var(--main-color);
  color: var(--white-color) ;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s;
}
.btns .btn i {
  color: var(--white-color);
}
.btns .btn:hover{
  scale: 1.1;
}
.container {
  width: 90%;
  margin: auto;
  max-width: 1350px;
}
@media (max-width : 1350px) {
  .container {
  width: 90%;
}
}
/* Start Header */
header{
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 5px 8px 8px #d1d1d13b;
  z-index: 1000;
}
header .top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
}
header .top-header .logo {
  width: 180px;
}
header .top-header .search-box {
  width: 610px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  background: var(--bg-color);
}
header .top-header .search-box input{
  height: 55px;
  width: 400px;
  padding: 5px 15px 5px 10px;
  background:var(--bg-color);
  outline: none;
  border: none;
}
header .top-header .search-box .select-box {
  position: relative;
}
header .top-header .search-box .select-box::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 3px;
  height: 50%;
  background: #b9b9b9 ;
}
header .top-header .search-box .select-box select{
  height: 55px;
  width: 190px;
  outline: none;
  border: none;
  background: var(--bg-color);
  font-size: 16px;
  cursor: pointer;
  padding-left: 10px;
  margin-right: 10px;
}
header .top-header .search-box .select-box option{
  font-size: 15px;
  background: var(--main-color);
  color: var(--bg-color);
}
header .top-header .search-box button {
  height: 55px;
  width: 60px;
  background: var(--main-color);
  font-size: 18px;
  cursor: pointer;

}
header .top-header .search-box button i {
  color: var(--white-color);
}
header .top-header .header-icons {
  display: flex;
  gap: 30px;
}
header .top-header .header-icons .icon {
  position: relative;
  cursor: pointer;
} 
header .top-header .header-icons .icon i {
  font-size: 24px;
  color: var(--color-heading);
}
header .top-header .header-icons .icon  .count{
  position: absolute;
  top: -10px;
  right: -10px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 11px;
  border-radius: 100%;
} 
header .bottom-header {
  border-top:1px solid var(--border-color) ;
}
header .bottom-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .bottom-header nav{
  display: flex;
  align-items: center;
  gap: 50px;
  height: 60px;
}
header .bottom-header .category-nav{
  height: 100%;
  width: 220px;
  position: relative;
}
header .bottom-header .category-nav .category-btn{
  height: 100%;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main-color);
  padding: 0 15px;
  cursor: pointer;
}
header .bottom-header .category-nav .category-nav-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white-color);
  border: 1px solid #999;
  border-top: 0;
  display: flex;
  flex-direction:column;
  display: none;
  transition: 0.3s ease-in-out ;
}
header .bottom-header .category-nav .category-nav-list.active{
  display: flex;
} 
header .bottom-header .category-nav .category-nav-list a{
  padding: 14px 10px;
  border-bottom: 1px solid var(--bg-color);
  font-size: 14px;
}
header .bottom-header .category-nav .category-nav-list a:last-child{
  border-bottom: 0;
}
header .bottom-header .category-nav .category-nav-list a:hover{
  background-color: #d0d0d0;
}
header .bottom-header .category-nav .category-btn p{
  color: var(--white-color);
  font-weight: 600;
  font-size: 15px;
}
header .bottom-header .category-nav .category-btn i {
  color: var(--white-color);
}
header .bottom-header .nav-links {
  display: flex;
  gap: 35px;
}
header .bottom-header .nav-links li a {
  color: var(--color-heading);
  transition: 0.3s;
}
header .bottom-header .nav-links li :hover {
  color: var(--main-color);
}
header .bottom-header .nav-links li.active a{
  color: var(--main-color);
}
/* slide */
.slider {
  position: relative;

}
.slider .container {
  display: flex;
  justify-content: space-between;
}
.slider .banner-2 {
  width: 23%;
  height: 100%;
  object-fit: cover;
}
.slider .banner-2 a{
  height: 100%;
  width: 100%;
}
.slider .container .slide-swap {
  width: 75%;
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  height: auto !important;
}
.slider .container .slide-swap .swiper-pagination span {
  background-color: white;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  width: 34px !important;
  height: 8px !important;
  border-radius: 30px !important;
}
/* banar-4 */
.banners-4 {
  margin: 40px 0;
}
.banners-4 .container {
  display: flex;
  justify-content: space-between;
  
} 
.banners-4 .container .box {
  width: 24%;
  background:url(../img/bg_banner3.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 10px;
  position: relative;
}
.banners-4 .container .box img {
  width: 100px;
  transition: 0.3s;
}
.banners-4 .container .box:hover img {
  scale: 1.1;
}
.banners-4 .container .box h5 {
  font-size: 15px;
}
.banners-4 .container .box  .sale {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 6px 0;
}
.banners-4 .container .box .sale span {
  font-size: 25px;
  font-weight: bold;
  margin-left: 5px;
}
.banners-4 .container .box h6 {
  font-size: 14px;
  font-weight: bold;
}
.banners-4 .container .box .link-btn{
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}
/* Product cart style */
.mySwiper {
  overflow: hidden;
}
.product {
  background-color: #fff;
  padding: 20px 20px;
  box-shadow: 5px 5px 10px #94949428;
  border: 1px solid var(--bg-color);
  border-radius: 5px;
  position: relative;
}
.product .sale-present{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: #ed0505;
  color: var(--white-color);
  padding: 4px 10px;
  font-size: 13px;
}
.product .img-product {
  position: relative;
  height: 180px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product .img-product:hover {
  scale: 1.1;
}
.product .name-product {
  margin-bottom: 10px;
  color: var(--color-heading);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product .name-product a:hover {
  text-decoration: underline;
}
.stars {
  margin-bottom: 10px;
}
.sale i {
  color: var(--main-color);
  font-size: 14px;
}
.price {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price p {
  color: var(--main-color);
  font-weight: bold;
  font-size: 18px;
}
.price .old-price{
  color: var(--p-color);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: normal;
}
.product .icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
 .product .icon-product {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.product .icon-product:hover {
  background: var(--main-color);
}
.product .icon-product i {
  font-size: 14px;
}
.product .icon-product:hover i {
  color: var(--white-color);
}

 .icons .btn-add-cart {
  font-size: 14px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white-color);
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--main-color);
}
.icons .btn-add-cart:hover{
  scale: 1.05;
  opacity: 0.7;
}
.icons .btn-add-cart.active{
  color: var(--color-heading);
  background: transparent;
}
.icons .btn-add-cart.active i {
  color: var(--main-color);
}
.icons .btn-add-cart i {
  color: var(--white-color);
}
.Slide {
  margin-bottom: 70px;
}

.top-slide {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--main-color);
}
.Slide .top-slide h2 {
  position: relative;
  text-transform: uppercase;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 18px;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}
.Slide .top-slide h2 i {
  color: var(--white-color);
}
.Slide .top-slide h2::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  z-index: 9;
  border-left: 20px solid transparent;
  background: white;
  left: 0;
  border-bottom: 20px solid #e26e02 ;
}
.Slide .container{
  position: relative;
}
.Slide .container .mySwiper {
  padding: 10px 0;
}
.Slide .container .mySwiper .btn_swip{
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--bg-color);
  color: var(--color-heading);
  font-weight: bold;
  border-radius: 5px;
  height: 35px;
  width: 35px;
  border: 1px solid var(--border-color);
}
.Slide .container .mySwiper .btn_swip::after{
  font-size: 12px;
}
.Slide .container .mySwiper .swiper-button-prev{
  left: calc(100% - 80px) ;
}
/* banners */
.baneers {
  margin: 50px 0;
}
.baneers .banner_boxes {
  display: flex;
  justify-content: space-between;
}
.baneers .banner_boxes .box {
  width: 49%;
}
.baneers .banner_boxes.banner_3_img a{
  width: 32%;
}
/* Footer */
footer {
  background: var(--color-heading);
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
footer .container .big-row {
  width: 30%;
}
footer .container .big-row .logo-footer {
  width: 180px ;
}
footer .container .big-row p {
  width: 90%;
  color: #b1b1b1;
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0;
}
footer .container .row {
  width: 22%;
}
footer .container .big-row .icons-footer {
  display: flex ;
  gap: 10px;
}
footer .container .big-row .icons-footer a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  border-radius: 3px;
  position: relative;
  top: 0;
  transition: 0.3s;
}
footer .container .big-row .icons-footer a:hover {
  top: -5px;
}
footer .container .big-row .icons-footer a  i {
  color:var(--white-color) ;
  font-size: 20px;
}
footer .container .row h4 {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 20px;
}
footer .container .row .links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer .container .row .links  a {
  color: #b1b1b1;
  font-size: 14px;
  position: relative;
  left: 0;
  transition: 0.3s;
}
footer .container .row .links  a:hover {
  left: 8px;
  color: var(--main-color);
}
footer .container .row .links  a i {
  color: var(--main-color);
  font-size: 14px;
  margin-right: 5px;
}
footer .bottom-footer {
  background-color: #1d1f22; 
}
footer .bottom-footer .container {
  align-items: center;
  padding: 5px 0;
}
footer .bottom-footer p{
  color: var(--white-color);
}
footer .bottom-footer .payment-img {
  width: 350px;
}