/* ============================================
   PUREFOLD.DELIVERY — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@400;500;600&display=swap');

/* --- BRAND TOKENS --- */
:root {
  --navy: #1a1a2e;
  --blue: #2563EB;
  --sky: #EFF6FF;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --border: #E5E7EB;
  --text: #1a1a2e;
  --text-muted: #6B7280;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

/* --- BASE --- */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--light);
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

/* --- NAVBAR --- */
nav, header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav img {
  height: 40px;
}

/* --- CARDS --- */
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px;
  color: var(--text);
}

/* --- BUTTONS --- */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

/* --- INPUTS --- */
input, select, textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  width: 100%;
}

input::placeholder {
  color: var(--text-muted);
}
