
/* Base Footer */
.default_footer {
  background: #000;
  color: #d1d5db;
  padding: 48px 20px 28px;
  text-align: center;
  font-family: "Inter", "Cairo", sans-serif;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Footer Links Container */
.default_footer_links_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
}

/* Footer Links */
.default_footer_link {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.default_footer_link:hover {
  color: #ffffff;
  opacity: 0.85;
}

/* Social Icons Container */
.default_footer_social_container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 22px 0;
}

/* Social Icons */
.default_footer_social_link {
  color: #9ca3af;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.default_footer_social_link:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Store Info */
.footer_store_info {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.9;
  margin-top: 18px;
}

/* Copyright */
.default_footer p,
.default_footer span {
  color: #6b7280;
  font-size: 12px;
  letter-spacing: 0.2px;
}

/* EasyOrders Text Fix */
.default_footer a {
  text-decoration: none;
}

/* Soft Top Glow */
.default_footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.15),
      transparent
  );
  margin-bottom: 28px;
}





@media (max-width: 768px) {
  .default_footer {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.85)
    );
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
      0 -10px 40px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .default_footer::before {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );
  }


  .default_footer_link,
  .default_footer_social_link {
    color: #f3f4f6;
  }

  .footer_store_info {
    color: #d1d5db;
  }
}
