/*
 * Lokaly child theme 2.2.1 · ideato da gianfo.it
 * Visual layer for Hummingbird 2.0.0 / PrestaShop 9.1.x.
 * This unlayered stylesheet intentionally loads after the parent assets.
 */

:root {
  --lokaly-blue: #037cfa;
  --lokaly-blue-dark: #0564c4;
  --lokaly-navy: #0b2d46;
  --lokaly-navy-deep: #071d31;
  --lokaly-green: #62db87;
  --lokaly-green-dark: #158541;
  --lokaly-surface: #f6f8fb;
  --lokaly-surface-blue: #eaf4ff;
  --lokaly-border: #dfe6ee;
  --lokaly-text: #0c1a2a;
  --lokaly-muted: #637186;
  --lokaly-white: #ffffff;
  --lokaly-radius-sm: 12px;
  --lokaly-radius-md: 18px;
  --lokaly-radius-lg: 26px;
  --lokaly-shadow-sm: 0 8px 24px rgba(19, 45, 72, 0.08);
  --lokaly-shadow-md: 0 18px 48px rgba(19, 45, 72, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--lokaly-text);
  background: var(--lokaly-surface);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/*
 * Mobile viewport guard.
 * Full-width sections and Bootstrap rows must never turn the document itself
 * into a horizontal scroller. Components with their own overflow-x:auto keep
 * their normal swipe interaction.
 */
@media (max-width: 991.98px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip;
    }
  }

  #header,
  #wrapper,
  #footer {
    max-width: 100%;
    overflow-x: clip;
  }
}

a {
  text-underline-offset: 0.2em;
}

a,
button,
.btn,
.form-control,
.form-select {
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid rgba(3, 124, 250, 0.28);
  outline-offset: 2px;
}

.container,
.container-md,
.columns-container {
  --bs-gutter-x: 2rem;
}

#wrapper {
  padding-block: 28px 56px;
  background: var(--lokaly-surface);
}

body#index #wrapper {
  padding-top: 0;
}

.page-content--home {
  overflow: visible;
}

/* Header and navigation */

.lokaly-header {
  background: rgba(255, 255, 255, 0.98);
}

.lokaly-header__main {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(130px, auto) minmax(300px, 1.4fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding-block: 14px;
}

.lokaly-header__location {
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lokaly-header__location-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
}

.lokaly-header__location strong,
.lokaly-header__location small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lokaly-header__location strong {
  color: var(--lokaly-navy-deep);
  font-size: 0.78rem;
}

.lokaly-header__location small {
  margin-top: 2px;
  color: var(--lokaly-green-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.lokaly-header__logo {
  display: flex;
  align-items: center;
}

.lokaly-header__logo img,
.lokaly-header__logo svg {
  width: auto;
  max-width: 150px;
  max-height: 54px;
}

.lokaly-header__search {
  min-width: 0;
}

.lokaly-header__search #_desktop_ps_searchbar {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
}

.lokaly-header__search .ps-searchbar {
  width: 100%;
  min-width: 0;
}

.lokaly-header__actions {
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

.lokaly-header__actions > div,
.lokaly-header__actions .header-block {
  margin: 0 !important;
}

.lokaly-header__actions .header-block__action-btn {
  min-height: 44px;
  border: 1px solid var(--lokaly-border);
  border-radius: 13px;
  background: var(--lokaly-white);
}

.lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
  min-width: 132px;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px !important;
  color: var(--lokaly-white);
  border-color: var(--lokaly-navy);
  background: var(--lokaly-navy);
  box-shadow: 0 8px 18px rgba(7, 29, 49, 0.16);
}

.lokaly-header__actions #_desktop_ps_shoppingcart .header-block__icon {
  color: var(--lokaly-white) !important;
}

.lokaly-header__actions #_desktop_ps_shoppingcart .header-block__badge {
  display: grid;
  min-width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  margin-left: 1px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--lokaly-navy-deep);
  background: var(--lokaly-green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn:hover {
  border-color: #124b71;
  background: #124b71;
  transform: translateY(-1px);
}

.lokaly-header__navigation {
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid var(--lokaly-border);
  background: var(--lokaly-white);
}

.lokaly-header__navigation .ps-mainmenu {
  width: 100%;
  max-width: none;
  padding: 0;
}

.lokaly-header__navigation .ps-mainmenu__tree {
  justify-content: center;
  min-height: 48px;
}

.lokaly-header__mobile-actions {
  align-items: center;
  justify-content: flex-end;
}

#header {
  position: relative;
  z-index: 1030;
  color: var(--lokaly-text);
  background: var(--lokaly-white);
  box-shadow: 0 1px 0 rgba(12, 26, 42, 0.08);
}

.header-top {
  color: rgba(255, 255, 255, 0.82);
  background: var(--lokaly-navy);
}

.header-top a,
.header-top .btn-link {
  color: inherit;
}

.header-top a:hover,
.header-top a:focus-visible {
  color: var(--lokaly-white);
}

.header-bottom {
  min-height: 82px;
  background: rgba(255, 255, 255, 0.98);
}

.header-bottom__container {
  padding-block: 14px;
}

.header-bottom__logo img,
.header-bottom__logo svg {
  width: auto;
  max-width: 154px;
  max-height: 54px;
}

.header-block__action-btn,
.menu-toggle {
  border-radius: var(--lokaly-radius-sm);
}

.header-block__action-btn:hover,
.menu-toggle:hover {
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
}

.header-block__badge {
  background: var(--lokaly-blue);
}

.ps-mainmenu__tree-link {
  position: relative;
  color: var(--lokaly-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.ps-mainmenu__tree-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--lokaly-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ps-mainmenu__tree-link:hover,
.ps-mainmenu__tree-item.current .ps-mainmenu__tree-link {
  color: var(--lokaly-blue);
}

.ps-mainmenu__tree-link:hover::after,
.ps-mainmenu__tree-item.current .ps-mainmenu__tree-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.submenu,
.ps-searchbar__dropdown,
.dropdown-menu {
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  box-shadow: var(--lokaly-shadow-md);
}

.ps-searchbar {
  min-width: min(360px, 32vw);
}

.ps-searchbar__form {
  min-height: 48px;
  border: 1px solid var(--lokaly-border);
  border-radius: 16px;
  background: var(--lokaly-surface);
  box-shadow: var(--lokaly-shadow-sm);
}

.ps-searchbar__form:focus-within {
  border-color: rgba(3, 124, 250, 0.55);
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.1);
}

.ps-searchbar__input {
  border: 0;
  background: transparent;
}

.ps-searchbar__input:focus {
  box-shadow: none;
}

.ps-searchbar__magnifier {
  color: var(--lokaly-blue);
}

/* Native controls */

.btn {
  border-radius: 13px;
  font-weight: 700;
}

.btn-primary {
  --bs-btn-bg: var(--lokaly-blue);
  --bs-btn-border-color: var(--lokaly-blue);
  --bs-btn-hover-bg: var(--lokaly-blue-dark);
  --bs-btn-hover-border-color: var(--lokaly-blue-dark);
  --bs-btn-active-bg: var(--lokaly-blue-dark);
  --bs-btn-active-border-color: var(--lokaly-blue-dark);
  --bs-btn-disabled-bg: #85bfff;
  --bs-btn-disabled-border-color: #85bfff;
  box-shadow: 0 10px 22px rgba(3, 124, 250, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline-primary {
  --bs-btn-color: var(--lokaly-blue);
  --bs-btn-border-color: rgba(3, 124, 250, 0.45);
  --bs-btn-hover-bg: var(--lokaly-blue);
  --bs-btn-hover-border-color: var(--lokaly-blue);
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--lokaly-border);
  border-radius: 13px;
  background-color: var(--lokaly-white);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(3, 124, 250, 0.65);
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.1);
}

.breadcrumb {
  color: var(--lokaly-muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--lokaly-muted);
}

.breadcrumb a:hover {
  color: var(--lokaly-blue);
}

.page-title-section h1,
.page-title-section .h1,
.page-header h1 {
  color: var(--lokaly-navy-deep);
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* Homepage */

.lokaly-home-shell {
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
}

.lokaly-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: 460px;
  margin: 28px 0 20px;
  overflow: hidden;
  border: 1px solid #d7eaff;
  border-radius: 30px;
  background: linear-gradient(135deg, #e9f5ff 0%, #f8fcff 55%, #d9edff 100%);
  box-shadow: var(--lokaly-shadow-md);
}

.lokaly-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.lokaly-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lokaly-blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lokaly-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lokaly-green-dark);
  box-shadow: 0 0 0 6px rgba(98, 219, 135, 0.22);
}

.lokaly-hero__title {
  max-width: 680px;
  margin: 0;
  color: var(--lokaly-navy-deep);
  font-size: clamp(2.5rem, 5.2vw, 4.75rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lokaly-hero__title span {
  display: block;
  color: var(--lokaly-blue);
}

.lokaly-hero__description {
  max-width: 610px;
  margin: 24px 0 28px;
  color: #43536a;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.lokaly-hero__search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 610px);
  min-height: 62px;
  padding: 6px;
  padding-inline-start: 20px;
  border: 1px solid rgba(12, 26, 42, 0.08);
  border-radius: 19px;
  background: var(--lokaly-white);
  box-shadow: 0 16px 38px rgba(19, 56, 91, 0.14);
}

.lokaly-hero__search:focus-within {
  border-color: rgba(3, 124, 250, 0.55);
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.1), 0 16px 38px rgba(19, 56, 91, 0.14);
}

.lokaly-hero__search-icon {
  color: var(--lokaly-blue);
}

.lokaly-hero__search-input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding-inline: 14px;
  border: 0;
  outline: 0;
  color: var(--lokaly-text);
  background: transparent;
}

.lokaly-hero__search-input::placeholder {
  color: #8490a0;
}

.lokaly-hero__search-button {
  min-height: 48px;
  padding-inline: 24px;
  border: 0;
  border-radius: 14px;
  color: var(--lokaly-white);
  background: var(--lokaly-blue);
  font-weight: 800;
  box-shadow: 0 9px 20px rgba(3, 124, 250, 0.24);
}

.lokaly-hero__search-button:hover {
  background: var(--lokaly-blue-dark);
  transform: translateY(-1px);
}

.lokaly-hero__catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--lokaly-navy);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-hero__catalog-link:hover {
  color: var(--lokaly-blue);
}

.lokaly-hero__catalog-link .material-icons {
  font-size: 1.1rem;
}

.lokaly-hero__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--lokaly-navy);
}

.lokaly-hero__visual::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(98, 219, 135, 0.26), transparent 34%), radial-gradient(circle at 20% 80%, rgba(3, 124, 250, 0.32), transparent 38%);
  content: "";
}

.lokaly-hero__visual-icon--large {
  position: absolute;
  top: 42px;
  left: 38px;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 23px;
  color: var(--lokaly-navy);
  background: var(--lokaly-green);
  box-shadow: 0 14px 34px rgba(98, 219, 135, 0.24);
}

.lokaly-hero__visual-copy {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  z-index: 2;
  color: var(--lokaly-white);
}

.lokaly-hero__visual-copy h2 {
  max-width: 430px;
  margin: 0 0 12px;
  color: var(--lokaly-white);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.lokaly-hero__visual-copy p {
  max-width: 390px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.lokaly-hero__visual-copy > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
}

.lokaly-hero__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.lokaly-hero__orbit--one {
  top: -90px;
  right: -80px;
  width: 340px;
  height: 340px;
}

.lokaly-hero__orbit--two {
  right: 70px;
  bottom: -170px;
  width: 390px;
  height: 390px;
}

.lokaly-hero__visual-card {
  position: absolute;
  top: 25%;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(78%, 340px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  color: var(--lokaly-white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.lokaly-hero__visual-card--secondary {
  top: auto;
  right: 8%;
  bottom: 20%;
  left: auto;
}

.lokaly-hero__visual-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: var(--lokaly-navy);
  background: var(--lokaly-green);
}

.lokaly-hero__visual-card strong,
.lokaly-hero__visual-card span {
  display: block;
}

.lokaly-hero__visual-card strong {
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.lokaly-hero__visual-card div > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.4;
}

.lokaly-hero__bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--lokaly-white);
  background: var(--lokaly-blue);
  box-shadow: 0 18px 44px rgba(3, 124, 250, 0.35);
  transform: translate(-50%, -50%);
}

.lokaly-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 42px;
}

.lokaly-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.lokaly-benefit__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
}

.lokaly-benefit:nth-child(2) .lokaly-benefit__icon {
  color: var(--lokaly-green-dark);
  background: #e9f8ee;
}

.lokaly-benefit strong,
.lokaly-benefit span {
  display: block;
}

.lokaly-benefit strong {
  color: var(--lokaly-navy-deep);
  font-size: 0.9rem;
}

.lokaly-benefit div > span {
  margin-top: 3px;
  color: var(--lokaly-muted);
  font-size: 0.76rem;
}

.lokaly-home-section {
  margin: 30px 0 22px;
}

