:root {
  --color-primary: #1e5eff;
  --color-primary-dark: #0d47c5;
  --color-accent: #ff8a1f;
  --color-ink: #101828;
  --color-copy: #4a5565;
  --color-copy-muted: #667085;
  --color-line: #e5e7eb;
  --color-surface: #ffffff;
  --color-surface-alt: #f8fbff;
  --color-footer: #101828;
  --shadow-lg: 0 20px 35px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 12px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
}

body.filter-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(213, 220, 228, 0.4);
    border-radius: 999px;
    font-size: 13px;
}
.brand img,
.footer-brand img {
  
  height: auto;
}
.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  color: var(--color-copy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.button-row-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-primary {
  background: #2C65B4;
  color: #fff;
}

.button-secondary {
  border-color: rgba(30, 94, 255, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
}

.button-accent {
  background: var(--color-accent);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--color-primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--color-copy-muted);
  font-size: 0.72rem;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-line);
  border-radius: 0.85rem;
  cursor: pointer;
}

.nav-toggle-button span {
  width: 1.15rem;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
}

.site-nav,
.header-cta {
  display: none;
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.35rem);
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  padding: 0.7rem 0;
  color: #364153;
  font-weight: 500;
}
.nav-link:hover {
  color: #FF9800;
}
.nav-link.is-active {
  color: #FF9800;
}

.products-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.products-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 1.5rem;
}

.products-link::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #FF9800;
}

.mega-menu {
  display: none;
  padding: 0;
}

.products-menu.is-open .mega-menu {
  display: grid;
}

.products-menu.is-open .products-link::after {
  content: "-";
}

.mega-menu {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.mega-column {
  display: grid;
  align-content: start;
}

.mega-column-wide {
  grid-column: 1 / -1;
}

.mega-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-ink);
}

.mega-column a {
  display: block;
  margin: 8px 0;
  color: #555;
  text-decoration: none;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: #FF9800;
}

.nav-toggle:checked ~ .site-nav {
  display: block;
}

.page-banner {
  padding: 4rem 0;
  background:
    radial-gradient(circle at top left, rgba(30, 94, 255, 0.14), transparent 30%),
    linear-gradient(145deg, #f4f8ff 0%, #eaf3ff 100%);
}

.banner-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.banner-copy {
  display: grid;
  gap: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--color-copy-muted);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--color-primary);
  font-weight: 600;
}

.banner-media {
  overflow: hidden;
  min-height: 18rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.banner-media img {
  height: 100%;
  object-fit: cover;
}

.products-section,
.cta-section {
  padding: 4.5rem 0;
}

.products-shell {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.filter-toggle {
  width: 100%;
}

.filters-panel {
  display: none;
}

.filters-panel.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 35;
  padding: 5.75rem 1rem 1rem;
  background: rgba(16, 24, 40, 0.45);
}

.filters-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.filters-heading {
  display: grid;
  gap: 0.5rem;
}

.filter-options {
  display: grid;
  gap: 0;
}

.filter-group {
  display: grid;
  gap: 0.85rem;
}

.subcategory-group {
  margin-top: 20px;
}

.filter-group-title {
  font-size: 1rem;
  font-weight: 700;
}

.filter-list {
  display: grid;
  gap: 0.85rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.filter-option:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 94, 255, 0.35);
}

.filter-option input {
  accent-color: var(--color-primary);
}

.filter-option:has(input:checked) {
  background: rgba(30, 94, 255, 0.07);
  border-color: rgba(30, 94, 255, 0.35);
}

.products-content {
  display: grid;
  gap: 1.75rem;
}

.products-toolbar {
  display: grid;
  gap: 0.85rem;
}

.results-copy {
  font-weight: 600;
  color: var(--color-primary);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-card {
  display: grid;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card[hidden] {
  display: none;
}

.product-media1 {
 width: 75%;;

}

.product-media img {
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.brand-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(30, 94, 255, 0.1);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-features {
  margin: 16px 0;
  padding-left: 18px;
  margin-top: 0px;
}

.product-features li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.btn-primary,
.btn-outline {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: #2C65B4;
  color: white;
}

.btn-outline {
  border: 2px solid #ff6a00;
  color: #ff6a00;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #ff6a00;
  color: white;
}

.cta-section {
  background: #2C65B4;
}

.cta-box {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: var(--color-footer);
  color: #fff;
  padding: 3rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.brand-footer .brand-copy small,
.site-footer p,
.site-footer li,
.site-footer a {
  color: #98a2b3;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #1e2939;
  text-align: center;
}

@media (min-width: 768px) {
  .page-banner {
    padding: 5rem 0;
  }

  .products-section,
  .cta-section {
    padding: 5.5rem 0;
  }

  .banner-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }

  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  body.filter-open {
    overflow: auto;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }

  .nav-toggle-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

    .nav-list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    gap: 32px;
  }

    .nav-link {
    padding: 0;
  }

  .nav-item {
    display: flex;
    align-items: center;
  }

    .products-menu {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }

    .products-link {
    padding-right: 0;
    gap: 6px;
  }

    .products-link::after {
    content: "";
    position: static;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 90vw;
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .products-menu:hover .mega-menu,
  .products-menu:focus-within .mega-menu,
  .products-menu.is-open .mega-menu {
    display: grid;
  }

  .products-menu.is-open .products-link::after {
    content: "";
  }

  .header-cta {
    display: inline-flex;
  }

  .products-shell {
    grid-template-columns: minmax(250px, 25%) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }

  .filter-toggle {
    display: none;
  }

  .filters-panel {
    display: block;
    position: sticky;
    top: 6.5rem;
  }

  .filters-panel.is-open {
    position: sticky;
    inset: auto;
    padding: 0;
    background: transparent;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .banner-grid {
    gap: 4rem;
  }

  .filters-card,
  .product-card-body {
    padding: 1.6rem;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .mega-column-wide {
    grid-column: auto;
  }
}


