body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.hero h1 {
  font-size: 45px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  color: #666;
}

.products {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.sock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sock-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sock-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}
  
.sock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sock-card h2 {
  font-size: 22px;
  margin: 10px 0;
}

.price {
  font-size: 20px;
  font-weight: bold;
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.button:hover {
  background: #333;
}
  
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 50px;
}

@media (max-width: 700px) {
  .sock-grid {
    grid-template-columns: 1fr;
  }
}