html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;

}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  overflow-x: hidden;
   background-color: #f4eee9;

}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #d6a75f;
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #d6a75f;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}


h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background:linear-gradient(135deg, #d6a75f 0%, #876b53 100%);
    -webkit-background-clip: border-box;
  background-clip: border-box;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #d29562;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #161616;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #222120;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}






/* @media only screen and (max-width: 575.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 575.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 575.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 575.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 575.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 575.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 575.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 575.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 575.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 575.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 575.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 575.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}



 */































.gray-bg {
  background-color: #d6a75f;
}

.orange-text {
  color: #d6a75f;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 5px #d6a75f, 0 0 10px #d6a75f, 0 0 20px #d6a75f;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #d6a75f, 0 0 10px #d6a75f, 0 0 15px #d6a75f;
  }
  to {
    text-shadow: 0 0 10px #ffd580, 0 0 20px #ffd580, 0 0 30px #ffd580;
  }
}



.blue-bg {
  background-color: #7A9F5C;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #d6a75f;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #d6a75f;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #7A9F5C;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #d6a75f;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 50px;
}

.section-title h3 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
  margin-left:300px;
  width:300px;

}

.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #d6a75f;
  margin: 0 auto;
}

.section-title p {
  font-size: 15px;
  width: 530px;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
  margin-left:200px;

}

.section-title {
  margin-bottom: 80px;
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #d6a75f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color:#7A9F5C;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #7A9F5C;
  z-index: -1;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #0b0b0b;
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;

}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}


ul.navbar-nav li.nav-item a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #d6a75f;
  transition: width 0.3s ease;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin:10px 0 0 0;
  padding: 0;
  list-style: none;
  /* width:92.86rem; */

}


nav.main-menu ul li {
  display: inline-block;
  margin-top: 30px;

}


nav.main-menu ul li a {
  font-weight: 900;
  font-size: large;
  display: block;
    color:  #f0ddbf;
  padding: 10px 15px;
  /*color: transparent;  نخفي اللون الأصلي
  background: linear-gradient(135deg, #876b53 0%, #d6a75f 100%);
  -webkit-background-clip: text; /* يخلي التدرج جوّا النص */
  background-clip: text;
  transition: all 0.3s ease;

}
/*  */
nav.main-menu ul li a:hover {
  color:  #f0ddbf;
  background: linear-gradient(135deg, #d6a75f 0%, #876b53 100%);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  border-radius: 6px;
  box-shadow: 0 3px 10px#d6a75f;
}

nav.main-menu ul > li {
  position: relative;
}



nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

nav.main-menu ul li:last-child a {
  display: inline-block;
}

nav.main-menu > ul li:last-child {
  float: right;
}
/*responsev*/
@media only screen and (max-width: 480px) {
 .main-menu-wrap .site-logo {
margin-left:200px;

}}
@media only screen and (max-width: 575.96px) {
 .main-menu-wrap .site-logo {
margin-left:140px;
width: 0;
}
}
/* @media only screen and (max-width: 768px) {
 .main-menu-wrap .site-logo {
margin-left:130px;

}

} */
.site-logo {
  float: left;
            max-width: 150px;
            padding: 6px 0;
            -webkit-transition: all 0.5s ease;
             -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
            transform: rotate(0deg);
            display: block;
            margin: 20px auto;
            background: linear-gradient(135deg, #876b53 0%, #d6a75f 100%);
            /* color: white; */
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px #d6a75f;




}


.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 15px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #d6a75f;
}

.main-menu-wrap {
  position: relative;
  left: 40px;
  color: #947440;
}

.mean-container a.meanmenu-reveal {
  color: #d6a75f;
}

.mean-container a.meanmenu-reveal span {
  background-color: #051922;
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}
.mobile-menu .mean-nav ul{
  width:400px;
}
.mean-bar .mean-nav  {
    width:400px;
}

.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color:  #876b53;
  display: inline-block;
  padding: 10px;
  width:90px;
}

.site-logo {
  padding: 6px 0;

}
.site-logo:hover {

   box-shadow: 0 8px 20px  #d6a75f;

     /* animation: spin 1s linear; */

   }
  @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color:#ffecd9;
}



nav.main-menu ul li.active {
  background: linear-gradient(to right, #876b53, #eed0a3);
  color: #fff;
  border-color: #876b53;
  box-shadow: 0 4px 10px rgba(135, 107, 83, 0.25);
  transform: scale(1.03);
}

nav.main-menu li:hover > a {
  color: #d6a75f;

}


nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #d29562;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background-color: #d6a75f;
  padding: 10px 0;
  height:8.75rem;;
  border-radius: 1.25rem;;
}

.top-header-area {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: #f4bd86;
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}

.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #876b53;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.search-bar-tablecell button[type=submit] {
  border: none;
  background-color:#876b53;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
  color: #282525;
}

