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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header & Navigation */
header {
  background-color: #fff;
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d5016;
}

.logo-image img {
  height: 40px;
  width: auto;
  max-width: 120px;
  min-width: 40px;
  object-fit: contain;
  display: block;
}

.logo-description img {
  height: 80px;
  width: auto;
  max-width: 120px;
  min-width: 40px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #5a8c3a;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.search-icon,
.cart-icon,
.lang-icon {
  cursor: pointer;
  font-size: 1.2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d5016;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("images/cow.png") center/cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
  color: white;
}

.hero-content {
  max-width: 600px;
}

.hero-content a {
  margin-top: 1.5rem;
  font-weight: bold;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #5a8c3a;
  color: white;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(90, 140, 58, 0.3);
}

.btn-primary:hover {
  background-color: #4a7030;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 140, 58, 0.4);
}

/* Cards Section */
.cards-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  max-width: 100%;
  margin: 0 auto;
}

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

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #2d5016;
}

.card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.card a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #5a8c3a;
}

/* Company Description Section */
.description-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.description-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #2d5016;
  line-height: 1.3;
}

.description-content p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

.description-image {
  width: 100%;
  height: 300px;
  background-color: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.description-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Features Section */
.custom-features {
  background:
    linear-gradient(rgba(40, 40, 40, 0.7), rgba(40, 40, 40, 0.7)),
    url("images/cow.png") center/cover no-repeat;
  color: #fff;
  padding: 4rem 2rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.features-bg {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.features-content {
  z-index: 2;
}
.custom-features h2 {
  text-align: left;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  line-height: 1.4;
  width: 100%;
}
.features-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.2rem;
  max-width: 700px;
  background: transparent;
  position: relative;
  z-index: 2;
  margin-top: 0;
}
.feature-icon-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: #fff;
  min-width: 0;
  justify-content: flex-start;
}
.feature-svg {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Info Section */
.info-section {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-left: 6rem;
}

.info-item h3 {
  margin-bottom: 1rem;
  color: #2d5016;
}

.info-item ul {
  list-style: none;
}

.info-item li {
  margin-bottom: 0.8rem;
  color: #555;
}

.info-item a {
  color: #5a8c3a;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-spacer {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-spacer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 0.3s ease,
      visibility 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-spacer.active {
    max-height: 300px;
    visibility: visible;
  }

  nav ul {
    gap: 0;
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav a {
    font-size: 1rem;
  }

  nav {
    position: relative;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .description-section {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 300px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .custom-features h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .features-icons-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.5rem 1.5rem;
  }

  .custom-features {
    padding: 2.5rem 1.5rem;
  }

  .features-bg {
    flex-direction: column;
  }

  .features-content {
    flex: 1;
    width: 100%;
  }

  .info-grid {
    margin-left: 1rem;
  }
}

/* Shop/Brands Styles */
.brands-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-image {
  height: 150px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.brand-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-content {
  padding: 1.5rem;
}

.brand-content h3 {
  font-size: 1.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
}
