body, h2, h3, p, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background-color: #f5f5f5;
  font-size: 12px;
  font-weight: bold;
}

.left-icons img {
  margin-left: 30px;
  height: 20px;
  width: auto;
}

.right-links a {
  margin-right: 20px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.logo {
  height: 60px;
  margin-left: 30px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  margin: 15px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.utility-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-bar {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #f5f5f5;
}

.utility-icons img {
  height: 20px;
  width: auto;
}

.carousel-section img {
  margin-top: 60px;
  padding: 10px;
  height: 40px;
  margin-left: 30px;
}

.carousel {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track-container {
  width: 100%;
}

.carousel-track {
  display: flex;
}

.carousel-slide {
  min-width: calc(100% / 5);
  text-align: center;
  background-color: black;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.carousel-slide p {
  margin: 30px;
  color: white;
  font-weight: bold;
}

.carousel-track-container {
  padding: 0px;
  margin-bottom: 40px;
}

button {
  background-color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.logo img {
  margin: 20px auto;
  width: 50px;
}

.multi-column-menu {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: white;
}

.menu-column {
  width: 20%;
}

.menu-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li {
  margin-bottom: 8px;
}

.menu-column a {
  text-decoration: none;
  color: gray;
  font-size: 0.9rem;
}

.menu-column a:hover {
  text-decoration: underline;
  color: black;
}

footer {
  background-color: white;
  padding: 20px 40px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

footer-bottom p {
  margin: 0.5rem 0;
}

footer-bottom a {
  color: #ff6f61;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

footer-bottom a:hover {
  color: #ff4a3a;
}

.product-highlight {
  display: flex;
  flex-direction: row;
  height: 100vh;
  margin: 0;
}

.product-card {
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

.card-content {
  max-width: 300px;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.card-content h2 {
  margin: 5px 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.shop-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 30px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
  border: none;
}

.shop-button:hover {
  background-color: #000;
  color: #fff;
}

.menu-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.menu-con .top-menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.menu-con .top-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-con .top-menu li a:hover {
  color: #555;
}

.title {
  text-align: center;
  background-color: white;
  padding: 40px;
}

.title header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.title h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 5px;
}

.title h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 5px;
}

.title p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.title a {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .main-header {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    flex-direction: column;
    margin-top: 10px;
  }

  .carousel-slide {
    min-width: 100%;
  }

  .product-highlight {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    font-size: 10px;
  }

  .left-icons img {
    margin-left: 10px;
    height: 15px;
  }

  .main-header {
    padding: 10px;
  }

  .logo {
    height: 50px;
    margin-left: 20px;
  }

  .nav-links a {
    margin: 10px;
    font-size: 14px;
  }

  .carousel-slide p {
    margin: 20px;
    font-size: 14px;
  }

  .footer-section h4 {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .product-card {
    padding: 10px;
  }

  .card-content h2 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 12px;
  }

  .menu-con .top-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 100px;
  }

  .search-bar {
    width: 100%;
  }

  .carousel-section img {
    margin-top: 30px;
  }

  .multi-column-menu {
    flex-direction: column;
  }

  .menu-column {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
  }
}