.search-bar-tablecell input:-ms-input-placeholder {
  color: #302e2e;
}

.search-bar-tablecell input::-ms-input-placeholder {
  color: #282626;
}

.search-bar-tablecell input::placeholder {
  color: #292626;
}

.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.search-bar-tablecell h3 {
  color: #282626;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;

}

.logo-carousel-section {
  background-color: #ffecd9;
  padding: 50px 0;
}

.footer-area {
  background-color: #d6a75f;
  color:#876b53;
  padding: 150px 0;
}
h2.widget-title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
  color: #876b53;
  background: linear-gradient(90deg, #eed0a3,#876b53,#d6a75f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #eed0a3;
  content: "";
}















@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.container {
  display: flex;
  flex-wrap: wrap; /* بيسمح ينزلوا تحت بعض إذا الشاشة صغيرة */
  gap: 30px;
  justify-content: space-between;
}


.footer {
  background: #fffaf3; /* بيج كريمي فاتح */
  padding: 50px 20px 20px;
  color: #4a2c1b; /* بني */
  font-family: 'Cairo', sans-serif;
}

.footer .footer-box h3 {
  color: #7A5C3C; /* بني متوسط */
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 20px;
}

.footer-box p {
  color: #4a2c1b;
  opacity: 0.9;
  line-height: 1.8;
  font-size: 15px;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 15px;
  transition: 0.3s;
}

.footer-box ul li:hover {
  opacity: 1;
  transform: translateX(5px);
  color: #876b53; /* دهبي */
}

/* فورم الاشتراك */
.footer-box.subscribe form {
  display: flex;
  margin-top: 15px;
}

.footer-box.subscribe form input[type=email] {
  border: 2px solid #d6a75f;
  background-color: #fff;
  width: 78%;
  padding: 14px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  color: #4a2c1b;
  font-size: 15px;
}

.footer-box.subscribe form input::placeholder {
  color: #8b6e57;
  opacity: 0.8;
}

.footer-box.subscribe form button {
  width: 22%;
  border: none;
  background-color: #7A9F5C; /* فستقي */
  color: #fff;
  padding: 14px 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.footer-box.subscribe form button:hover {
  background-color: #876b53;
}

/* سوشال ميديا */
.footer-social {
  margin-top: 15px;
}

.footer-social ul {
  display: flex;
  gap: 12px;
  padding: 0;
}

.footer-social ul li a {
  background: #d6a75f; /* دهبي */
  color: #fffaf3; /* بيج فاتح */
  font-size: 16px;
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social ul li a:hover {
  background: #7A9F5C; /* فستقي */
  color: #fff;
  transform: scale(1.1);
}

/* الخط السفلي */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(74,44,27,0.2);
  font-size: 14px;
  color: #7A5C3C;
}























.copyright {
  background-color: #7A9F5C;
  border-top: 1px solid #7A9F5C;
}

.copyright p {
  margin: 0;
  color: #d6a75f;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #ffecd9;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color:#876b53;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #d6a75f;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #876b53;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
  color: #876b53;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #876b53;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

a.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.boxed-btn:hover {
  background-color:#d6a75f;
  color: #0c0c0b;
}

a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
    background-color: #d6a75f;
}

a.bordered-btn:hover {
  background-color: #d6a75f;
  color: #0b0b0b;
}



.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px  #d6a75f;
  box-shadow: 0 0 80px #d6a75f;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #d6a75f;
  color: #876b53;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #eed0a3;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {

  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}




.single-logo-item {
   float: left;
            max-width: 150px;
            padding: 6px 0;
            -webkit-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
            transform: rotate(0deg);
            display: block;
            margin: 20px auto;
            background: linear-gradient(135deg, #876b53 #d6a75f 100%);
            color: white;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px#d6a75f;
}

.single-logo-item:hover {
opacity: 0.9;
  ;


}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: #876b53;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #d6a75f;
  color: #876b53;
}

.social-icons ul li:hover a {
  color: #d6a75f;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color:#ffecd9;
}

ul.social-link-team li a:hover {
  background-color: #876b53;
  color: #d6a75f;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #d6a75f;
  box-shadow: 0 0 80px #d6a75f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: #876b53;
  color: #d6a75f;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #eed0a3;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #ffecd9;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ffecdf;
  box-shadow: 0 0 20px #ffecdf;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  max-height: 250px;
  min-height:250px
}

.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: #876b53;
  color: #d6a75f;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}



.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #876b53;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #876b53;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffecdf;
}

.service-menu ul li a:hover {
  color: #ffecdf;
}


/* ضبط الحجم لكل المنتجات */
.single-product-item {
  margin:20px;
  position: relative;
  width: /*280px*/auto;
  height: /*420px*/auto;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  transition: all 0.4s ease;
  display: block;
  align-items: center;
  justify-content: center;
}

