/** Shopify CDN: Minification failed

Line 93:19 Expected "}" to go with "{"

**/
/* Global font + colors */
:root {
  --color-primary: #0056a3; /* Strenflex blue */
  --color-accent: #f0f2f5; /* light gray */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* Body & layout */
body {
  font-family: var(--font-body);
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  border-bottom: 2px solid var(--color-accent);
  padding: 12px 0;
}
.header__menu-item {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Buttons */
.button, .shopify-payment-button__button {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.button:hover {
  background-color: #004380;
}

/* Homepage hero */
.section--hero {
  background: linear-gradient(to right, #004380, #0074d9);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.section--hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.section--hero .button {
  background-color: #fff;
  color: var(--color-primary);
}

/* Product grid */
.card__content {
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.card__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Product page layout */
.product__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111;
}
.product__price {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 600;