.lokaly-home-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.lokaly-home-section__heading h2 {
  margin: 0;
  color: var(--lokaly-navy-deep);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.lokaly-home-section__heading a {
  color: var(--lokaly-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.lokaly-categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.lokaly-category {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--lokaly-border);
  border-radius: 18px;
  color: var(--lokaly-text);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-category:hover {
  color: var(--lokaly-blue);
  border-color: rgba(3, 124, 250, 0.28);
  box-shadow: var(--lokaly-shadow-md);
  transform: translateY(-2px);
}

.lokaly-category__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
}

.lokaly-category:nth-child(2) .lokaly-category__icon {
  color: #8a4aca;
  background: #f2eafd;
}

.lokaly-category:nth-child(3) .lokaly-category__icon {
  color: var(--lokaly-green-dark);
  background: #e8f7ed;
}

.lokaly-category:nth-child(4) .lokaly-category__icon {
  color: #d96e17;
  background: #fff0e3;
}

.lokaly-category:nth-child(5) .lokaly-category__icon {
  color: #d33c74;
  background: #fdebf2;
}

.lokaly-category:nth-child(6) .lokaly-category__icon {
  color: #a97900;
  background: #fff6d9;
}

.lokaly-local-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 22px 0 44px;
  padding: 22px 24px;
  border: 1px solid #d8efdf;
  border-radius: 20px;
  color: #0a2d1b;
  background: linear-gradient(110deg, #e9f8ee, #f4fbf6);
}

.lokaly-local-banner__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--lokaly-green-dark);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.lokaly-local-banner h2,
.lokaly-local-banner p {
  margin: 0;
}

.lokaly-local-banner h2 {
  color: #0a2d1b;
  font-size: 1.05rem;
  font-weight: 800;
}

.lokaly-local-banner p {
  margin-top: 4px;
  color: #4f705b;
  font-size: 0.85rem;
}

.lokaly-local-banner > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--lokaly-white);
  background: var(--lokaly-navy);
  text-decoration: none;
}

.lokaly-speed-banner,
.lokaly-value-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
}

.lokaly-speed-banner {
  gap: 22px;
  margin: 0 0 22px;
  padding: 18px 24px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(110deg, var(--speed-start, #07324b), var(--speed-end, #0d694b));
  box-shadow: 0 12px 28px rgba(7, 50, 75, 0.16);
}

.lokaly-speed-banner__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: #071d31;
  background: #62db87;
}

.lokaly-speed-banner strong {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 800;
}

.lokaly-speed-banner p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.lokaly-speed-banner > a,
.lokaly-value-banner > a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-speed-banner > a {
  padding: 12px 19px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.lokaly-value-banner {
  gap: 24px;
  margin: 20px 0;
  padding: 22px 30px;
  border: 1px solid rgba(16, 135, 66, 0.1);
  border-radius: 24px;
  background: linear-gradient(100deg, var(--banner-start, #d9fae5), var(--banner-end, #c8f4d9));
  box-shadow: 0 12px 30px rgba(24, 119, 65, 0.08);
}

.lokaly-value-banner__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #087f40;
  font-size: 2.6rem;
  transform: rotate(-18deg);
}

.lokaly-value-banner h2,
.lokaly-value-banner p {
  margin: 0;
}

.lokaly-value-banner h2 {
  color: #071d31;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.lokaly-value-banner p {
  margin-top: 3px;
  color: #274a3b;
}

.lokaly-value-banner > a {
  gap: 14px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #14974c, #087f40);
  box-shadow: 0 8px 20px rgba(8, 127, 64, 0.22);
}

body#index .page-content--home > section:not(.lokaly-hero, .lokaly-benefits),
body#index .page-content--home > div:not(.lokaly-hero, .lokaly-benefits) {
  margin-bottom: 42px;
}

body#index .page-content--home > :not(.lokaly-home-shell),
body#index .page-content--home > .featured-products,
body#index .page-content--home > .product-accessories {
  width: min(calc(100% - 32px), 1320px);
  margin-right: auto;
  margin-left: auto;
}

body#index .featured-products,
body#index .product-accessories,
body#index .products-section-title {
  position: relative;
}

