/*
Theme Name: KayaVista Theme
Theme URI: https://vitachecka.com/
Author: KayaVista
Description: Mobile-first WooCommerce theme for KayaVista eyewear and smart car accessories across Africa, North America, the United Kingdom, and Europe.
Version: 1.2.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: kayavista
*/

:root {
  --kv-ink: #111816;
  --kv-paper: #f7f5ef;
  --kv-white: #ffffff;
  --kv-teal: #0c737a;
  --kv-leaf: #2d714f;
  --kv-sun: #f5c450;
  --kv-signal: #e84b37;
}

body {
  margin: 0;
  color: var(--kv-ink);
  background: var(--kv-paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kv-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.kv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.94);
  border-bottom: 1px solid rgba(17, 24, 22, 0.08);
  backdrop-filter: blur(16px);
}

.kv-header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.kv-logo {
  font-weight: 900;
  text-decoration: none;
  color: var(--kv-ink);
}

.kv-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--kv-white);
  background: var(--kv-ink);
  font-weight: 800;
  text-decoration: none;
}

.kv-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 64px;
  padding: 56px 0;
}

.kv-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
}

.kv-hero p {
  color: #5d6864;
  line-height: 1.65;
  font-size: 18px;
}

.kv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 40px 0 80px;
}

.kv-panel {
  padding: 24px;
  border: 1px solid #d9dfdc;
  border-radius: 8px;
  background: var(--kv-white);
}

@media (max-width: 780px) {
  .kv-hero,
  .kv-grid {
    grid-template-columns: 1fr;
  }

  .kv-hero {
    min-height: auto;
  }
}
