@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --es-orange: #e85d04;
  --es-orange-dark: #c44900;
  --es-gold: #ffb703;
  --es-bg: #fff8f0;
  --es-text: #1a1a2e;
  --es-muted: #5c5c6d;
  --es-success: #027d15;
  --es-danger: #c1121f;
  --es-card-shadow: 0 4px 14px rgba(26, 26, 46, 0.08);
  --es-radius: 12px;
  --es-sticky-h: 72px;
  --es-drawer-w: min(420px, 100vw);
  --es-z-sticky: 100040;
  --es-z-drawer: 100060;
  --es-z-toast: 100070;
  --es-z-image: 100080;
}

.order-shop-page {
  font-family: 'Poppins', sans-serif;
  background: var(--es-bg);
  color: var(--es-text);
  padding-bottom: calc(var(--es-sticky-h) + 24px);
}

/* Status banner */
.order-status-banner {
  background: linear-gradient(90deg, var(--es-orange-dark), var(--es-orange));
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.order-status-banner.is-open {
  background: linear-gradient(90deg, #2d6a4f, #40916c);
}

.order-status-banner strong {
  font-weight: 700;
}

/* Hero / banner slider */
.site-banner-area {
  width: 100%;
}

.site-banner-slider-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.site-banner-slider.slick-slider {
  margin-bottom: 0;
}

.site-banner-slider .site-banner-slide {
  outline: none;
}

.site-banner-slider .site-hero-banner,
.site-hero-banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.site-banner-slider-wrap .slick-dots {
  bottom: 12px;
  z-index: 3;
}

.site-banner-slider-wrap .slick-dots li button:before {
  color: #fff;
  opacity: 0.55;
  font-size: 10px;
}

.site-banner-slider-wrap .slick-dots li.slick-active button:before {
  color: var(--es-gold);
  opacity: 1;
}

.site-banner-slider-wrap .slick-prev,
.site-banner-slider-wrap .slick-next {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.62);
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.site-banner-slider-wrap .slick-prev:before,
.site-banner-slider-wrap .slick-next:before {
  display: none;
  content: none;
}

.site-banner-slider-wrap .slick-prev:hover,
.site-banner-slider-wrap .slick-next:hover,
.site-banner-slider-wrap .slick-prev:focus,
.site-banner-slider-wrap .slick-next:focus {
  background: var(--es-orange);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.45);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.site-banner-slider-wrap .slick-prev i,
.site-banner-slider-wrap .slick-next i {
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
}

.site-banner-slider-wrap .slick-prev {
  left: 16px;
}

.site-banner-slider-wrap .slick-next {
  right: 16px;
}

@media (max-width: 576px) {
  .site-banner-slider-wrap .slick-prev,
  .site-banner-slider-wrap .slick-next {
    width: 38px;
    height: 38px;
  }

  .site-banner-slider-wrap .slick-prev {
    left: 8px;
  }

  .site-banner-slider-wrap .slick-next {
    right: 8px;
  }

  .site-banner-slider-wrap .slick-prev i,
  .site-banner-slider-wrap .slick-next i {
    font-size: 13px;
  }
}

.order-hero img {
  width: 100%;
  object-fit: cover;
  border-radius: 0 0 var(--es-radius) var(--es-radius);
}

.thank-you-hero {
  margin-bottom: 20px;
}

.thank-you-page {
  padding-bottom: 40px;
}

/* Toolbar: search + filters */
.order-toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--es-bg);
  padding: 12px 0 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.order-search-wrap {
  position: relative;
  margin-bottom: 10px;
}

.order-search-wrap input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.95rem;
  background: #fff;
}

.order-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--es-muted);
}

.order-filter-row {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.order-filter-row::-webkit-scrollbar {
  display: thin !important;
}

.category-chip {
  flex: 0 0 auto;
  border: 1px solid var(--es-orange);
  background: #fff;
  color: var(--es-orange);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.category-chip.active,
.category-chip:hover {
  background: var(--es-orange);
  color: #fff;
}

/* Category section */
.category-section {
  margin: 20px 0 8px;
}

.category-section.is-section-hidden {
  display: none !important;
}

.category-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--es-orange-dark);
  margin: 0 0 12px;
  padding-left: 4px;
  border-left: 4px solid var(--es-gold);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: var(--es-radius);
  box-shadow: var(--es-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow 0.15s ease;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.12);
}

.product-card.is-hidden {
  display: none !important;
}

.product-card.is-out-of-stock {
  opacity: 0.72;
}

.product-card-image {
  position: relative;
  flex: 0 0 118px;
  width: 118px;
  min-height: 118px;
  background: #f5f5f5;
  cursor: pointer;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.stock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--es-danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}

.product-card-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
  color: var(--es-text);
}

