/*
Theme Name: UpCom Theme
Author: Alina Khamova
Version: 4.6
*/

/* =============================================
   ROOT: Brand Colors & Fonts — edit here
   ============================================= */
:root {
  /* Brand */
  --color-primary: #7dc33b;
  --color-primary-dark: #5fa028;
  --color-notification-bg: #bad63c;

  /* UI */
  --color-sale: #e53935;
  --color-badge: #ff6b1a;
  --color-dark: #1c1c1c;
  --color-cta: #1d3d2e;
  --color-text: #333333;
  --color-text-muted: #888888;
  --color-border: #e5e5e5;
  --color-bg: #ffffff;
  --color-bg-light: #f7f7f7;

  /* Typography */
  --font-primary: "Inter", "Segoe UI", Arial, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;

  /* Layout */
  --container-max: 1400px;
  --container-padding: 24px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 50px;

  /* Z-index */
  --z-header: 1000;
  --z-dropdown: 1010;
  --z-mobile: 2000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
input,
button {
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
