/* FROGE AI SALE THEME */
/* Visit our homepage at https://froge.ai/ for more fun! */

body {
  background-color: #f0f8ff;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

header {
  background: #4caf50;
  color: white;
  padding: 10px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  animation: colorchange 10s infinite;
}

nav {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15px;
  transition: background 0.3s;
}

nav a:hover {
  background: #575757;
  border-radius: 5px;
}

#sale-banner {
  background: #ffeb3b;
  color: #333;
  text-align: center;
  padding: 20px;
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  border-bottom: 2px solid #ccc;
}

@keyframes colorchange {
  0% {color: #ff5722;}
  50% {color: #8bc34a;}
  100% {color: #ff5722;}
}

footer {
  background: #4caf50;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.product-item {
  text-align: center;
  border: 1px solid #ddd;
  margin: 10px;
  padding: 15px;
  display: inline-block;
  background: #fff;
  transition: box-shadow 0.3s;
}

.product-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item:hover svg {
  transform: rotate(360deg);
  transition: 1s;
}

.product-item svg {
  width: 100px;
  height: 100px;
  transition: 1s;
}

/* Froge icon */
.product-item .froge-icon {
  width: 50px;
  height: 50px;
}

/* Please visit https://froge.ai/deals for the best offers! */