/* Index/Price List Page Styles */

.title {
  font-size: 48px;
  margin-bottom: 5px;
  color: #2c3e50;
}

.title-arabic {
  font-size: 28px;
  color: #3498db;
  margin-bottom: 10px;
}

.date {
  font-size: 18px;
  color: #888;
}

/* Item layout for price list */
.item-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.item-name::before {
  content: "•";
  color: #3498db;
  font-size: 20px;
}

/* Item unit display */
.item-unit {
  font-size: 12px;
  color: #999;
  font-weight: normal;
}

.img-icon {
  width: 24px;
  height: 24px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s;
  border: 1px solid #3498db;
  color: #3498db;
}

.img-icon:hover {
  background: rgba(52, 152, 219, 0.2);
  transform: scale(1.1);
}

.item-price {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2c3e50;
  font-weight: 600;
}

/* Contact section */
.contact-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3498db;
  font-size: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

/* Footer */
.footer-note {
  text-align: center;
  margin-top: 20px;
  color: #3498db;
  font-size: 14px;
  direction: rtl;
}

/* Copy store button */
.copy-store-btn {
  background: rgba(52, 152, 219, 0.1);
  border: none;
  border-radius: 5px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  color: #3498db;
}

.copy-store-btn:hover {
  background: rgba(52, 152, 219, 0.2);
}

/* Admin link */
.admin-link {
  position: fixed;
  top: 20px;
  left: 20px;
  background: white;
  color: #888;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-link:hover {
  background: #f5f5f5;
  color: #333;
}

/* Order button */
.order-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #27ae60;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-btn:hover {
  background: #219a52;
  transform: translateX(-50%) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }
}
