#floatingCart {
  position: fixed !important;
  top: 58px;
  right: 24px;
  z-index: 999999;
  width: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cart-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

@media (max-width: 991px) {
  #floatingCart {
    top: 30px;
    right: 72px;
  }
}

.cart-trigger {
  background: #4ecca3;
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(78, 204, 163, 0.4);
}

.cart-dropdown {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  background: #0f1035;
  border: 1px solid #4ecca3;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.cart-dropdown.active {
  display: block;
}

.cart-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999999;
}

/* تظهر عند تمرير الفأرة */

.cart-item-row {
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.checkout-link {
  display: block;
  background: #4ecca3;
  color: #000;
  text-align: center;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.cart-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4ecca3;
  color: #000;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  display: none;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.cart-alert.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.order-now-btn:hover {
  box-shadow: 0 0 10px #4ecca3;
}

.sub-cate-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.sub-cate-list a.active {
  position: relative;
  color: #6a11cb;
  font-weight: bold;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

/* 🔥 الإطار المتدرج */
.sub-cate-list a.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  /* سماكة الإطار */

  background: linear-gradient(135deg, #6a11cb, #2575fc);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* لما يكون مختار */
.sub-cate-list a.active {
  background: rgba(106, 17, 203, 0.1);
  color: #6a11cb;
  font-weight: bold;
}

.shifted-content {
  padding-left: 100px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .shifted-content {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .shifted-content {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
  }
}

.static-feat-item {
  border: 1px solid #eee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.static-feat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.static-feat-item .feat-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  margin-bottom: 15px;
}

.static-feat-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0;
}
:root {
  --deep-purple: #4e31aa;
  --vibrant-purple: #6f42c1;
  --soft-bg: #fdfdff;
}

/* كروت المعلومات البنفسجية */
.contact-info-card {
  background: linear-gradient(
    135deg,
    var(--deep-purple) 0%,
    var(--vibrant-purple) 100%
  );
  border: none;
  border-radius: 25px;
  color: white;
  padding: 40px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(78, 49, 170, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

/* نموذج الاتصال */
.contact-form-container {
  padding: 20px;
}

.form-control {
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--vibrant-purple);
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.1);
  background-color: #ffffff;
}

.btn-submit {
  background-color: var(--deep-purple);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  width: 100%;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: var(--vibrant-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(78, 49, 170, 0.3);
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 5px solid #fff;
}

.section-title {
  color: var(--deep-purple);
  font-weight: 800;
  margin-bottom: 15px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.popup-box {
  background: #fff;
  width: 400px;
  margin: 100px auto;
  padding: 25px;
  border-radius: 10px;
  position: relative;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.custom-btn {
  background: linear-gradient(90deg, #6a1b9a, #4527a0);
  color: white;
  border: none;
  font-weight: bold;
}
