/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

html {
  scroll-behavior: smooth;
}
:root {
  --color-gb: #f2f2f4;
  --color-grad-1: #fff;
  --color-grad-2: #fff;
  --color-wo: #d7ae62;
  --color-grbl: #141414;
  --color-01: #000; /* global scope */
  --color-02: #262628;
  --color-03: #ffffff;
  --color-box-1: #f6d591;
  --color-box-2: #f2bd61;
  --color-box-3: #f2bd61;
  --background-01: linear-gradient(
    to right,
    #090707,
    #141414,
    rgba(20, 20, 20, 0.89)
  );
  --color-cart-1: #ebecf0;
  --color-cart-2: #f4f6f8;

  --color-card-1: #f6d591;
  --color-card-2: #fbebca;
  --color-card-3: #f2bd61;
  --color-card-f: #fff;
  --bg-primary: #fafafa;

  --color-golden-01: #fef8ec;
  --color-golden-02: #fbebca;
  --color-golden-03: #f6d591;
  --color-golden-04: #f2bd61;
  --color-golden-05: #eea031;
  --color-golden-06: #e77f19;
  --color-golden-07: #cc5e13;
  --color-golden-08: #a94014;
  --color-golden-09: #8a3316;
  --color-golden-10: #722b15;
  --color-golden-11: #411307;

  /* حجوم الخطوط - Desktop */
  --font-size-base: 16px; /* نص عادي */
  --font-size-small: 14px; /* نصوص صغيرة */
  --font-size-large: 18px; /* نصوص كبيرة */
  --font-size-h1: 32px; /* العناوين الرئيسية */
  --font-size-h2: 28px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-size-h5: 18px;
  --font-size-h6: 16px;

  /* حجوم الخطوط - Mobile */
  --font-size-base-mobile: 14px;
  --font-size-small-mobile: 12px;
  --font-size-large-mobile: 16px;
  --font-size-h1-mobile: 24px;
  --font-size-h2-mobile: 22px;
  --font-size-h3-mobile: 20px;
  --font-size-h4-mobile: 18px;
  --font-size-h5-mobile: 16px;
  --font-size-h6-mobile: 14px;

  --font-family-01: "poppins", sans-serif;
  --font-family-02: "Inter", sans-serif;
}

/* حجم السكروول بار */
::-webkit-scrollbar {
  width: 12px; /* سمك السكروول بار العمودي */
  height: 12px; /* سمك السكروول بار الأفقي */
}

/* خلفية السكروول بار */
::-webkit-scrollbar-track {
  background: var(--bg-card); /* خلفية المسار */
  border-radius: 10px;
}

/* لون وحواف المؤشر */
::-webkit-scrollbar-thumb {
  background-color: #f2bd61; /* اللون الذهبي */
  border-radius: 10px;
  border: 3px solid var(--bg-card); /* مسافة حول المؤشر */
}

/* عند تمرير الماوس على المؤشر */
::-webkit-scrollbar-thumb:hover {
  background-color: #f2bd61; /* ذهبي أغمق عند hover */
}

/* لون السكروول بار للـ Firefox */
* {
  scrollbar-width: thin; /* يمكن أيضًا: auto */
  scrollbar-color: #f2bd61; /* اللون الذهبي على خلفية فاتحة */
}

html[lang="ar"] {
  --font-family-01: "El Messiri", sans-serif;
  --font-family-02: "Almarai", sans-serif;
}

