*{
  margin: 0;
  padding: 0;
  box-sizing: border-box ;
}
.header {
  background: skyblue;
  display: flex;
  justify-content: space-around; /* یا space-evenly */
  align-items: center;
}
.notif{
  width: 70%;
  border-left: 1px solid red;
  border-bottom: 1px solid red;
  border-bottom-left-radius: 6px;
}
.main {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-around;
}

.product-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
  text-align: center;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.price {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
  color: #d35400;
}

.details-btn {
  background: #f39c12;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.details-btn:hover {
  background: #e67e22;
}
.honey-mobile-footer {
    background-color: #f8e8c8; /* رنگ عسلی روشن */
    color: #5c3a21; /* رنگ قهوه‌ای تیره */
    padding: 20px 10px;
    text-align: center;
    border-top: 2px solid #d4a017; /* نوار طلایی */
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a  {
    color: #8b5a2b; /* رنگ قهوه‌ای متوسط */
    font-size: 24px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #d4a017; /* رنگ طلایی هنگام هاور */
}