body {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 0 32px;
  border-bottom: 2px solid #eee;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #eee;
  border-radius: 50%;
  position: relative;
}
.icon.flag { background: #eee url('https://upload.wikimedia.org/wikipedia/en/a/ae/Flag_of_the_United_Kingdom.svg') center/cover no-repeat; }
.icon.user::before {
  content: '\1F464';
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 16px;
}
.icon.info::before {
  content: '\2139';
  position: absolute;
  left: 5px;
  top: 2px;
  font-size: 15px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 1.1em;
  font-weight: 600;
}
.main-nav a {
  color: #000;
  text-decoration: none;
  padding: 2px 6px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #f5c800;
}
.golf-logo {
  background: #ffe600;
  color: #000;
  font-weight: bold;
  font-size: 1.3em;
  padding: 2px 18px;
  border-radius: 3px;
  margin: 0 10px;
  letter-spacing: 2px;
}
.product-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 32px auto 0 auto;
  gap: 48px;
  padding: 0 32px;
}
.product-gallery {
  flex: 1 1 420px;
  max-width: 480px;
}
.main-image {
  width: 100%;
  height: 340px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  color: #888;
  margin-bottom: 18px;
}
.thumbs {
  display: flex;
  gap: 10px;
}
.thumb {
  width: 60px;
  height: 60px;
  background: #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: #888;
}
.product-details {
  flex: 1 1 340px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.golf-undertext {
  background: #ffe600;
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
  padding: 2px 12px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.byline {
  color: #888;
  font-size: 1em;
  margin-bottom: 8px;
}
.box-includes {
  font-size: 1em;
  margin-bottom: 8px;
}
.qty-note {
  font-size: 0.95em;
  color: #222;
  margin-bottom: 8px;
}
.all-sales {
  font-weight: bold;
}
.price {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 8px;
}
.product-select {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.product-select select {
  font-size: 1em;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.add-to-cart {
  background: #000;
  color: #ffe600;
  font-weight: bold;
  font-size: 1.1em;
  border: none;
  border-radius: 3px;
  padding: 12px 0;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.add-to-cart:hover {
  background: #222;
}
.fit-details, .tracklist {
  color: #222;
  font-size: 1em;
  margin-bottom: 6px;
  text-decoration: underline;
  cursor: pointer;
}
.placeholder-img {
  background: repeating-linear-gradient(135deg, #e0e0e0, #e0e0e0 10px, #f5f5f5 10px, #f5f5f5 20px);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-style: italic;
}
.placeholder-img.small {
  width: 40px;
  height: 40px;
  font-size: 0.8em;
}
