/* BOVGARDE Common */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #161616;
  --bg-card: #1c1c1c;
  --bg-footer: #2b2b2e;
  --bg-product: #606060;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --accent: #ff6600;
  --accent-hover: #e55a00;
  --nav-active-bg: #2a2a2a;
  --max: 1200px;
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

[v-cloak] {
  display: none;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a.is-active {
  color: var(--accent);
  background: var(--nav-active-bg);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* —— Footer —— */
.site-footer {
  background: var(--bg-footer);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-contact {
  min-width: 220px;
}

.footer-contact h3 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 22px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #c8c8c8;
}

.contact-list .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-list .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* —— Responsive —— */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #000;
    padding: 12px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 48px 24px;
  }

  .footer-logo img {
    width: 160px;
  }
}
