:root {
  --primary-color: #2d5016;
  --secondary-color: #4a7c23;
  --accent-color: #6ba82f;
  --light-green: #a3d063;
  --background-dark: #1a2e0a;
  --text-light: #f0f4e8;
  --text-gray: #b8c5a8;
  --white: #ffffff;
  --border-color: #3a5527;
  --card-bg: #243316;
  --hover-color: #5d8f2a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.logo a:hover {
  color: var(--light-green);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 60px;
}
.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--light-green);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: linear-gradient(
    135deg,
    var(--background-dark) 0%,
    var(--primary-color) 100%
  );
}
.hero-content {
  flex: 1;
  max-width: 600px;
  animation: slideInLeft 1s ease-out;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--light-green), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 168, 47, 0.3);
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 168, 47, 0.4);
}
.hero-image {
  flex: 1;
  text-align: center;
  animation: slideInRight 1s ease-out;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--light-green);
}
.features,
.benefits {
  padding: 80px 0;
}
.features {
  background-color: var(--card-bg);
}
.features-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(107, 168, 47, 0.2);
}
.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light-green);
}
.feature-card p {
  color: var(--text-gray);
  line-height: 1.6;
}
.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.benefit-item {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.benefit-item.animate {
  opacity: 1;
  transform: translateY(0);
}
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light-green);
}
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 120px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
}
.shop-section {
  padding: 60px 0;
}
.filters {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}
.filters h3 {
  color: var(--light-green);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.filter-group {
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.filter-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}
.filter-group select {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: inherit;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 168, 47, 0.15);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-info {
  padding: 1.5rem;
}
.product-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-green);
}
.product-info p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.ingredients {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.ingredients strong {
  color: var(--text-light);
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.badge {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-green);
  margin-bottom: 1rem;
}
.add-to-cart {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  padding: 12px 50px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}
.add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 168, 47, 0.3);
}
.gallery-section {
  padding: 60px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45, 80, 22, 0.9));
  color: var(--white);
  padding: 2rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.testimonials-section {
  padding: 60px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.testimonial-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(107, 168, 47, 0.1);
}
.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.author strong {
  color: var(--light-green);
  display: block;
}
.author span {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.testimonial-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-form h3 {
  color: var(--light-green);
  margin-bottom: 1.5rem;
  text-align: center;
}
.contacts-section {
  padding: 60px 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.contact-info {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}
.contact-info h3 {
  color: var(--light-green);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}
.contact-item strong {
  color: var(--light-green);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-item p {
  color: var(--text-gray);
  margin: 0;
}
.contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}
.contact-form h3 {
  color: var(--light-green);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.map-section {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
}
.map-section h3 {
  color: var(--light-green);
  margin-bottom: 1.5rem;
}
.map-placeholder {
  background-color: var(--primary-color);
  padding: 3rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.map-placeholder p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}
.map-info {
  margin-top: 2rem;
  text-align: left;
}
.map-info strong {
  color: var(--light-green);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 0.8rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(107, 168, 47, 0.1);
}
.submit-btn {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(107, 168, 47, 0.3);
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
.modal-content {
  background-color: var(--card-bg);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border: 1px solid var(--border-color);
  animation: modalSlideIn 0.3s ease-out;
}
.close {
  color: var(--text-gray);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close:hover {
  color: var(--light-green);
}
.modal-content h3 {
  color: var(--light-green);
  margin-bottom: 1rem;
}
.modal-content p {
  color: var(--text-gray);
}
.legal-content {
  padding: 60px 0;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}
.content-wrapper h2 {
  color: var(--light-green);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
}
.content-wrapper h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}
.content-wrapper p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.content-wrapper ul {
  color: var(--text-gray);
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.content-wrapper li {
  margin-bottom: 0.5rem;
}
.content-wrapper a {
  color: var(--accent-color);
  text-decoration: none;
}
.content-wrapper a:hover {
  text-decoration: underline;
}
.footer {
  background-color: var(--primary-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: var(--light-green);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer-section p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--light-green);
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-in {
  animation: fadeIn 1s ease-out 0.5s both;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .features-grid,
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    gap: 32px;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 1rem 0;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
  }
  .hero-content {
    margin-bottom: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .features-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .filter-group {
    display: block;
    margin-right: 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .content-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }
  .content-wrapper {
    padding: 1.5rem;
  }
}
.nav-menu a,
.cta-button,
.add-to-cart,
.submit-btn {
  position: relative;
  overflow: hidden;
}
.nav-menu a::before,
.cta-button::before,
.add-to-cart::before,
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}
.nav-menu a:hover::before,
.cta-button:hover::before,
.add-to-cart:hover::before,
.submit-btn:hover::before {
  left: 100%;
}
html {
  scroll-behavior: smooth;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
