* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Dreaming Outloud Pro', cursive, sans-serif;
  color: #2e7d32;
  background: url('./img/bg4.jpeg') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  font-size: 24px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #daf00b;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
}

nav a {
  color: #019501;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 10px;
}

.content {
  padding: 20px;
}

.product-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product-container img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.description {
  flex: 1;
  text-align: left;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 5px;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
}

.original-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
  font-size: 1.5rem;
}

.sale-price {
  color: red;
  font-weight: bold;
  font-size: 2rem;
  animation: pulse 0.5s ease infinite alternate;
}

.features-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  color: #2e7d32;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.kit-list {
  text-align: left;
  margin: 0 auto 20px auto;
  padding-left: 20px;
  max-width: 500px;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
}

.feature-item img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.feature-description {
  flex: 1;
  padding-left: 20px;
  text-align: left;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: white;
  color: #2e7d32;
  margin-top: 30px;
  font-size: 20px;
}

.social-media {
  display: flex;
  gap: 10px;
}

.social-media a {
  color: #2e7d32;
  font-size: 24px;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 1000px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  gap: 30px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section img,
.section iframe {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.section .text {
  flex: 1;
  text-align: left;
}

.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.product {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 250px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
}

.product h3 {
  font-size: 24px;
  color: #2e7d32;
}

.product p {
  font-size: 18px;
  color: #333;
}

.product button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: gold;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.product button:hover {
  background: orange;
}

.scrolling-section {
  display: flex;
  overflow-x: auto;
  padding: 30px;
  background: rgba(239, 228, 228, 0.7);
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 510px;
}

.scrolling-section::-webkit-scrollbar {
  display: none;
}

.scrolling-section .image {
  flex: 0 0 auto;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.scrolling-section img {
  width: 500px;
  height: 400px;
  border-radius: 10px;
}

#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#chatbot-button {
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
}

#chatbot-window {
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
}

#chatbot-header {
  padding: 10px;
  background: #2e7d32;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-body {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
}

#chatbot-input-area {
  display: flex;
  padding: 10px;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#chatbot-input-area button {
  margin-left: 10px;
  padding: 10px 15px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 5px;
}

.message.user {
  background: #e1ffc7;
  text-align: right;
}

.message.bot {
  background: #f1f1f1;
  text-align: left;
}

.video-container {
  width: 100%;
  max-width: 900px;
  height: 500px;
  background-color: white;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.product-details {
  text-align: left;
  margin: 40px auto;
  padding: 20px;
  max-width: 600px;
  color: #2e7d32;
  font-family: 'Dreaming Outloud Pro', cursive;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  line-height: 1.8;
}
.product-details h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  color: #2e7d32;
}
.product-details .price {
  font-size: 28px;
  font-weight: bold;
  color: red;
}
.product-details .original-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}


@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 1rem;
    margin: 5px 10px;
  }

  .section {
    flex-direction: column !important;
    text-align: center;
  }

  .section .text {
    text-align: center;
  }

  .scrolling-section {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    flex-direction: row;
    align-items: flex-start;
  }

  .scrolling-section img {
    width: 90vw;
    height: 250px;
    object-fit: cover;
  }

  .products {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .description {
    text-align: left;
  }

  .product {
    max-width: 90vw;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  #chatbot-window {
    width: 90vw;
    right: 5vw;
  }

  #chatbot-input-area {
    flex-direction: column;
    gap: 5px;
  }

  #chatbot-input-area button {
    margin-left: 0;
  }
}


  