/* ------------- Start Global Rules----------- */
* {
  margin: 0;
  padding: 0;
}
.container {
  width: 80%;
  margin: auto;
  padding: 0 15px;
}
body {
  height: 3000px;
}
/* ------------- End Global Rules----------- */
/* ------------- Start  Styling Navbar ----------- */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.navbar .links {
  position: relative;
  list-style: none;
}
.navbar .links ul li {
  list-style: none;
  display: inline-block;
}
.navbar .links ul li a {
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  color: #7b5244;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}
.navbar .icons i {
  padding: 0 10px;
  font-size: 20px;
}
.navbar .icons span {
  font-size: 10px;
  margin-left: -13px;
  color: #a76f5c;
}
.navbar .icons :nth-child(3) {
  position: relative;
}
.navbar .icons :nth-child(3)::after {
  content: "0";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #7b5244;
  top: -15px;
  right: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  color: white;
}
.imgs img {
  width: 100%;
}

.navbar .links .dropdwon {
  position: absolute;
  width: 50%;
  background-color: #7b5244;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: scale(0);
  top: 55px;
  border-radius: 10px;
  /* border: 2px solid black; */
}
.navbar .links ul:first-child :hover .dropdwon {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.navbar .links .dropdwon {
  display: flex;
  justify-content: space-between;
}
.navbar .links .dropdwon ul li {
  display: block;
}
.navbar .links ul li a:before,
.navbar .links ul li a:after {
  content: "";
  position: absolute;
  border-style: solid;
  left: 0;
  top: 0;
  transition: transform 0.2s;
}
.navbar .links ul li a::before {
  border-width: 0 2px;
  height: 95%;
  width: 95%;
  transform: scale3d(1, 0, 1);
}
.navbar .links ul li a:hover:before {
  transform: scale3d(1, 1, 1);
  color: #7b5244;
}
.navbar .links ul li a::after {
  border-width: 2px 0;
  height: 91%;
  width: 98%;
  transform: scale3d(0, 1, 1);
  transform-origin: left;
}
.navbar .links ul li a:hover:after {
  transform: scale3d(1, 1, 1);
  transition-delay: 0.2s;
  color: #7b5244;
}
.navbar .links .dropdwon ul li:not(:first-child) {
  padding-top: 10px;
}
.navbar .links .dropdwon ul li:first-child {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px dashed rgb(63, 45, 5);
}
/* ------------- End Styling Navbar ----------- */

/* ------------- Start Styling Slider Section----------- */

.top-sec {
  margin-top: 50px;
}
/* ------------- End Styling Slider Section----------- */
/* ------------- Start Styling Category Section----------- */

.title {
  padding: 100px 0;
}
.title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
.title h2::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #7b5244;
  top: 130%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s;
}
.title h2:hover::after {
  width: 150px;
}
.categories {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.categories .category img {
  width: 260px;
  transition: 0.3s;
}
.categories .category img:hover {
  transform: translateY(-20px);
  transform: rotate(12px);
}
.categories .category .cat_content h4 {
  color: gray;
  padding: 10px 0;
  font-weight: bold;
}
.categories .category .cat_content {
  position: relative;
}
.categories .category .cat_content p {
  font-weight: bold;
  padding-bottom: 10px;
}
.categories .category .cat_content a {
  position: absolute;
  right: 5px;
  top: 40px;
  color: #7b5244;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  cursor: pointer;
}
.categories .category:hover a {
  opacity: 1;
  visibility: visible;
}
.discount_section {
  display: flex;
  gap: 20px;
}
.discount_section .left_discount_content {
  position: relative;
  background-color: #f7f3ef;
  flex: 2;
  padding: 20px;
}
.discount_section .left_discount_content span {
  margin-left: 30px;
}
.discount_section .left_discount_content i {
  font-size: 30px;
  color: #7b5244;
  position: absolute;
}
.discount_section .left_discount_content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-left: 30px;
}
.discount_section .left_discount_content p {
  padding: 20px;
  line-height: 1.8;
  font-size: 17px;
}
.discount_section .left_discount_content .slide span:nth-child(1) {
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #7b5244;
  right: 10px;
}
.discount_section .left_discount_content .slide span:nth-child(2) {
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #7b5244;
  right: 70px;
}
.discount_section .left_discount_content .slide span:nth-child(3) {
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #7b5244;
  right: 130px;
}
.discount_section .right_discount {
  background-image: url(../images/cms-banner-1.jpg);
  background-size: cover;
  flex: 1;
  padding: 20px;
  transition: 0.3s;
  /* transform: scale(0); */
}
.discount_section .right_discount:hover {
  transform: scale(1.09);
}
.discount_section .right_discount h2 {
  color: #7b5244;
}
.discount_section .right_discount p {
  font-weight: bold;
  font-size: 20px;
}
.discount_section .right_discount + .right_discount {
  background-image: url(../images/cms-banner-2.jpg);
  background-size: cover;
  flex: 1;
}
.delivery-sec {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}
.delivery-sec .box .image1 {
  background-image: url(../images/service-icon.png);
  background-repeat: no-repeat;
  height: 55px;
  background-position: center 5px;
  transition: all 0.5s;
}
.delivery-sec .box {
  text-align: center;
  flex: 1;
}
.delivery-sec .box:not(:last-child) {
  border-right: 1px solid #7b5244;
}
.delivery-sec .box:hover .image1 {
  background-position: center -86px;
}
.delivery-sec .box .image2 {
  background-image: url(../images/service-icon.png);
  background-repeat: no-repeat;
  height: 55px;
  background-position: center -180px;
  transition: all 0.5s;
}
.delivery-sec .box:hover .image2 {
  background-position: center -273px;
}
.delivery-sec .box .image3 {
  background-image: url(../images/service-icon.png);
  background-repeat: no-repeat;
  height: 55px;
  background-position: center -366px;
  transition: all 0.5s;
}
.delivery-sec .box:hover .image3 {
  background-position: center -455px;
}
.delivery-sec .box .image4 {
  background-image: url(../images/service-icon.png);
  background-repeat: no-repeat;
  height: 55px;
  background-position: center -549px;
  transition: all 0.5s;
}
.delivery-sec .box:hover .image4 {
  background-position: center -639px;
}
.delivery-sec .box .image5 {
  background-image: url(../images/service-icon.png);
  background-repeat: no-repeat;
  height: 55px;
  background-position: center -734px;
  transition: all 0.5s;
}
.delivery-sec .box:hover .image5 {
  background-position: center -826px;
}

/* ------------- End Styling Category Section----------- */
/* <!-- ----------------------Start Styling Products section---------------- --> */

.products_Sec .product_category ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
.products_Sec .product_category ul li {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}
.products_Sec .product_category ul li:hover {
  background-color: #c07e68;
  border-radius: 12px;
}
.products {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px 20px;
}
.products .product img {
  max-width: 350px;
}
.products .product {
  position: relative;
}
.products .product .overrelay {
  position: absolute;
  top: 0;
  left: 0;
  transform: scalex(0);
  transition: transform 0.3s;
}
.products .product .overrelay ul {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.products .product .overrelay ul li {
  width: 40px;
  height: 40px;
  background-color: #7b5244;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}
.products .product .overrelay ul li i {
  line-height: 40px;
  font-size: 20px;
}

.products .product:hover .overrelay {
  transform: scalex(1);
}
.products .product .info {
  padding: 10px 0;
}
.products .product .info i.active {
  color: yellow;
}
.products .product .info h4 {
  margin: 10px 0;
}
.products .product .info h3 {
  font-weight: 800;
  font-size: 22px;
}
/* <!-- ----------------------End Styling Products section---------------- --> */