/* الصور جوا المنتج */
.single-product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* عند المرور */
.single-product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(214, 167, 95, 0.45); /* ظل ذهبي */
}

/* تكبير ناعم للصورة */
.single-product-item:hover img {
  transform: scale(1.08);
}

/* لمعة متحركة */
.single-product-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: skewX(-25deg);
}

.single-product-item:hover::after {
  left: 125%;
  transition: left 0.8s ease;
}




























.search-bar-tablecell button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

}

.search-bar-tablecell button[type=submit]:hover {
  background-color: #d6a75f;
  color: #876b53;
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #2b2929;
}

a.mobile-show.search-bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

}

a.mobile-show.search-bar-icon:hover {
  color: #d6a75f;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url(../img/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  display: table;
  height: 100%;

  margin-top: 40px;
  margin-bottom: 40px;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: 100%;
  position: relative;
  z-index: 1;
}

html, body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #876b53;
  z-index: -1;
  opacity: 0.6;
}

.hero-text p.subtitle {
  color: #ffecd9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffecd9;
  width:900px;
}

.hero-area div {
  height: 100%;
}

.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}


.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}



.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  background-color: #876b53;
  color: #d6a75f;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-1 {
  background-image: url(../img/hero-bg-1.jpg);
}

.homepage-bg-2 {
  background-image: url(../img/hero-bg-2.jpg);
}

.homepage-bg-3 {
  background-image: url(../img/hero-bg-3.jpg);
}

.homepage-slider {
  height: 100%;
}

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  background-color: #7A9F5C;
  position: relative;
  z-index: 1;
}

.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #876b53;
  content: "";
  z-index: -1;
  opacity: 0;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: #876b53;
  font-size: 48px;
}

.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */

@media (max-width: 480px) {
.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}
.homepage-slider div.hero-text-tablecell h1 {
  height: auto;
  vertical-align: middle;
  display: table-cell;
  font-size: 50px;
}
.homepage-slider div.hero-text-tablecell p {
  font-size: 25px;
}
.homepage-slider div.hero-text-tablecell .hero-btns {

  font-size: 25px;
}


.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}
.hero-text-tablecell {
  display: table-cell; 

}

.section-title h3 {

  font-size: 80px;
  position: relative;
  padding-bottom: 15px;
  margin-left:80px;
  width:300px;

}

.footer-box  p{
font-size: 20px;

}
.about-widget  h2{
font-size: 20px;

}


}

@media (max-width: 575.96px) {
.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
 
}
.homepage-slider div.hero-text-tablecell h1 {
  height: auto;
  vertical-align: middle;
  display: table-cell;
  font-size: 50px; margin-top: 200px;
}
.homepage-slider div.hero-text-tablecell p {
  font-size: 10px;
}
.homepage-slider div.hero-text-tablecell .hero-btns {

  font-size: 25px;
}


.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}
.hero-text-tablecell {
  display: table-cell; 

}

.section-title h3 {

  font-size: 80px;
  position: relative;
  padding-bottom: 15px;
  margin-left:80px;
  width:300px;

}

.footer-box  p{
font-size: 20px;

}
.about-widget  h2{
font-size: 20px;

}


}
.list-section {
  background-color: #ffecd9;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
  margin-left: 50px;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
  width:200px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}

.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #876b53;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px  dotted;
  border: 2px  #876b53  ;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
  background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
  background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
  background-image: url(../img/latest-news/news-bg-4.jpg);
}

/* .news-bg-5 {
  background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
  background-image: url(../img/latest-news/news-bg-6.jpg);
} */

.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}

.single-latest-news h3 a {
  color: #876b53;
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: #051922;
  font-size: 0.85em;
}

p.blog-meta span:last-child {
  margin-right: 0;
}

p.blog-meta span i {
  margin-right: 5px;
}

p.excerpt {
  line-height: 1.8;
  color: #876b53;
}

.latest-news a.boxed-btn {
  margin-top: 80px;
}