.product-card-tamil {
  font-size: 0.82rem;
  color: var(--es-muted);
  margin-bottom: 4px;
}

.product-card-meta {
  font-size: 0.78rem;
  color: var(--es-muted);
  margin-bottom: 8px;
}

.product-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.price-mrp {
  text-decoration: line-through;
  color: #888;
  font-size: 0.85rem;
  font-family: Arial, Helvetica, sans-serif;
}

.price-offer {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--es-success);
  font-family: Arial, Helvetica, sans-serif;
}

.price-discount-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: #e8f5e9;
  color: var(--es-success);
  padding: 2px 8px;
  border-radius: 999px;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.line-total {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--es-orange-dark);
  min-width: 60px;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
}

/* Quantity control */
.quantity-control {
  display: inline-flex;
  align-items: center;
  background: var(--es-orange);
  border-radius: 999px;
  overflow: hidden;
}

.qty-button {
  border: none;
  background: transparent;
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity-control input[type="number"] {
  width: 44px !important;
  text-align: center;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  -moz-appearance: textfield;
  padding: 0;
  margin: 0;
}

.quantity-control input[type="number"]::-webkit-inner-spin-button,
.quantity-control input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Min order progress */
.min-order-progress {
  margin: 8px 0 0;
}

.min-order-progress-label {
  font-size: 0.78rem;
  color: var(--es-muted);
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
}

.min-order-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.min-order-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--es-gold), var(--es-orange));
  border-radius: 999px;
  width: 0%;
  transition: width 0.2s ease;
}

/* Sticky cart bar */
.cart-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--es-z-sticky);
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  min-height: var(--es-sticky-h);
}

.cart-sticky-bar.is-visible {
  display: flex;
}

.cart-sticky-info {
  flex: 1;
  min-width: 0;
}

.cart-sticky-total {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--es-orange-dark);
}

.cart-sticky-meta {
  font-size: 0.78rem;
  color: var(--es-muted);
}

.btn-cart-action {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-view-cart {
  background: #fff;
  color: var(--es-orange);
  border: 2px solid var(--es-orange);
}

.btn-checkout-nav {
  background: var(--es-orange);
  color: #fff;
}

.btn-checkout-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cart drawer — full-screen overlay above theme header (z-index 999+) */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: var(--es-z-drawer);
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--es-drawer-w);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.cart-drawer-overlay.is-open .cart-drawer {
  transform: translateX(0);
}

body.cart-drawer-open {
  overflow: hidden;
  touch-action: none;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
  background: #fff;
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cart-drawer-close {
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--es-muted);
  line-height: 1;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

.cart-drawer-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
}

.cart-drawer-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cart-drawer-item-name {
  font-weight: 600;
  line-height: 1.35;
  color: var(--es-text);
  flex: 1;
  min-width: 0;
}

.cart-drawer-remove {
  border: none;
  background: #fff0f0;
  color: var(--es-danger);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.cart-drawer-remove:hover {
  background: var(--es-danger);
  color: #fff;
}

.cart-drawer-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer-qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--es-orange);
  border-radius: 999px;
  overflow: hidden;
}

.cart-drawer-qty-control button {
  border: none;
  background: transparent;
  color: #fff;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.cart-drawer-qty-control button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-drawer-qty-input {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 32px !important;
  text-align: center;
  border: none !important;
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: 0 !important;
  -moz-appearance: textfield;
}

.cart-drawer-qty-input::-webkit-inner-spin-button,
.cart-drawer-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-drawer-item-meta {
  display: none;
}

.cart-drawer-item-qty {
  display: none;
}

.cart-drawer-item-price {
  font-weight: 700;
  color: var(--es-orange-dark);
  white-space: nowrap;
}

.cart-drawer-empty {
  text-align: center;
  color: var(--es-muted);
  padding: 40px 16px;
}

.cart-drawer-footer {
  padding: 16px 18px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
  background: #fafafa;
  flex-shrink: 0;
}

.cart-drawer-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Checkout steps */
.checkout-steps {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.checkout-step-pill {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: var(--es-radius);
  font-size: 0.8rem;
  font-weight: 600;
  background: #eee;
  color: var(--es-muted);
}

.checkout-step-pill.active {
  background: var(--es-orange);
  color: #fff;
}

.checkout-panel {
  background: #fff;
  border-radius: var(--es-radius);
  box-shadow: var(--es-card-shadow);
  padding: 20px;
  margin-top: 16px;
}

.checkout-panel.hidden,
#shop-step.hidden {
  display: none;
}

.checkout-form .form-group {
  margin-bottom: 16px;
}

.checkout-form label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: block;
}

.checkout-form .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.checkout-form .form-control:focus {
  outline: none;
  border-color: var(--es-orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}

.btn-submit-order {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--es-orange-dark), var(--es-orange));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-submit-order:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-back-shop {
  background: none;
  border: none;
  color: var(--es-orange);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 8px;
}

