* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5eded, #f0ebf7);
  max-width: 1400px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6ac5e0;
  padding: 15px 20px;
  color: rgb(255, 255, 255);
  width: 100%;
  float: left;
}

#logo {
  width: 50px;
  float: left;
}

.name {
  width: 30%;
  font-size: 20pt;
  font-weight: 800;
  color: rgba(255, 0, 0, 0.541);
}

.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  width: auto;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 500;
}

.search {
  width: 6%;
  float: right;
}


.btn {
  background: #bfe72f;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #17a742;
}

.hamburger {
  display: none;
  font-size: 2em;
  cursor: pointer;
}






.product-container {
  float: left;
  width: 30%;
  margin: 1.6%;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: cenetr;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
    
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
  color: #333;
}

.product-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card button {
  padding: 0.6rem 1.2rem;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #45a049;
}













/* Responsive */
@media (min-width: 1200px) {
  .name {
    font-size: 30px;
    width: 40%
  }

  .nav-links {
    gap: 15px;
  }

  .btn {
    padding: 6px 12px;
  }

  .product-container {
    width: 23%;
    margin: 1%;
    min-width: 240px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .name {
    font-size: 25px;
    font-weight: 700;
  }

  .nav-links {
    gap: 15px;
  }

  .btn {
    padding: 6px 12px;
  }

  .product-container {
    width: 30%;
    min-width: 250px;
  }
}


@media (min-width: 768px) and (max-width: 991px) {

  /* Styles for tablets in landscape */
  .navbar {
    padding: 12px 15px;
  }

  #logo {
    width: 40px;
  }

  .name {
    width: 210px;
    font-size: 19px;
    font-weight: 600;
  }

  .nav-links {
    gap: 15px;
  }

  .btn {
    padding: 6px 12px;
  }

  .product-container {
    width: 30%;
    margin: 1%;
    min-width: 240px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {

  /* Styles for small tablets */
  .navbar {
    padding: 10px 15px;
  }

  #logo {
    width: 40px;
  }

  .name {
    width: 40%;
    font-size: 20px;
    font-weight: 600;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #d994ab;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 100px;
    padding: 20px;
    border-radius: 8px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links li {
    margin-bottom: 12px;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form input {
    margin-bottom: 10px;
    width: 100%;
  }

  .search-form button {
    width: 100%;
  }

  .product-container {
    width: 45%;
    margin: 2%;
    min-width: 250px;
  }
}

@media (max-width: 575px) {

  /* Styles for phones */
  .navbar {
    padding: 8px 10px;
  }

  #logo {
    width: 30px;
  }

  .name {
    width: 40%;
    font-size: 18px;
    font-weight: 400;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #d994ab;
    position: absolute;
    top: 40px;
    right: 20px;
    width: 100px;
    padding: 10px;
    border-radius: 8px;
    z-index: 100;
    color:white;
  }

  .btn {
    padding: 8px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-links li {
    margin-bottom: 12px;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form input {
    margin-bottom: 10px;
    width: 100%;
  }

  .search-form button {
    width: 100%;
  }

  .product-container {
    width: 90%;
    margin: 5%;
    min-width: 250px;
  }
}
















.footer-container {
  width: 100%;
  background-color: #2c3e50;
  color: white;
  padding: 30px 20px 20px;
  text-align: center;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #f39c12;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-socials {
  font-size: 1.5em;
  display: flex;
  gap: 15px;
}

.footer-copy {
  font-size: 0.9em;
  color: #ccc;
}

/* Mobile Responsive Footer */
@media (max-width: 600px) {

  .footer-links,
  .footer-socials {
    flex-direction: column;
    align-items: center;
  }
}