/* ============================================
   ODZRESHOP — Global Design Tokens & Utilities
   ============================================ */
:root {
  --purple-950: #1E0A3C;
  --purple-900: #2E1065;
  --purple-800: #4C1D95;
  --purple-700: #5B21B6;
  --purple-600: #6D28D9;
  --purple-500: #7C3AED;
  --purple-400: #8B5CF6;
  --purple-300: #A78BFA;
  --purple-200: #C4B5FD;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;
  --ink:        #2E1065;
  --text-body:  #4B4463;
  --text-soft:  #8B84A3;
  --green:      #10B981;
  --green-bg:   #ECFDF5;
  --blue:       #3B82F6;
  --blue-bg:   #EFF6FF;
  --orange:     #F26522;
  --red:        #EF4444;
  --amber:      #F59E0B;
  --white:      #FFFFFF;
  --surface:    #FFFFFF;
  --bg-soft:    #F9F7FF;
  --border:     #E9E4F5;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-2xl: 26px;
  --shadow-sm:  0 1px 3px rgba(46,16,101,.08);
  --shadow-md:  0 6px 18px rgba(46,16,101,.10);
  --shadow-lg:  0 16px 40px rgba(46,16,101,.16);
  --shadow-xl:  0 28px 70px rgba(30,10,60,.28);
  --font: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html, body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-soft);
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }
input { font-family: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  padding: 11px 22px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-800);
  color: #fff;
  box-shadow: 0 6px 16px rgba(76,29,149,.32);
}
.btn-primary:hover { background: var(--purple-700); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--purple-800);
  border: 1.6px solid var(--purple-600);
}
.btn-outline:hover { background: var(--purple-50); transform: translateY(-1px); }
.btn-block { width: 100%; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1.4;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-green { background: var(--green-bg); color: #047857; }
.badge-purple { background: var(--purple-100); color: var(--purple-700); }
.badge-blue { background: var(--blue-bg); color: #1D4ED8; }

/* ---------- Logo ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--purple-900);
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name { font-size: 17px; }
.brand-name .brand-tld { color: var(--purple-500); }

/* ---------- Icons ---------- */
.ic { width: 18px; height: 18px; flex: none; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ic-sm { width: 15px; height: 15px; }
.ic-lg { width: 22px; height: 22px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Inputs ---------- */
.field { position: relative; }
.field .ic.field-ic {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--purple-400);
}
.field input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  color: var(--ink);
  background: var(--purple-50);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input::placeholder { color: var(--text-soft); }
.field input:focus { border-color: var(--purple-500); background: #fff; }
