:root {
  --primary-color: #2C5F2D;
  --secondary-color: #97BC62;
  --accent-color: #F5F5F5;
  --text-color: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --black: #000000;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --border-radius: 8px;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

img[src] {
  opacity: 1;
}

img:not([src]) {
  opacity: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: var(--spacing-sm) 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.language-toggle {
  display: flex;
  gap: var(--spacing-xs);
  font-size: 14px;
  font-weight: 500;
}

.language-toggle span {
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 4px;
  transition: var(--transition);
}

.language-toggle span:hover,
.language-toggle span.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.about-preview {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-content h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.about-image {
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media (max-width: 768px) {
  .about-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about-image {
    height: 250px;
  }
}

.products-section {
  background-color: var(--accent-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  align-items: stretch;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: var(--white);
}

.product-card h3 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.product-card p {
  font-size: 14px;
  color: var(--text-light);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
}

.product-card.has-image {
  padding: 0;
  overflow: hidden;
}

.product-card.has-image .product-content {
  padding: var(--spacing-md);
}

.product-card.has-image:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card.has-image h3 {
  color: var(--primary-color);
  font-weight: 600;
}

.product-card.has-image p {
  margin-top: var(--spacing-xs);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .product-image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }

  .product-card.has-image .product-content {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 180px;
  }

  .team-avatar-img {
    width: 120px;
    height: 120px;
  }
}

.why-us {
  background-color: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.why-us-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  color: var(--primary-color);
}

.why-us-item h3 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.why-us-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: var(--spacing-sm);
}

.cta-section p {
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: var(--spacing-md);
  color: var(--secondary-color);
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 42px;
  }

  .products-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow);
    gap: var(--spacing-sm);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 var(--spacing-xl);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    height: 300px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 120px 0 var(--spacing-xl);
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  font-size: 18px;
  opacity: 0.95;
}

.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.team-member {
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
}

.team-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  object-fit: cover;
  display: block;
}

.team-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.team-member h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.team-member .role {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-member p {
  font-size: 14px;
  color: var(--text-light);
}

.services-list {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.service-card ul {
  list-style: disc;
  padding-left: var(--spacing-md);
}

.service-card li {
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
  font-size: 14px;
}

.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.contact-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background-color: var(--accent-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
}

.contact-grid-single .contact-info {
  max-width: 100%;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-light);
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }

  .team-grid,
  .team-grid-3 {
    grid-template-columns: 1fr;
  }

  .team-avatar-img {
    width: 150px;
    height: 150px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Product Theme Pages Styles */

.products-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 120px 0 var(--spacing-xxl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.products-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.products-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.products-hero p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.products-section-theme {
  background-color: var(--white);
  padding: var(--spacing-xxl) 0;
}

.products-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.products-intro h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.products-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.6;
}

.product-category-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: var(--spacing-lg);
  border: 2px solid transparent;
}

.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.category-header {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.category-header img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-category-card:hover .category-header img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-md);
}

.category-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.category-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.category-toggle {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.category-toggle svg {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.product-category-card.expanded .category-toggle {
  transform: rotate(180deg);
}

.product-subitems {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background-color: var(--accent-color);
}

.product-category-card.expanded .product-subitems {
  max-height: 2000px;
  opacity: 1;
  padding: var(--spacing-lg);
}

.subitems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.subitem-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subitem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.subitem-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.subitem-card:hover .subitem-image {
  transform: scale(1.05);
}

.subitem-content {
  padding: var(--spacing-sm);
  text-align: center;
}

.subitem-content h4 {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 4px;
}

.subitem-content p {
  font-size: 12px;
  color: var(--text-light);
}

.placeholder-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-color), #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
}

.placeholder-image::before {
  content: 'Image Coming Soon';
  padding: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
}

@media (max-width: 1199px) {
  .products-hero h1 {
    font-size: 42px;
  }

  .subitems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .subitems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-header img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 100px 0 var(--spacing-xl);
  }

  .products-hero h1 {
    font-size: 32px;
  }

  .products-hero p {
    font-size: 18px;
  }

  .products-intro h2 {
    font-size: 28px;
  }

  .category-header img {
    height: 180px;
  }

  .subitems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-overlay h3 {
    font-size: 20px;
  }

  .category-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .subitems-grid {
    grid-template-columns: 1fr;
  }

  .category-header img {
    height: 150px;
  }

  .subitem-image,
  .placeholder-image {
    height: 120px;
  }
}

.products-nav-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.products-nav-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.products-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.products-nav-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products-nav-card:hover img {
  transform: scale(1.05);
}

.products-nav-card-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.products-nav-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.products-nav-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-nav-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .products-nav-card img {
    height: 180px;
  }
}

.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-hover);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.navbar-dropdown:hover .navbar-dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown-content a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-color);
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.navbar-dropdown-content a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.navbar-dropdown-content a span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .navbar-dropdown-content {
    position: static;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--accent-color);
    border-radius: 0;
  }

  .navbar-dropdown.active .navbar-dropdown-content {
    display: block;
  }

  .navbar-dropdown-content a {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-left: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar-dropdown-content a:hover {
    border-left: none;
    background-color: var(--white);
  }
}
