body.jamster-theme {
  background: #282b30;
  color: #fff;
  font-family: Cabin, sans-serif;
  margin: 0;
}

.jamster-header {
  background: #1e2124;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.jamster-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0));
  pointer-events: none;
}

.logo {
  font-size: 16px;
  color: rgba(246, 9, 71);
  font-weight: bold;
  flex: 0 0 auto;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.main-nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  max-width: 100%;
}

.main-nav a {
  color: rgba(246, 9, 71);
  text-decoration: none;
  font-weight: bold;
}

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

.jamster-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.jamster-box {
  margin-bottom: 40px;
  position: relative;
}

.jamster-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}

.jamster-box h2 {
  font-size: 18px;
  color: rgba(246, 9, 71);
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
}

.product-list {
  display: grid;
  gap: 20px;
}

.product {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #111;
  padding: 10px;
  border: 1px solid #333;
  position: relative;
}

.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0));
  pointer-events: none;
}

.product img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid #444;
}

.product .info h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.product .info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #ccc;
}

.button {
  margin-left: auto;
  background: rgba(246, 9, 71);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.button:hover {
  background: rgba(246, 9, 71);
}

.artist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.artist-list li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

.jamster-footer {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  padding: 20px;
  border-top: 1px solid #333;
  position: relative;
}

.jamster-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0));
  pointer-events: none;
}

.product-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #111;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #222 inset;
  position: relative;
}

.product-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0));
  pointer-events: none;
}

.product-detail img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border: 2px solid rgba(246, 9, 71, 0.6);
  border-radius: 8px;
  background: #1e2124;
}

.product-detail .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-detail .info p {
  margin: 0;
  font-size: 15px;
  color: #ccc;
}

.product-detail .info strong {
  color: #fff;
}

.product-detail .button {
  background: rgba(246, 9, 71);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
}
.product-detail .button:hover {
  background: #f60947;
  box-shadow: 0 0 0 2px #f60947 inset;
}
