* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Fredoka', 'Comic Sans MS', sans-serif;
  background: repeating-linear-gradient(45deg, #ffe14d, #ffe14d 22px, #fff6c8 22px, #fff6c8 44px);
  color: #222;
}

.marquee-banner {
  background: #ff2d55;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  padding: 6px 0;
  letter-spacing: 0.5px;
  animation: scroll-left 18s linear infinite;
}
.marquee-banner span { display: inline-block; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  text-align: center;
  padding: 28px 16px 16px;
  background: linear-gradient(180deg, #6a2bd9 0%, #9b3fe0 100%);
  color: #fff;
  border-bottom: 6px dashed #ffe14d;
}
.logo {
  font-family: 'Bangers', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0;
  text-shadow: 3px 3px 0 #ff2d55, -1px -1px 0 #000;
  line-height: 1.15;
}
.logo span {
  display: block;
  font-size: 0.45em;
  color: #ffe14d;
  text-shadow: 2px 2px 0 #6a2bd9;
}
.tagline { margin: 10px 0 4px; font-weight: 700; font-size: 1.1rem; }
.star-row { color: #ffe14d; font-size: 1.1rem; }
.star-row span { color: #fff; font-size: 0.75rem; }

.promo-strip {
  text-align: center;
  background: #ffe14d;
  color: #ff2d55;
  font-weight: 700;
  padding: 10px;
  font-size: 1rem;
  border-bottom: 4px solid #ff2d55;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  padding: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 4px solid #222;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  overflow: hidden;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.25);
  transition: transform 0.12s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 rgba(0,0,0,0.3); }

.card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 4px solid #222;
}
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff2d55;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  transform: rotate(-4deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.card-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin: 0 0 4px; font-size: 1.05rem; line-height: 1.2; }
.size { margin: 0 0 6px; font-size: 0.75rem; color: #666; font-weight: 700; }
.blurb { margin: 0 0 10px; font-size: 0.82rem; color: #444; flex: 1; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price { font-family: 'Bangers', cursive; font-size: 1.4rem; color: #ff2d55; }
.price small { font-size: 0.6rem; color: #666; }
.rent-btn {
  background: #6a2bd9;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 7px 10px;
  border-radius: 6px;
}

.detail-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 18px 40px;
}
.back-link {
  display: inline-block;
  color: #6a2bd9;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.detail-card {
  background: #fff;
  border: 4px solid #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.25);
}
.detail-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #222;
  position: relative;
}
.detail-badge { top: 14px; left: 14px; font-size: 0.85rem; }
.detail-body { padding: 22px 24px 28px; }
.detail-body h2 { margin: 0 0 14px; font-size: 1.7rem; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.spec-grid div {
  background: #fff6c8;
  border: 2px solid #222;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-grid strong { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.5px; color: #6a2bd9; }
.spec-grid span { font-size: 0.95rem; font-weight: 700; }

.detail-desc { font-size: 0.95rem; line-height: 1.5; color: #333; margin-bottom: 20px; }

.cta-btn {
  display: inline-block;
  background: #ff2d55;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  font-family: inherit;
}

.reviews-heading { margin: 30px 0 12px; font-size: 1.15rem; }
.reviews { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fafafa;
}
.review-top { display: flex; justify-content: space-between; margin-bottom: 4px; }
.review-name { font-weight: 700; font-size: 0.88rem; }
.review-stars { color: #ffb400; letter-spacing: 1px; }
.review-card p { margin: 0; font-size: 0.88rem; color: #444; }

.site-footer {
  text-align: center;
  background: #222;
  color: #ddd;
  padding: 18px 12px 26px;
  font-size: 0.85rem;
}
.site-footer p { margin: 3px 0; }
.fine-print { color: #888; font-size: 0.7rem; }
