/* ===========================
   LP ShopKit – Pickup Messages
   Frontend styling
   =========================== */

.lp-pickup-message {
  position: relative;
  display: block;
  padding: 12px 16px 12px 48px;
  margin-bottom: 16px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
  background: #fffbe5;
  color: #222222;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* 🚗 Decorative icon (using ::before) */
.lp-pickup-message::before {
  content: "🚗";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

/* Hover / subtle motion */
.lp-pickup-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
}

/* Mini-cart adaptation (WooCommerce sidebar/cart) */
.woocommerce-mini-cart .lp-pickup-message {
  font-size: 14px;
  padding: 10px 12px 10px 40px;
  margin-bottom: 10px;
}

/* RTL support */
[dir="rtl"] .lp-pickup-message {
  padding: 12px 48px 12px 16px;
}

[dir="rtl"] .lp-pickup-message::before {
  left: auto;
  right: 14px;
}

/* Animations for appearing */
@keyframes lpFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-pickup-message {
  animation: lpFadeIn 0.4s ease;
}
