:root {
  --ebay-blue: #0064d2;
  --ebay-yellow: #f5af02;
  --ebay-red: #e53238;
  --ebay-green: #86b817;
}
body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bg-red {
  background-color: #a00;
}
.navbar-brand span:nth-child(1) {
  color: var(--ebay-red);
  font-size: calc(1.525rem + 1.3vw);
}
.navbar-brand span:nth-child(2) {
  color: var(--ebay-blue);
  font-size: calc(1.525rem + 1.3vw);
}
.navbar-brand span:nth-child(3) {
  color: var(--ebay-yellow);
  font-size: calc(1.525rem + 1.3vw);
}
.navbar-brand span:nth-child(4) {
  color: var(--ebay-green);
  font-size: calc(1.525rem + 1.3vw);
}
.hero-section {
  background: linear-gradient(135deg, #004696 0%, #0064d2 100%);
  color: white;
  padding: 60px 0;
}
.card-product {
  border: none;
  transition: 0.3s;
  height: 100%;
  border-radius: 12px;
}
.card-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.img-wrapper {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 15px;
  border-radius: 12px 12px 0 0;
}
.img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.card-product .btn {
  background-color: var(--ebay-red);
  color: white;
  border-radius: 25px;
  font-weight: 600;
}
.card-product .btn:hover {
  background-color: #d70b0b;
  color: white;
}
#social-media .bi-facebook {
  color: #1877f2;
}
#social-media .bi-twitter-x {
  color: #000000;
}
#social-media .bi-instagram {
  color: #c13584;
}
#social-media .bi-tiktok {
  color: #000000;
}
#social-media .bi-youtube {
  color: #ff0000;
}
footer .bi-facebook:hover {
  color: #1877f2;
}
footer .bi-twitter-x:hover {
  color: #000000;
}
footer .bi-instagram:hover {
  color: #c13584;
}
footer .bi-tiktok:hover {
  color: #000000;
}
footer .bi-youtube:hover {
  color: #ff0000;
}
