:root {
  --primary: #6A4C93;
  --secondary: #8A5A44;
  --accent: #F7B32B;
  --light: #F8F4E3;
  --dark: #2D232E;
  --highlight: #A6D49F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  background-color: var(--light);
  color: var(--dark);
  padding-top: 80px;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--light);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--light);
  margin: 5px;
  transition: all 0.3s ease;
}

section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(rgba(45,35,46,0.7), rgba(45,35,46,0.7)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Kiwi_%28Actinidia_chinensis%29_1_Luc_Viatour.jpg/640px-Kiwi_%28Actinidia_chinensis%29_1_Luc_Viatour.jpg') no-repeat center center/cover;
  color: var(--light);
  text-align: center;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeIn 1.5s ease-in-out;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 2rem;
  animation: fadeIn 2s ease-in-out;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  animation: fadeIn 2.5s ease-in-out;
}

.btn:hover {
  background-color: var(--highlight);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about {
  background-color: var(--light);
  text-align: center;
}

.about h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
}

.products {
  background-color: var(--highlight);
}

.products h2 {
  color: var(--primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.prices {
  text-align: center;
}

.prices h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: var(--light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-table th, .price-table td {
  padding: 1rem;
  border: 1px solid var(--dark);
}

.price-table th {
  background-color: var(--primary);
  color: var(--light);
}

.price-table tr:nth-child(even) {
  background-color: rgba(106,76,147,0.1);
}

.price-table tr:hover {
  background-color: rgba(247,179,43,0.2);
}

.gallery {
  background-color: var(--light);
}

.gallery h2 {
  color: var(--primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(45,35,46,0.8);
  color: var(--light);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.feedback {
  background-color: var(--highlight);
}

.feedback h2 {
  color: var(--primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 2rem;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide-content {
  text-align: center;
}

.slide-content img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.slide-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-style: italic;
  margin-bottom: 1rem;
}

.slide-rating {
  color: var(--accent);
  font-size: 1.2rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.slider-dot.active {
  opacity: 1;
}

.faq {
  background-color: var(--light);
}

.faq h2 {
  color: var(--primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--primary);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  background-color: var(--primary);
  color: var(--light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1rem;
  background-color: var(--light);
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.contact {
  background-color: var(--highlight);
  text-align: center;
}

.contact h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.disclaimer {
  background-color: var(--dark);
  color: var(--light);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

footer {
  background-color: var(--primary);
  color: var(--light);
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--light);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  flex: 1;
  margin-right: 1rem;
}

.cookie-banner button {
  background-color: var(--accent);
  color: var(--dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cookie-banner button:hover {
  background-color: var(--highlight);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    clip-path: circle(0px at 90% -10%);
    transition: clip-path 0.5s ease-out;
    pointer-events: none;
  }

  nav ul.open {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .burger {
    display: block;
  }

  .burger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active div:nth-child(2) {
    opacity: 0;
  }

  .burger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 2rem 1rem;
  }
}