.products-section-title,
.featured-products > h2,
.product-accessories > h2 {
  color: var(--lokaly-navy-deep);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Product lists and cards */

.product-miniature {
  height: 100%;
}

.product-miniature__inner {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: 20px;
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-miniature__inner:hover {
  border-color: rgba(3, 124, 250, 0.28);
  box-shadow: var(--lokaly-shadow-md);
  transform: translateY(-3px);
}

.product-miniature__top {
  overflow: hidden;
  background: linear-gradient(145deg, #fbfcfd, #edf2f7);
}

.product-miniature__image,
.product-miniature__image img {
  transition: transform 260ms ease;
}

.product-miniature__inner:hover .product-miniature__image img {
  transform: scale(1.035);
}

.product-miniature__bottom {
  padding: 17px;
}

.product-miniature__title {
  color: var(--lokaly-text);
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.product-miniature__title:hover {
  color: var(--lokaly-blue);
}

.product-miniature__price {
  color: var(--lokaly-navy-deep);
  font-size: 1.08rem;
  font-weight: 800;
}

.product-miniature__regular-price {
  color: var(--lokaly-muted);
}

.product-miniature__add.btn-square-icon {
  border-radius: 12px;
}

.product-flags .product-flag,
.product-flag {
  border-radius: 9px;
  font-size: 0.7rem;
  font-weight: 800;
}

#products .products-selection,
.products-sort-order,
.facet,
.active_filters {
  border-color: var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
}

.facet {
  box-shadow: var(--lokaly-shadow-sm);
}

.pagination .page-link {
  border-radius: 10px;
}

.pagination .page-item.active .page-link {
  border-color: var(--lokaly-blue);
  background: var(--lokaly-blue);
}

/* Product detail */

.product__container {
  gap: clamp(28px, 5vw, 72px);
}

.product__left,
.product__right {
  min-width: 0;
}

.product__left {
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-lg);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.product__right {
  padding: clamp(12px, 2vw, 24px);
}

.product__name {
  color: var(--lokaly-navy-deep);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product__manufacturer a {
  color: var(--lokaly-blue);
  font-weight: 700;
}

.product__description-short {
  color: var(--lokaly-muted);
  line-height: 1.7;
}

.product-prices,
.product-price {
  color: var(--lokaly-navy-deep);
}

.current-price-value,
.product-price .current-price {
  color: var(--lokaly-navy-deep);
  font-weight: 800;
}

.product__actions {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.product-add-to-cart .add-to-cart,
.product__actions .add-to-cart {
  min-height: 54px;
}

.product__bottom {
  margin-top: 48px;
}

.product__accordion,
.accordion-item {
  border-color: var(--lokaly-border);
}

.product__accordion {
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
}

.accordion-button:not(.collapsed) {
  color: var(--lokaly-blue-dark);
  background: var(--lokaly-surface-blue);
  box-shadow: inset 0 -1px 0 var(--lokaly-border);
}

.accordion-button:focus {
  border-color: rgba(3, 124, 250, 0.45);
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.1);
}

/* Customer pages */

.customer-form,
.login-form,
.register-form,
.addresses-footer,
.order-confirmation-table {
  border: 1px solid var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.customer-form,
.login-form,
.register-form {
  padding: clamp(20px, 3vw, 32px);
}

.account-link,
.address,
.order-line {
  border-color: var(--lokaly-border);
  border-radius: var(--lokaly-radius-md);
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

.account-link:hover {
  border-color: rgba(3, 124, 250, 0.3);
  color: var(--lokaly-blue);
  transform: translateY(-2px);
}

.alert {
  border: 0;
  border-radius: var(--lokaly-radius-md);
}

/* Footer */

#footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--lokaly-navy-deep);
}

.footer__before {
  color: var(--lokaly-text);
  background: #eaf4ff;
}

.footer__main {
  padding-block: 54px 28px;
  background: var(--lokaly-navy-deep);
}

.footer__main h2,
.footer__main h3,
.footer__main h4,
.footer__main .h3,
.footer__main .h4 {
  color: var(--lokaly-white);
}

.footer__main a {
  color: rgba(255, 255, 255, 0.72);
}

.footer__main a:hover,
.footer__main a:focus-visible {
  color: var(--lokaly-green);
}

.footer__main-bottom,
.copyright {
  border-color: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Customer area 2.2.0 — Lokaly account hub. */
body#my-account #wrapper,
body#identity #wrapper,
body#addresses #wrapper,
body#address #wrapper,
body#history #wrapper,
body#order-slip #wrapper,
body#order-detail #wrapper,
body#discount #wrapper,
body#order-follow #wrapper {
  padding-top: 24px;
  background:
    radial-gradient(circle at 94% 2%, rgba(98, 219, 135, 0.13), transparent 24rem),
    linear-gradient(180deg, #f5f9fd 0, #f6f8fb 420px);
}

body#my-account .breadcrumb,
body#identity .breadcrumb,
body#addresses .breadcrumb,
body#address .breadcrumb,
body#history .breadcrumb,
body#order-slip .breadcrumb,
body#order-detail .breadcrumb,
body#discount .breadcrumb,
body#order-follow .breadcrumb {
  display: none;
}

.lokaly-account-layout {
  width: min(100%, 1600px);
  margin: 0 auto 64px;
}

.lokaly-account-layout__grid {
  display: grid;
  grid-template-columns: minmax(235px, 290px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 2.5vw, 38px);
}

.lokaly-account-layout__main,
.lokaly-account-layout__sidebar {
  min-width: 0;
}

.lokaly-account-layout__main--wide {
  grid-column: 1 / -1;
  width: min(100%, 920px);
  margin-inline: auto;
}

.lokaly-account-layout__sidebar {
  position: sticky;
  top: 20px;
}

.lokaly-account-layout .account-menu--sidebar {
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--lokaly-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lokaly-shadow-sm);
}

.lokaly-account-layout .account-menu--sidebar .account-menu__title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: -10px -10px 8px;
  padding: 22px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(98, 219, 135, 0.28), transparent 48%),
    var(--lokaly-navy-deep);
  font-size: 1.15rem;
  font-weight: 850;
}

.lokaly-account-layout .account-menu--sidebar .account-menu__title::before {
  font-family: "Material Icons";
  color: var(--lokaly-green);
  content: "manage_accounts";
  font-size: 1.55rem;
  font-weight: normal;
}

.lokaly-account-layout .account-menu__nav {
  display: grid;
  gap: 4px;
}

.lokaly-account-layout .account-menu__link,
.lokaly-account-layout .lokaly-account-link {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #23384d;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.lokaly-account-layout .account-menu__link:hover,
.lokaly-account-layout .lokaly-account-link:hover {
  border-color: #d7e9f8;
  color: var(--lokaly-blue-dark);
  background: #f1f8ff;
  transform: translateX(2px);
}

.lokaly-account-layout .account-menu__link--active {
  border-color: #bfe0ff;
  color: var(--lokaly-blue-dark);
  background: linear-gradient(90deg, #eaf5ff, #f3fff7);
  box-shadow: inset 4px 0 0 var(--lokaly-green);
}

.lokaly-account-layout .account-menu__icon,
.lokaly-account-layout .lokaly-account-link .material-icons {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
  font-size: 1.2rem;
}

.lokaly-account-layout .account-menu__link--active .account-menu__icon {
  color: #08783e;
  background: #cdf6dc;
}

.lokaly-account-layout .account-menu__link--signout {
  margin-top: 7px;
  border-top: 1px solid #edf1f5;
  color: #b53d4d;
}

.lokaly-account-layout .account-menu__link--signout .account-menu__icon {
  color: #c54254;
  background: #fff0f2;
}

.lokaly-account-hero {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: 18px;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid #d7e6f1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 91% 5%, rgba(98, 219, 135, 0.27), transparent 27%),
    linear-gradient(120deg, #edf7ff 0%, #fff 64%, #effdf4 100%);
  box-shadow: 0 16px 45px rgba(11, 45, 70, 0.08);
}

.lokaly-account-hero::after {
  position: absolute;
  right: -75px;
  bottom: -115px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(3, 124, 250, 0.12);
  border-radius: 50%;
  content: "";
}

.lokaly-account-hero__icon {
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  place-items: center;
  border-radius: 22px;
  color: #08783e;
  background: #c5f6d7;
  box-shadow: 0 12px 28px rgba(21, 133, 65, 0.14);
  font-size: 2rem;
}

.lokaly-account-hero__copy {
  z-index: 1;
  min-width: 0;
}

.lokaly-account-hero__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--lokaly-green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lokaly-account-hero h1 {
  margin: 0;
  color: var(--lokaly-navy-deep);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lokaly-account-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #5e7388;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}

.lokaly-account-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--lokaly-blue-dark);
  background: #eaf4ff;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-account-back:hover {
  color: #fff;
  background: var(--lokaly-blue);
}

.lokaly-account-back .material-icons {
  font-size: 1rem;
}

.lokaly-account-content {
  min-height: 320px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--lokaly-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--lokaly-shadow-sm);
}

.lokaly-account-content > p:first-child {
  margin: 0 0 24px;
  padding: 14px 17px;
  border-left: 4px solid var(--lokaly-green);
  border-radius: 0 13px 13px 0;
  color: #52687d;
  background: #f4faf6;
}

/* Main account dashboard. */
.lokaly-account-content .account-menu--main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.lokaly-account-content .account-menu--main > a,
.lokaly-account-content .account-menu--main > .link-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--lokaly-border);
  border-radius: 19px;
  color: #142a40;
  background: #fff;
  box-shadow: 0 7px 20px rgba(14, 48, 77, 0.055);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-account-content .account-menu--main > a:hover,
.lokaly-account-content .account-menu--main > .link-item:hover {
  border-color: #badaf5;
  color: var(--lokaly-blue-dark);
  background: linear-gradient(135deg, #f2f8ff, #f7fffa);
  box-shadow: 0 13px 30px rgba(14, 48, 77, 0.1);
  transform: translateY(-2px);
}

.lokaly-account-content .account-menu--main .account-menu__icon,
.lokaly-account-content .account-menu--main .material-icons {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
  font-size: 1.45rem;
}

.lokaly-account-content .account-menu--main .account-menu__link--signout {
  color: #b63e50;
}

.lokaly-account-content .account-menu--main .account-menu__link--signout .account-menu__icon {
  color: #c54254;
  background: #fff0f2;
}

/* Personal data and address forms. */
.lokaly-account-content .customer-form,
.lokaly-account-content .address-form,
.lokaly-account-content form:not(.lokaly-saved-card form) {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lokaly-account-content .form-control,
.lokaly-account-content .form-select {
  min-height: 50px;
  border: 1px solid #d5e0e9;
  border-radius: 13px;
  color: var(--lokaly-navy-deep);
  background-color: #f9fbfd;
}

.lokaly-account-content .form-control:focus,
.lokaly-account-content .form-select:focus {
  border-color: rgba(3, 124, 250, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.09);
}

.lokaly-account-content .form-label,
.lokaly-account-content label {
  color: #263d53;
  font-size: 0.82rem;
  font-weight: 750;
}

.lokaly-account-content .form-footer,
.lokaly-account-content .form__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #edf1f5;
}

.lokaly-account-content .btn-primary {
  min-height: 46px;
  padding-inline: 22px;
  border: 0;
  border-radius: 13px;
  background: var(--lokaly-blue);
  box-shadow: 0 9px 22px rgba(3, 124, 250, 0.2);
  font-weight: 800;
}

/* Addresses. */
.lokaly-account-content .addresses__list,
.lokaly-account-content .order-addresses__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.lokaly-account-content .address-card {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(12, 45, 74, 0.06);
}

.lokaly-account-content .address-card__container {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 22px;
}

.lokaly-account-content .address-card__header,
.lokaly-account-content .address-card__alias {
  margin-bottom: 14px;
  color: var(--lokaly-navy-deep);
  font-size: 1.12rem;
  font-weight: 850;
}

.lokaly-account-content .address-card__content {
  color: #53697d;
  line-height: 1.65;
}

.lokaly-account-content .address-card__actions {
  display: flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
}

.lokaly-account-content .address-card__edit,
.lokaly-account-content .address-card__delete {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-account-content .address-card__edit {
  color: var(--lokaly-blue-dark);
  background: var(--lokaly-surface-blue);
}

.lokaly-account-content .address-card__delete {
  color: #b13f50;
  background: #fff0f2;
}

.lokaly-account-content .address-card--add-address {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 2px dashed #bcd3e5;
  color: var(--lokaly-blue-dark);
  background: #f7fbff;
  text-decoration: none;
}

.lokaly-account-content .address-card--add-address:hover {
  border-color: var(--lokaly-blue);
  background: #eef7ff;
}

.lokaly-account-content .address-card__add-text {
  font-size: 1rem;
  font-weight: 800;
}

/* Orders, credit slips and order detail. */
.lokaly-account-content .order-history,
.lokaly-account-content .grid-table {
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: 19px;
  background: #fff;
}

.lokaly-account-content .order-history__header,
.lokaly-account-content .grid-table__header {
  color: #fff;
  background: var(--lokaly-navy-deep);
  font-size: 0.75rem;
  font-weight: 800;
}

.lokaly-account-content .order-history__row,
.lokaly-account-content .grid-table__row {
  border-color: #e8eef3;
}

.lokaly-account-content .order-history__row:nth-child(even),
.lokaly-account-content .grid-table__row:nth-child(even) {
  background: #f8fafc;
}

.lokaly-account-content .order-history__cell,
.lokaly-account-content .grid-table__cell {
  padding-block: 15px;
}

.lokaly-account-content .order-history__cell--reference,
.lokaly-account-content .order-history__cell--total {
  color: var(--lokaly-navy-deep);
  font-weight: 850;
}

.lokaly-account-content .order-history__status,
.lokaly-account-content .order-status__badge {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.lokaly-account-content .order-history__cell--actions {
  gap: 6px;
}

.lokaly-account-content .order-history__cell--actions .btn,
.lokaly-account-content .grid-table a[aria-label*="credit" i],
.lokaly-account-content .grid-table a[aria-label*="nota" i] {
  border-radius: 10px;
  font-weight: 750;
}

.lokaly-account-content .order-infos__summary,
.lokaly-account-content .order-status,
.lokaly-account-content .order-carrier,
.lokaly-account-content .order-products,
.lokaly-account-content .order-messages {
  padding: 22px;
  border: 1px solid var(--lokaly-border);
  border-radius: 18px;
  background: #fff;
}

.lokaly-account-content .order-separator {
  margin-block: 18px;
  border-color: transparent;
}

.lokaly-account-content h2 {
  color: var(--lokaly-navy-deep);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.lokaly-account-content .alert-info {
  padding: 24px;
  border: 1px solid #cfe4f5;
  color: #31556f;
  background: #eff8ff;
}

@media (max-width: 991.98px) {
  .lokaly-account-layout__grid {
    grid-template-columns: 1fr;
  }

  .lokaly-account-layout__sidebar {
    position: static;
  }

  .lokaly-account-layout .account-menu__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lokaly-account-layout .account-menu__link--signout {
    margin-top: 0;
    border-top: 0;
  }
}

@media (max-width: 767.98px) {
  body#my-account #wrapper,
  body#identity #wrapper,
  body#addresses #wrapper,
  body#address #wrapper,
  body#history #wrapper,
  body#order-slip #wrapper,
  body#order-detail #wrapper {
    padding-top: 14px;
  }

  .lokaly-account-layout {
    margin-bottom: 36px;
  }

  .lokaly-account-hero {
    min-height: 0;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .lokaly-account-hero__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 15px;
    font-size: 1.45rem;
  }

  .lokaly-account-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .lokaly-account-hero p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .lokaly-account-content {
    padding: 18px 14px;
    border-radius: 21px;
  }

  .lokaly-account-content .account-menu--main,
  .lokaly-account-content .addresses__list,
  .lokaly-account-content .order-addresses__list {
    grid-template-columns: 1fr;
  }

  .lokaly-account-content .account-menu--main > a,
  .lokaly-account-content .account-menu--main > .link-item {
    min-height: 76px;
    padding: 15px;
  }

  .lokaly-account-content .account-menu--main .account-menu__icon,
  .lokaly-account-content .account-menu--main .material-icons {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .lokaly-account-content .address-card,
  .lokaly-account-content .address-card--add-address {
    min-height: 230px;
  }

  .lokaly-account-content .order-history,
  .lokaly-account-content .grid-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .lokaly-account-content .order-history__header,
  .lokaly-account-content .grid-table__header {
    display: none;
  }

  .lokaly-account-content .order-history__row,
  .lokaly-account-content .grid-table__row {
    margin-bottom: 12px;
    padding: 15px;
    border: 1px solid var(--lokaly-border);
    border-radius: 16px;
    background: #fff !important;
    box-shadow: 0 7px 20px rgba(14, 48, 77, 0.055);
  }
}

@media (max-width: 479.98px) {
  .lokaly-account-layout .account-menu__nav {
    grid-template-columns: 1fr;
  }

  .lokaly-account-layout .account-menu__link,
  .lokaly-account-layout .lokaly-account-link {
    min-height: 48px;
  }
}

@media (max-width: 1199.98px) {
  .lokaly-header__main {
    grid-template-columns: minmax(130px, auto) minmax(280px, 1fr) auto;
  }

  .ps-searchbar {
    min-width: min(390px, 44vw);
  }

  .lokaly-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .lokaly-hero__visual-card {
    left: 7%;
    width: 86%;
  }

  .lokaly-hero__visual-card--secondary {
    right: 7%;
    left: auto;
  }
}

@media (max-width: 991.98px) {
  .lokaly-hero {
    grid-template-columns: 1fr;
  }

  .lokaly-hero__visual {
    min-height: 320px;
  }

  .lokaly-benefits {
    grid-template-columns: 1fr;
  }

  .lokaly-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 767.98px) {
  .container,
  .container-md,
  .columns-container {
    --bs-gutter-x: 1.25rem;
  }

  #wrapper {
    padding-block: 18px 38px;
  }

  .lokaly-home-shell,
  body#index .page-content--home > :not(.lokaly-home-shell),
  body#index .page-content--home > .featured-products,
  body#index .page-content--home > .product-accessories {
    width: min(calc(100% - 20px), 1320px);
  }

  .header-bottom {
    min-height: 68px;
  }

  .header-bottom__container {
    padding-block: 9px;
  }

  .header-bottom__logo img,
  .header-bottom__logo svg {
    max-width: 116px;
    max-height: 42px;
  }

  .lokaly-header__main {
    grid-template-columns: minmax(120px, 1fr) auto auto;
    gap: 6px;
    min-height: 68px;
    padding-block: 9px;
  }

  .lokaly-header__logo img,
  .lokaly-header__logo svg {
    max-width: 116px;
    max-height: 42px;
  }

  .lokaly-header__search {
    display: flex;
    justify-content: flex-end;
  }

  .lokaly-header__search .ps-searchbar--mobile {
    padding: 0;
  }

  .lokaly-header__navigation .container-md {
    padding-inline: 10px;
  }

  .lokaly-header__navigation .ps-mainmenu__tree {
    min-height: 42px;
  }

  .lokaly-hero {
    margin-top: 16px;
    border-radius: 24px;
  }

  .lokaly-hero__content {
    padding: 34px 22px;
  }

  .lokaly-hero__title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .lokaly-hero__search {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 7px 14px;
  }

  .lokaly-hero__search-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 7px;
  }

  .lokaly-hero__visual {
    min-height: 300px;
  }

  .lokaly-hero__visual-card {
    top: 15%;
  }

  .lokaly-hero__visual-card--secondary {
    top: auto;
    bottom: 13%;
  }

  .lokaly-hero__bolt {
    width: 62px;
    height: 62px;
  }

  .lokaly-benefit {
    padding: 15px;
  }

  .lokaly-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .lokaly-category {
    min-height: 74px;
    padding: 11px;
  }

  .lokaly-local-banner {
    gap: 12px;
    padding: 17px;
  }

  .lokaly-local-banner__icon {
    width: 48px;
    height: 48px;
  }

  .lokaly-speed-banner,
  .lokaly-value-banner {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .lokaly-speed-banner__icon,
  .lokaly-value-banner__icon {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .lokaly-speed-banner > a,
  .lokaly-value-banner > a {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .product-miniature__bottom {
    padding: 14px;
  }

  .product__right {
    padding-inline: 0;
  }

  .product__actions {
    padding: 17px;
  }

  .footer__main {
    padding-block: 38px 24px;
  }
}

@media (min-width: 768px) {
  .lokaly-header__search #_desktop_ps_searchbar {
    display: flex !important;
  }
}

@media (max-width: 399.98px) {
  .lokaly-hero__title {
    font-size: 2.25rem;
  }

  .lokaly-hero__description {
    font-size: 0.95rem;
  }

  .lokaly-hero__visual-card {
    padding: 14px;
  }
}

/* Header marketplace 1.9.0 — Amazon-like hierarchy, Lokaly visual language. */
#header {
  border: 0;
  color: #fff;
  background: var(--lokaly-navy-deep);
  box-shadow: 0 8px 24px rgba(7, 29, 49, 0.14);
}

#header .lokaly-header {
  color: #fff;
  background: var(--lokaly-navy-deep);
}

.lokaly-header__utility-inner,
.lokaly-header__main,
.lokaly-header__navigation-inner {
  width: min(calc(100% - 40px), 1760px);
  margin-inline: auto;
}

.lokaly-header__utility {
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #061827;
}

.lokaly-header__utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #c8d7e3;
  font-size: 0.68rem;
  font-weight: 700;
}

.lokaly-header__utility-promise,
.lokaly-header__utility-links,
.lokaly-header__utility-links > span,
.lokaly-header__utility-links > a {
  display: flex;
  align-items: center;
}

.lokaly-header__utility-promise,
.lokaly-header__utility-links > span,
.lokaly-header__utility-links > a {
  gap: 5px;
}

.lokaly-header__utility-promise .material-icons,
.lokaly-header__utility-links .material-icons {
  color: var(--lokaly-green);
  font-size: 0.95rem;
}

.lokaly-header__utility-links {
  gap: 20px;
}

.lokaly-header__utility-links a {
  color: #c8d7e3;
  text-decoration: none;
}

.lokaly-header__utility-links a:hover,
.lokaly-header__utility-links a:focus-visible {
  color: #fff;
}

#header .lokaly-header__main {
  display: grid;
  grid-template-columns: minmax(130px, 160px) minmax(150px, 190px) minmax(340px, 1fr) auto;
  min-height: 82px;
  align-items: center;
  gap: clamp(12px, 1.5vw, 26px);
  padding-block: 12px;
}

#header .lokaly-header__logo {
  display: flex;
  min-width: 0;
  align-items: center;
}

#header .lokaly-header__logo h1,
#header .lokaly-header__logo .navbar-brand {
  display: block;
  margin: 0;
}

#header .lokaly-header__logo .navbar-brand {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.13);
}

#header .lokaly-header__logo img,
#header .lokaly-header__logo svg {
  display: block;
  width: auto;
  max-width: 136px;
  max-height: 40px;
}

#header .lokaly-header__location {
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
}

#header .lokaly-header__location:hover {
  background: rgba(255, 255, 255, 0.08);
}

#header .lokaly-header__location-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  color: var(--lokaly-green);
  background: rgba(98, 219, 135, 0.13);
  font-size: 1.25rem;
}

#header .lokaly-header__location small,
#header .lokaly-header__location strong {
  display: block;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#header .lokaly-header__location small {
  margin: 0 0 1px;
  color: #aebfcd;
  font-size: 0.61rem;
  font-weight: 650;
}

#header .lokaly-header__location strong {
  font-size: 0.76rem;
  font-weight: 850;
}

#header .lokaly-header__search,
#header .lokaly-header__search #_desktop_ps_searchbar,
#header .lokaly-header__search .ps-searchbar,
#header .lokaly-header__search .ps-searchbar__form {
  width: 100%;
  min-width: 0;
  max-width: none;
}

#header .lokaly-header__search #_desktop_ps_searchbar {
  margin: 0 !important;
  padding: 0 !important;
}

#header .lokaly-header__search .ps-searchbar__form {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  overflow: hidden;
  padding: 4px 58px 4px 16px;
  border: 2px solid transparent;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

#header .lokaly-header__search .ps-searchbar__form:focus-within {
  border-color: var(--lokaly-green);
  box-shadow: 0 0 0 3px rgba(98, 219, 135, 0.2), 0 10px 28px rgba(0, 0, 0, 0.16);
}

