* {
  margin: 0px;
  padding: 0px;
}

body {
  background: linear-gradient(to right, #00000086, #0000006d), url(../img/Second.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}





/* start header home section */

.navbar {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.cart {
  position: relative;
  cursor: pointer;
}

.cart-count {
  background: #c6252b;
  color: white;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 50%;
  position: relative;
  top: -8px;
  right: -1px;
}

/* Cart Dropdown */
.cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 120px;
  background: white;
  color: black;
  width: 250px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}  

.cart-dropdown.show {
  display: block;
}  

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}  


.toggle-menu {
  border: 1px solid #c6252b;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 0 8px;
}

.toggle-menu span {
  display: block;
  width: 100%;
  height: 4px;
  margin: 5px 0px;
  border-radius: 5px;
  background-color: #c6252b;
}



[dir="rtl"] .header-home {
  flex-direction: row-reverse;
  text-align: right;
}  



[dir="ltr"] .header-home {
  flex-direction: row;
  text-align: left;
}  


.language-switch button {
  color: #f6efef;
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 6px 6px 7px #dadada, inset -6px -6px 7px #ffffff;
  display: inline-flex;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  margin-left: 20px;
  padding: 5px;
  transition: 0.3s;
  background-color: transparent;
  border: none;
}  

.language-switch button:hover {
  filter: brightness(0.3);
  opacity: 0.9;
}  

[dir="rtl"] {
  text-align: right;
  direction: rtl;
  padding: 0px 30px;
}  

[dir="ltr"] {
  text-align: left;
  direction: ltr;
}  







@media only screen and (max-width:576px) {
  body {
    overflow: hidden;
  }

  .right-hand .brand {
    display: none !important;
  }


}

/* end header home section */



/* start about home section */

.about-section {
  height: 400px;
  padding: 10px 20px;
  font-style: italic;
  word-spacing: 3px;
}

.about-section h2 {
  color: #c6252b;
  line-height: 1.5;
  width: 90%;
  font-size: 41px;
}

.about-section p {
  color: #d0cdcd;
  width: 100%;
  font-size: 17px;
  font-family: "Playwrite HU", cursive;

}



/* end about home section */