/* extracted from inline <style> in index.php */
.single-category a {
  color: #333;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.single-category.category a i { color: #FF6600; }
.single-category.brand a i { color: #0066FF; }
.single-category.category.active a { background-color: #FFF4E6; color: #FF6600; }
.single-category.brand.active a { background-color: #E6F0FF; color: #0066FF; }
.single-category a:hover { background-color: #f0f0f0; }
.number {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 20px !important;
  height: 20px !important;
  padding: 0 5px;
  font-size: 12px !important;
  border-radius: 50% !important;
  background: #c37b3b !important;
  color: white !important;
  text-align: center;
  line-height: 1;
}
.customer-info-card { background: #f8f9fa; padding: 25px; border-radius: 10px; border: 1px solid #e9ecef; }
.info-section { margin-bottom: 25px; }
.info-section h5 { color: #2C3C28; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #dee2e6; }
.info-row { display: flex; align-items: flex-start; margin-bottom: 12px; padding: 8px 0; }
.info-row i { color: #629D23; margin-right: 12px; margin-top: 2px; width: 16px; }
.info-row strong { color: #2C3C28; display: block; font-size: 14px; }
.info-row span { color: #666; display: block; font-size: 14px; }
.success-card { background: #fff; padding: 50px 30px; border-radius: 15px; box-shadow: 0 5px 30px rgba(0,0,0,.1); border: 1px solid #e9ecef; }
.success-icon { margin-bottom: 30px; }
.success-title { color: #28a745; margin-bottom: 15px; font-weight: 700; }
.success-message { font-size: 18px; color: #666; margin-bottom: 30px; }
.order-details { background: #f8f9fa; padding: 25px; border-radius: 10px; margin-bottom: 30px; text-align: left; }
.order-details>div { margin-bottom: 10px; font-size: 16px; }
.status-pending { color: #ffc107; font-weight: 600; }
.success-actions { display: flex; gap: 15px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; }
.success-note { color: #666; font-style: italic; }
.product-thumb { position: relative; overflow: hidden; cursor: zoom-in; width: 100%; height: 400px; }
.zoom-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: white; background-size: cover; background-repeat: no-repeat; background-position: center; z-index: 1; display: none; background-size: 150% 150%; }
.product-thumb img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity 0.3s ease; }
.product-thumb:hover .zoom-background { display: block; }
.product-thumb:hover img { opacity: 0; }
.thumb-wrapper:not(.hide) { display: block !important; }
.thumb-wrapper.hide { display: none !important; }

/* Notifications animations and styles (moved from inline) */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
.custom-alert { box-shadow: 0 4px 12px rgba(0,0,0,.15); border-radius: 8px; }
