:root {
  --nmdp-blue: #1A1A1A;
  --nmdp-orange: #FF7A00;
  --nmdp-green: #1a9c4b;
  --nmdp-gray-light: #F4F6F8;
  --nmdp-gray-mid: #8A93A3;
  --nmdp-white: #FFFFFF;
  --nmdp-black: #1A1A1A;
}

body, .woocommerce, .site-header, .site-footer {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tipografia segun spec: Titulo 24 / Producto 18 / Precio 30 / Descripcion 15 */
.woocommerce-products-header__title,
.page-title,
h1.entry-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--nmdp-blue);
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Precio grande, tachado + verde */
.price {
  font-size: 20px;
}

ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price del {
  color: var(--nmdp-gray-mid);
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
  order: 1;
}

.price ins {
  color: var(--nmdp-green);
  font-size: 30px;
  font-weight: 800;
  text-decoration: none;
  order: 2;
}

.price:not(:has(del)) {
  color: var(--nmdp-blue);
  font-size: 26px;
  font-weight: 800;
}

.nmdp-ahorro {
  display: block;
  order: 3;
  font-size: 13px;
  font-weight: 600;
  color: var(--nmdp-green);
  background: #eafaf0;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 2px;
}

/* En las cards de la grilla el precio va mas chico que en la pagina de producto */
ul.products li.product .price del {
  font-size: 12px;
}

ul.products li.product .price ins {
  font-size: 18px;
}

ul.products li.product .price:not(:has(del)) {
  font-size: 16px;
}

ul.products li.product .nmdp-ahorro {
  font-size: 11px;
  padding: 1px 6px;
}

/* Badges */
span.onsale {
  background: var(--nmdp-orange) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
  min-height: unset;
  min-width: unset;
  padding: 4px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.nmdp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 6px;
}

.nmdp-badge-stock {
  background: #e8f0fe;
  color: var(--nmdp-blue);
}

/* Botones */
.button, .single_add_to_cart_button, .add_to_cart_button {
  background: var(--nmdp-blue) !important;
  border-color: var(--nmdp-blue) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
}

.button:hover, .single_add_to_cart_button:hover, .add_to_cart_button:hover {
  background: var(--nmdp-orange) !important;
  border-color: var(--nmdp-orange) !important;
}

a, .woocommerce-breadcrumb a {
  color: var(--nmdp-blue);
}

/* Cards compactas, imagenes de tamaño uniforme (estilo Norauto/Pirelli) */
ul.products.columns-4:not(.elementor-grid),
ul.products:not(.elementor-grid) {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
}

ul.products li.product {
  padding: 14px !important;
  margin: 0 !important;
  background: var(--nmdp-white);
  border: 1px solid #ECEEF1;
  border-radius: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

ul.products li.product:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

ul.products li.product a img,
ul.products li.product > img {
  border-radius: 4px;
  height: 150px;
  width: 100%;
  object-fit: contain;
  background: #fff;
  margin-bottom: 10px !important;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2 {
  font-size: 14px;
  min-height: 36px;
}

ul.products li.product .price {
  font-size: inherit;
}

@media (max-width: 1200px) {
  ul.products:not(.elementor-grid) {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 880px) {
  ul.products:not(.elementor-grid) {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  ul.products:not(.elementor-grid) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  ul.products li.product a img,
  ul.products li.product > img {
    height: 110px;
  }
}

/* WhatsApp flotante */
.nmdp-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  padding: 10px 18px 10px 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.nmdp-whatsapp-float:hover {
  transform: scale(1.03);
}

.nmdp-whatsapp-float__icon {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nmdp-whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nmdp-whatsapp-float__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nmdp-whatsapp-float__text strong {
  font-size: 13px;
  color: #1a1a1a;
}

.nmdp-whatsapp-float__text span {
  font-size: 11px;
  color: var(--nmdp-gray-mid);
}

@media (max-width: 600px) {
  .nmdp-whatsapp-float__text { display: none; }
  .nmdp-whatsapp-float { padding: 10px; border-radius: 50%; }
}

/* Header: una sola linea, bien estructurado, sin cortes de palabra */
#masthead .ast-builder-grid-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

#masthead .site-header-primary-section-left {
  flex: 0 0 auto;
  min-width: max-content;
}

#masthead .site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

#masthead .ast-site-title-wrap,
#masthead .site-title {
  white-space: nowrap;
}

#masthead .site-title a {
  font-size: 20px;
  font-weight: 700;
  color: var(--nmdp-blue);
  white-space: nowrap;
}

#masthead .site-header-primary-section-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

#masthead .main-header-bar-navigation,
#masthead nav.site-navigation,
#masthead .main-navigation {
  width: 100%;
}

#masthead .main-header-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  width: 100%;
}