#header .lokaly-header__search .ps-searchbar__input {
  min-width: 0;
  min-height: 40px;
  padding: 0 42px 0 0;
  border: 0;
  color: var(--lokaly-text);
  background: transparent;
  font-size: 0.82rem;
  box-shadow: none;
}

#header .lokaly-header__search .ps-searchbar__input::placeholder {
  color: #778699;
  opacity: 1;
}

#header .lokaly-header__search .ps-searchbar__magnifier {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: 4px;
  bottom: 4px;
  display: grid;
  width: 46px;
  height: auto;
  place-items: center;
  margin: 0;
  border-radius: 11px;
  color: var(--lokaly-navy-deep);
  background: var(--lokaly-green);
  font-size: 1.35rem;
  cursor: pointer;
}

#header .lokaly-header__search .ps-searchbar__magnifier:hover {
  background: #78e598;
}

#header .lokaly-header__search .ps-searchbar__clear {
  position: absolute;
  z-index: 3;
  right: 55px;
  margin: 0;
  color: #637186;
}

#header .lokaly-header__search .ps-searchbar__dropdown {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 0 0 16px 16px;
  color: var(--lokaly-text);
  background: #fff;
  box-shadow: 0 22px 50px rgba(7, 29, 49, 0.2);
}

#header .lokaly-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

#header .lokaly-header__actions > div,
#header .lokaly-header__actions .header-block,
#header .lokaly-header__actions .ps-customersignin,
#header .lokaly-header__actions .ps-shoppingcart {
  margin: 0 !important;
}

#header .lokaly-header__actions .header-block__action-btn {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px !important;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
}

#header .lokaly-header__actions .header-block__action-btn:hover {
  border-color: rgba(255, 255, 255, 0.17);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}

#header .lokaly-header__actions .header-block__icon {
  color: var(--lokaly-green) !important;
  font-size: 1.45rem;
}

#header .lokaly-header__actions .header-block__title {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
  min-width: 116px;
  border-color: rgba(98, 219, 135, 0.32);
  color: #fff;
  background: rgba(98, 219, 135, 0.1);
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__icon {
  color: #fff !important;
}

#header .lokaly-header__actions .header-block__badge,
#header .lokaly-header__mobile-actions .header-block__badge {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  margin: 0;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--lokaly-navy-deep);
  background: var(--lokaly-green);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
}

#header .lokaly-header__navigation {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--lokaly-green);
  background: var(--lokaly-navy);
}

#header .lokaly-header__navigation-inner {
  display: flex;
  min-height: 46px;
  align-items: stretch;
  gap: 12px;
}

#header .lokaly-header__catalog-link,
#header .lokaly-header__fast-link {
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 0 13px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 850;
  text-decoration: none;
}

#header .lokaly-header__catalog-link {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

#header .lokaly-header__catalog-link:hover,
#header .lokaly-header__fast-link:hover {
  color: var(--lokaly-green);
  background: rgba(255, 255, 255, 0.06);
}

#header .lokaly-header__catalog-link .material-icons,
#header .lokaly-header__fast-link .material-icons {
  font-size: 1.15rem;
}

#header .lokaly-header__fast-link {
  margin-left: auto;
  color: var(--lokaly-green);
}

#header .lokaly-header__navigation .ps-mainmenu--desktop {
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  padding: 0;
}

#header .lokaly-header__navigation .ps-mainmenu__tree {
  min-height: 46px;
  justify-content: flex-start;
  gap: 2px;
}

#header .lokaly-header__navigation .ps-mainmenu__tree-link {
  padding-inline: 12px;
  color: #e7eef4;
  font-size: 0.75rem;
  font-weight: 750;
}

#header .lokaly-header__navigation .ps-mainmenu__tree-link::after {
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: var(--lokaly-green);
}

#header .lokaly-header__navigation .ps-mainmenu__tree-link:hover,
#header .lokaly-header__navigation .ps-mainmenu__tree-item.current .ps-mainmenu__tree-link {
  color: #fff;
}

#header .lokaly-header__navigation .ps-mainmenu__tree-dropdown-toggle {
  color: #c8d7e3;
}

#header .lokaly-header__navigation .submenu {
  color: var(--lokaly-text);
  border: 1px solid var(--lokaly-border);
  border-radius: 0 0 20px 20px;
  background: #fff;
  box-shadow: 0 24px 56px rgba(7, 29, 49, 0.22);
}

#header .lokaly-header__navigation .submenu a {
  color: var(--lokaly-text);
}

#header .lokaly-header__navigation .submenu a:hover {
  color: var(--lokaly-blue);
}

@media (max-width: 1199.98px) {
  #header .lokaly-header__main {
    grid-template-columns: minmax(126px, 150px) minmax(300px, 1fr) auto;
  }

  #header .lokaly-header__navigation-inner {
    min-height: 44px;
  }

  #header .lokaly-header__navigation .ps-mainmenu {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  #header .lokaly-header__navigation .ps-mainmenu__mobile-toggle {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  #header .lokaly-header__navigation .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 8px 12px;
    color: #fff;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  #header .lokaly-header__navigation .menu-toggle:hover {
    color: var(--lokaly-green);
    background: rgba(255, 255, 255, 0.07);
  }

  #header .lokaly-header__navigation .ps-mainmenu--mobile {
    color: var(--lokaly-text);
    background: #fff;
  }
}

@media (max-width: 767.98px) {
  .lokaly-header__utility-inner,
  .lokaly-header__main,
  .lokaly-header__navigation-inner {
    width: min(calc(100% - 24px), 1760px);
  }

  .lokaly-header__utility,
  .lokaly-header__utility-inner {
    min-height: 30px;
  }

  .lokaly-header__utility-inner {
    justify-content: center;
    font-size: 0.64rem;
  }

  .lokaly-header__utility-links {
    display: none;
  }

  #header .lokaly-header__main {
    grid-template-columns: minmax(105px, 1fr) auto;
    gap: 9px 8px;
    min-height: 0;
    padding-block: 10px 12px;
  }

  #header .lokaly-header__logo {
    grid-column: 1;
    grid-row: 1;
  }

  #header .lokaly-header__logo .navbar-brand {
    padding: 6px 9px;
    border-radius: 11px;
  }

  #header .lokaly-header__logo img,
  #header .lokaly-header__logo svg {
    max-width: 112px;
    max-height: 34px;
  }

  #header .lokaly-header__mobile-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 2px;
  }

  #header .lokaly-header__mobile-actions .header-block__action-btn {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  #header .lokaly-header__mobile-actions .header-block__icon {
    color: #fff;
    font-size: 1.35rem;
  }

  #header .lokaly-header__mobile-actions .header-block__badge {
    position: absolute;
    top: -5px;
    right: -5px;
  }

  #header .lokaly-header__search {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  #header .lokaly-header__search #_desktop_ps_searchbar {
    display: flex !important;
  }

  #header .lokaly-header__search .ps-searchbar--mobile {
    display: none !important;
  }

  #header .lokaly-header__search .ps-searchbar__form {
    min-height: 48px;
    padding-right: 54px;
    border-radius: 13px;
  }

  #header .lokaly-header__search .ps-searchbar__magnifier {
    width: 42px;
    border-radius: 10px;
  }

  #header .lokaly-header__search .ps-searchbar__input {
    min-height: 36px;
    padding-left: 0;
    font-size: 0.76rem;
  }

  #header .lokaly-header__navigation {
    border-bottom-width: 2px;
  }

  #header .lokaly-header__navigation-inner,
  #header .lokaly-header__navigation .ps-mainmenu__mobile-toggle {
    min-height: 40px;
  }

  #header .lokaly-header__navigation .menu-toggle {
    width: 100%;
    min-height: 40px;
    justify-content: flex-start;
    padding-inline: 4px;
  }
}

@media (max-width: 359.98px) {
  #header .lokaly-header__logo img,
  #header .lokaly-header__logo svg {
    max-width: 96px;
  }

  #header .lokaly-header__mobile-actions .header-block__action-btn {
    width: 38px;
    height: 38px;
  }
}

/* Keep nearby-product media inside its fixed card area on desktop and mobile. */

.lokaly-nearby-card__image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
}

.lokaly-nearby-card__image img {
  width: 100% !important;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-width: 100% !important;
  max-height: 100% !important;
  flex: 0 1 auto;
  object-fit: contain;
}

/* Header marketplace 1.9.1 — light surface and separated user actions. */
#header,
#header .lokaly-header {
  color: var(--lokaly-text);
  background: #fff;
}

#header {
  box-shadow: 0 5px 22px rgba(7, 29, 49, 0.09);
}

#header .lokaly-header__utility {
  border-bottom-color: #e7edf3;
  background: #f5f8fb;
}

#header .lokaly-header__utility-inner,
#header .lokaly-header__utility-links a {
  color: #526377;
}

#header .lokaly-header__utility-links a:hover,
#header .lokaly-header__utility-links a:focus-visible {
  color: var(--lokaly-blue);
}

#header .lokaly-header__main {
  background: #fff;
}

#header .lokaly-header__logo .navbar-brand {
  padding: 5px 7px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

#header .lokaly-header__location {
  color: var(--lokaly-navy-deep);
}

#header .lokaly-header__location:hover {
  background: #f0f6fb;
}

#header .lokaly-header__location small {
  color: #6b7a8c;
}

#header .lokaly-header__location-icon {
  color: var(--lokaly-blue);
  background: var(--lokaly-surface-blue);
}

#header .lokaly-header__search .ps-searchbar__form {
  border: 1px solid #cfd9e3;
  background: #f8fafc;
  box-shadow: 0 7px 22px rgba(7, 29, 49, 0.07);
}

#header .lokaly-header__search .ps-searchbar__form:focus-within {
  border-color: rgba(3, 124, 250, 0.65);
  box-shadow: 0 0 0 3px rgba(3, 124, 250, 0.1), 0 8px 24px rgba(7, 29, 49, 0.08);
}

#header .lokaly-header__search .ps-searchbar__magnifier {
  color: #fff;
  background: var(--lokaly-blue);
}

#header .lokaly-header__search .ps-searchbar__magnifier:hover {
  background: var(--lokaly-blue-dark);
}

#header .lokaly-header__actions {
  min-height: 56px;
  gap: 0;
  border-left: 1px solid #e1e8ef;
}

#header .lokaly-header__actions #_desktop_ps_customersignin {
  order: 1;
}

#header .lokaly-header__actions .lokaly-header__orders {
  order: 2;
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart {
  order: 3;
}

#header .lokaly-header__actions .header-block__action-btn,
#header .lokaly-header__actions .lokaly-header__orders,
#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 14px !important;
  border: 0;
  border-right: 1px solid #e1e8ef;
  border-radius: 0;
  color: var(--lokaly-navy-deep);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

#header .lokaly-header__actions .header-block__action-btn:hover,
#header .lokaly-header__actions .lokaly-header__orders:hover,
#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn:hover {
  border-color: #e1e8ef;
  color: var(--lokaly-blue);
  background: #f2f7fc;
  transform: none;
}

#header .lokaly-header__actions #_desktop_ps_customersignin .header-block__action-btn {
  position: relative;
  min-width: 146px;
  justify-content: flex-start;
  padding-right: 25px !important;
}

#header .lokaly-header__actions #_desktop_ps_customersignin .header-block__action-btn::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #7c8998;
  border-bottom: 2px solid #7c8998;
  content: "";
  transform: translateY(-70%) rotate(45deg);
}

#header .lokaly-header__actions #_desktop_ps_customersignin .header-block__icon {
  display: none;
}

#header .lokaly-header__actions .header-block__title {
  display: flex !important;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  color: var(--lokaly-navy-deep);
  line-height: 1.08;
  text-align: left;
}

#header .lokaly-header__actions .header-block__title small,
#header .lokaly-header__orders small {
  display: block;
  margin-bottom: 2px;
  color: #68788a;
  font-size: 0.61rem;
  font-weight: 650;
  white-space: nowrap;
}

#header .lokaly-header__actions .header-block__title strong,
#header .lokaly-header__orders strong {
  display: block;
  color: inherit;
  font-size: 0.77rem;
  font-weight: 850;
  white-space: nowrap;
}

#header .lokaly-header__orders {
  display: flex;
  min-width: 78px;
  align-items: flex-start !important;
  flex-direction: column;
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
  min-width: 116px;
  gap: 7px;
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__icon {
  color: var(--lokaly-navy-deep) !important;
  font-size: 1.8rem;
}

#header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__title {
  color: var(--lokaly-navy-deep);
  font-size: 0.8rem;
  font-weight: 850;
}

#header .lokaly-header__actions .header-block__badge,
#header .lokaly-header__mobile-actions .header-block__badge {
  color: #fff;
  background: var(--lokaly-blue);
}

#header .lokaly-header__navigation {
  border-top-color: #e5ebf1;
  border-bottom-color: var(--lokaly-green);
  background: #f4f7fa;
}

#header .lokaly-header__catalog-link,
#header .lokaly-header__fast-link,
#header .lokaly-header__navigation .ps-mainmenu__tree-link,
#header .lokaly-header__navigation .ps-mainmenu__tree-dropdown-toggle {
  color: var(--lokaly-navy-deep);
}

#header .lokaly-header__catalog-link {
  border-right-color: #dce5ed;
}

#header .lokaly-header__catalog-link:hover,
#header .lokaly-header__fast-link:hover,
#header .lokaly-header__navigation .ps-mainmenu__tree-link:hover,
#header .lokaly-header__navigation .ps-mainmenu__tree-item.current .ps-mainmenu__tree-link {
  color: var(--lokaly-blue);
  background: #eaf4ff;
}

#header .lokaly-header__fast-link {
  color: var(--lokaly-green-dark);
}