.dark-mode {
  --color-gb: #141416;
  --color-grad-1: linear-gradient(
    180deg,
    rgba(13, 13, 13, 1) 0%,
    rgba(26, 26, 26, 1) 50%
  );
  --color-grad-2: #0d0d0d;
  --color-grbl: #cecece;
  --color-01: #ffffff;
  --color-02: #e6e6e8;
  --color-03: #262628;
  --background-01: linear-gradient(
    to right,
    #1a1a1a,
    #141414,
    rgb(20 20 20 / 0)
  );
  --color-card-1: #e6e6e8;
  --color-card-2: #e8e8e8;
  --color-card-3: #ecececeb;

  --color-box-1: #262628;
  --color-box-2: #2e2a20;
  --color-card-f: #fff;

  --color-cart-1: #262628;
  --color-cart-2: #2e2a20;

  /* Gold Shades – Dark Mode Versions */
  --color-golden-01: #2e2a20;
  --color-golden-02: #3c3224;
  --color-golden-03: #5a4625;
  --color-golden-04: #7a5827;
  --color-golden-05: #9b6c2a;
  --color-golden-06: #bd7f2d;
  --color-golden-07: #d99335;
  --color-golden-08: #e4a94b;
  --color-golden-09: #f0bf64;
  --color-golden-10: #f7d891;
  --color-golden-11: #fff2d7;

  /* خلفيات أساسية */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #141414;

  /* نصوص */
  --text-primary: #ffffff;
  --text-secondary: #d8d8d8;
}
a {
  text-decoration: none;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 3s ease; /* نفس مدة AOS 3000ms */
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
}
main {
  background: var(--bg-primary);
}
.site-header,
.main-navigation,
.site-footer {
  background: var(--bg-secondary);
}
.entry-content,
.woocommerce div.product,
.woocommerce ul.products li.product {
  background: var(--bg-card);
}
.gjs-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
.gjs-section {
  display: flex;
  padding: 50px 0;
}
.gjs-icon {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  vertical-align: middle;
  fill: currentColor;
  width: 50px;
  height: 50px;
}
.gjs-plg-flex-column {
  flex-grow: 1;
}
.gjs-plg-flex-row {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.section-title {
  font-family: var(--font-family-01);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-02);
  margin-bottom: 5px;
}
.home-slider-block {
  margin-bottom: 30px;
}
.mobile-sidebar-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
.mobile-sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-sidebar {
  position: fixed;
  right: -20px;
  top: -18px;
  text-align: left;
  padding: 10px;
  direction: ltr;
  height: 100vh;
  width: min(320px, 95%);
  background: var(--color-03);
  color: #fff;
  display: none;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-sidebar.is-open {
  display: flex !important;
}
.mobile-sidebar-overlay.is-open .mobile-sidebar {
  transform: translateX(0);
}
.mobile-sidebar-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid #626262;
  font-size: 26px;
  color: var(--color-01);
  cursor: pointer;
  border-radius: 100%;
  line-height: 0.2;
  height: 35px;
  padding: 11px 8px;
  width: 35px;
  display: flex;
}
.mobile-sidebar-logo img {
  max-width: 140px;
  height: 180px;
  margin: 15px auto;
  display: block;
}
.mobile-menu-list:lang(ar) {
  align-items: end;
}