#masthead .main-header-menu li.menu-item {
  flex: 0 0 auto;
}

#masthead .main-header-menu .menu-link {
  white-space: nowrap;
  font-size: 14px;
  padding: 8px 12px;
  color: #1a1a1a;
}

#masthead .main-header-menu .menu-link:hover {
  color: var(--nmdp-orange);
}

#masthead .ast-primary-header-bar {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (max-width: 1024px) {
  #masthead .main-header-menu .menu-link {
    font-size: 12px;
    padding: 6px 8px;
  }
  #masthead .site-title a {
    font-size: 17px;
  }
}

/* Selector de cantidad + subtotal en las cards */
.nmdp-qty-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.nmdp-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #DCE0E6;
  border-radius: 6px;
  width: fit-content;
  overflow: hidden;
}

.nmdp-qty-btn {
  background: var(--nmdp-blue);
  border: none;
  width: 30px;
  height: 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: #fff !important;
}

.nmdp-qty-btn:hover {
  background: var(--nmdp-orange);
}

.nmdp-qty-input {
  width: 44px;
  height: 32px;
  border: none;
  border-left: 1px solid #DCE0E6;
  border-right: 1px solid #DCE0E6;
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
}

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

.nmdp-qty-subtotal {
  font-size: 12px;
  color: var(--nmdp-gray-mid);
  text-align: center;
}

.nmdp-qty-subtotal-value {
  font-weight: 800;
  font-size: 15px;
  color: var(--nmdp-green);
}

.nmdp-add-to-cart-btn {
  width: 100%;
}

/* Carrito lateral (drawer) */
.nmdp-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 30, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 10000;
}

.nmdp-cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nmdp-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 92vw;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.nmdp-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #ECEEF1;
}

.nmdp-cart-drawer-header h2 {
  font-size: 20px;
  margin: 0;
  color: var(--nmdp-blue);
}

.nmdp-cart-drawer-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
}

.nmdp-cart-drawer-body {
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nmdp-cart-items {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nmdp-cart-item {
  display: flex;
  gap: 14px;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
  padding: 14px;
}

.nmdp-cart-item-img img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

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

.nmdp-cart-item-brand {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--nmdp-gray-mid);
  background: var(--nmdp-gray-light);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
}

.nmdp-cart-item-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.nmdp-cart-item-price {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nmdp-cart-item-price del {
  color: var(--nmdp-gray-mid);
  font-size: 12px;
}

.nmdp-cart-item-price ins {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

.nmdp-cart-item-qty-label {
  font-size: 12px;
  color: var(--nmdp-gray-mid);
  margin-bottom: 6px;
}

.nmdp-cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nmdp-cart-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--nmdp-blue);
  color: #fff !important;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nmdp-cart-qty-btn:hover {
  background: var(--nmdp-orange);
}

.nmdp-cart-qty-value {
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #1a1a1a;
}

.nmdp-cart-qty-remove {
  margin-left: auto;
  background: #FCEBEB;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  color: #D64545 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nmdp-cart-qty-remove:hover {
  background: #D64545;
  color: #fff !important;
}

.nmdp-cart-summary {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #ECEEF1;
}

.nmdp-cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #4a4a4a;
  padding: 4px 0;
}

.nmdp-cart-summary-discount span:last-child {
  color: var(--nmdp-green);
}

.nmdp-cart-summary-total {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  border-top: 1px solid #ECEEF1;
  margin-top: 6px;
  padding-top: 10px;
}