@media (max-width: 1399.98px) {
  #header .lokaly-header__actions #_desktop_ps_customersignin .header-block__action-btn {
    min-width: 128px;
    padding-inline: 11px 23px !important;
  }

  #header .lokaly-header__actions .header-block__title strong,
  #header .lokaly-header__orders strong {
    font-size: 0.71rem;
  }

  #header .lokaly-header__actions .header-block__action-btn,
  #header .lokaly-header__actions .lokaly-header__orders,
  #header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
    padding-inline: 10px !important;
  }
}

@media (max-width: 991.98px) {
  #header .lokaly-header__main {
    grid-template-columns: minmax(108px, 132px) minmax(220px, 1fr) auto;
    gap: 8px;
  }

  #header .lokaly-header__actions .lokaly-header__orders {
    display: none;
  }

  #header .lokaly-header__actions #_desktop_ps_customersignin .header-block__action-btn {
    min-width: 112px;
  }

  #header .lokaly-header__actions #_desktop_ps_shoppingcart .header-block__action-btn {
    min-width: 94px;
  }

  #header .lokaly-header__actions .header-block__title strong,
  #header .lokaly-header__orders strong {
    font-size: 0.68rem;
  }
}

@media (max-width: 767.98px) {
  #header .lokaly-header__mobile-actions .header-block__action-btn {
    border-color: #dce5ed;
    color: var(--lokaly-navy-deep);
    background: #f3f7fa;
  }

  #header .lokaly-header__mobile-actions .header-block__action-btn:hover {
    color: var(--lokaly-blue);
    background: #eaf4ff;
  }

  #header .lokaly-header__mobile-actions .header-block__icon {
    color: var(--lokaly-navy-deep);
  }

  #header .lokaly-header__navigation .menu-toggle {
    color: var(--lokaly-navy-deep);
  }

  #header .lokaly-header__navigation .menu-toggle:hover {
    color: var(--lokaly-blue);
    background: #eaf4ff;
  }
}

/* Product sheet 1.1 — marketplace / Amazon-like information hierarchy */

body#product #wrapper {
  padding-top: 34px;
  background: #f5f7fa;
}

@media (min-width: 1200px) {
  body#product #wrapper > .columns-container,
  body#product .breadcrumb__wrapper > .container,
  body#product #notifications > .container {
    width: calc(100vw - clamp(36px, 4vw, 80px));
    max-width: 1760px;
    padding-inline: 0;
  }
}

body#product .breadcrumb {
  margin-bottom: 18px;
  color: var(--lokaly-muted);
  font-size: 0.82rem;
}

body#product .product__container {
  display: grid;
  grid-template-columns: minmax(480px, 1.1fr) minmax(720px, 1.6fr);
  align-items: start;
  gap: clamp(30px, 2.25vw, 44px);
  max-width: none;
  margin-inline: auto;
}

body#product .product__left {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 1.7vw, 32px);
  overflow: visible;
  border: 1px solid #e2e7ec;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 29, 49, 0.075);
}

body#product .product__images {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

body#product .product__carousel,
body#product .product__no-image {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

body#product .product__carousel .carousel-inner,
body#product .product__carousel .carousel-item,
body#product .product__carousel picture {
  aspect-ratio: 1 / 1;
}

body#product .product__carousel .carousel-item picture,
body#product .product__no-image picture {
  display: grid;
  place-items: center;
}

body#product .product__carousel .carousel-item img,
body#product .product__no-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body#product .product__thumbnails {
  grid-column: 1;
  grid-row: 1;
  max-height: 570px;
  overflow: auto;
  scrollbar-width: thin;
}

body#product .product__thumbnails-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

body#product .product__thumbnail {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #d6dde4;
  border-radius: 10px;
  background: #fff;
}

body#product .product__thumbnail.active,
body#product .product__thumbnail:hover {
  border-color: var(--lokaly-blue);
  box-shadow: 0 0 0 2px rgba(3, 124, 250, 0.12);
}

body#product .product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body#product .product__zoom {
  right: 14px;
  bottom: 14px;
  border-color: #d8e0e8;
  background: rgba(255, 255, 255, 0.94);
}

body#product .product__right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-auto-flow: row;
  align-content: start;
  gap: 0 clamp(32px, 2.1vw, 44px);
  min-width: 0;
  padding: 0;
}

body#product .product__right > :not(.product__actions) {
  grid-column: 1;
}

body#product .lokaly-product__heading {
  padding: 6px 4px 24px;
  border-bottom: 1px solid #e4e9ee;
}

body#product .lokaly-product__eyebrow,
body#product .lokaly-product__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

body#product .lokaly-product__eyebrow {
  justify-content: space-between;
  margin-bottom: 18px;
  color: #087f40;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body#product .lokaly-product__eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border: 1px solid #ccefd8;
  border-radius: 999px;
  background: #edfbf2;
}

body#product .lokaly-product__eyebrow .material-icons {
  font-size: 1rem;
}

body#product .lokaly-product__local {
  border-color: #cfe5ff !important;
  color: var(--lokaly-blue-dark);
  background: #edf6ff !important;
}

body#product .product__name {
  margin: 0;
  color: #071d31;
  font-size: clamp(1.85rem, 2.25vw, 2.65rem);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -0.032em;
}

body#product .lokaly-product__meta {
  min-height: 22px;
  margin-top: 16px;
  color: #627286;
  font-size: 0.78rem;
}

body#product .lokaly-product__reviews {
  display: none;
}

body#product .lokaly-product__reviews.is-ready {
  display: inline-flex;
}

body#product .lokaly-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4d6074;
  font-size: 0.78rem;
  text-decoration: none;
}

body#product .lokaly-product-rating:hover {
  color: #0564c4;
}

body#product .lokaly-product-rating__value {
  color: #071d31;
  font-size: 0.8rem;
  font-weight: 800;
}

body#product .lokaly-product-rating__stars {
  position: relative;
  display: inline-block;
  width: 5.3em;
  height: 1.1em;
  overflow: hidden;
  color: #d8dee5;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body#product .lokaly-product-rating__stars::before,
body#product .lokaly-product-rating__stars::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
}

body#product .lokaly-product-rating__stars::after {
  width: var(--lokaly-rating-percent, 0%);
  overflow: hidden;
  color: #f4a300;
}

body#product .lokaly-product-rating__count {
  color: #0564c4;
  font-weight: 750;
}

body#product .product__manufacturer {
  margin-top: 20px;
  padding-inline: 4px;
  font-size: 0.9rem;
}

body#product .product__manufacturer::before {
  color: #66778a;
  content: "Venduto da ";
}

body#product .product__manufacturer a {
  color: #087f40;
  font-weight: 800;
  text-decoration: none;
}

body#product .lokaly-product__price-area {
  margin-top: 26px;
  padding: 0 4px 26px;
  border-bottom: 1px solid #e4e9ee;
}

body#product .lokaly-product__section-label {
  display: block;
  margin-bottom: 2px;
  color: #68788b;
  font-size: 0.78rem;
}

body#product .lokaly-product__price-area .product__prices {
  margin: 0;
}

body#product .lokaly-product__price-area .product__price {
  color: #071d31;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.1;
}

body#product .product__discount-percentage,
body#product .product__discount-amount {
  padding: 3px 8px;
  border-radius: 6px;
  color: #fff !important;
  background: #cc0c39;
  font-size: 0.76rem;
  font-weight: 800;
}

body#product .lokaly-product__summary {
  margin-top: 28px;
  padding-inline: 4px;
}

body#product .lokaly-product__summary h2 {
  margin: 0 0 14px;
  color: #071d31;
  font-size: 1.08rem;
  font-weight: 800;
}

body#product .product__description-short {
  max-width: 72ch;
  color: #27384a;
  font-size: 0.96rem;
  line-height: 1.72;
}

body#product .product__description-short ul {
  padding-left: 1.15rem;
}

body#product .product__description-short li + li {
  margin-top: 5px;
}

body#product .product__customization {
  margin-top: 28px;
  padding-inline: 4px;
}

body#product .product__actions {
  position: sticky;
  top: 104px;
  grid-column: 2;
  grid-row: 1 / span 20;
  align-self: start;
  width: 320px;
  margin: 0;
  padding: 22px;
  border: 1px solid #d7dee5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 29, 49, 0.11);
}

body#product .product__actions form {
  margin: 0;
}

body#product .lokaly-buybox__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

body#product .lokaly-buybox__price span {
  color: #6a798a;
  font-size: 0.78rem;
}

body#product .lokaly-buybox__price strong {
  color: #071d31;
  font-size: 1.55rem;
  line-height: 1;
}

body#product .lokaly-buybox__delivery {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  padding: 13px;
  border-radius: 12px;
  color: #095f33;
  background: #e8f8ed;
}

body#product .lokaly-buybox__delivery-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  color: #071d31;
  background: #62db87;
  font-size: 1.15rem;
}

body#product .lokaly-buybox__delivery strong,
body#product .lokaly-buybox__delivery span:not(.material-icons) {
  display: block;
}

body#product .lokaly-buybox__delivery strong {
  font-size: 0.88rem;
}

body#product .lokaly-buybox__delivery span:not(.material-icons) {
  margin-top: 2px;
  font-size: 0.72rem;
  line-height: 1.35;
}

body#product .lokaly-buybox__section {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e9ed;
}

body#product .lokaly-buybox__section h2 {
  margin: 0 0 9px;
  color: #071d31;
  font-size: 0.86rem;
  font-weight: 800;
}

body#product .product__variants {
  margin: 0;
}

body#product .product-variant {
  margin-bottom: 11px;
}

body#product .product__availability {
  margin-bottom: 12px;
}

body#product .product__availability-status {
  font-weight: 750;
}

body#product .product__actions-qty-add {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: stretch;
  gap: 9px;
}

body#product .product-actions__quantity,
body#product .product__add-to-cart,
body#product .product__add-to-cart-button {
  width: 100%;
}

body#product .product__add-to-cart-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #14974c, #087f40);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(8, 127, 64, 0.22);
}

body#product .product__add-to-cart-button:hover {
  background: linear-gradient(135deg, #087f40, #066933);
}

body#product .lokaly-buybox__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid #e5e9ed;
}

body#product .lokaly-buybox__benefits span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  color: #526477;
  font-size: 0.62rem;
  line-height: 1.25;
  text-align: center;
}

body#product .lokaly-buybox__benefits .material-icons {
  color: #087f40;
  font-size: 1.25rem;
}

body#product .lokaly-buybox__seller {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #e5e9ed;
  color: #314559;
}

body#product .lokaly-buybox__seller > .material-icons {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #087f40;
  background: #e8f8ed;
  font-size: 1.1rem;
}

body#product .lokaly-buybox__seller small,
body#product .lokaly-buybox__seller strong {
  display: block;
}

body#product .lokaly-buybox__seller small {
  color: #6c7b8c;
  font-size: 0.68rem;
}

body#product .lokaly-buybox__seller strong {
  margin-top: 1px;
  color: #071d31;
  font-size: 0.82rem;
}

body#product .product__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(30px, 2.1vw, 44px);
  max-width: none;
  margin: 54px auto 0;
}

body#product .product__accordion {
  border: 1px solid #e0e6ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(7, 29, 49, 0.05);
}

body#product .product__accordion .accordion-button {
  color: #071d31;
  font-weight: 800;
}

body#product .product__bottom-right > * {
  overflow: hidden;
  border: 1px solid #e0e6ec;
  border-radius: 18px;
  background: #fff;
}

body#product .product__accessories {
  max-width: none;
  margin: 48px auto 0;
}

/* Native image modal: keep the complete gallery inside the visible viewport. */

body#product .product-images-modal {
  padding: 0 !important;
}

body#product .product-images-modal .modal-dialog {
  width: calc(100vw - 40px);
  max-width: 1480px;
  height: calc(100vh - 40px);
  height: calc(100dvh - 40px);
  max-height: 980px;
  margin: 20px auto;
}

body#product .product-images-modal .modal-content {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(7, 29, 49, 0.24);
}

body#product .product-images-modal .modal-header {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  padding: 0;
  border: 0;
}

body#product .product-images-modal .btn-close {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(7, 29, 49, 0.16);
  opacity: 1;
}

body#product .product-images-modal__body {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 28px 76px 32px;
  overflow: hidden;
}

body#product .product-images-modal__carousel,
body#product .product-images-modal__carousel .carousel-inner,
body#product .product-images-modal__carousel .carousel-item,
body#product .product-images-modal__carousel picture {
  width: 100%;
  height: 100%;
  min-height: 0;
}

body#product .product-images-modal__carousel picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

body#product .product-images-modal__carousel img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

body#product .product-images-modal__carousel .carousel-control-prev,
body#product .product-images-modal__carousel .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  bottom: auto;
  border: 1px solid #dce4eb;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 29, 49, 0.12);
  opacity: 1;
  transform: translateY(-50%);
}

body#product .product-images-modal__carousel .carousel-control-prev {
  left: -58px;
}

body#product .product-images-modal__carousel .carousel-control-next {
  right: -58px;
}

body#product .product-images-modal__carousel .carousel-control-prev-icon,
body#product .product-images-modal__carousel .carousel-control-next-icon {
  filter: invert(16%) sepia(20%) saturate(1470%) hue-rotate(166deg) brightness(88%);
}

/* Amazon-like hover zoom, desktop mouse devices only. */

@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  body#product .product__carousel .carousel-item.active img {
    cursor: crosshair;
  }

  .lokaly-product-zoom-panel {
    position: fixed;
    z-index: 1045;
    display: block;
    overflow: hidden;
    border: 1px solid #d7e1ea;
    border-radius: 22px;
    pointer-events: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 225% 225%;
    box-shadow: 0 24px 70px rgba(7, 29, 49, 0.22);
    opacity: 0;
    transform: translateY(8px) scale(0.985);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  .lokaly-product-zoom-panel.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .lokaly-product-zoom-panel__hint {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border: 1px solid rgba(3, 124, 250, 0.14);
    border-radius: 999px;
    color: #0564c4;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 5px 16px rgba(7, 29, 49, 0.1);
  }
}

