
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: "Inter", serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #98A0AD;
  color: #fff;
  flex-wrap: wrap;
}

.logo img {
  width: 100%;
  max-width: 800px;
  height: 25%;
  max-height: 100px;
  object-fit: contain;
}

.search-bar {
  flex: 1;
  margin: 0 1rem;
  display: flex;
  justify-content: center;
}

.search-bar input {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 25px;
  color: #8E8484;
  width: 100%;
  max-width: 350px;
  font-size: 1rem;
}

.nav-buttons {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.nav-buttons button {
  padding: 0.75rem 4rem;
  border: none;
  background-color: #fff;
  color: #000;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Inter", serif;
  font-weight: bold;
  flex: 1;
  min-width: 170px;
}

.nav-buttons button:hover {
  background-color: #f0f0f0;
}
.buttons-container {
  flex: 1;
 display: flex;
 flex-direction: column;
 gap: .5rem;
}

hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  color: black;
  padding: 40px 20px;
  background-color: white;
}
hero-section h1 {
  max-width: 900px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 80px 10%;
  background-color: white;
}

.about-text {
  font-size: 1.5rem;
  color: #444;
  display: flex;
  align-items: center;
  flex-direction: column;
}

button.contact.us {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.3rem;
  border: none;
  border-radius: 8px;
  border-color: black;
  border-width: 10px;
  background: #2563eb;
  color: white;
  cursor: pointer;
}


.miski {
  background-color: #98A0AD;
  padding: 30px;
}

.features {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding: 2rem;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  background-color: white;
  padding-bottom: 30px;
}


.main {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  padding: 2rem;
  background-color: #fff;
  padding-bottom: 50px;
}

.image-container {
  flex: 1;
  max-width: 40%;
  display: flex;
  align-items: flex-start;
}

.image-container img {
  width: 55%;
  height: 50%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);

}

.product-info {
  flex: 1;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: bold;
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000;
  word-wrap: break-word;
}

.product-info p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #555;
  word-wrap: break-word;
}


.price-and-buttons-container {
  flex: 1;
  max-width: 20%;
  border: 2px solid #000;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.price-text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000;
  text-align: center;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #000;
  text-align: center;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.add-to-cart {
  padding: 1.5rem;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.25rem;
  font-family: "Inter", serif;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #FFEC60;
  color: #000;
  border: none;
}

.add-to-cart:hover {
  background-color: #e0d055;
}



.footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #98A0AD;
  color: #fff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer img {
  width: 5%;
  height: auto;
  margin-bottom: 1rem;
}


@media (min-width: 1557px) {
  .buttons-container {
    display: flex;
    flex-direction: row;
    padding: 0 2rem;
  }
  .search-bar {
    flex: none;
    order: 2;
  }
  .nav-buttons {
    flex: 1;
    gap: 2rem;
  }
  .nav-buttons button {
    width: 100%;
    padding: 0.75rem 2rem;
  }
}

@media (max-width: 1561px) {
  .header {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .logo img {
    width: 100%;
    max-width: none;
  }

  .search-bar {
    order: 4;
    width: 100%;
    margin: 0;
  }

  .search-bar input {
    max-width: 100%;
    font-size: 1rem;
  }

  .nav-buttons {
    order: 3;
    width: 100%;
    gap: 1rem;
  }

  .nav-buttons button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .main {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .image-container {
    max-width: 100%;

  }
  .image-container img {
    width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .product-info {
    max-width: 100%;
    margin-left: 0;
    padding: 0 1rem;
  }

  .product-info h1 {
    font-size: 2rem;
  }

  .product-info p {
    font-size: 1rem;
  }

  .price-and-buttons-container {
    max-width: 100%;
  }

  .price-text {
    font-size: 1.75rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .buttons {
    width: 100%;
  }

  .add-to-cart,
  .add-to-favorites {
    font-size: 1rem;
    padding: 1.25rem;
  }

}

@media (max-width: 768px) {
  about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-picture img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
  }

  .about-text {
    margin-top: 1.5rem;
    align-items: center;
  }
}

.about-picture {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-picture img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}


@media (max-width: 572px) {
  body {
    overflow-x: hidden;
  }

  .header {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    width: 100%;
    margin: 0;
  }

  .logo img {
    width: 80%;
    max-width: none;
  }

  .search-bar input {
    width: 100%;
    height: 50px;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 8%;
    padding: 0.5rem;
  }

  .nav-buttons {
    flex-direction: row;
    gap: 1rem;
    width: 100%;
  }

  .nav-buttons button {
    width: 80%;
    height: 50px;
    font-size: 0.8rem;
    text-align: center;
  }

  .main {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    width: 100%;
    margin: 0;
  }

  .image-container {
    max-width: 100%;
    height: auto;
  }

  .image-container img {
    height: auto;
    width: 100%;
  }

  .product-info {
    max-width: 100%;
    margin-left: 0;
    padding: 0 1rem;
  }

  .product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .product-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .price-and-buttons-container {
    max-width: 100%;
  }

  .price-text {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .buttons {
    width: 100%;
  }

  .add-to-cart,
  .add-to-favorites {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .footer {
    padding: 1rem;
    width: 100%;
    margin: 0;
  }


}
 