.nmdp-cart-summary-note {
  font-size: 11px;
  color: var(--nmdp-gray-mid);
  margin: 6px 0 0;
}

.nmdp-cart-view-btn, .nmdp-cart-checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 8px;
}

.nmdp-cart-checkout-btn {
  background: var(--nmdp-orange) !important;
  border-color: var(--nmdp-orange) !important;
}

.nmdp-cart-empty {
  color: var(--nmdp-gray-mid);
  text-align: center;
  padding: 40px 0;
}

body.nmdp-drawer-open {
  overflow: hidden;
}

/* Hero de inicio */
.nmdp-hero {
  background: linear-gradient(135deg, #000000 0%, var(--nmdp-blue) 55%, #2E2E2E 100%);
  border-radius: 12px;
  padding: 48px 32px 0;
  color: #fff;
  margin-bottom: 32px;
}

.nmdp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.nmdp-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.nmdp-hero-inner > p {
  font-size: 15px;
  color: #C9D6EB;
  margin-bottom: 32px;
}

.nmdp-hero-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nmdp-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 24px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: left;
}

.nmdp-hero-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.nmdp-hero-card h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}

.nmdp-hero-card p {
  font-size: 13px;
  color: #C9D6EB;
  margin: 0 0 14px;
}

.nmdp-hero-card-disabled {
  opacity: 0.6;
}

.nmdp-hero-card-active {
  border-color: var(--nmdp-orange);
  background: rgba(245, 130, 32, 0.08);
}

.nmdp-hero-divider {
  align-self: center;
  color: #C9D6EB;
  font-size: 13px;
  text-transform: uppercase;
}

.nmdp-size-search-form {
  display: flex;
  gap: 8px;
}

.nmdp-size-search-input {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
}

.nmdp-size-search-form .button {
  background: var(--nmdp-orange) !important;
  border-color: var(--nmdp-orange) !important;
  color: #fff !important;
  white-space: nowrap;
}

.nmdp-benefits-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.nmdp-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.nmdp-benefit span {
  font-size: 22px;
}

.nmdp-benefit strong {
  display: block;
  font-size: 13px;
}

.nmdp-benefit small {
  color: #C9D6EB;
  font-size: 11px;
}

/* Sidebar de filtros en la tienda */
.nmdp-shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.nmdp-shop-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #ECEEF1;
  border-radius: 10px;
  padding: 20px;
}

.nmdp-shop-main {
  flex: 1;
  min-width: 0;
}

.nmdp-shop-sidebar .widget {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECEEF1;
}

.nmdp-shop-sidebar .widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.nmdp-shop-sidebar .widget-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--nmdp-blue);
  margin: 0 0 12px;
}

.nmdp-sidebar-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ECEEF1;
}

/* Filtros plegables (Ancho/Perfil/Rodado/Marca) */
.nmdp-filter-accordion {
  border-bottom: 1px solid #ECEEF1;
}

.nmdp-filter-accordion:last-of-type {
  border-bottom: none;
}

.nmdp-filter-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.nmdp-filter-accordion summary::-webkit-details-marker {
  display: none;
}

.nmdp-filter-accordion summary::after {
  content: '⌄';
  font-size: 16px;
  color: var(--nmdp-gray-mid);
  transition: transform 0.2s ease;
}

.nmdp-filter-accordion[open] summary::after {
  transform: rotate(180deg);
}

.nmdp-filter-accordion ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.nmdp-filter-accordion ul li a {
  font-size: 13px;
  color: #4a4a4a;
  display: flex;
  justify-content: space-between;
}

.nmdp-filter-accordion ul li a:hover {
  color: var(--nmdp-orange);
}

.nmdp-filter-link.is-active {
  color: var(--nmdp-orange);
  font-weight: 700;
}

.nmdp-filter-count {
  color: var(--nmdp-gray-mid);
  font-size: 11px;
}

.nmdp-sidebar-search-form {
  display: flex;
  gap: 6px;
}

.nmdp-sidebar-search-form input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #DCE0E6;
  border-radius: 6px;
  font-size: 13px;
}

