@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px auto;
  transition: 0.3s;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav a:hover {
  color: #2c5530;
  background-color: #f0f0f0;
}

.header__icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header__icons a {
  display: inline-flex;
  transition: opacity 0.3s ease;
  padding: 0.5rem;
}

.header__icons a:hover {
  opacity: 0.7;
}

.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #2c5530;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2c5530;
}

.hero-button:hover {
  background: transparent;
  color: #2c5530;
  transform: translateY(-2px);
}

.hero-image {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-card img {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.new-products,
.popular-products {
  padding: 5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-bottom: 1.5rem;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: #2c5530;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.25rem;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-category {
  color: #888;
  font-size: 0.9rem;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-price {
  color: #2c5530;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0 1.5rem;
}

.product-card--large {
  grid-column: span 2;
}

.product-card--large img {
  height: 350px;
}

.masonry-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
  margin-top: 2rem;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  break-inside: avoid;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #2c5530;
}

.masonry-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #2c5530;
}

.masonry-item p {
  color: #666;
  line-height: 1.6;
}

.masonry-item--short {
  min-height: 150px;
}

.masonry-item--tall {
  min-height: 250px;
}

.masonry-item--very-tall {
  min-height: 350px;
}

.newsletter {
  padding: 5rem 0;
  background: #2c5530;
  color: white;
  text-align: center;
}

.newsletter .section-title {
  color: white;
}

.newsletter-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.email-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: white;
}

.email-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.subscribe-button {
  padding: 0.875rem 2rem;
  background: white;
  color: #2c5530;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.about {
  padding: 5rem 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1a1a1a;
}

.about-content p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #2c5530;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2c5530;
}

.about-button:hover {
  background: transparent;
  color: #2c5530;
  transform: translateY(-2px);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-column p {
  color: #aaa;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}

.social-icons a:hover {
  opacity: 0.8;
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    width: 40%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about .container {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .header .container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .nav {
    order: 3;
    width: 100%;
  }
  
  .nav__list {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .hero {
    text-align: center;
    padding: 3rem 0;
  }
  
  .hero .container {
    max-width: 100%;
  }
  
  .hero-image {
    position: static;
    transform: none;
    width: 80%;
    max-width: 500px;
    margin: 2rem auto 0;
    display: block;
  }
  
  .hero-title,
  .hero-text {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-card--large {
    grid-column: span 2;
  }
  
  .masonry-grid {
    column-count: 2;
  }
  
  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .burger-menu {
    display: block;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    margin-top: 1rem;
  }
  
  .nav__list.active {
    display: flex;
  }
  
  .nav__list li {
    width: 100%;
    text-align: center;
  }
  
  .nav a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .nav__list li:last-child a {
    border-bottom: none;
  }
  
  .header__icons {
    display: none;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-image {
    width: 90%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card--large {
    grid-column: span 1;
  }
  
  .masonry-grid {
    column-count: 1;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .features,
  .new-products,
  .popular-products,
  .masonry-section,
  .newsletter,
  .about {
    padding: 3rem 0;
  }
  
  .feature-card,
  .product-card,
  .masonry-item {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 399px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-button,
  .about-button,
  .subscribe-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .feature-card h3,
  .product-card h3,
  .masonry-item h3 {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 15px;
  }
}