.news-text-box {
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.single-latest-news {
  margin-bottom: 30px;
}

.single-artcile-bg {
  background-image: url(../img/latest-news/news-bg-3.jpg);
  height: 450px;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-wrap ul li {
  display: inline-block;
}

.pagination-wrap ul li a {
  color: #876b53;
  font-size: 15px;
  background-color: #ffecd9;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 3px;
  font-weight: 600;
  border-radius: 50px;
}

.pagination-wrap ul li a.active {
  background-color: #876b53;
}

.single-artcile-bg {
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-article-text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.single-article-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #d6a75f;
}

.comments-list-wrap {
  margin: 100px 0;
}

.comments-list-wrap h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.comment-template h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.single-comment-body {
  position: relative;
}

.comment-user-avater {
  position: absolute;
  left: 0;
  top: 0;
}

.comment-user-avater img {
  width: 60px;
  max-width: 60px;
  border-radius: 50%;
}

.comment-text-body {
  padding-left: 80px;
  margin-bottom: 40px;
}

.comment-text-body h4 {
  font-size: 18px;
  font-weight: 600;
}

span.comment-date {
  opacity: 0.5;
  font-size: 80%;
  font-weight: 700;
  margin-left: 5px;
}

.comment-text-body h4 a {
  color: #876b53;
  font-size: 80%;
  margin-left: 10px;
  border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
  margin-left: 75px;
}

.comment-text-body p {
  color: #888;
  line-height: 2;
  margin: 0;
}

.comment-template h4 {
  margin-bottom: 10px;
}

.comment-template > p {
  opacity: 0.7;
  margin-bottom: 30px;
}

.comment-template form p input[type=text] {
  border: 1px solid #ffecd9;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color:#876b53;
}

.comment-template form p input[type=email] {
  border: 1px solid #ffecd9;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: #7A9F5C;
  margin-left: 10px;
}

.comment-template form p textarea {
  border: 1px solid #ffecd9;
  padding: 15px;
  font-size: 15px;
  color: #d6a75f;
  border-radius: 5px;
  height: 250px;
  resize: none;
  width: 100%;
}

.sidebar-section {
  margin-left: 30px;
}

.sidebar-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-section ul li {
  line-height: 1.5;
}

.sidebar-section ul li a {
  color: #555;
  font-size: 15px;
}

.sidebar-section > div {
  margin-bottom: 60px;
}

.sidebar-section > div:last-child {
  margin-bottom: 0;
}

.recent-posts ul li, .archive-posts ul li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}

.recent-posts ul li:before, .archive-posts ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.tag-section ul li {
  display: inline-block;
}

.tag-section ul li a {
  background-color: #ffecd9;
  padding: 3px 10px;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
  background-color: #ffecd9;
}

.cart-banner .image-column {
  position: relative;
  margin-top: 40px;
}

.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #ffecd9;
  background-color: #d6a75f;
}

.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #d6a75f;
}

.cart-banner .image-column .price-box .inner-price .price {
  color: #876b53;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 800;
}

.cart-banner .image-column .price-box .inner-price .price strong {
  color: #d6a75f;
  font-size: 24px;
}

.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}

.cart-banner .content-column h3 {
  font-size: 40px;
}

.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid #d6a75f;
}

.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #876b53;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
.abt-bg {
  background-image: url('assets/img/hero-bg-1.jpg'); /* الصورة المطلوبة */
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* طبقة شفافة */
.abt-bg:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #876b53;
  opacity: 0.3;
  z-index: 2;
}

/* زر التشغيل بالمركز تمام */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffd580;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-play-btn:hover {
  background-color: #d6a75f; /* دهبي عند المرور */
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .abt-bg {
    height: 400px;
  }
  .video-play-btn {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }
}

@media (max-width: 768px) {
  .abt-bg {
    height: 300px;
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .abt-bg {
    height: 220px;
  }
  .video-play-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
















.abt-section .abt-text {
  padding: 50px;
  padding-left: 30px;
}

.abt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative;
  background-color: #d6a75f;
  background-image: url(../img/1.jpg);
  background-size: cover;
  padding: 110px 0px 115px;
}

.shop-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
}

.shop-banner .sale-percent {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #876b53;
}

.shop-banner .sale-percent span {
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
  color: #051922;
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */


/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 60px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.product-filters ul li {
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #5e4939;
  border: 1.5px solid #d3b896;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.product-filters ul li:hover {
  background-color: #f8f1e6;
  border-color: #c8a974;
  color: #3d3229;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.product-filters ul li.active {
  background: linear-gradient(to right, #876b53, #eed0a3);
  color: #fff;
  border-color: #876b53;
  box-shadow: 0 4px 10px rgba(135, 107, 83, 0.25);
  transform: scale(1.03);
}

.single-product-item {
  margin-bottom: 30px;
}

.product-image {
  padding: 30px;
  padding-bottom: 0;
}

.product-image img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;

}

.single-product-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

p.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d6a75f;
}

p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #d6a75f;
  color: 	#876b53;
  padding: 10px 20px;
}

a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px 	#8b6e57;
  box-shadow: 0 0 20px 	#8b6e57;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #876b53;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid 	#876b53;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: #876b53;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid 	#8b6e57;
  width: 100%;
}

thead {
  border-bottom: 1px solid 		#8b6e57;

}

tr.table-head-row th {
  border-right: 1px solid 	#8b6e57;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 20rem;
  width:10rem;
  height:5rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid 	#8b6e57;
  padding: 20px 0;
  color: #d6a75f;
}

thead.cart-table-head tr {
  background-color: 	#8b6e57;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color:#876b53;
}

.total-section table.total-table {
  border: 1px solid 	#8b6e57;
  width: 100%;
}

