@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;700;800&family=Urbanist:wght@300;400;500;600;700&display=swap');

:root {
  --teal: #4a6fcc;
  --teal-light: #eef1fc;
  --teal-mid: #6b8fe0;
  --navy: #2a3e80;
  --sky: #dce6fa;
  --warm: #f5f7ff;
  --accent: #f4824a;
  --text: #1c2b38;
  --muted: #6b7c8e;
  --border: #e2eaed;
  --white: #fff;
  --card-shadow: 0 2px 16px rgba(10,124,120,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 8px 32px rgba(10,124,120,0.14), 0 2px 8px rgba(0,0,0,0.06);
}

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

html {
  background: #2a3e80;
  overscroll-behavior: none;
}

body {
  font-family: 'Urbanist', sans-serif;
  background: var(--warm);
  color: var(--text);
  min-height: 100vh;
  overscroll-behavior: none;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--teal-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: -4px;
}

.search-bar {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.8rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.search-bar input::placeholder { color: rgba(255,255,255,0.45); }
.search-bar input:focus {
  border-color: var(--teal-mid);
  background: rgba(255,255,255,0.13);
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav-link:hover { color: white; }

.cart-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.cart-btn:hover { background: var(--teal-mid); transform: translateY(-1px); }

.cart-count {
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── NAV STRIP ── */
.nav-strip {
  background: var(--teal);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-strip::-webkit-scrollbar { display: none; }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
}
.nav-link:hover, .nav-link.active {
  color: white;
  border-bottom-color: rgba(255,255,255,0.7);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(244,130,74,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,130,74,0.45); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-teal {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-1px); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-strip p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--teal-mid); }
.contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--teal-mid);
  fill: none;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: #1a2860;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: var(--teal-mid); }

/* ── FORM ELEMENTS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--teal-mid); }
.toast.error { border-left: 4px solid #e55; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner { padding: 0 1rem; }
  .search-bar { max-width: 180px; }
  .header-nav-link { display: none; }
}
