      /* === RESET & BASE === */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Arial", sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        overflow-x: hidden;
        padding-top: 80px;
        background: #f8f9fa;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
      }

      /* === UTILITIES === */
      .btn {
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-primary {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
      }

      .btn-outline {
        background: transparent;
        color: #3498db;
        border: 2px solid #3498db;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-outline:hover {
        background: #3498db;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
      }

      .section-title {
        text-align: center;
        margin-bottom: 3rem;
      }

      .section-title h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      .section-title p {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 600px;
        margin: 0 auto;
      }

      /* === HEADER & NAVIGATION (UNCHANGED) === */
      .header {
        background: linear-gradient(135deg, #2c3e50, #3498db);
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .logo-img {
        width: 40px;
        height: 40px;
        object-fit: contain;
      }

      .logo-text {
        font-size: 1.2em;
        font-weight: bold;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-menu a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .nav-menu a:hover,
      .nav-menu a.active {
        color: #f39c12;
        transform: translateY(-2px);
      }

      .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }

      .menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
      }

      /* === PAGE HEADER === */
      .page-header {
        background: linear-gradient(135deg, #2c3e50, #5b89a7);
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("../images/desa.jpg") center/cover;
        opacity: 0.2;
        z-index: 0;
      }

      .page-header-content {
        position: relative;
        z-index: 1;
      }

      .page-header-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 700;
      }

      .page-header-content p {
        font-size: 1.2rem;
        opacity: 0.9;
      }

      /* === CATEGORIES SECTION === */
      .categories-section {
        background: white;
        padding: 3rem 0;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .categories-container {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .category-btn {
        background: white;
        color: #7f8c8d;
        border: 2px solid #e9ecef;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .category-btn:hover,
      .category-btn.active {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border-color: #3498db;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
      }

      /* === UMKM OVERVIEW SECTION === */
      .umkm-overview-section {
        padding: 4rem 0;
        background: white;
      }

      .umkm-categories {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 2rem;
      }

      .umkm-category {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        position: relative;
        overflow: hidden;
      }

      .umkm-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #3498db, #2980b9);
      }

      .umkm-category:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
      }

      .umkm-category h4 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: 1.3;
        font-weight: 600;
      }

      .umkm-category i {
        color: #3498db;
        font-size: 1.5rem;
        flex-shrink: 0;
      }

      .umkm-category p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #7f8c8d;
        margin-bottom: 1.5rem;
      }

      .umkm-list {
        list-style: none;
        margin-top: 1rem;
      }

      .umkm-list li {
        padding: 0.6rem 0;
        border-bottom: 1px solid #f1f2f6;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #2c3e50;
        font-size: 0.9rem;
        line-height: 1.4;
        transition: all 0.2s ease;
      }

      .umkm-list li:last-child {
        border-bottom: none;
      }

      .umkm-list li:hover {
        color: #3498db;
        transform: translateX(5px);
      }

      .umkm-list i {
        color: #3498db;
        font-size: 0.8rem;
        flex-shrink: 0;
      }
/* === PRODUCTS SECTION === */
      /* === PRODUCTS SECTION === */
.products-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e9ecef;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.product-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  color: #3498db;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.product-content h3 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-content p {
  color: #7f8c8d;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.product-price {
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.2rem;
}

.product-stock {
  color: #3498db;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.product-seller {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.seller-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.seller-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #2c3e50;
  font-weight: 600;
}

.seller-location {
  font-size: 0.75rem;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
}

.whatsapp-btn {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-section {
    padding: 2rem 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .product-card {
    border-radius: 12px;
  }
  
  .product-content {
    padding: 1.2rem;
  }
  
  .product-image {
    height: 180px;
  }
  
  .whatsapp-btn {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-content {
    padding: 1rem;
  }
  
  .product-info,
  .product-seller {
    padding: 0.6rem;
  }
}
      /* === FOOTER (UNCHANGED) === */
      .footer {
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        padding: 2.5rem 0 1rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-section h3 {
        color: #3498db;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-bottom: 2px solid #3498db;
        padding-bottom: 0.3rem;
        display: inline-block;
      }

      .footer-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .footer-info p {
        color: #bdc3c7;
        font-size: 0.9rem;
        line-height: 1.5;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
      }

      .footer-info i {
        color: #3498db;
        width: 16px;
        text-align: center;
        font-size: 0.9rem;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 3px 0;
        font-size: 0.9rem;
      }

      .footer-links a:hover {
        color: #3498db;
        padding-left: 8px;
      }

      .footer-links i {
        color: #3498db;
        width: 16px;
        text-align: center;
        font-size: 0.85rem;
      }

      .footer-hours {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .hours-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85rem;
      }

      .hours-item:last-child {
        border-bottom: none;
      }

      .hours-label {
        color: #3498db;
        font-weight: 600;
      }

      .hours-time {
        color: #bdc3c7;
      }

      .social-links {
        display: flex;
        gap: 0.8rem;
        margin-top: 1rem;
        flex-wrap: wrap;
      }

      .social-links a {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
      }

      .social-links a:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 2px solid #34495e;
        color: #bdc3c7;
      }

      .footer-bottom p {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
      }

      /* === RESPONSIVE === */
      @media (max-width: 768px) {
        .container {
          padding: 0 1rem;
        }

        .menu-toggle {
          display: flex;
        }

        .nav-menu {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: #2c3e50;
          flex-direction: column;
          padding: 1rem;
          gap: 1rem;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-menu.active {
          display: flex;
        }

        .page-header-content h1 {
          font-size: 2.5rem;
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .products-grid {
          grid-template-columns: 1fr;
        }

        .categories-container {
          flex-direction: column;
          align-items: center;
        }

        .umkm-categories {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .page-header-content h1 {
          font-size: 2rem;
        }

        .product-content {
          padding: 1.5rem;
        }

        .logo-img {
          width: 32px;
          height: 32px;
        }

        .logo-text {
          font-size: 1em;
        }
      }