

body {
    background: linear-gradient(to right , #00000086 , #0000006d) , url(../img/First.png);
    background-size: cover;
    background-repeat: no-repeat;
}




/* 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 contact section */
.brand-title{
    text-align: center;
    color: white;
    
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.7;
}

.brands-row {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}

.brands-box {
    background-color: #c6252b;
    padding: 0 15px;
    margin: 10px 20px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.brands-box a {
    color: rgb(23, 22, 22);
}
.brands-box:hover {
    filter: brightness(0.3);
    opacity: 0.9;
}

/* end contact section */



/* start footer home section */


[dir="rtl"] footer {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="ltr"] footer {
  flex-direction: row;
  text-align: left;
}



.footer-map iframe {
  display: block;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
  text-align: right;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
}

.footer-left p {
  line-height: 1.6;
}

.social-icons img {
  width: 24px;
  height: 24px;
  margin: 0 5px;
  vertical-align: middle;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li {
  margin: 5px 0;
}

.footer-center a {
  color: black;
  text-decoration: none;
}


.footer-right .social-icons a{
  color: #c6252b;
  text-decoration: none;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: black;
  text-decoration: underline;
}

/* end footer home section */