.main-nav-container.fixed-header .inner {
background: #55A7A4;
background: linear-gradient(119deg,#55A7A4 0%,#55A7A4 100%);
}


.s-product-card-entry {
  background: linear-gradient(145deg, #181D30, #1F2338); /* تدرج كحلي غامق */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* لمعة خفيفة من الأعلى */
.s-product-card-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  pointer-events: none;
}

/* حركة خفيفة عند المرور */
.s-product-card-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.s-button-element {
  background: linear-gradient(145deg, #55A7A4, #4e9a97);
  border: none !important;
  border-radius: 8px !important; /* انحناء خفيف فقط */
  color: white !important;
  box-shadow: 6px 6px 20px rgba(30, 40, 70, 0.25); /* ظل كحلي ناعم مائل */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* لمعة خفيفة تظهر على الزر */
.s-button-element::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* تأثير طيف خفيف عند المرور */
.s-button-element:hover {
  transform: translateY(-3px);
  box-shadow: 8px 10px 25px rgba(30, 40, 70, 0.35);
}


.text-primary{
color: #55A7A4 !important;
}


.sicon-menu{
color: #fff !important;
}

.da-cp {
  font-size: 1.8rem !important; /* تكبير خفيف */
  font-weight: bold !important;
  text-align: center !important;
  background: linear-gradient(
    270deg,
    #55A7A4,
    #448A91,
    #ffffff,
    #55A7A4
  ); /* تدرج مع لمعة مدمجة */
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-gradient 4s ease-in-out infinite;
}

/* حركة التدرج داخل النص */
@keyframes title-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}







footer.store-footer {
  background: linear-gradient(
    135deg,
    #3C7D7B,
    #2E5F7A,
    #1F3C4C
  ) !important; /* تدرجات داكنة مع كحلي */
  background-size: 400% 400%;
  animation: footer-glow 6s ease infinite;
  padding: 60px 20px !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.12);
  width: 100% !important;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

/* حركة خلفية ولمعة */
@keyframes footer-glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* إزالة خلفية العنصر الداخلي */
footer.store-footer > div:first-child {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  max-width: 100% !important;
}

/* تأثير تحويم */
footer.store-footer:hover {
  transform: translateY(-6px);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.3),
    0 12px 30px rgba(0, 0, 0, 0.15);
}





.custom-link-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
  gap: 10px; /* تباعد بين الزرين */
  padding: 0 10px;
  box-sizing: border-box;
}

.custom-link-box {
  flex: 1;
  padding: 16px 0;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.custom-link-box a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size:1.1rem;
  font-weight: bold;
  padding:0px 50px;
}

/* الزر الملوّن */
.custom-link-box.filled {
  background-color: #55A7A4;
  border: 2px solid #55A7A4;
}

.custom-link-box.filled a {
  color: white;
}

.custom-link-box.filled:hover {
  background-color: #469693;
}

/* الزر البوردر فقط */
.custom-link-box.outlined {
  background-color: transparent;
  border: 2px solid #55A7A4;
}

.custom-link-box.outlined a {
  color: #55A7A4;
}

.custom-link-box.outlined:hover {
  background-color: rgba(85, 167, 164, 0.08);
}