/* Description and details use the full row; generic reassurance policies are removed. */

body#product .product__bottom {
  grid-template-columns: minmax(0, 1fr);
}

body#product .product__bottom-left {
  width: 100%;
  min-width: 0;
}

body#product .product__bottom-right {
  display: none !important;
}

body#product .product__accordion {
  border-radius: 24px;
}

body#product .product__accordion .accordion-button {
  min-height: 72px;
  padding: 20px clamp(24px, 2.2vw, 36px) !important;
  color: #071d31;
  background: #edf6ff;
  font-size: 1.08rem;
  line-height: 1.35;
}

body#product .product__accordion .accordion-button.collapsed {
  background: #fff;
}

body#product .product__accordion .accordion-button::after {
  margin-left: 24px;
}

body#product .product__accordion .accordion-body {
  padding: 26px clamp(24px, 2.2vw, 36px) 34px !important;
}

body#product .product__accordion .product__description,
body#product .product__accordion .product__details,
body#product .product__accordion .rich-text {
  color: #27384a;
  font-size: 0.96rem;
  line-height: 1.72;
}

body#product .product__accordion .rich-text > :first-child {
  margin-top: 0;
}

body#product .product__accordion .rich-text > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1299.98px) {
  body#product .product__container {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
  }

  body#product .product__right {
    grid-template-columns: minmax(0, 1fr);
  }

  body#product .product__actions {
    position: static;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 22px;
  }
}

@media (max-width: 991.98px) {
  body#product .product__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }

  body#product .product__left {
    position: static;
  }

  body#product .product__images {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }

  body#product .product__thumbnail {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  body#product .product__bottom {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  body#product #wrapper {
    background: #fff;
  }

  body#product .breadcrumb {
    margin-bottom: 10px;
  }

  body#product .product__container {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body#product .product__left {
    padding: 8px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body#product .product__images {
    grid-template-columns: minmax(0, 1fr);
  }

  body#product .product__carousel,
  body#product .product__no-image {
    grid-column: 1;
    grid-row: 1;
  }

  body#product .product__thumbnails {
    grid-column: 1;
    grid-row: 2;
    max-height: none;
    overflow-x: auto;
  }

  body#product .product__thumbnails-list {
    flex-direction: row;
  }

  body#product .product__right {
    display: grid;
    padding: 0;
  }

  body#product .product__name {
    font-size: 1.45rem;
  }

  body#product .lokaly-product__eyebrow {
    font-size: 0.65rem;
  }

  body#product .lokaly-product__price-area .product__price {
    font-size: 1.9rem;
  }

  body#product .lokaly-product__summary {
    margin-top: 16px;
  }

  body#product .product__actions {
    margin: 18px -2px 0;
    padding: 17px;
    border-radius: 16px;
  }

  body#product .product__bottom {
    margin-top: 28px;
  }

  body#product .product-images-modal .modal-dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    height: calc(100dvh - 16px);
    margin: 8px auto;
  }

  body#product .product-images-modal .modal-content {
    border-radius: 18px;
  }

  body#product .product-images-modal__body {
    padding: 56px 14px 18px;
  }

  body#product .product-images-modal__carousel .carousel-control-prev,
  body#product .product-images-modal__carousel .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  body#product .product-images-modal__carousel .carousel-control-prev {
    left: 6px;
  }

  body#product .product-images-modal__carousel .carousel-control-next {
    right: 6px;
  }

  body#product .product__accordion .accordion-button {
    min-height: 62px;
    padding: 17px 20px !important;
    font-size: 1rem;
  }

  body#product .product__accordion .accordion-body {
    padding: 21px 20px 27px !important;
  }
}

@media (max-width: 399.98px) {
  body#product .product__actions-qty-add {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  body#product .lokaly-buybox__benefits {
    gap: 4px;
  }
}

/* Category 1.3 — full-width marketplace layout */

body#category #wrapper {
  padding-top: 34px;
  background: #f5f7fa;
}

body#category .category__header {
  margin-bottom: 26px;
  padding: clamp(24px, 2.5vw, 38px);
  overflow: hidden;
  border: 1px solid #dce8f2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(98, 219, 135, 0.18), transparent 26%),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 64%);
  box-shadow: 0 14px 38px rgba(7, 29, 49, 0.07);
}

body#category .category__header .page-title-section {
  margin: 0;
  color: #071d31;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

body#category .category__description {
  max-width: 74ch;
  margin-top: 14px;
  color: #526477;
  font-size: 1rem;
  line-height: 1.65;
}

body#category .subcategory {
  margin-top: 24px;
}

body#category .subcategory__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body#category .subcategory__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #d6e4f1;
  border-radius: 999px;
  color: #17324b;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(7, 29, 49, 0.05);
}

body#category .subcategory__link:hover {
  border-color: rgba(3, 124, 250, 0.32);
  color: #0564c4;
  background: #fff;
  transform: translateY(-1px);
}

body#category #products .products__selection {
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid #dfe6ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 29, 49, 0.05);
}

body#category #products .products {
  gap: 24px;
}

body#category #products .product-miniature {
  width: auto;
  min-width: 0;
  margin: 0;
}

body#category #products .product-miniature__inner {
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(7, 29, 49, 0.07);
}

body#category #products .product-miniature__top {
  aspect-ratio: 1 / 1;
}

body#category #products .product-miniature__image,
body#category #products .product-miniature__image picture,
body#category #products .product-miniature__image img {
  width: 100%;
  height: 100%;
}

body#category #products .product-miniature__image img {
  object-fit: contain;
}

body#category #left-column > .left-block,
body#category #left-column > #search_filters,
body#category #left-column > .faceted-search {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 29, 49, 0.07);
}

body#category #left-column .left-block__title,
body#category #left-column .facet__title {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid #e4eaf0;
  color: #071d31;
  background: #edf6ff;
  font-size: 0.98rem;
  font-weight: 800;
}

body#category #left-column .category-tree .accordion,
body#category #left-column .facet__content,
body#category #left-column .facet ul {
  padding: 10px 12px 14px;
}

body#category #left-column .category-tree__item-link,
body#category #left-column .facet-label a {
  color: #31465b;
  font-size: 0.84rem;
  line-height: 1.4;
  text-decoration: none;
}

body#category #left-column .category-tree__item-link:hover,
body#category #left-column .facet-label a:hover {
  color: #037cfa;
}

@media (min-width: 992px) {
  body#category #wrapper > .columns-container,
  body#category .breadcrumb__wrapper > .container,
  body#category #notifications > .container {
    width: calc(100vw - clamp(32px, 4vw, 80px));
    max-width: 1760px;
    padding-inline: 0;
  }

  body#category .columns-container > .row {
    --bs-gutter-x: clamp(26px, 2.2vw, 40px);
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  body#category #left-column {
    position: sticky;
    top: 104px;
    width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    align-self: flex-start;
  }

  body#category #center-column {
    width: auto;
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
  }

  body#category #products .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  body#category #products .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body#category .category__header {
    border-radius: 22px;
  }

  body#category #products .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  body#category #wrapper {
    padding-top: 20px;
  }

  body#category .category__header {
    margin-bottom: 18px;
    padding: 22px 18px;
  }

  body#category .category__header .page-title-section {
    font-size: 1.85rem;
  }

  body#category .subcategory {
    margin-top: 18px;
  }

  body#category .subcategory__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body#category .subcategory__list::-webkit-scrollbar {
    display: none;
  }

  body#category .subcategory__link {
    flex: 0 0 auto;
  }

  body#category #products .products {
    gap: 12px;
  }

  body#category #products .product-miniature__bottom {
    padding: 13px;
  }
}

/* New products 1.6 — same full-width marketplace language as category pages. */

body#new-products #wrapper {
  padding-top: 34px;
  background: #f5f7fa;
}

body#new-products .lokaly-listing-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding: clamp(24px, 2.5vw, 38px);
  overflow: hidden;
  border: 1px solid #dce8f2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(98, 219, 135, 0.22), transparent 27%),
    linear-gradient(135deg, #eef7ff 0%, #ffffff 64%);
  box-shadow: 0 14px 38px rgba(7, 29, 49, 0.07);
}

body#new-products .lokaly-listing-hero p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #087f40;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body#new-products .lokaly-listing-hero p .material-icons {
  font-size: 1.05rem;
}

body#new-products .lokaly-listing-hero h1 {
  margin: 0;
  color: #071d31;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

body#new-products .lokaly-listing-hero div > span {
  display: block;
  margin-top: 12px;
  color: #526477;
  line-height: 1.6;
}

body#new-products .lokaly-listing-hero > i {
  display: grid;
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 22px;
  color: #087f40;
  background: #c9f5d9;
  font-size: 2.9rem;
  transform: rotate(6deg);
}

body#new-products #products .products__selection {
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid #dfe6ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 29, 49, 0.05);
}

body#new-products #products .products {
  gap: 24px;
}

body#new-products #products .product-miniature {
  width: auto;
  min-width: 0;
  margin: 0;
}

body#new-products #products .product-miniature__inner {
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(7, 29, 49, 0.07);
}

body#new-products #products .product-miniature__top {
  aspect-ratio: 1 / 1;
}

body#new-products #products .product-miniature__image,
body#new-products #products .product-miniature__image picture,
body#new-products #products .product-miniature__image img {
  width: 100%;
  height: 100%;
}

body#new-products #products .product-miniature__image img {
  object-fit: contain;
}

body#new-products #left-column > .left-block,
body#new-products #left-column > #search_filters,
body#new-products #left-column > .faceted-search {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 29, 49, 0.07);
}

body#new-products #left-column .left-block__title,
body#new-products #left-column .facet__title {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid #e4eaf0;
  color: #071d31;
  background: #edf6ff;
  font-size: 0.98rem;
  font-weight: 800;
}

body#new-products #left-column .category-tree .accordion,
body#new-products #left-column .facet__content,
body#new-products #left-column .facet ul {
  padding: 10px 12px 14px;
}

body#new-products #left-column .category-tree__item-link,
body#new-products #left-column .facet-label a {
  color: #31465b;
  font-size: 0.84rem;
  line-height: 1.4;
  text-decoration: none;
}

body#new-products #left-column .category-tree__item-link:hover,
body#new-products #left-column .facet-label a:hover {
  color: #037cfa;
}

@media (min-width: 992px) {
  body#new-products #wrapper > .columns-container,
  body#new-products .breadcrumb__wrapper > .container,
  body#new-products #notifications > .container {
    width: calc(100vw - clamp(32px, 4vw, 80px));
    max-width: 1760px;
    padding-inline: 0;
  }

  body#new-products .columns-container > .row {
    --bs-gutter-x: clamp(26px, 2.2vw, 40px);
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  body#new-products #left-column {
    position: sticky;
    top: 104px;
    width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
    align-self: flex-start;
  }

  body#new-products #center-column {
    width: auto;
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
  }

  body#new-products #products .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  body#new-products #products .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body#new-products .lokaly-listing-hero {
    border-radius: 22px;
  }

  body#new-products #products .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  body#new-products #wrapper {
    padding-top: 20px;
  }

  body#new-products .lokaly-listing-hero {
    margin-bottom: 18px;
    padding: 22px 18px;
  }

  body#new-products .lokaly-listing-hero h1 {
    font-size: 1.85rem;
  }

  body#new-products .lokaly-listing-hero > i {
    display: none;
  }

  body#new-products #products .products {
    gap: 12px;
  }

  body#new-products #products .product-miniature__bottom {
    padding: 13px;
  }
}

/* Product quantity: minus, value and plus stay on one horizontal row. */

body#product .product__actions-qty-add {
  grid-template-columns: 112px minmax(0, 1fr);
}

body#product .quantity-button__group.input-group {
  display: grid !important;
  grid-template-columns: 32px minmax(48px, 1fr) 32px;
  align-items: stretch;
  width: 112px !important;
  height: 48px;
  flex-wrap: nowrap !important;
  overflow: hidden;
  border: 1px solid #d8e1e9;
  border-radius: 999px;
  background: #fff;
}

/* Marketplace filters 1.7 — custom Amazon-like sidebar on every catalog listing. */

.lokaly-market-filters {
  overflow: hidden;
  border: 1px solid #d9e2eb !important;
  border-radius: 22px !important;
  color: #0c1a2a;
  background: #fff !important;
  box-shadow: 0 12px 34px rgba(7, 29, 49, 0.08) !important;
}

.lokaly-market-filters__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 19px 17px;
  border-bottom: 1px solid #e2e8ef;
  background: linear-gradient(135deg, #eef7ff, #fff);
}

.lokaly-market-filters__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #037cfa;
  background: #dceeff;
  font-size: 1.35rem;
}

.lokaly-market-filters__header small {
  display: block;
  margin-bottom: 2px;
  color: #158541;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.lokaly-market-filters__header .left-block__title {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #071d31 !important;
  background: transparent !important;
  font-size: 1.12rem !important;
  font-weight: 850 !important;
  line-height: 1.15;
}

.lokaly-market-filters__clear {
  padding: 12px 18px;
  border-bottom: 1px solid #e8edf2;
  background: #fbfcfd;
}

.lokaly-market-filters__clear a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0564c4;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.lokaly-market-filters__clear .material-icons {
  font-size: 1rem;
}

.lokaly-market-filters__groups,
.lokaly-market-filters__group {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.lokaly-market-filters__group + .lokaly-market-filters__group {
  border-top: 1px solid #e5eaf0 !important;
}

.lokaly-market-filters__group > .accordion-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #071d31 !important;
  background: #fff !important;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  box-shadow: none !important;
}

.lokaly-market-filters__group > .accordion-button::after {
  display: none;
}

.lokaly-market-filters__group > .accordion-button i {
  color: #637186;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.lokaly-market-filters__group > .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.lokaly-market-filters__options {
  max-height: 252px;
  margin: 0 !important;
  padding: 0 13px 14px !important;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #c9d5df transparent;
  scrollbar-width: thin;
}

