/* KAZZ - Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #2a4a8a;
  --green: #4ab84a;
  --mint: #caf0e0;
  --dark-text: #1a0a0a;
  --white: #ffffff;
  --border: #1a0a1a;
  --btn-red: #b01a4a;
}

body { font-family: 'Helvetica Neue', Arial, sans-serif; background: var(--mint); color: var(--dark-text); }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── HEADER / NAV ── */
header {
  background: var(--mint);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo a {
  display: inline-block;
  background: #0a0a0a;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
}

nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 2px;
}
nav a:hover, nav a.active { border-bottom: 2px solid var(--dark-text); }

.header-icons { display: flex; gap: 18px; align-items: center; }
.header-icons svg { width: 20px; height: 20px; cursor: pointer; }

/* ── HERO SECTION ── */
.hero {
  background: var(--green);
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-icon-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}

.hero-icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.hero-icon-cell.dark  { background: #1a3a6a; }
.hero-icon-cell.mid   { background: #5ab8ea; }
.hero-icon-cell.light { background: #8ad4f8; }
.hero-icon-cell.green { background: var(--green); }

.hero-icon-cell svg { width: 44px; height: 44px; opacity: 0.9; }

.hero-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 360px;
  margin: 40px 0;
  box-shadow: 4px 4px 0 var(--border);
}

.hero-card h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--border);
  line-height: 1.1;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--dark-text);
  background: var(--white);
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--mint); }

.btn-cta {
  display: inline-block;
  background: var(--btn-red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-cta:hover { opacity: 0.9; }

/* ── PRODUCTS GRID ── */
.section { padding: 48px 40px; background: var(--mint); }
.section-title { font-size: 26px; font-weight: 800; margin-bottom: 28px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--dark-text);
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 var(--border);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 3px 6px 0 var(--border); }

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
}

.product-card-name {
  padding: 10px 14px 14px;
  font-size: 15px;
  font-weight: 700;
}

/* ── PRODUCT DETAIL ── */
.product-detail { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }

.product-gallery-main {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--border);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 68px;
  height: 68px;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-thumb.active { border-color: var(--navy); }

.product-info { padding-top: 8px; }
.product-brand { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; color: #666; }
.product-info h1 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.product-desc { font-size: 15px; line-height: 1.7; color: #333; }

/* ── CONTACT FORM ── */
.contact-page { max-width: 620px; margin: 0 auto; padding: 48px 40px; }
.contact-page h1 { font-size: 42px; font-weight: 900; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  background: var(--white);
  outline: none;
  font-family: inherit;
}
.form-field textarea { height: 110px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-full { margin-bottom: 14px; }

/* ── TERMS PAGE ── */
.text-page { max-width: 760px; margin: 0 auto; padding: 48px 40px; }
.text-page h1 { font-size: 36px; font-weight: 900; margin-bottom: 28px; }
.text-page h2 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.text-page p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; color: #333; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 40px 24px;
  text-align: center;
}
.footer-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: var(--white); text-decoration: none; font-size: 14px; }
.footer-links a:hover { text-decoration: underline; }

.footer-newsletter { margin-bottom: 28px; }
.footer-newsletter p { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.newsletter-form {
  display: flex;
  max-width: 360px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
  background: transparent;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer-copy a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ── 404 ── */
.page-404 { text-align: center; padding: 80px 40px; }
.page-404 .code { font-size: 14px; margin-bottom: 16px; color: #666; }
.page-404 h1 { font-size: 42px; font-weight: 900; margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  header { padding: 14px 20px; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 28px 16px; }
  .hero-card { padding: 28px 24px; margin: 20px 16px; }
  .hero-card h1 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
}
