/* ================================
   استيراد الخط
================================ */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;500;700&display=swap');

/* ================================
   المتغيرات
================================ */
:root {
  --primary-color: #c4496e;   /* اللون الرئيسي */
  --secondary-color: #2e2a2b; /* اللون الثانوي (غامق) */
  --white: #ffffff;
  --gray: #999999;
  --font-main: 'Tajawal', sans-serif;
}

/* ================================
   تعميم الخط
================================ */
body, h1, h2, h3, h4, h5, h6, p, a, span, li, button {
  font-family: var(--font-main) !important;
}

/* ================================
   الفوتر
================================ */
.store-footer {
  background-color: var(--secondary-color);
  padding: 2rem 0;
  color: var(--white);
  text-align: right !important;
}

.store-footer__inner {
  padding: 1rem;
  color: var(--white);
  text-align: right !important;
}

.footer-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
}

.store-footer h3 {
  background: linear-gradient(90deg, var(--primary-color), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin: 0;
  padding: 0.5rem 0;
}

/* =================================
   تحسين تجربة صفحة المنتج على الجوال
================================= */
@media (max-width: 767px) {
  body.product-single.is-sticky-product-bar {
    padding-bottom: 112px !important;
  }

  body.product-single .sticky-product-bar {
    padding: 8px 10px !important;
    margin-top: 0 !important;
    border-radius: 14px 14px 0 0 !important;
  }

  body.product-single .sticky-product-bar > .container {
    gap: 6px !important;
  }

  body.product-single .sticky-product-bar__quantity,
  body.product-single .sticky-product-bar .s-quantity-input-container,
  body.product-single .sticky-product-bar .s-button-element {
    min-height: 40px !important;
    height: 40px !important;
  }

  body.product-single .product-availablity {
    flex-wrap: wrap;
  }

  body.product-single .product-availablity::after {
    content: "أصلي 100% • شحن مجاني من 99 ر.س • دعم سريع";
    flex-basis: 100%;
    margin-top: 8px;
    padding: 8px 10px;
    border: 1px solid rgba(154, 61, 91, 0.2);
    border-radius: 10px;
    background: #fbf7f3;
    color: #5d3945;
    font-size: 12px;
    text-align: center;
  }

  body.product-single .p-block--features {
    display: none !important;
  }
}