.lokaly-market-filters__options li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lokaly-market-filters .facet-label,
.lokaly-market-filters .form-check {
  width: 100%;
  margin: 0;
  padding: 0;
}

.lokaly-market-filters .form-check-label {
  display: flex;
  width: 100%;
  min-height: 37px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 6px 7px 30px;
  border-radius: 9px;
  cursor: pointer;
}

.lokaly-market-filters .form-check-label:hover,
.lokaly-market-filters .facet-label.active .form-check-label {
  background: #eef7ff;
}

.lokaly-market-filters .form-check-input {
  width: 17px;
  height: 17px;
  margin: 10px 0 0 7px !important;
  border: 1.5px solid #8f9dad;
  border-radius: 4px;
  box-shadow: none;
}

.lokaly-market-filters .form-check-input[type='radio'] {
  border-radius: 50%;
}

.lokaly-market-filters .form-check-input:checked {
  border-color: #037cfa;
  background-color: #037cfa;
}

.lokaly-market-filters .form-check-input:focus-visible {
  outline: 3px solid rgba(3, 124, 250, 0.24);
  outline-offset: 2px;
}

.lokaly-market-filters .search-filters__link,
.lokaly-market-filters .search-filters__color-label {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #263b52 !important;
  font-size: 0.8rem !important;
  font-weight: 520;
  line-height: 1.3;
  text-decoration: none !important;
}

.lokaly-market-filters .search-filters__link > span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lokaly-market-filters .search-filters__link small,
.lokaly-market-filters .search-filters__color-label small {
  display: grid;
  min-width: 25px;
  height: 22px;
  padding: 0 6px;
  place-items: center;
  border-radius: 999px;
  color: #637186;
  background: #edf2f7;
  font-size: 0.65rem;
  font-weight: 750;
}

.lokaly-market-filters .color.color-sm {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 7px;
  box-shadow: 0 0 0 1px #cdd6df;
}

.lokaly-market-filters .color.color-sm.active {
  box-shadow: 0 0 0 2px #037cfa;
}

.lokaly-market-filters__dropdown,
.lokaly-market-filters__slider {
  padding: 0 18px 18px !important;
}

.lokaly-market-filters__dropdown > button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border: 1px solid #cfd9e3;
  border-radius: 11px;
  color: #263b52;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.lokaly-market-filters .search-filters__slider-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: #071d31;
  font-size: 0.76rem;
  font-weight: 800;
}

.lokaly-market-filters .noUi-target {
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: #dfe7ef;
  box-shadow: none;
}

.lokaly-market-filters .noUi-connect {
  background: linear-gradient(90deg, #037cfa, #62db87);
}

.lokaly-market-filters .noUi-handle {
  width: 19px !important;
  height: 19px !important;
  right: -9px !important;
  top: -7px !important;
  border: 3px solid #037cfa;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 9px rgba(3, 124, 250, 0.25);
}

.lokaly-market-filters .noUi-handle::before,
.lokaly-market-filters .noUi-handle::after {
  display: none;
}

.lokaly-market-filters__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-top: 1px solid #e5eaf0;
  color: #637186;
  background: #f8fafc;
  font-size: 0.68rem;
  line-height: 1.35;
}

.lokaly-market-filters__footer .material-icons {
  color: #158541;
  font-size: 1rem;
}

.lokaly-active-filters {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #dce5ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(7, 29, 49, 0.05);
}

.lokaly-active-filters__heading {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #071d31;
  font-size: 0.78rem;
}

.lokaly-active-filters__heading .material-icons {
  color: #037cfa;
  font-size: 1rem;
}

.lokaly-active-filters .active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.lokaly-active-filters .active-filters__item {
  margin: 0;
  list-style: none;
}

.lokaly-active-filters .active-filters__link {
  display: grid;
  grid-template-columns: auto auto 18px;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 6px 8px 6px 11px;
  border: 1px solid #bdd8f3;
  border-radius: 999px;
  color: #17324b;
  background: #eef7ff;
  font-size: 0.74rem;
  text-decoration: none;
}

.lokaly-active-filters .active-filters__link small {
  color: #637186;
  font-size: 0.66rem;
}

.lokaly-active-filters .active-filters__link span {
  font-weight: 800;
}

.lokaly-active-filters .active-filters__link i {
  font-size: 0.95rem;
}

body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #wrapper {
  background: #f5f7fa;
}

body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #left-column > .category-tree {
  display: none;
}

body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #products .products__selection {
  margin-bottom: 20px;
  padding: 13px 16px;
  border: 1px solid #dce5ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(7, 29, 49, 0.05);
}

body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) .products-selection__filter-button,
body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) .js-search-filters-clear-all {
  border-radius: 12px;
}

@media (min-width: 992px) {
  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #wrapper > .columns-container,
  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) .breadcrumb__wrapper > .container,
  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #notifications > .container {
    width: calc(100vw - clamp(32px, 4vw, 80px));
    max-width: 1760px;
    padding-inline: 0;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) .columns-container > .row {
    --bs-gutter-x: clamp(24px, 2vw, 36px);
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #left-column {
    position: sticky;
    top: 102px;
    width: 292px;
    max-width: 292px;
    flex: 0 0 292px;
    align-self: flex-start;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #center-column {
    width: auto;
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #products .products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #products .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .lokaly-market-filters {
    border-radius: 18px !important;
    box-shadow: none !important;
  }

  .lokaly-market-filters__header {
    position: sticky;
    top: 0;
    z-index: 2;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #products .products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .lokaly-active-filters {
    padding: 12px;
  }

  .lokaly-active-filters .active-filters__link {
    grid-template-columns: auto 17px;
  }

  .lokaly-active-filters .active-filters__link small {
    display: none;
  }

  body:is(#category, #search, #new-products, #best-sales, #prices-drop, #manufacturer, #supplier) #products .products {
    gap: 11px;
  }
}

body#product .quantity-button__group > .btn {
  display: grid;
  width: 32px !important;
  min-width: 32px;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  color: #071d31;
  background: #f4f7fa;
  box-shadow: none !important;
}

body#product .quantity-button__group > .btn:hover {
  color: #0564c4;
  background: #eaf4ff;
}

body#product .quantity-button__group > .form-control {
  width: 100% !important;
  min-width: 0;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 3px !important;
  border-width: 0 1px !important;
  border-style: solid !important;
  border-color: #d8e1e9 !important;
  border-radius: 0 !important;
  text-align: center;
  box-shadow: none !important;
}

@media (max-width: 399.98px) {
  body#product .product__actions-qty-add {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  body#product .quantity-button__group.input-group {
    grid-template-columns: 30px minmax(44px, 1fr) 30px;
    width: 104px !important;
  }

body#product .quantity-button__group > .btn {
    width: 30px !important;
    min-width: 30px;
  }
}

/*
 * Cart and checkout visual skin 1.4.2.
 * CSS only: Hummingbird forms, steps, visibility rules and JavaScript stay native.
 */

body#cart #wrapper,
body#checkout #wrapper {
  padding-block: 30px 64px;
  background:
    radial-gradient(circle at 92% 2%, rgba(98, 219, 135, 0.12), transparent 24rem),
    var(--lokaly-surface);
}

body#cart .breadcrumb__wrapper > .container,
body#checkout .breadcrumb__wrapper > .container,
body#cart #notifications > .container,
body#checkout #notifications > .container,
body#cart #wrapper > .columns-container,
body#checkout #wrapper > .columns-container {
  width: min(calc(100% - 40px), 1500px);
  max-width: 1500px;
}

body#cart .page-title-section,
body#checkout .step__title .page-title-section {
  color: var(--lokaly-navy-deep);
  font-weight: 850;
  letter-spacing: -0.035em;
}

/* Cart */

body#cart .cart-grid {
  align-items: flex-start;
  row-gap: 28px;
}

body#cart .cart-grid__content > .page-title-section {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3vw, 3rem);
}

body#cart .cart-grid__products-details,
body#cart .cart-grid__aside-wrapper {
  border: 1px solid var(--lokaly-border);
  border-radius: 24px;
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

body#cart .cart-grid__products-details {
  padding: clamp(20px, 2.3vw, 32px);
}

body#cart .cart__overview > hr {
  display: none;
}

body#cart .cart__item {
  padding-block: 24px;
}

body#cart .cart__item:first-child {
  padding-top: 0;
}

body#cart .cart__item:last-child {
  padding-bottom: 0;
}

body#cart .cart__item + .cart__item {
  border-top: 1px solid #e8edf2;
}

body#cart .product-line {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

body#cart .product-line__image {
  display: grid;
  width: 132px;
  height: 132px;
  padding: 10px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf1f5;
  border-radius: 18px;
  background: #f7f9fb;
}

body#cart .product-line__image picture,
body#cart .product-line__image img {
  width: 100%;
  height: 100%;
}

body#cart .product-line__image img {
  object-fit: contain;
}

body#cart .product-line__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px 24px;
  align-items: center;
  min-width: 0;
}

body#cart .product-line__content-left {
  min-width: 0;
}

body#cart .product-line__title {
  color: var(--lokaly-navy-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
}

body#cart .product-line__title:hover {
  color: var(--lokaly-blue-dark);
}

body#cart .product-line__item--prices {
  margin-top: 7px;
}

body#cart .product-line__item-price {
  color: var(--lokaly-muted);
  font-size: 0.82rem;
}

body#cart .product-line__content-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

body#cart .product-line__price {
  min-width: 88px;
  color: var(--lokaly-navy-deep);
  font-size: 1.12rem;
  font-weight: 850;
  text-align: right;
}

body#cart .product-line__actions {
  grid-column: 1 / -1;
}

body#cart .product-line__actions a {
  color: #b72b43;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

body#cart .product-line__actions a:hover {
  color: #8f1d31;
  text-decoration: underline;
}

body#cart .quantity-button__group.input-group {
  display: grid !important;
  grid-template-columns: 34px 46px 34px;
  width: 114px !important;
  height: 44px;
  flex-wrap: nowrap !important;
  overflow: hidden;
  border: 1px solid #d8e1e9;
  border-radius: 999px;
  background: var(--lokaly-white);
}

body#cart .quantity-button__group > .btn {
  display: grid;
  width: 34px !important;
  min-width: 34px;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--lokaly-navy-deep);
  background: #f2f6f9;
  box-shadow: none !important;
}

body#cart .quantity-button__group > .btn:hover {
  color: var(--lokaly-blue-dark);
  background: var(--lokaly-surface-blue);
}

body#cart .quantity-button__group > .form-control {
  width: 46px !important;
  min-width: 0;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 3px !important;
  border-width: 0 1px !important;
  border-style: solid !important;
  border-color: #d8e1e9 !important;
  border-radius: 0 !important;
  text-align: center;
  box-shadow: none !important;
}

body#cart .cart-grid__aside-wrapper,
body#checkout .checkout-grid__aside-wrapper {
  padding: clamp(22px, 2.1vw, 30px);
}

body#cart .cart-grid__aside-wrapper > h2 {
  margin: 0 0 18px;
  color: var(--lokaly-navy-deep);
  font-size: 1.2rem;
  font-weight: 850;
}

body#cart .cart-summary__line,
body#checkout .cart-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
  color: var(--lokaly-muted);
}

body#cart .cart-summary__value,
body#checkout .cart-summary__value {
  color: var(--lokaly-navy-deep);
  font-weight: 750;
  text-align: right;
}

body#cart .cart-summary__total,
body#checkout .cart-summary__total {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--lokaly-border);
}

body#cart .cart-summary__total .cart-summary__line,
body#checkout .cart-summary__total .cart-summary__line {
  color: var(--lokaly-navy-deep);
  font-size: 1.08rem;
  font-weight: 850;
}

body#cart .cart-summary__actions .btn-primary,
body#checkout .btn-primary:not([data-ps-action="toggle-password"]) {
  min-height: 50px;
  border-color: var(--lokaly-green-dark);
  border-radius: 999px;
  background: var(--lokaly-green-dark);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(21, 133, 65, 0.2);
}

body#cart .cart-summary__actions .btn-primary:hover,
body#checkout .btn-primary:not([data-ps-action="toggle-password"]):hover {
  border-color: #0e6f35;
  background: #0e6f35;
}

body#cart .cart__continue-shopping {
  min-height: 46px;
  margin-top: 18px;
  padding-inline: 20px;
  border-radius: 999px;
  font-weight: 750;
}

body#cart .blockreassurance--cart,
body#checkout .blockreassurance--checkout {
  display: none !important;
}

/* Native Hummingbird checkout */

body#checkout .checkout-steps {
  width: min(calc(100% - 40px), 1500px);
  margin: 0 auto 28px;
  padding: 18px 24px;
  border: 1px solid var(--lokaly-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--lokaly-shadow-sm);
  backdrop-filter: blur(12px);
}

body#checkout .checkout-steps__desktop {
  max-width: 1080px;
  margin-inline: auto;
}

body#checkout .checkout-steps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#checkout .checkout-steps__step {
  position: relative;
  display: grid;
  grid-template-rows: 38px minmax(40px, auto);
  justify-items: center;
  align-items: start;
  min-width: 0;
  min-height: 78px;
  padding-inline: 12px;
  border-radius: 0;
  background: transparent !important;
}

body#checkout .checkout-steps__step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: calc(-50% + 22px);
  left: calc(50% + 22px);
  height: 3px;
  border-radius: 999px;
  background: #dce4eb;
  content: "";
}

body#checkout .checkout-steps__step:has(.checkout-steps__btn:not(:disabled)):not(.checkout-steps__step--current)::after {
  background: linear-gradient(90deg, var(--lokaly-green-dark), #53c97b);
}

body#checkout .checkout-steps__btn {
  display: flex;
  width: 100%;
  min-height: 40px;
  padding: 8px 4px 0;
  align-items: flex-start;
  justify-content: center;
  color: var(--lokaly-muted);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

