@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}


.navbar {
  background-color: #f5e3d0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-links a {
  margin: 0px 20px;
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 500px;
  font-size: 16px;
}

.nav-icons {
  display: flex;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  background-color: #b30000;
  border-radius: 50%;
}


.shop-section {
  width: 100%;
  padding: 40px 30px;
  background-color: white;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.shop-logo {
  font-size: 28px;
  font-weight: bold;
}

.shop-all-btn {
  padding: 8px 15px;
  background-color: #0f3e19;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

Hover effect
.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-name {
  margin-top: 10px;
  font-size: 19px;
  padding-top: 5px;
}

.footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


@media (max-width: 768px) {
 .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 10px;
    text-align: center;
  }

  .nav-icons {
    display: none;
  }
	
.logo img {
  margin-bottom: 10px;
}
	
	.shop-section {
    padding: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-item {
    width: 100%; 
    max-width: 300px;
    margin: 0 auto;
  }

  .product-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-info {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
  }

  .shop-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px;
    background-color: #004d00; 
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
  }

  
  .product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}