tr.table-total-row {
  background-color: 	#8b6e57;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid 	#8b6e57;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid 	#8b6e57;
  color:#ffecd9;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid 	#d6a75f        !important;
}

.card.single-accordion .card-header {
  background-color: 		#a87325 ;
  border: none;
  padding: 0;
}

.card.single-accordion:last-child {
  margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
  color: #051922;
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: 		#d6a75f ;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid 	#d6a75f ;

}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p input {
  border: 1px solid 	#ffecd9;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid 	#ffecd9;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #F28123;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid 	#8b6e57;

}

table.order-details thead tr th {
  background-color: 	#d6a75f ;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid 	#8b6e57;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid 		#d6a75f ;
}

.single-product-item {
  -webkit-box-shadow: 0 0 20px 		c ;
  box-shadow: 0 0 20px 	#8b6e57;
  padding-bottom: 50px;
  border-radius: 5px;
}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */

/* تىتىىىنتنتىتىتىتت*/
/* -----------------------------------------------------------------------------
# Creative Enhancements - دمج التحسينات الإبداعية
----------------------------------------------------------------------------- */

/* Smooth gradient backgrounds for sections */
.hero-area, .shop-banner,  .abt-bg{
  background:linear-gradient(135deg, 	#d6a75f #876b53 100%);
  background-blend-mode: overlay;
}

/* Soft hover glow for buttons */
a.boxed-btn, a.bordered-btn, a.cart-btn {
  box-shadow: 0 0 0 rgba(242, 129, 35, 0);
  transition: all 0.4s ease;
}
a.boxed-btn:hover, a.bordered-btn:hover, a.cart-btn:hover {
  box-shadow: 0 8px 25px rgba(242, 129, 35, 0.5);
  transform: translateY(-3px);
}

/* Floating animation for hero images */
.hero-area img, .single-team-item img, .product-image img {
  transition: all 0.6s ease-in-out;
}
.hero-area img:hover, .single-team-item img:hover, .product-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Fancy text animation for section titles */
.section-title h3 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.section-title h3::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #d6a75f;
  transition: 0.5s;
}
.section-title h3:hover::after {
  width: 100%;
}

/* Subtle card lift on hover for news and products */
.single-latest-news, .single-product-item, .single-tof-box {
  transition: all 0.5s ease;
}
.single-latest-news:hover, .single-product-item:hover, .single-tof-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