.nmdp-sidebar-search-form .button {
  padding: 8px 12px;
  font-size: 13px;
}

/* Autocompletar Ancho/Alto */
.nmdp-autocomplete {
  position: relative;
}

.nmdp-autocomplete-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 30px 8px 10px;
  border: 1px solid #DCE0E6;
  border-radius: 6px;
  font-size: 13px;
}

.nmdp-autocomplete-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nmdp-gray-mid);
  text-decoration: none;
  font-size: 12px;
}

.nmdp-autocomplete-clear:hover {
  color: var(--nmdp-orange);
}

.nmdp-autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #DCE0E6;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  z-index: 20;
  max-height: 220px;
  overflow-y: auto;
}

.nmdp-autocomplete-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
}

.nmdp-autocomplete-item:hover {
  background: var(--nmdp-gray-light);
  color: var(--nmdp-orange);
}

.nmdp-autocomplete-count {
  color: var(--nmdp-gray-mid);
  font-size: 11px;
}

/* Filtro combinado (textbox + opciones al abrir): Ancho/Perfil/Rodado */
.nmdp-combo {
  position: relative;
}

.nmdp-combo-input {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 12px;
  border: 1px solid #DCE0E6;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.nmdp-combo-input:focus {
  border-color: var(--nmdp-orange);
  outline: none;
  cursor: text;
}

.nmdp-combo-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #DCE0E6;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 25;
  max-height: 240px;
  overflow-y: auto;
}

.nmdp-combo-item {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 13px;
  color: #4a4a4a;
  text-decoration: none;
}

.nmdp-combo-item:hover {
  background: var(--nmdp-gray-light);
  color: var(--nmdp-orange);
}

.nmdp-combo-item.is-active {
  color: var(--nmdp-orange);
  font-weight: 700;
}

.nmdp-combo-count {
  color: var(--nmdp-gray-mid);
  font-size: 11px;
}

.nmdp-combo-empty {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--nmdp-gray-mid);
}

/* Buscador horizontal fijo arriba del listado de la tienda */
.nmdp-topbar-search {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid #ECEEF1;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.nmdp-topbar-search-inner {
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.nmdp-topbar-search-input {
  flex: 1;
  box-sizing: border-box;
  padding: 12px 20px;
  border: 2px solid #ECEEF1;
  border-radius: 30px;
  font-size: 15px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.nmdp-topbar-search-input:focus {
  border-color: var(--nmdp-orange);
  outline: none;
}

.nmdp-topbar-search-btn {
  flex-shrink: 0;
  background: var(--nmdp-orange);
  color: #fff;
  border: none;
  padding: 0 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nmdp-topbar-search-btn:hover {
  background: #E06D00;
}

.nmdp-topbar-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ECEEF1;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  z-index: 31;
  max-height: 280px;
  overflow-y: auto;
}

.nmdp-topbar-search-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #F4F6F8;
}

.nmdp-topbar-search-item:last-child {
  border-bottom: none;
}

.nmdp-topbar-search-item:hover {
  background: var(--nmdp-gray-light);
  color: var(--nmdp-orange);
}

.nmdp-topbar-search-count {
  color: var(--nmdp-gray-mid);
  font-size: 12px;
}

@media (max-width: 600px) {
  .nmdp-topbar-search {
    padding: 10px 12px;
  }
}

.nmdp-shop-sidebar .price_slider_wrapper .ui-slider .ui-slider-range,
.nmdp-shop-sidebar .price_slider_wrapper .ui-slider .ui-slider-handle {
  background: var(--nmdp-orange);
}

.nmdp-shop-sidebar .price_slider_amount .button {
  float: right;
  font-size: 12px;
  padding: 6px 12px;
}

.nmdp-shop-sidebar .price_label {
  font-size: 12px;
  color: #4a4a4a;
  display: block;
  margin-top: 10px;
}

@media (max-width: 880px) {
  .nmdp-shop-layout {
    flex-direction: column;
  }
  .nmdp-shop-sidebar {
    width: 100%;
  }
}
