/** Shopify CDN: Minification failed

Line 6:11 Unexpected "-"

**/
* base.css - Thème VAREON Sport Bois Premium */

/* Font */
body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 1.6;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 20px 0;
}
.logo {
  font-weight: bold;
  font-size: 24px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.navbar a:hover {
  color: #2f6652;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  background: #e0ded3;
  color: #1a1a1a;
  padding: 60px 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #2f6652;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #244d3e;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}
.product-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.product-card img {
  max-width: 100%;
  border-radius: 8px;
}
.price {
  color: #2f6652;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #eee;
  padding: 30px 0;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
  .hero {
    padding: 40px 20px;
  }
}