.mobile-menu-list {
  list-style: none;
  padding: 50px 24px 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.mobile-menu-list li a {
  color: var(--color-02);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-family-02);
}
.mobile-menu-list li a:hover,
.mobile-menu-list li a:focus {
  color: #d4af37;
}
.mobile-sidebar-social:lang(ar) {
  text-align: right;
  direction: rtl;
}
.mobile-sidebar-social {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px 0px;
}
.mobile-sidebar-social-label {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-01);
  font-family: var(--font-family-01);
  font-size: var(--font-size-h6);
}
.mobile-sidebar-social-links {
  display: flex;
  gap: 12px;
}
.mobile-sidebar-social-link img {
  width: 28px;
  height: 28px;
}
.mobile-quick-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(480px, 94%);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.mobile-quick-nav__item {
  position: relative;
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: var(--contrast-3);
  font-family: var(--font-family-02);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  transition: all 1s;
}
.decorative-divider-bottom {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.wc-toast .wc-toast-sub,
.wc-toast .wc-toast-view {
  font-family: var(--font-family-01) !important;
}
.divider-line-left {
  height: 1px;
  width: 100%;
  max-width: 180px;
  background-image: linear-gradient(
    to right,
    transparent,
    #f2bd61,
    rgb(242 189 97 / 0)
  );
  opacity: 0.7;
}
.ornamental-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.ornament-diamond-large {
  display: block;
  height: 0.75rem;
  width: 0.75rem;
  transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-radius: 2px;
  background: #f2bd61;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0 1px rgba(185, 121, 29, 0.25);
}
.ornament-diamond-small {
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-radius: 2px;
  background: #f2bd61;
  opacity: 0.8;
}
.ornament-diamond-tiny {
  display: block;
  height: 0.375rem;
  width: 0.375rem;
  transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  border-radius: 2px;
  background: #f2bd61;
  opacity: 0.6;
}
.divider-line-right {
  height: 1px;
  width: 100%;
  max-width: 180px;
  background-image: linear-gradient(
    to left,
    transparent,
    #f2bd61,
    rgb(242 189 97 / 0)
  );
  opacity: 0.7;
}
.mobile-quick-nav__icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ededed;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mobile-quick-nav__icon svg {
  width: 27px;
  height: 27px; /* fill: currentColor; */
  stroke: currentColor;
  stroke-width: 1.5;
}
.mobile-quick-nav__label {
  font-size: 11px;
  font-weight: 600;
  display: none;
}
.mobile-quick-nav__item--active,
.mobile-quick-nav__item--active .mobile-quick-nav__label {
  color: var(--color-box-2);
  display: block;
}
.mobile-quick-nav__item--active .mobile-quick-nav__icon {
  background: var(--color-wo);
  color: #fff;
  box-shadow: 0 6px 18px rgba(38, 38, 40, 0.3);
}
.mobile-quick-nav__item--active .mobile-quick-nav__icon svg {
  fill: currentColor;
}
.mobile-quick-nav__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e77f19;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
}
.woocommerce-message .wc-forward {
  background: #fff0 !important;
  font-family: var(--font-family-02) !important;
  color: var(--color-golden-06) !important;
}
.custom-msg-succ::before {
  color: #53621a;
  content: "";
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M8.5 12.5L10.5 14.5L15.5 9.5" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round"/></svg>') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background: var(--base);
  border-radius: 20px;
  padding: 10px;
}
.custom-msg-note::before {
  color: #53621a;
  content: "";
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M12 7V13" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round"/><circle cx="12" cy="16" r="1" fill="%231C274C"/><path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round"/></svg>') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background: var(--base);
  border-radius: 20px;
  padding: 10px;
}
.custom-msg-error::before {
  color: #53621a;
  content: "";
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round"/><path d="M7 3.33782C8.47087 2.48697 10.1786 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 10.1786 2.48697 8.47087 3.33782 7" stroke="%231C274C" stroke-width="1.5" stroke-linecap="round"/></svg>') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background: var(--base);
  border-radius: 20px;
  padding: 10px;
}
.custom-msg-note,
.custom-msg-error,
.custom-msg-succ {
  background: var(--color-box-1);
  border-top: 0;
  border-radius: 30px;
  color: var(--color-01);
  font-family: var(--font-family-02);
}
.woocommerce-message {
  padding: 10px 0px 10px 40px;
  position: relative;
}
.woocommerce-message {
  border-radius: 36px;
  border-top: 0px;
  font-family: var(--font-family-02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-02);
  color: var(--color-03);
}
.custom-msg-succ > div:lang(ar) {
  margin-right: 50px;
}
.custom-msg-succ > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 12px;
}
.section-desc {
  font-family: var(--font-family-02);
  font-size: var(--font-size-h5);
  color: #575757;
  line-height: 30px;
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  font-family: var(--font-family-02);
}
#i7r4eg {
  width: 20px;
  height: 20px;
}
#i7yfeu {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  white-space: nowrap;
}
#iokbk3:lang(ar) {
  flex-direction: row;
  margin-left: 15px;
}
#iokbk3 {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-base-mobile);
  background: var(--bg-primary) !important;
  color: var(--color-02);
  border: 1px solid #22333e;
  border-radius: 50px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: var(--font-family-01);
  cursor: pointer;
  transition: background 0.5s ease 0s, color 0.5s ease 0s;
}
#imtloh {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
}
#if5sw5 {
  flex-basis: 50%;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
