:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #151515;
  --border: #242424;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --green: #39ff14;
  --green-soft: rgba(57, 255, 20, 0.16);
  --green-glow: rgba(57, 255, 20, 0.45);
  --white-soft: #d9d9d9;
  --red-deep: #5f1010;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(57, 255, 20, 0.08), transparent 30%),
    linear-gradient(180deg, #040404 0%, #090909 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
 position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.10);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
 width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.18);
  background: #000;
  padding: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav a {
  color: var(--white-soft);
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.main-nav a:hover {
  color: var(--green);
  text-shadow: 0 0 10px var(--green-glow);
}

.hero-section {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-text {
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

.hero-button,
.action-button {
  display: inline-block;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hero-button,
.action-button.primary {
  background: linear-gradient(180deg, #44ff1f 0%, #28b50f 100%);
  color: #031002;
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.22);
}

.hero-button:hover,
.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.action-button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.03);
}

.action-button.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 20, 0.35);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-panel-inner {
 width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at center, rgba(57, 255, 20, 0.10), rgba(0, 0, 0, 0.92) 68%);
  border: 1px solid rgba(57, 255, 20, 0.14);
  border-radius: 24px;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 40px rgba(57, 255, 20, 0.03),
    0 0 22px rgba(57, 255, 20, 0.05);
  overflow: hidden;
}

.hero-panel-inner img {
width: 72%;
  max-width: 220px;
  object-fit: contain;
  border-radius: 18px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 0 22px rgba(57, 255, 20, 0.22));
}

.products-section {
  padding: 1rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin-bottom: 0.3rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 20, 0.24);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.44),
    0 0 18px rgba(57, 255, 20, 0.06);
}

.product-image-wrap {
  background: #0a0a0a;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.product-card h3 {
  margin: 0 0 0.5rem;
}

.product-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-card-meta strong {
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.18);
}

.view-link {
  color: var(--white-soft);
  font-size: 0.95rem;
}

.product-page {
  padding: 2rem 0 4rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--green);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
}

.product-media {
  display: grid;
  gap: 1rem;
}

.media-card,
.product-info-panel {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(11, 11, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
}

.media-card img,
.media-card video {
  width: 100%;
  display: block;
}

.product-info-panel {
  padding: 1.4rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.product-info-panel h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.price {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.2);
}

.product-description {
  color: var(--white-soft);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.product-category {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-detail {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(57, 255, 20, 0.92);
  color: #041002;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.22);
}

.featured-pill {
  display: inline-block;
  margin-bottom: 1rem;
  background: rgba(57, 255, 20, 0.12);
  color: var(--green);
  border: 1px solid rgba(57, 255, 20, 0.22);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-image-wrap {
  position: relative;
  background: #0a0a0a;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}


.site-footer {
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  background: #050505;
}

.footer-inner {
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

  .product-info-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.contact-panel-centered {
  max-width: 720px;
  margin: 0 auto;
}

.contact-list {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-list p {
  margin: 0.45rem 0;
  color: var(--white-soft);
}

.error-panel {
  text-align: center;
}

.error-panel h1 {
  margin-bottom: 0.8rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 0 3rem;
}

.info-strip-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1.1rem 1rem;
}

.info-strip-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-strip-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .info-strip {
    grid-template-columns: 1fr;
  }
}

.page-section {
  padding: 3rem 0;
}

.page-content {
  max-width: 800px;
}

.page-content h1 {
  margin-bottom: 1rem;
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.page-actions {
  margin-top: 2rem;
}
