
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  padding-top: 80px;
 }
#sale {
  font-size: 150px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.08;
  z-index: 0;
  color: #999;
  pointer-events: none;
}

.title {
  background-color: #0a3d62;
  color: white;
  text-align: center;
  height: 70px;
  line-height: 70px;
  font-size: 24px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

#icon > img {
  width: 60px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow:  10px rgba(0,0,0,0.3);
}
#icon > img:hover {
  transform: scale(1.1);
}

/* Card Grid */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 220px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  display: block;
}

.sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}

.card-footer {
  padding: 10px;
  text-align: center;
}
.card-footer p {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}
.card-footer button {
  background-color: #0a3d62;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.card-footer button:hover {
  background-color: #074272;
}
