body {
  margin: 0;
  font-family: sans-serif;
  font-family: Rokh , Vazir , 'Poppins';
  font-size: 16px;
  padding: 0 15px;
}
.baner-div {
  height: 324px;
  width: 559px;
  padding: 10px 6.5px;
}
.baner {
  display: flex;  
}
.baner-div{
  font-family: 'Poppins';
  height: 268px;
  padding: 15px 20px ;
  background-color: #FFF3E3;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
}
.baner-p1{
  font-size: 20px;
  font-weight: 500  ;

}
.baner-p2{
  font-size: 42px;
  font-weight: bold;
  color: #b88e2f;
  text-align: end;
}
.baner-p3{
  font-size: 16px;
  font-weight: 300;
  direction: ltr;
}
.baner-button{
  font-weight: bold;
  color: #fff;
  background-color: #b88e2f;
  width: 157px;
  height: 50px;
  font-size: 20px;
  border: none;
}
.browse-the-range{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 60px 0;
}
.browse-p1{
  font-weight: bold;
  font-size: 30px;
}
.browse-p2{
  font-size: 20px;
  margin: 7px 0 25px 0;
}

.category-maim{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 65px 15px 60px 15px;
}
.categories {
  gap: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.category-card {
  display: flex;
  position: relative;
  width: 394px;
  height: 212px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}
.category-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.5s ease;
}
.category-card:hover .category-image img {
  transform: scale(1.1);
}
.category-card:hover .overlay{
  background: rgba(0,0,0,0.4);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.category-content {
  position: absolute;
  bottom: 0px;
  color: #fff;
  z-index: 2;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.category-content i {
  font-size: 30px;
}
.category-content h3 {
  margin: 0;
  font-weight: bold;
  font-size: 30px;
}
.category-content p{
  font-size: 16px;
}
.category-content .category-cart{
  font-size: 25px;
  border-radius: 50%;
  /* background-color: #fff3; */
  background-color: #ffffff78;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advertising {
  margin: 60px 15px;
}