* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f5;
  color: #333;
}

header {
  background-color: #f06292;
  color: white;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
nav a:hover {
  background-color: #d81b60;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

main {
  padding: 20px;
}

section img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #f06292;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background-color: #f06292;
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 5px 0;
  }

  .banner img {
    height: 30vh;
  }
}
/* style.css */

section img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1em;
}

.product-card .rating {
  color: #f5b301;
}

.product-card .price {
  font-weight: bold;
  color: #f06292;
}

.product-card button {
  margin-top: 10px;
  background-color: #f06292;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-card button:hover {
  background-color: #e91e63;
}
.category-section {
  padding: 40px 20px;
  background: #fff8f5;
  text-align: center;
}

.category-section h2 {
  margin-bottom: 30px;
  color: #f06292;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.category-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 15px;
  width: 100%;
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.category-card h3 {
  margin: 15px 0;
  font-size: 1.1em;
  color: #333;
}

.category-card button {
  background-color: #f06292;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.category-card button:hover {
  background-color: #e91e63;
}
.highlight-section {
  padding: 40px 20px;
  background-color: #fff0f5;
  text-align: center;
}

.highlight-section h2 {
  color: #f06292;
  margin-bottom: 30px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
}

.highlight-card {
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  max-width: 180px;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.highlight-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.highlight-card p {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}
.image-content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  background-color: #fff0f5;
  flex-wrap: wrap;
}

.image-content-section .image {
  flex: 1;
  max-width: 600px;
}

.image-content-section .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.image-content-section .content {
  flex: 1;
  text-align: justify;
  max-width: 600px;
}

.image-content-section .content h2 {
  color: #f06292;
  margin-bottom: 15px;
}
/*.content-image-section {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  gap: 2rem;*/
/*  padding: 2rem 20px;*/
/*}*/

/*.content-image-section .content {*/
/*  flex: 1;*/
/*  text-align: justify;*/
/*  max-width: 600px;*/
/*}*/

/*.content-image-section .content h2 {*/
/*  color: #f06292;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.content-image-section .image {*/
/*  flex: 1;*/
/*  max-width: 600px;*/
/*}*/

/*.content-image-section .image img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*  border-radius: 12px;*/
/*  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);*/
/*}*/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
  background-color: #fff0f5;
  align-items: flex-start;
  justify-content: center;
}

.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info h2 {
  color: #f06292;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info strong {
  color: #d81b60;
}

.contact-form-container {
  flex: 1 1 350px;
  max-width: 450px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  border: 2px solid #f06292;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d81b60;
  outline: none;
}

.contact-form button {
  background-color: #f06292;
  color: white;
  padding: 14px;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d81b60;
}

@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: #f06292;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    z-index: 9999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 5px 0;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  nav a:last-child {
    border-bottom: none;
  }

  .image-content-section {
    flex-direction: column;
  }

  .image-content-section .image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .image-content-section .content {
    text-align: justify;
  }

  .products {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
  }

  .category-grid {
    flex-direction: column;
  }

  .category-card {
    width: 100%;
  }
  .highlight-grid {
    flex-direction: column;
    gap: 15px;
  }

  .highlight-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .banner img {
    height: 30vh;
  }
}

.content-image-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 20px;
}

.content-image-section .content {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

.content-image-section .image {
  flex: 1;
  text-align: center;
}

.content-image-section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile View */
@media (max-width: 768px) {
  .content-image-section {
    flex-direction: column;
    padding: 1rem 15px;
  }

  .content-image-section .content {
    width: 100%;
    text-align: justify;
    margin-bottom: 1rem;
  }

  .content-image-section .image {
    width: 100%;
  }

  .content-image-section .image img {
    width: 100%;
    height: auto;
  }
}