/* Interactive social icons with scale effect */
ul.social-icons li a, ul.social-link-team li a {
  transition: all 0.3s ease;
}
ul.social-icons li a:hover,
ul.social-link-team li a:hover {
  transform: scale(1.2) rotate(8deg); /* تكبير + ميلان خفيف */
  background: linear-gradient(135deg, #876b53, #d6a75f); /* تدرج ذهبي */
  color: #fff; /* نخلي الأيقونة بيضاء */
  border-radius: 50%; /* تخليها دائرية */
  box-shadow: 0 6px 15px rgba(214, 167, 95, 0.6); /* ظل ذهبي ناعم */
  transition: all 0.3s ease;
}

/* Gradient text effect for hero headings */
.hero-text h1 {
  color:#ffecd9;
  /* background: linear-gradient(90deg, #d6a75f, #d6a75f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */

}

/* Animated underline for links */
a.read-more-btn, nav.main-menu ul li a {
  position: relative;

}
a.read-more-btn::after, nav.main-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d6a75f;
  transition: 0.3s;
}
a.read-more-btn:hover::after, nav.main-menu ul li a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.social-links a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  text-align: center;
  margin:10px;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a.fb { background: #1877f2; box-shadow: 0 4px 10px rgba(24,119,242,0.3); }
.social-links a.ig { background: #e1306c; box-shadow: 0 4px 10px rgba(225,48,108,0.3); }
.social-links a.wa { background: #25d366; box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
.social-links a.tt { background: #f0610e; box-shadow: 0 4px 10px rgba(240,97,14,0.3); }














.qr-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 240px;
  margin: 0 auto; /* يخلي الروابط بالوسط */
}

.social-links a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  text-align: center;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* ألوان خاصة بكل منصة */
.social-links a.fb { background: #1877f2; box-shadow: 0 4px 10px rgba(24,119,242,0.3); }
.social-links a.ig { background: #e1306c; box-shadow: 0 4px 10px rgba(225,48,108,0.3); }
.social-links a.wa { background: #25d366; box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
.social-links a.tt { background: #000; box-shadow: 0 4px 10px rgba(240,97,14,0.3); }


.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector .dropdown-btn {
    padding: 6px 12px;
    border: 1px solid #ffecd9;
    background-color: #7A5C3C;
    color: #ffecdf;
    cursor: pointer;
    border-radius: 4px;
}

.language-selector .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0e0d2a;
    min-width: 100px;
    border: 1px solid #ccc;

    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.language-selector .dropdown-content a {
    color:  #7A5C3C;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.language-selector .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-selector:hover .dropdown-content {
    display: block;
}
/*




*/
/* Login-specific styles */


.login-page .custom-login-card {
  margin-top: 14.14rem; /* 170px */
  margin-bottom: 10.71rem; /* 150px */
  background-color: #8b6e57;
  color: white;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.login-page .custom-login-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

.login-page .btn-primary {
  background-color: #d6a75f;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.login-page .btn-primary:hover {
  background-color: #e4b96e;
  color: white;
}

.login-page .card-header {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: none;
  border-radius: 0.8rem 0.8rem 0 0;
}

/* الوضع الداكن */
body.dark-mode .login-page .custom-login-card {
  background-color: #3b2f29;
  color:  #d6a75f;
}

body.dark-mode {
  background-color: #1e1e1e;
  color:  #d6a75f;
}

body.dark-mode .form-control {
  background-color: #3a3a3a;
  color: white;
  border: 1px solid #555;
}

body.dark-mode .form-control:focus {
  border-color: #d6a75f;
  box-shadow: 0 0 0 0.2rem rgba(214, 167, 95, 0.3);
}

/* log
*/
.dashboard-page .custom-dashboard-card {
  margin-top: 19.28rem; /* 270px */
  margin-bottom: 10.71rem; /* 150px */

  background-color: #8b6e57; /* نفس لون كرت تسجيل الدخول */
  color: white;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  padding: 2rem;
  width: 35.7rem; /* 500px */
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.dashboard-page .custom-dashboard-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.3);
}

.dashboard-page .welcome-text {
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff9f0;
  margin-top: 1rem;
}

/* الوضع الداكن */
body.dark-mode {
  background-color: #1e1e1e;
  color:  #d6a75f;
}

body.dark-mode .dashboard-page .custom-dashboard-card {
  background-color: #3b2f29;
  color: #f0e8df;
}

body.dark-mode .alert-success {
  background-color: #d6a75f; /* لون الزر في الوضع العادي */
  color: white;
}
/* Scoped styling for reviews page */
.reviews-page {
  margin-top: 11.64rem; /* ~154px */
  margin-bottom: 3rem;  /* 48px */
  margin-left: 20rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.reviews-page .section-title h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #8b6e57; /* matching color from other pages */
}

.reviews-page form {
  width: 800px;
  margin: 0 auto 3rem auto;
  background-color: #fdf6e3;
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.reviews-page form p {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviews-page form input[type="text"],
.reviews-page form input[type="email"],
.reviews-page form textarea {
  flex: 1 1 45%;
  padding: 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.reviews-page form textarea {
  flex: 1 1 100%;
  min-height: 8rem;
  resize: vertical;
}

.reviews-page form input[type="text"]:focus,
.reviews-page form input[type="email"]:focus,
.reviews-page form textarea:focus {
  border-color: #d6a75f; /* highlight color */
  outline: none;
}

.reviews-page form input[type="submit"] {
  display: block;
  background-color: #d6a75f;
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  width: fit-content;
}

.reviews-page form input[type="submit"]:hover {
  background-color: #8b6e57;
}

.reviews-page .text-danger {
  color: #c53030;
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  width: 100%;
}

/* Testimonials slider styling */
.reviews-page .testimonial-sliders {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-page .single-testimonial-slider {
  background-color: #fdf6e3;
  padding: 1.8rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.reviews-page .single-testimonial-slider:hover {
  transform: translateY(-0.4rem);
}

.reviews-page .client-meta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #8b6e57;
}

.reviews-page .client-meta span {
  font-weight: normal;
  font-size: 1rem;
  color: #d6a75f;
}

.reviews-page .testimonial-body {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}

/* Dark mode support */
body.dark-mode {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .reviews-page form,
body.dark-mode .reviews-page .single-testimonial-slider {
  background-color: #3b2f29;
  box-shadow: 0 0.3rem 1rem rgba(255, 255, 255, 0.1);
  color: #f0e8df;
}

body.dark-mode .reviews-page form input[type="text"],
body.dark-mode .reviews-page form input[type="email"],
body.dark-mode .reviews-page form textarea {
  background-color: #5a4638;
  border-color: #d6a75f;
  color: #f0e8df;
}

body.dark-mode .reviews-page form input[type="submit"] {
  background-color: #d6a75f;
  color: #3b2f29;
}

body.dark-mode .reviews-page form input[type="submit"]:hover {
  background-color: #8b6e57;
  color: white;
}

body.dark-mode .text-danger {
  color: #f88379;
}
/*
///////////////////////////////////////////

*/
/* الأنماط العادية (الوضع الفاتح) */
ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
  color: #0b0b0b;
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link,
.top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link,
ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

ul.navbar-nav li.nav-item a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #d6a75f;
  transition: width 0.3s ease;
}

a.navbar-brand img {
  max-width: 150px;
}


nav.main-menu ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  width: 92.86rem;
}

nav.main-menu ul li {
  display: inline-block;
  margin-top: 30px;
}

nav.main-menu ul li a {
  font-weight: 900;
  font-size: large;
  display: inline-block;
  color: #f0ddbf;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

nav.main-menu ul li a:hover {
  color: #f0ddbf;
  background: linear-gradient(135deg, #d6a75f 0%, #876b53 100%);
  border-radius: 6px;
  box-shadow: 0 3px 10px #d6a75f;
}

/* أنماط الوضع الداكن */
.dark-mode ul.navbar-nav li.nav-item a.nav-link,
.dark-mode ul.navbar-nav li.nav-item.active a.nav-link {
  color: #f1f1f1;
}

.dark-mode .top-header-area {

  color: #fff;
}

.dark-mode ul.navbar-nav li.nav-item a.nav-link {
  color: #f1f1f1;
}

.dark-mode ul.navbar-nav li.nav-item a.nav-link::after {
  background-color: #b28e47;
}

.dark-mode nav.main-menu ul li a {
  color: #d1c8a1;
}

.dark-mode nav.main-menu ul li a:hover {
  color: #fff;
  background: linear-gradient(135deg, #b28e47 0%, #7c5f30 100%);
  box-shadow: 0 3px 10px #b28e47;
}

.dark-mode .site-logo {
  background: linear-gradient(135deg, #7c5f30 0%, #b28e47 100%);
  box-shadow: 0 5px 15px #b28e47;
}

.dark-mode .site-logo:hover {
  box-shadow: 0 8px 20px #b28e47;
}

.dark-mode .header-icons a {
  color: #b28e47;
}

.dark-mode .header-icons a:hover {
  color: #f0e1b2;
}

.dark-mode .sticky-wrapper.is-sticky .top-header-area {
  background-color: #d6a75f;
}

.dark-mode .search-area {
  background-color: #2c2c2c;
}

.dark-mode .search-bar-tablecell input {
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid #b28e47;
}

.dark-mode .search-bar-tablecell button[type=submit] {
  background-color: #7c5f30;
  color: #fff;
}

.dark-mode .search-area.search-active {
  visibility: visible;
  opacity: 1;
}

/* تنسيقات إضافية للوضع الداكن */
.dark-mode nav.main-menu ul ul.sub-menu {
  background-color: #444; /* خلفية داكنة للقائمة الفرعية */
  color: #ddd;
}

.dark-mode nav.main-menu ul ul.sub-menu li a {
  color: #ddd; /* لون النص في القائمة الفرعية */
}

.dark-mode .mean-container .mean-bar {
  background-color: #333; /* خلفية داكنة لشريط القائمة */
}

.dark-mode .mean-container a.meanmenu-reveal {
  color: #b28e47; /* لون الأيقونة */
  background-color: #333; /* خلفية داكنة */
}

.dark-mode .mean-container a.meanmenu-reveal span {
  background-color: #444; /* خلفية داكنة للتبديل */
}




/* بداية كود الـ Dark Mode */

/* للنصوص في وضع الـ dark mode */
body.dark-mode, body.dark-mode .navbar-brand, body.dark-mode .navbar-nav li a, body.dark-mode .site-logo {
  color: #fff;
}



body.dark-mode .top-header-area .header-icons a {
  color: #fff;
}

body.dark-mode a.navbar-brand {
  color: #fff;
}

body.dark-mode a.navbar-brand:hover {
  opacity: 0.7;
}

body.dark-mode .navbar-nav li.nav-item a.nav-link {
  color: #fff;
}

body.dark-mode ul.navbar-nav li.nav-item.active a.nav-link {
  color: #d6a75f;
}

body.dark-mode .single-tof-box:hover {
  box-shadow: 0 0 80px rgba(214, 167, 95, 0.6);
}

body.dark-mode .boxed-btn:hover {
  background-color: #d6a75f;
  color: #0c0c0b;
}

body.dark-mode .footer-box.pages ul li a {
  color: #fff;
}

body.dark-mode .footer-box.pages ul li:hover a {
  color: #d6a75f;
}

body.dark-mode .search-bar-tablecell input {
  background-color: transparent;
  color: #fff;
}

body.dark-mode .search-bar-tablecell button[type=submit] {
  background-color: #d6a75f;
  color: #0b0b0b;
}

body.dark-mode .single-logo-item {
  background: linear-gradient(135deg, #555 0%, #777 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(214, 167, 95, 0.7);
}

body.dark-mode .single-logo-item:hover {
  opacity: 0.9;
}


body.dark-mode .footer-box.subscribe form button:hover,
body.dark-mode .social-icons ul li a:hover,
body.dark-mode .owl-controls div.owl-nav div:hover {
  background-color: #d6a75f;
  color: #fff;
}


body.dark-mode a.bordered-btn:hover {
  background-color: #d6a75f;
  color: #0b0b0b;
}

body.dark-mode .search-area {
  background-color: #333;
}

body.dark-mode .search-area .search-bar-tablecell input::placeholder {
  color: #ccc;
}


body.dark-mode .single-product-item {
  background: #333;
  color: #fff;
  box-shadow: 0 10px 25px rgba(214, 167, 95, 0.45);
}

body.dark-mode .single-product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(214, 167, 95, 0.6);
}

body.dark-mode .single-product-item img:hover {
  box-shadow: none;
}

body.dark-mode .comment-text-body h4 a:hover {
  color: #d6a75f;
}

body.dark-mode .service-menu ul li a.active {
  color: #ffecd9;
}


body.dark-mode .mean-container .mean-bar {
  background-color: #444;
}

body.dark-mode .mean-container a.meanmenu-reveal {
  color: #d6a75f;
}

body.dark-mode .mean-container .mean-nav ul li a {
  color: #fff;
}

body.dark-mode .mean-container .mean-nav ul li a:hover {
  color: #d6a75f;
}


body.dark-mode .top-header-area.white ul.navbar-nav li.nav-item a.nav-link {
  color: #fff;
}


body.dark-mode .list-section {
  background-color: #3a3a3a;
}

body.dark-mode .list-box .content h3 {
  color: #f1e7d6;
}

body.dark-mode .list-box .content p {
  color: #ccc;
  opacity: 1;
}

body.dark-mode .list-box .list-icon i {
  color: #d6a75f;
  border-color: #d6a75f;
  background-color: #222;
}


body.dark-mode .video-play-btn {
  background-color: #6b5e2e;
  color: #fff;
  box-shadow: 0 0 15px #d6a75f;
}

body.dark-mode .video-play-btn:hover {
  background-color: #d6a75f;
  color: #222;
  transform: translate(-50%, -50%) scale(1.1);
}


body.dark-mode .abt-section .abt-text {
  background-color: #2c2c2c;
  color: #f1e7d6;
}

body.dark-mode .abt-text p {
  color: #ccc;
  opacity: 1;
}


body.dark-mode .shop-banner {
  background-color: #4a3e1e;
  background-image: none;
  color: #ffecd9;
  box-shadow: inset 0 0 50px #d6a75f;
}

body.dark-mode .shop-banner h3,
body.dark-mode .shop-banner .sale-percent {
  color: #ffecd9;
}

body.dark-mode .shop-banner .sale-percent span {
  color: #051922;
}
/*اااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااااا*/

    .custom-checkout-form {
        max-width: 700px;
        margin: auto;
        background: #8b6e57;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
        direction: rtl;
        font-family: 'Cairo', sans-serif;
        width:57.14rem;
    }

    .custom-checkout-form .form-control {
        border-radius: 8px;
        border: 1px solid #ccc;
        padding: 10px 15px;
    }

    .custom-checkout-form label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
        color: #333;
    }

    .custom-checkout-form .mb-3 {
        margin-bottom: 20px;
    }

    .custom-checkout-form select.form-control {
        cursor: pointer;
    }

    .custom-checkout-form .btn.boxed-btn {
        transition: all 0.3s ease;
    }

    .custom-checkout-form .btn.boxed-btn:hover {
        background-color: #b3863d;
    }



    .toggle-darkmode-btn {
    position: fixed;
    top: 10px;        /* بعيدة شوي عن الحافة السفلية */
    left: 10px;          /* على يسار الشاشة */
    width: 50px;
    height: 50px;
    border-radius: 30%;  /* دائرة كاملة */
    background-color: #d6a75f;
    color: #fff;
    font-size: 20px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-darkmode-btn:hover {
    background-color: #b98b4f;
    transform: scale(0.8);
}





.header-icons a.shop-icon {
    color: #8b6e57;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-icons a.shop-icon:hover {
    color: #d6a75f;
}

.header-icons a {
    color: #8b6e57;
    font-size: 20px;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: #d6a75f;
}


.header-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    /* position: fixed; */
    /* top: 20px;
    right: 20px; */
    /* z-index: 1000; */
}


.header-icons button,
.header-icons a {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}


/* استجابة لحجم الشاشة */
@media (max-width: 768px) {
    .header-icons {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

/* تكبير بسيط للأيقونات على الشاشات الصغيرة */
@media (max-width: 992px) {
    .header-icons a {
        font-size: 22px;
    }
}


/* على الشاشات الصغيرة يكون الزر ظاهر وواضح */
@media (max-width: 768px) {
    .header-icons a.shop-icon {
        font-size: 24px;
        margin-left: 10px;
    }
}


.navbar {
  position: relative;
}

.navbar .header-icons {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