body#checkout .checkout-steps__btn:disabled {
  color: #94a1b0;
  opacity: 1;
}

body#checkout .checkout-steps__btn:not(:disabled):not(.active):hover {
  color: var(--lokaly-green-dark);
  background: rgba(98, 219, 135, 0.1);
}

body#checkout .checkout-steps__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 2px solid #d7e0e8;
  border-radius: 50%;
  color: var(--lokaly-muted);
  background: var(--lokaly-white);
  font-size: 0.85rem;
  font-weight: 850;
  box-shadow: 0 0 0 6px var(--lokaly-white);
}

body#checkout .checkout-steps__step:has(.checkout-steps__btn:not(:disabled)):not(.checkout-steps__step--current) .checkout-steps__number {
  color: var(--lokaly-white);
  border-color: var(--lokaly-green-dark);
  background: var(--lokaly-green-dark);
}

body#checkout .checkout-steps__step--current .checkout-steps__btn,
body#checkout .checkout-steps__btn.active {
  color: var(--lokaly-blue-dark);
  font-weight: 850;
}

body#checkout .checkout-steps__step--current .checkout-steps__number {
  color: var(--lokaly-white);
  border-color: var(--lokaly-blue);
  background: var(--lokaly-blue);
  box-shadow: 0 0 0 6px var(--lokaly-white), 0 0 0 9px rgba(3, 124, 250, 0.14);
}

body#checkout .checkout-grid {
  align-items: flex-start;
  row-gap: 28px;
}

body#checkout .checkout-grid__content > .tab-content > .step {
  overflow: hidden;
  border: 1px solid var(--lokaly-border);
  border-radius: 24px;
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

body#checkout .checkout-grid__content > .tab-content > .step.step--current {
  border-color: rgba(3, 124, 250, 0.28);
  box-shadow: 0 18px 48px rgba(19, 45, 72, 0.11);
}

body#checkout .step__title {
  padding: clamp(22px, 2.6vw, 32px) clamp(22px, 3vw, 38px) 0;
}

body#checkout .step__title .page-title-section,
body#checkout .step__title h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

body#checkout .step__title hr {
  margin: 20px 0 0;
  color: var(--lokaly-border);
  opacity: 1;
}

body#checkout .step__content {
  padding: clamp(22px, 3vw, 38px);
}

body#checkout .step__content .nav-underline {
  gap: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--lokaly-border);
}

body#checkout .step__content .nav-link {
  padding: 10px 2px 13px;
  color: var(--lokaly-muted);
  font-weight: 750;
}

body#checkout .step__content .nav-link.active {
  color: var(--lokaly-blue-dark);
  border-color: var(--lokaly-blue);
}

body#checkout .step__content .form-label {
  margin-bottom: 7px;
  color: var(--lokaly-navy-deep);
  font-size: 0.84rem;
  font-weight: 750;
}

body#checkout .step__content .form-control,
body#checkout .step__content .form-select {
  min-height: 50px;
  border-color: #d7e0e8;
  border-radius: 13px;
  background-color: #fbfcfd;
}

body#checkout .step__content .form-control:focus,
body#checkout .step__content .form-select:focus {
  border-color: rgba(3, 124, 250, 0.58);
  background-color: var(--lokaly-white);
  box-shadow: 0 0 0 4px rgba(3, 124, 250, 0.1);
}

body#checkout .step__content .form-text {
  color: #758395;
  font-size: 0.75rem;
}

body#checkout .step__content .form-check-input:checked {
  border-color: var(--lokaly-green-dark);
  background-color: var(--lokaly-green-dark);
}

body#checkout .delivery-option,
body#checkout .payment-option,
body#checkout .address-item {
  border-color: var(--lokaly-border);
  border-radius: 16px;
  background: #fbfcfd;
}

body#checkout .delivery-option:hover,
body#checkout .payment-option:hover,
body#checkout .address-item:hover {
  border-color: rgba(3, 124, 250, 0.35);
  background: var(--lokaly-surface-blue);
}

body#checkout .checkout-grid__aside-wrapper {
  border: 1px solid var(--lokaly-border);
  border-radius: 24px;
  background: var(--lokaly-white);
  box-shadow: var(--lokaly-shadow-sm);
}

body#checkout .checkout__summary-accordion,
body#checkout .checkout__summary-accordion-item {
  border: 0;
  background: transparent;
}

body#checkout .checkout__summary-accordion .accordion-button {
  padding: 0 0 18px;
  color: var(--lokaly-navy-deep);
  background: transparent;
  font-weight: 850;
  box-shadow: none;
}

body#checkout .checkout__summary-accordion .accordion-body {
  padding-inline: 0;
}

@media (min-width: 992px) {
  body#cart .cart-grid__aside-wrapper,
  body#checkout .checkout-grid__aside-wrapper {
    position: sticky;
    top: 24px;
  }
}

@media (max-width: 991.98px) {
  body#cart .cart-grid__aside,
  body#checkout .checkout-grid__aside {
    margin-top: 4px;
  }

  body#checkout .checkout-steps {
    padding: 16px 18px;
  }

  body#checkout .checkout-steps__mobile {
    color: var(--lokaly-navy-deep);
  }
}

@media (max-width: 767.98px) {
  body#cart #wrapper,
  body#checkout #wrapper {
    padding-block: 18px 42px;
  }

  body#cart .breadcrumb__wrapper > .container,
  body#checkout .breadcrumb__wrapper > .container,
  body#cart #notifications > .container,
  body#checkout #notifications > .container,
  body#cart #wrapper > .columns-container,
  body#checkout #wrapper > .columns-container {
    width: min(calc(100% - 20px), 1500px);
  }

  body#cart .cart-grid__products-details,
  body#cart .cart-grid__aside-wrapper,
  body#checkout .checkout-grid__aside-wrapper {
    padding: 18px;
    border-radius: 18px;
  }

  body#cart .product-line {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  body#cart .product-line__image {
    width: 92px;
    height: 92px;
    border-radius: 14px;
  }

  body#cart .product-line__content {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  body#cart .product-line__content-right {
    justify-content: space-between;
    gap: 12px;
  }

  body#cart .product-line__price {
    min-width: 0;
  }

  body#cart .product-line__actions {
    grid-column: auto;
  }

  body#checkout .checkout-steps {
    width: min(calc(100% - 20px), 1500px);
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  body#checkout .checkout-steps__mobile {
    align-items: center;
    gap: 14px;
  }

  body#checkout .checkout-steps__left {
    flex: 0 0 auto;
  }

  body#checkout .checkout-steps__mobile .progress-ring {
    width: 58px !important;
    height: 58px !important;
    color: var(--lokaly-green-dark) !important;
  }

  body#checkout .checkout-steps__right {
    min-width: 0;
  }

  body#checkout .checkout-steps__title {
    margin: 0;
    color: var(--lokaly-navy-deep);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.3;
  }

  body#checkout .checkout-steps__subtitle {
    margin: 4px 0 0;
    color: var(--lokaly-muted);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  body#checkout .checkout-grid__content > .tab-content > .step {
    border-radius: 18px;
  }

  body#checkout .step__title {
    padding: 20px 18px 0;
  }

  body#checkout .step__title .page-title-section,
  body#checkout .step__title h3 {
    font-size: 1.35rem;
  }

  body#checkout .step__content {
    padding: 20px 18px 24px;
  }
}

@media (max-width: 399.98px) {
  body#cart .product-line {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  body#cart .product-line__image {
    width: 76px;
    height: 76px;
    padding: 7px;
  }

  body#cart .product-line__content-right {
    align-items: flex-start;
    flex-direction: column;
  }

  body#cart .product-line__price {
    text-align: left;
  }
}

/* Header search alignment 2.0.0. */
#header .lokaly-header__search .ps-searchbar__magnifier {
  inset: 4px 4px 4px auto !important;
  display: grid !important;
  width: 46px !important;
  height: auto !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
}

/* Product recommendations 2.0.0 — same visual rhythm as “Ultimi arrivi”. */
body#product .lokaly-product-rail {
  --lokaly-product-rail-card-width: calc((100% - 48px) / 4);
  width: min(calc(100% - 40px), 1760px);
  margin: 26px auto;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e1e8ef;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(19, 56, 91, 0.08);
}

body#product .lokaly-product-rail > .module-products,
body#product .lokaly-product-rail .module-products.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body#product .lokaly-product-rail__header,
body#product .lokaly-product-rail__title,
body#product .lokaly-product-rail__actions {
  display: flex;
  align-items: center;
}

body#product .lokaly-product-rail__header {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

body#product .lokaly-product-rail__title {
  min-width: 0;
  gap: 13px;
}

body#product .lokaly-product-rail__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--lokaly-navy-deep);
  background: #cfe9ff;
  font-size: 1.35rem;
}

body#product .lokaly-product-rail[data-lokaly-rail-type="viewed"] .lokaly-product-rail__icon {
  color: #075b2c;
  background: #d3f7df;
}

body#product .lokaly-product-rail__header .section-title,
body#product .lokaly-product-rail__header .products-section-title,
body#product .lokaly-product-rail__header h2,
body#product .lokaly-product-rail__header h3 {
  margin: 0;
  color: var(--lokaly-navy-deep);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

body#product .lokaly-product-rail__actions {
  gap: 8px;
}

body#product .lokaly-product-rail__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid #d8e1eb;
  border-radius: 50%;
  color: var(--lokaly-navy-deep);
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

body#product .lokaly-product-rail__arrow:hover {
  color: #fff;
  border-color: var(--lokaly-blue);
  background: var(--lokaly-blue);
}

body#product .lokaly-product-rail .module-products__list,
body#product .lokaly-product-rail .products-wrapper,
body#product .lokaly-product-rail .product-accessories__list {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

body#product .lokaly-product-rail .module-products__list::-webkit-scrollbar,
body#product .lokaly-product-rail .products-wrapper::-webkit-scrollbar,
body#product .lokaly-product-rail .product-accessories__list::-webkit-scrollbar {
  display: none;
}

body#product .lokaly-product-rail .products {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-columns: var(--lokaly-product-rail-card-width) !important;
  grid-auto-flow: column;
  gap: 16px;
  width: auto !important;
  margin: 0 !important;
}

body#product .lokaly-product-rail .product-miniature {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  scroll-snap-align: start;
}

body#product .lokaly-product-rail .product-miniature__inner {
  display: flex;
  min-height: 365px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dce4ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 56, 91, 0.07);
}

body#product .lokaly-product-rail .product-miniature__top {
  position: relative;
  display: grid;
  height: 205px;
  min-height: 205px;
  flex: 0 0 205px;
  overflow: hidden;
  place-items: center;
  background: #f7f9fb;
}

body#product .lokaly-product-rail .product-miniature__image-container,
body#product .lokaly-product-rail .product-miniature__image-link,
body#product .lokaly-product-rail .product-miniature__image-container picture {
  display: block;
  width: 100%;
  height: 100%;
}

body#product .lokaly-product-rail .product-miniature__image {
  width: 100% !important;
  height: 100% !important;
  padding: 14px;
  object-fit: contain;
}

body#product .lokaly-product-rail .product-miniature__quickview-button,
body#product .lokaly-product-rail .product-miniature__quickview-touch,
body#product .lokaly-product-rail .quantity-button {
  display: none !important;
}

body#product .lokaly-product-rail .product-miniature__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 160px;
  flex: 1;
  flex-direction: column;
  padding: 16px 14px 14px;
  background: #fff;
}

body#product .lokaly-product-rail .product-miniature__infos {
  display: flex;
  flex: 1;
  flex-direction: column;
}

body#product .lokaly-product-rail .product-miniature__title {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  margin: 0;
  color: var(--lokaly-navy-deep);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body#product .lokaly-product-rail .product-miniature__prices {
  margin-top: 9px;
}

body#product .lokaly-product-rail .product-miniature__price {
  color: var(--lokaly-navy-deep);
  font-size: 1.2rem;
  font-weight: 850;
}

body#product .lokaly-product-rail .product-list-review {
  margin-top: 7px;
}

body#product .lokaly-product-rail .product-miniature__actions {
  margin-top: 12px;
}

body#product .lokaly-product-rail .product-miniature__form {
  width: 100%;
  margin: 0;
}

body#product .lokaly-product-rail .product-miniature__add {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--lokaly-blue);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(3, 124, 250, 0.22);
}

body#product .lokaly-product-rail .product-miniature__add-text {
  display: inline !important;
}

@media (max-width: 991.98px) {
  body#product .lokaly-product-rail {
    --lokaly-product-rail-card-width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767.98px) {
  #header .lokaly-header__search .ps-searchbar__magnifier {
    width: 42px !important;
  }

  body#product .lokaly-product-rail {
    --lokaly-product-rail-card-width: calc((100% - 12px) / 2);
    width: min(calc(100% - 20px), 1760px);
    margin-block: 20px;
    padding: 18px 14px;
    border-radius: 22px;
  }

  body#product .lokaly-product-rail__header {
    align-items: flex-start;
  }

  body#product .lokaly-product-rail__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body#product .lokaly-product-rail__actions {
    display: none;
  }

  body#product .lokaly-product-rail .products {
    gap: 12px;
  }

  body#product .lokaly-product-rail .product-miniature__inner {
    min-height: 335px;
    border-radius: 16px;
  }

  body#product .lokaly-product-rail .product-miniature__top {
    height: 165px;
    min-height: 165px;
    flex-basis: 165px;
  }

  body#product .lokaly-product-rail .product-miniature__title {
    font-size: 0.88rem;
  }

  body#product .lokaly-product-rail .product-miniature__bottom {
    padding: 13px 11px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body#product .lokaly-product-rail .module-products__list,
  body#product .lokaly-product-rail .products-wrapper,
  body#product .lokaly-product-rail .product-accessories__list {
    scroll-behavior: auto;
  }
}