.bank-details-panel {
  margin-top: 20px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: var(--es-radius);
  font-size: 0.88rem;
}

.bank-details-panel h4 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.terms-panel {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--es-muted);
}

.terms-panel ul {
  padding-left: 20px;
}

/* Toast */
.order-toast {
  position: fixed;
  bottom: calc(var(--es-sticky-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a2e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  z-index: var(--es-z-toast);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  max-width: 90%;
  text-align: center;
  pointer-events: none;
}

.order-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Image popup */
.order-image-popup.popup,
#imagePopup.order-image-popup {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: var(--es-z-image);
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.order-image-popup.popup[style*="flex"],
#imagePopup.order-image-popup[style*="flex"] {
  display: flex !important;
}

.order-image-popup img,
#imagePopup.order-image-popup img {
  max-width: min(90vw, 520px);
  max-height: 80vh;
  object-fit: contain;
  border: none;
  box-shadow: none;
}

.order-image-popup .close-popup,
#imagePopup.order-image-popup .close-popup {
  position: fixed;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Legacy popup rules override */
#imagePopup.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: var(--es-z-image);
  align-items: center;
  justify-content: center;
}

#imagePopup.popup[style*="flex"] {
  display: flex !important;
}

#imagePopup img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-popup {
  position: fixed;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Hide legacy table UI */
#order-table-legacy,
#showdist,
#showdis.total-appear {
  display: none !important;
}

.no-results {
  text-align: center;
  padding: 40px 16px;
  color: var(--es-muted);
  display: none;
}

.no-results.is-visible {
  display: block;
}

label.error {
  color: var(--es-danger);
  font-size: 0.8rem;
}

/* ===== Override legacy theme (style.css / orderheader.php) ===== */
.order-shop-page .container {
  max-width: 1140px;
  padding-left: 12px;
  padding-right: 12px;
}

.order-shop-page .product-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .order-shop-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .order-shop-page .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-shop-page .product-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.order-shop-page .product-card-image {
  flex: 0 0 118px;
  width: 118px !important;
  min-height: 118px;
  height: auto !important;
  order: 0 !important;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.order-shop-page .product-card-body {
  flex: 1 1 auto;
  min-width: 0;
  order: 1 !important;
  padding: 10px 12px 12px;
}

.order-shop-page .product-card-image img,
.order-shop-page .cssbox_thumb {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  padding: 6px !important;
  margin: 0 !important;
  float: none !important;
}

.order-shop-page .product-card-name {
  font-size: 0.88rem;
  line-height: 1.3;
}

.order-shop-page .product-card-footer {
  flex-wrap: nowrap;
}

.order-shop-page .quantity-control {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 118px !important;
  float: none !important;
}

.order-shop-page .quantity-control .qty-button,
.order-shop-page .quantity-control button.qty-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  flex: 0 0 34px !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 1 !important;
}

.order-shop-page .quantity-control input[type="number"],
.order-shop-page .num-pallets-input,
.order-shop-page td.num-pallets input {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  flex: 0 0 40px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  float: none !important;
  box-sizing: border-box !important;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  letter-spacing: 0 !important;
  font-size: 0.95rem !important;
  min-height: 0 !important;
  text-align: center !important;
}

.order-shop-page .order-search-wrap input[type="search"] {
  width: 100% !important;
  height: auto !important;
  min-height: 44px;
  margin: 0 !important;
  letter-spacing: normal !important;
  display: block !important;
}

.order-shop-page .checkout-form .form-control {
  width: 100% !important;
  margin: 0 !important;
  min-height: 44px;
  height: auto !important;
}

.order-shop-page .checkout-form textarea.form-control {
  min-height: 96px !important;
}

.order-shop-page .category-chip {
  margin: 0;
}

.order-shop-page ul li {
  margin-top: 0.35rem;
}

body.cart-drawer-open .cart-sticky-bar {
  z-index: var(--es-z-sticky);
}

body.cart-drawer-open .whats-app,
body.cart-drawer-open .pricelistprint {
  z-index: calc(var(--es-z-drawer) - 1);
}

body:has(.cart-sticky-bar.is-visible) .whats-app {
  bottom: 88px;
}

body:has(.cart-sticky-bar.is-visible) .pricelistprint {
  bottom: 148px;
}

/* Cleaner header on order shop */
.order-shop-body .header-contact-serarch-column,
.order-shop-body .ltn__header-options,
.order-shop-body .header-bottom-area {
  display: none !important;
}

.order-shop-body .ltn__header-middle-area {
  padding: 8px 0 !important;
}

.order-shop-body .ltn__header-middle-area .site-logo img {
  max-height: 56px;
  width: auto !important;
}
