html { 
  font-family: "Signika", sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Signika", sans-serif;
}

p {
  font-family: "signika", sans-serif;
}

.site-header {
  background-color: #eeeeee;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  max-width: 98%;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.brand-link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  color: #961d2d;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-item {
  margin-left: 5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0; 
}

.nav-link {
  text-decoration: none;
  color: #961d2d;
  padding: 10px 14px;
  border-radius: 30px;
  border: 1px solid #961d2d;
  white-space: nowrap;
  margin-right: 5px;
}

.nav-link:hover {
  background-color: #ddd;
}

.nav-link--primary {
  background-color: #961d2d;
  color: white;
}

.nav-link--primary:hover {
  background-color: #7a1725;
}

.split {
  display: flex;
  align-items: center;
  gap: 5px;
}

.split input {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  flex: 1;
  min-width: 0;
}

.search-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.search-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.basket-link {
  text-decoration: none;
  color: #961d2d;
  font-weight: 500;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-container {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.product-image img {
    width: 300px;
    border-radius: 10px;
}

.product-details {
    max-width: 400px;
}

.price {
    font-size: 24px;
    color: green;
    margin: 10px 0;
}

.description {
    margin-bottom: 20px;
}

.add-to-basket {
    padding: 10px 20px;
    background-color: #2c7;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}