#ihn2tg {
  width: 100%;
}
#ihwzu6 {
  color: black;
  width: 150px;
}
#if02rl {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#igyjaw {
  width: 70%;
}
.themeToggle {
  margin-left: 20px;
}
.themeToggle:lang(ar) {
  margin-left: 0px;
}
#ts2sf:lang(ar) {
  flex-direction: row-reverse;
}
#ts2sf {
  font-size: var(--font-size-h5-mobile);
  font-family: var(--font-family-02);
  color: var(--color-02);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
}
#ts2sf p {
  margin-bottom: 0;
}
#if5sw5 ul:lang(ar) {
  direction: rtl;
}
#if5sw5 ul {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}
#if5sw5 ul li a {
  text-decoration: none;
  color: var(--color-02);
  font-size: var(--font-size-h5-mobile);
  font-family: var(--font-family-01);
  font-weight: 500;
}
.navbar-menu-toggle {
  margin: 10px 0;
  padding: 5px 10px;
  display: none;
  cursor: povar(--font-family-02);
}
.navbar-menu-nav {
  padding: 10px 0;
  display: flex;
  gap: 20px;
}
.navbar-cnt {
  max-width: 950px;
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
}
.navbar {
  background-color: #222;
  color: #ddd;
  min-height: 50px;
  width: 100%;
}
.navbar-items-c {
  display: inline-block;
  float: right;
}
.navbar-brand {
  vertical-align: top;
  display: inline-block;
  padding: 5px;
  min-height: 50px;
  min-width: 50px;
  color: inherit;
  text-decoration: none;
}
#ig68ha {
  background: #1b1d20;
  padding-bottom: 0;
  color: white;
}
#ivq3nv {
  width: 100%;
  gap: 0;
}
#ipra2r {
  padding: 0;
  width: fit-content;
}
#i5qosp-2 {
  width: 120px;
}
#ispfvv:lang(ar) {
  text-align: right;
}
#ispfvv {
  color: #c6c5c5;
  font-size: var(--font-size-base);
  white-space: pre-wrap;
  display: block;
  font-family: var(--font-family-02);
  padding: 15px 0;
  line-height: 30px;
}
#ij0hbk {
  color: white;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#ij0hbk-2 {
  color: white;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#ij0hbk-3 {
  color: white;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#ij0hbk-4 {
  color: white;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#itc0qi {
  width: 30px;
  height: 30px;
}
#i6zwzl {
  width: 30px;
  height: 30px;
}
#iq87qz {
  padding: 10px;
  flex: 0 0 20%;
}
#ihwckg,
#iqri6g,
#in0t6j {
  margin-top: 0;
  font-weight: 600;
  font-size: var(--font-size-h3-mobile);
  font-family: var(--font-family-02);
}
#i4569d {
  padding: 10px 0;
  display: block;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
  color: white;
}
#i4569d-2 {
  padding: 10px 0;
  display: block;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
  color: white;
}
#i4569d-2-2 {
  padding: 10px 0;
  display: block;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
  color: white;
}
#i4569d-2-2-2 {
  padding: 10px 0;
  display: block;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
  color: white;
}
#i4569d-2-2-2-2 {
  padding: 10px 0;
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#i4569d-2-2-2-2-2 {
  padding: 10px 0;
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#i4569d-2-2-2-2-2-2 {
  padding: 10px 0;
  display: block;
  font-family: var(--font-family-02);
  color: white;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#i4569d-2-3 {
  padding: 10px 0;
  display: block;
  color: white;
  text-decoration: none;
  transition: color 0.5s;
  cursor: povar(--font-family-02);
}
#imvgeq {
  padding: 10px;
  flex: 0 0 20%;
}
#ijb7k5 {
  flex-basis: 50%;
  padding: 10px;
}
/* #in0t6j { margin-top:0; font-weight:700; font-size:24px; font-family:var(--font-family-01);; } */
#ig8ge5 {
  white-space: pre-wrap;
  text-align: center;
  font-family: var(--font-family-02);
  padding: 45px 0 20px;
  display: block;
}
#iw4lcc {
  direction: ltr !important;
  background: transparent;
  position: fixed;
  z-index: 600;
  padding: 1rem;
}
.dark-mode #ic2h68 {
  border: none !important;
  display: flex;
  align-items: center;
}
#ic2h68 {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  background: var(--color-03);
  border-radius: 2.5rem;
  backdrop-filter: blur(1rem);
  padding: 0 1rem;
  border: 1px solid rgba(255, 179, 71, 0.35);
}
.myaccount-back-button {
  font-family: var(--font-family-02);
  z-index: 10;
}
.loginLink {
  display: none;
}
#jrng {
  direction: ltr !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-family: var(--font-size-base);
}
#TitleHead h3 {
  font-size: var(--font-size-h2-mobile);
  font-weight: 600;
  font-family: var(--font-family-01);
}
#i5qosp {
  object-fit: contain;
  /* width: 100%; */
  height: 140px;
}
#menu-footer-menu,
#menu-footer-menu-ar,
#menu-legal-menu,
#menu-legal-menu-ar {
  list-style: none;
  margin: 0;
  font-family: var(--font-family-02);
}
#menu-footer-menu li,
#menu-footer-menu-ar li,
#menu-legal-menu li,
#menu-legal-menu-ar li {
  margin-bottom: 10px;
}
#menu-footer-menu li a,
#menu-footer-menu-ar li a,
#menu-legal-menu-ar li a,
#menu-legal-menu li a {
  color: #c6c5c5;
  font-size: var(--font-size-base);
}
.footer-social-links {
  display: flex;
  gap: 10px;
}
.footer-social-links svg {
  width: 30px;
  height: 30px;
}
.contact-info {
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #c6c5c5;
  font-family: var(--font-family-02);
  font-size: var(--font-size-base);
}
.contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.contact-item span {
  line-height: 1.4;
}
div.contact-item:nth-child(2) > span:nth-child(2) {
  direction: ltr;
}
a.custom-cart-icon {
  display: flex;
  border-radius: 20px;
  padding: 5px;
  background: var(--bg-primary) !important;
  color: var(--color-02);
  border: 1px solid #22333e;
  margin-left: 18px;
}
svg#designs {
  width: 28px;
  height: 28px;
  padding: 2px;
}
.menu_dark {
  display: flex;
  align-items: center;
  gap: 0;
}
.menu_dark #ts2sf {
  display: none;
}
.return-to-shop a {
  background: var(--color-box-3) !important;
  border-radius: 20px !important;
  font-family: var(--font-family-02);
  color: var(--color-03) !important;
  font-weight: 500 !important;
}
.qty-minus {
  padding: 0px;
  font-weight: 600;
  width: 30px;
  border-radius: 100%;
  height: 30px;
  font-size: var(--font-size-h4-mobile);
  line-height: 7px;
  background: var(--contrast) !important;
}
.qty-plus {
  background: var(--contrast-2);
  padding: 0px;
  font-weight: 600;
  width: 30px;
  border-radius: 100%;
  height: 30px;
  font-size: var(--font-size-h4-mobile);
  line-height: 7px;
}
.remove-mini-cart-item {
  color: var(--color-01);
  font-size: var(--font-size-h1-mobile);
}
@media (max-width: 1024px) {
  .mobile-quick-nav {
    display: flex;
  }
}
@media (max-width: 992px) {
  #ivq3nv {
    flex-wrap: wrap;
    gap: 10px;
  }
  #iw4lcc {
    width: 100%;
    font-size: 0.7rem;
  }
  #ihwzu6 {
    width: 75px;
  }
  #igyjaw {
    width: 75%;
  }
  .product-card {
    flex: 1 0 22%;
  }
}
@media (max-width: 768px) {
  #jrng {
    padding: 0px 0px;
  }
  .menu_dark #ts2sf {
    display: block;
  }
  .menu_dark #ts2sf:lang(ar) {
    margin: 0;
    width: fit-content;
    padding: 0;
  }
  .themeToggle:lang(ar) {
    margin-left: 0;
  }
  #ig68ha {
    padding-bottom: 100px;
  }
  .loginLink {
    display: block;
  }
  .gjs-icon {
    width: 30px;
    height: 30px;
  }
  #ivhcul {
    margin-right: 10px;
  }
  #if02rl {
    padding-left: 15px;
  }
  #ic2h68 {
    width: 100%;
  }
  #iw4lcc {
    position: fixed;
  }
  #imvgeq {
    flex: 0 0 100%;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-top-color: rgba(255, 255, 255, 0.29);
    border-right-color: rgba(255, 255, 255, 0.29);
    border-left-color: rgba(255, 255, 255, 0.29);
  }
  .navbar-menu-toggle {
    display: block;
  }
  .navbar-menu-nav {
    width: 100%;
    flex-direction: column;
  }
  .navbar-items-c {
    display: none;
    width: 100%;
  }
  #ivq3nv {
    flex-wrap: wrap;
  }
  #ipra2r {
    display: flex;
    flex-direction: column;
  }
  #iq87qz {
    flex: 0 0 100%;
    border-top-width: 1px;
    border-left-width: 1px;
    border-top-color: rgba(255, 255, 255, 0.29);
    border-right-color: rgba(255, 255, 255, 0.29);
    border-left-color: rgba(255, 255, 255, 0.29);
  }
  #ijb7k5 {
    flex: 0 0 100%;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-top-color: rgba(255, 255, 255, 0.29);
    border-right-color: rgba(255, 255, 255, 0.29);
    border-left-color: rgba(255, 255, 255, 0.29);
  }
  #ig8ge5 {
    padding-top: 20px;
    font-size: var(--font-size-base-mobile);
    color: var(--contrast-3);
  }
  #igyjaw {
    width: 100%;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-attachment: unset;
    background-origin: unset;
    background-color: #f4f4f4;
    box-shadow: 0 0px 30px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    z-index: 999;
  }
  .section-title {
    font-size: var(--font-size-h4-mobile);
  }
  .product-card {
    height: 250px;
    flex: 1 0 30%;
  }
}
@media (max-width: 480px) {
  .woocommerce-message .wc-forward {
    padding: 10px 4px !important;
  }
  .custom-msg-succ > div {
    flex-wrap: wrap;
    padding-left: 0px;
  }
  .product-card {
    height: 240px;
    flex: 1 0 45%;
  }
  .contact-item {
    font-size: var(--font-size-base-mobile);
  }
  #iq87qz {
    display: none;
  }
  .myaccount-back-button {
    padding: 0px 16px;
    width: 25%;
    max-width: 100px;
  }
  #TitleHead {
    font-size: var(--font-size-h2);
    width: 75%;
    text-align: center;
  }
  #TitleHead h3 {
    font-family: var(--font-family-01);
    font-size: var(--font-size-h3-mobile);
    font-weight: 400;
    margin-bottom: 0;
    margin-left: -60px;
  }
  .myaccount-back-button {
    padding: 0px 16px;
    width: 25%;
    max-width: 100px;
  }
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    font-size: var(--font-size-base-mobile);
  }
  #i76np7 {
    color: var(--color-02);
    width: 25px;
    height: 24px;
  }
  #ig68ha {
    padding-bottom: 100px;
  }
  .gjs-icon {
    width: 30px;
    height: 30px;
  }
  .gjs-link-box {
    width: 30px;
    height: 30px;
  }
  .footer-social-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: start;
    align-items: center;
  }
  #ispfvv {
    font-size: var(--font-size-base-mobile);
  }
  #i5qosp {
    width: 98%;
  }
  .home-slider-block {
    margin-bottom: 20px;
  }
  /* footer{display: none;} */
  #iq0wvf {
    padding: 10px;
  }
  .section-title {
    font-size: var(--font-size-h4-mobile);
  }
  .section-desc {
    font-size: var(--font-size-base);
  }
}
