/**
 * Bait Al-Karam Core Design Tokens & Reset
 *
 * @package BaitAlKaram
 */

:root {
  --ink: #1e1e1e;
  --ink-light: #525252;
  --paper: #ffffff;
  --mist: #f0f0f2;
  --bg-page: #f5f5f7;
  --red: #ba2029;
  --red-deep: #94161e;
  --red-light: #e02f3a;
  --line: rgba(30, 30, 30, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-page);
  font-family: "IBM Plex Sans Arabic", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, a {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

.storefront {
  min-height: 100svh;
  padding: 0 clamp(20px, 5vw, 84px) 36px;
  display: flex;
  flex-direction: column;
}

.jelly-arrow {
  width: 20px;
  height: 14px;
  display: block;
  fill: currentColor;
  transition: transform 0.32s ease;
}

@media (max-width: 700px) {
  .storefront {
    padding: 0 16px 24px;
  }
}
