:root {
  --main-color: #ff8716;
  --main-dark: #e46f00;
  --accent: #ffb347;

  --dark: #121416;
  --text: #505050;
  --muted: #8b8b8b;
  --bg: #f5f5f5;
  --white: #ffffff;
  --border: #e3e3e3;

  --radius: 12px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.05);
  --transition: 0.25s ease;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  direction: rtl;
}

/* MEDIA */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============ LAYOUT ============ */

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 18px;
  border-radius: 999px;
  border: none;

  background: var(--main-color);
  color: #fff;

  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn:hover {
  background: var(--main-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255,135,22,0.25);
}

/* ============ PAGE LAYOUT ============ */

.page_main {
  padding: 26px 0 40px;
  background: #eee;
}

/* breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.breadcrumb a:hover {
  color: var(--main-color);
}

/* titles */
.page_head h1 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.page_subtitle {
  color: var(--text);
  margin-bottom: 16px;
}


/* ============ WHATSAPP FLOAT ============ */

.whatsapp_floating {
  position: fixed;
  bottom: 18px;
  right: 18px;

  width: 54px;
  height: 54px;

  border-radius: 50%;
  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 24px;

  box-shadow: 0 6px 14px rgba(0,0,0,.25);
  z-index: 999;

  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp_floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .container {
    width: 94%;
  }

  .page_main {
    padding: 20px 0 30px;
  }

  .page_head h1 {
    font-size: 1.2rem;
  }

  .products_grid_page {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

}

/* extra small */
@media (max-width: 480px) {

  .products_grid_page {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 14px;
  }

  .whatsapp_floating {
    width: 46px;
    height: 46px;
    font-size: 20px;
    bottom: 12px;
    right: 12px;
  }

}

body {
  font-family: 'Tajawal', system-ui, sans-serif;
  line-height: 1.6;
}
h1, h2, h3 {
  font-weight: 600;
}

p {
  font-weight: 400;
}
