/* Navbar Container */
.navbar {
  background-color: #333;
  color: white;
  padding: 10px 20px;
}

/* Top Row: logo & menu icon */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #e65c00;
}

/* Menu icon */
.menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: white;
  display: none;
}

/* Search Input */
.search-input {
  width: 250px;
  padding: 6px 12px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-top: 10px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #e65c00;
}
 .search-input
 {
  width: 25%;
 }

/* ----------------- Responsive ----------------- */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    width: 100%;
  }

  .top-row {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #222;
    margin-top: 10px;
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }

  .search-input {
    width: 100%;
    margin-top: 10px;
  }

  .navbar {
    flex-direction: column;
  }
  
  .search-input
  {
    width: 100%;
  }
}

/* From Uiverse.io by alexruix */
.card {
  height: 500px;
  padding: 0px 20px ;
  padding-top: 20px;
  background: #f5f5f5;
  position: relative;
  overflow: visible;
  box-shadow: 2px 2px 5px #ffcaa6e0;
  transition: 0.5s;
}
.item
{
  padding: 40px;
}

.card:hover {
  transform: translateY(-10px);
  transform: tra(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


.card-img {
  height: 250px;
  transition: .3s ease;
}

.card-img img {
  height: 100%;
}


.card-info {
  padding-top: 5%;
}

.price {
  color: #2ecc71;
}

svg {
  width: 20px;
  height: 20px;
}

.card-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/*Text*/
.text-title {
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1.5;
}

.text-body {
  font-size: .9em;
  padding-bottom: 10px;
}

/*Button*/
.card-button {
  border: 1px solid #252525;
  display: flex;
  padding: .3em;
  cursor: pointer;
  border-radius: 50px;
  transition: .3s ease-in-out;
}


.card-button:hover {
  border: 1px solid #ffcaa6;
  background-color: #ffcaa6;
}

/* loader */
.spinner {
  background-image: linear-gradient(rgb(186, 66, 255) 35%, rgb(0, 225, 255));
  width: 100px;
  height: 100px;
  animation: spinning82341 1.7s linear infinite, hue 1s ease-in-out infinite;
  text-align: center;
  border-radius: 50px;
  filter: blur(1px);
  box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px rgb(0, 225, 255);
  position: absolute;
  top: 45%;
  left: 45%;
  display: none;

}

.spinner1 {
  background-color: rgb(36, 36, 36);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  filter: blur(10px);
}

@keyframes spinning82341 {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hue {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

/* footer */
.main-footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  margin: 10px 20px;
}

.footer-logo {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 5px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}


.social-icons a:hover img {
  filter: brightness(150%);
}

.social-icons i {
  font-size: 30px;
  margin: 15px;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.facebook {
  color: #044eaf;
}

.instagram {
  color: #e1306c;
}

.twitter {
  color: #1da1f2;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #444;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin: 20px 0;
  }

}