/**
 * Shop / PLP — stranica proizvoda (shop.html)
 */

/* -------------------------------------------------------------------------- */
/* 01 — Breadcrumbs (Figma `1099:14992`)                                      */
/* -------------------------------------------------------------------------- */

.page-shop .shop-breadcrumb-wrap {
  padding-top: 30px;
  padding-bottom: 20px;
}

.page-shop .shop-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-neutral-900);
}

.page-shop .shop-breadcrumb__item {
  display: inline;
}

.page-shop .shop-breadcrumb__item:not(:first-child)::before {
  content: " / ";
  color: var(--color-neutral-900);
}

.page-shop .shop-breadcrumb__link {
  color: var(--color-neutral-900);
  text-decoration: none;
}

.page-shop .shop-breadcrumb__link:hover {
  color: var(--color-brand-pink-500);
}

.page-shop .shop-breadcrumb__link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-breadcrumb__current {
  color: var(--color-neutral-900);
}

/* -------------------------------------------------------------------------- */
/* 02 — Listing layout + sidebar filteri (Figma `1099:14998`)                 */
/* -------------------------------------------------------------------------- */

.page-shop .shop-listing__shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  column-gap: 13px;
  align-items: start;
  padding-bottom: 30px;
}

.page-shop .shop-listing__sidebar {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 210px;
  max-width: 100%;
  min-width: 0;
}

.page-shop .shop-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

/* Aktivni filteri — Figma `1099:14712`, reset `1099:14726` */
.page-shop .shop-active-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.page-shop .shop-active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shop .shop-active-filters__item {
  margin: 0;
  padding: 0;
}

.page-shop .shop-active-filters__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  padding: 3px 5px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: var(--color-neutral-900);
  text-decoration: none;
  background-color: var(--color-neutral-100);
  border-radius: 3px;
  transition: background-color 0.15s ease;
}

.page-shop .shop-active-filters__tag:hover {
  background-color: var(--color-neutral-200, #e8e8ef);
}

.page-shop .shop-active-filters__tag:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-active-filters__label {
  word-break: break-word;
}

.page-shop .shop-active-filters__remove {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.page-shop .shop-active-filters__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin: 0;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-brand-pink-500);
  text-decoration: none;
  background-color: var(--color-neutral-50);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.page-shop .shop-active-filters__clear:hover {
  background-color: var(--color-neutral-100);
}

.page-shop .shop-active-filters__clear:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-active-filters__clear-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  /* icon-close.svg je tamni — oboji u brand pink */
  filter: brightness(0) saturate(100%) invert(62%) sepia(28%) saturate(1124%) hue-rotate(307deg)
    brightness(98%) contrast(92%);
}

.page-shop .shop-heading__title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-heading__desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-neutral-900);
}

.page-shop .shop-heading__desc-body {
  margin: 0;
}

.page-shop .shop-heading__desc-body p {
  margin: 0 0 0.65em;
}

.page-shop .shop-heading__desc-body p:last-child {
  margin-bottom: 0;
}

.page-shop .shop-heading:not(.is-expanded) .shop-heading__desc-body {
  max-height: calc(12px * 1.3 * 5);
  overflow: hidden;
}

.page-shop .shop-heading.is-expanded .shop-heading__desc-body {
  max-height: none;
  overflow: visible;
}

.page-shop .shop-heading.is-expanded .shop-heading__arrow {
  transform: rotate(225deg);
  margin-top: 2px;
}

.page-shop .shop-heading__read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: var(--color-brand-pink-500);
  background: none;
  border: none;
  cursor: pointer;
}

.page-shop .shop-heading__read-more[hidden] {
  display: none;
}

.page-shop .shop-heading__read-more:hover {
  text-decoration: underline;
}

.page-shop .shop-heading__read-more:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-heading__arrow {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-brand-pink-500);
  border-bottom: 1.5px solid var(--color-brand-pink-500);
  transform: rotate(45deg);
  margin-top: -2px;
}

.page-shop .shop-filters-backdrop {
  display: none;
}

.page-shop .shop-toolbar__bar {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  gap: 16px;
}

.page-shop .shop-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.page-shop .shop-toolbar__per-page-wrap {
  position: relative;
  flex-shrink: 0;
}

.page-shop .shop-toolbar__per-page {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 5px 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #838383;
  background: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.page-shop .shop-toolbar__per-page:hover {
  color: var(--color-neutral-900);
}

.page-shop .shop-toolbar__per-page:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-toolbar__per-page-chevron {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #838383;
  border-bottom: 1.5px solid #838383;
  transform: rotate(45deg);
  margin-top: -3px;
}

.page-shop .shop-toolbar__per-page[aria-expanded="true"] .shop-toolbar__per-page-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.page-shop .shop-toolbar__per-page-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 10;
  min-width: 88px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-100);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.1);
}

.page-shop .shop-toolbar__per-page-menu[hidden] {
  display: none;
}

.page-shop .shop-toolbar__per-page-option {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-neutral-900);
  text-decoration: none;
  white-space: nowrap;
}

.page-shop .shop-toolbar__per-page-option:hover {
  background-color: var(--color-neutral-50);
}

.page-shop .shop-toolbar__per-page-option[aria-selected="true"] {
  font-weight: 600;
}

.page-shop .shop-toolbar__filters-btn {
  display: none;
}

.page-shop .shop-filters {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Desktop: sakrij mobilni sheet chrome i accordion */
.page-shop .shop-filters-drawer__header,
.page-shop .shop-filters-drawer__tags,
.page-shop .shop-filters-drawer__footer {
  display: none;
}

.page-shop .shop-filters-drawer__body {
  flex: none;
  overflow: visible;
}

.page-shop .shop-filters__acc--mobile {
  display: none;
}

.page-shop .shop-filters__desktop {
  display: block;
}

/* AJAX fragment wrapper — zadržava razmak između grupa filtera (desktop) */
.page-shop .shop-filters > [data-shop-listing-fragment="filters"],
.page-shop .shop-filters-drawer__body > [data-shop-listing-fragment="filters"] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
  width: 100%;
}

.page-shop .shop-listing__main--loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.page-shop .shop-listing__main {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -------------------------------------------------------------------------- */
/* 03 — Listing toolbar (Figma `1099:15133`)                                  */
/* -------------------------------------------------------------------------- */

.page-shop .shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.page-shop .shop-toolbar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.page-shop .shop-toolbar__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 17px;
  margin: 0;
  padding: 2px 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.15px;
  white-space: nowrap;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.page-shop .shop-toolbar__tag:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-toolbar__tag--sale {
  background-color: var(--color-brand-pink-500);
  color: var(--color-neutral-0);
}

.page-shop .shop-toolbar__tag--new {
  background-color: #fff0f3;
  color: var(--color-brand-pink-500);
}

.page-shop .shop-toolbar__tag--bestseller {
  background-color: var(--color-neutral-100);
  color: #599ae2;
}

.page-shop .shop-toolbar__tag--trending {
  background-color: var(--color-neutral-100);
  color: var(--color-neutral-900);
}

.page-shop .shop-toolbar__tag:not(.shop-toolbar__tag--active) {
  opacity: 0.85;
}

.page-shop .shop-toolbar__tag--active {
  opacity: 1;
}

.page-shop .shop-toolbar__sort-wrap {
  position: relative;
  flex-shrink: 0;
}

.page-shop .shop-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 5px 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #838383;
  background: none;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.page-shop .shop-toolbar__sort:hover {
  color: var(--color-neutral-900);
}

.page-shop .shop-toolbar__sort:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-toolbar__sort-chevron {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #838383;
  border-bottom: 1.5px solid #838383;
  transform: rotate(45deg);
  margin-top: -3px;
}

.page-shop .shop-toolbar__sort[aria-expanded="true"] .shop-toolbar__sort-chevron {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.page-shop .shop-toolbar__sort-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 10;
  min-width: 180px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background-color: var(--color-neutral-0);
  border: 1px solid var(--color-neutral-100);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.1);
}

.page-shop .shop-toolbar__sort-menu[hidden] {
  display: none;
}

.page-shop .shop-toolbar__sort-option {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-neutral-900);
  text-decoration: none;
  cursor: pointer;
}

.page-shop .shop-toolbar__sort-option:hover {
  background-color: var(--color-neutral-50);
}

.page-shop .shop-toolbar__sort-option[aria-selected="true"] {
  font-weight: 600;
  color: var(--color-brand-pink-500);
}

/* TASK-04: grid proizvoda na PLP (Figma 1099:15154) */
.page-shop .product-grid--shop {
  --product-grid-gap: 15px;
  --product-card-width: 263px;
  row-gap: 40px;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
}

/* CMS baneri u PLP gridu — ista ćelija kao product-card, slika cover */
.page-shop .product-grid__item--category-banner {
  display: flex;
}

.page-shop .shop-category-banner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: var(--color-neutral-0);
  color: inherit;
  text-decoration: none;
}

.page-shop .shop-category-banner:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-category-banner--static {
  cursor: default;
}

.page-shop .shop-category-banner__surface {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-neutral-100);
  /* Apsolutni .__bg ne daju visinu — aspect-ratio kao product-card (media + body) */
  aspect-ratio: 1 / 1.45;
  min-height: 280px;
}

.page-shop .shop-category-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-shop .shop-category-banner__bg--mobile {
  display: none;
}

@media (max-width: 1023px) {
  .page-shop .shop-category-banner__bg--desktop {
    display: none;
  }

  .page-shop .shop-category-banner__bg--mobile {
    display: block;
  }
}

/*
 * Uži desktop (1024–1359px): main < ~1097px — 4×263px ne staju.
 * 4 kolone minmax(0,1fr); pun Figma 263px od 1360px (contained 1320px).
 */
@media (min-width: 1024px) and (max-width: 1359px) {
  .page-shop .product-grid--shop {
    --product-card-width: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--product-grid-gap, 15px);
  }

  .page-shop .product-grid--shop .product-grid__item {
    flex: none;
    width: auto;
    max-width: none;
    min-width: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* 05 — Paginacija (Figma `1099:15181`)                                       */
/* -------------------------------------------------------------------------- */

.page-shop .shop-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.page-shop .shop-listing__count {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.196px;
  color: var(--color-neutral-700, #52525b);
  white-space: nowrap;
}

.page-shop .shop-pagination__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
}

.page-shop .shop-pagination__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  margin: 0;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.196px;
  color: var(--color-brand-pink-500);
  background-color: var(--color-neutral-0);
  border: 1px solid #fff0f3;
  border-radius: 4px;
  cursor: pointer;
}

.page-shop .shop-pagination__control:hover:not(:disabled):not([aria-disabled="true"]) {
  background-color: #fff0f3;
}

.page-shop .shop-pagination__control:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-pagination__control:disabled,
.page-shop .shop-pagination__control[aria-disabled="true"] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.page-shop a.shop-pagination__control,
.page-shop a.shop-pagination__page {
  text-decoration: none;
  color: var(--color-brand-pink-500, #ea7490);
}

.page-shop .shop-pagination__chevron {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}

.page-shop .shop-pagination__chevron--prev {
  margin-right: 2px;
  transform: rotate(135deg);
}

.page-shop .shop-pagination__chevron--next {
  margin-left: 2px;
  transform: rotate(-45deg);
}

.page-shop .shop-pagination__pages {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shop .shop-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 40px;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.196px;
  color: var(--color-brand-pink-500);
  text-decoration: none;
  background-color: var(--color-neutral-0);
  border: 1px solid #fff0f3;
  border-radius: 4px;
}

.page-shop .shop-pagination__page:hover {
  background-color: #fff0f3;
}

.page-shop .shop-pagination__page:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-pagination__page--current {
  background-color: #fff0f3;
  border-color: #fff0f3;
  cursor: default;
  pointer-events: none;
}

.page-shop .shop-pagination__page--ellipsis {
  min-width: 35px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-color: #fff0f3;
  cursor: default;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* 06 — SEO uvodni tekst (Figma `1099:15193`)                                 */
/* -------------------------------------------------------------------------- */

.page-shop .shop-seo {
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-shop .shop-seo__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}

/* SEO blokovi (po H2) + WYSIWYG u teaseru / „pročitaj više” */
.page-shop .shop-seo__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 100%;
}

.page-shop .shop-seo:not(.is-expanded) .shop-seo__rest {
  display: none;
}

.page-shop .shop-seo.is-expanded .shop-seo__read-more {
  display: none;
}

.page-shop .shop-seo__rest .shop-seo__block + .shop-seo__block,
.page-shop .shop-seo__rest .shop-seo__wysiwyg + .shop-seo__block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-neutral-100, #f2f2f9);
}

.page-shop .shop-seo__teaser {
  margin: 0;
}

.page-shop .shop-seo__teaser:not(.shop-seo__wysiwyg) p,
.page-shop .shop-seo__text {
  margin: 0;
}

.page-shop .shop-seo__wysiwyg {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.196px;
  color: var(--color-neutral-700, #47475b);
}

.page-shop .shop-seo__teaser.shop-seo__wysiwyg,
.page-shop .shop-seo__teaser.shop-seo__wysiwyg p {
  line-height: 1.2;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__wysiwyg > :last-child {
  margin-bottom: 0;
}

.page-shop .shop-seo__wysiwyg h2,
.page-shop .shop-seo__wysiwyg h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__wysiwyg h2:first-child,
.page-shop .shop-seo__wysiwyg h3:first-child {
  margin-top: 0;
}

.page-shop .shop-seo__wysiwyg p + h2,
.page-shop .shop-seo__wysiwyg p + h3 {
  margin-top: 24px;
}

.page-shop .shop-seo__wysiwyg h3 + h3 {
  margin-top: 14px;
}

.page-shop .shop-seo__wysiwyg h4 {
  margin: 20px 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__wysiwyg p {
  margin: 0 0 14px;
}

.page-shop .shop-seo__wysiwyg h3 + p {
  margin-top: 0;
}

.page-shop .shop-seo__wysiwyg strong,
.page-shop .shop-seo__wysiwyg b {
  font-weight: 700;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__wysiwyg em,
.page-shop .shop-seo__wysiwyg i {
  font-style: italic;
}

.page-shop .shop-seo__wysiwyg a:not(:has(> button)) {
  color: var(--color-brand-pink-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-shop .shop-seo__wysiwyg a:not(:has(> button)):hover {
  filter: brightness(0.92);
}

.page-shop .shop-seo__wysiwyg a:not(:has(> button)):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-seo__wysiwyg ul,
.page-shop .shop-seo__wysiwyg ol {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.page-shop .shop-seo__wysiwyg ul li {
  position: relative;
  padding-left: 1.25em;
}

.page-shop .shop-seo__wysiwyg ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-brand-pink-500);
}

.page-shop .shop-seo__wysiwyg ul li + li,
.page-shop .shop-seo__wysiwyg ol li + li {
  margin-top: 0.4em;
}

.page-shop .shop-seo__wysiwyg ol {
  counter-reset: shop-seo-ol;
}

.page-shop .shop-seo__wysiwyg ol li {
  position: relative;
  padding-left: 1.5em;
  counter-increment: shop-seo-ol;
}

.page-shop .shop-seo__wysiwyg ol li::before {
  content: counter(shop-seo-ol) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--color-brand-pink-500);
}

.page-shop .shop-seo__wysiwyg img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 14px;
  border-radius: 4px;
}

.page-shop .shop-seo__wysiwyg hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--color-neutral-100, #f2f2f9);
}

/* WP: <a href="…"><button>…</button></a> */
.page-shop .shop-seo__wysiwyg a:has(> button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 20px;
  text-decoration: none;
}

.page-shop .shop-seo__wysiwyg button,
.page-shop .shop-seo__wysiwyg a:has(> button) > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05px;
  color: var(--color-brand-pink-500);
  text-align: center;
  background-color: #fff0f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.page-shop .shop-seo__wysiwyg a:has(> button):hover,
.page-shop .shop-seo__wysiwyg button:hover {
  filter: brightness(0.98);
}

.page-shop .shop-seo__wysiwyg a:has(> button):focus-visible,
.page-shop .shop-seo__wysiwyg button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-seo__wysiwyg div[class*="cta"],
.page-shop .shop-seo__wysiwyg .cat-cta-sec {
  margin: 16px 0 24px;
}

.page-shop .shop-seo__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-shop .shop-seo__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-seo__read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 4px 0 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: var(--color-brand-pink-500);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.page-shop .shop-seo__read-more:hover {
  text-decoration: underline;
}

.page-shop .shop-seo__read-more:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-seo__arrow {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-brand-pink-500);
  border-bottom: 1.5px solid var(--color-brand-pink-500);
  transform: rotate(45deg);
  margin-top: -2px;
}

/* -------------------------------------------------------------------------- */
/* 07 — Preporučeni brendovi (Figma `1099:15196`)                             */
/* -------------------------------------------------------------------------- */

.page-shop .shop-brands__inner {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-top: 30px;
  padding-bottom: 48px;
}

.page-shop .shop-brands__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.page-shop .shop-brands__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-brands__grid-scroll {
  width: 100%;
  overflow: visible;
  cursor: default;
}

.page-shop .shop-brands__grid {
  display: flex;
  gap: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shop .shop-brands__item {
  flex: 1 1 0;
  min-width: 0;
}

.page-shop .shop-brands__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 330px;
  min-height: 330px;
  padding: 0 12px 23px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-neutral-100);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-neutral-100);
  text-decoration: none;
}

.page-shop .shop-brands__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

.page-shop .shop-brands__card:hover {
  filter: brightness(1.03);
}

.page-shop .shop-brands__card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-brands__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.196px;
  text-align: center;
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* 08 — CTA rutina (Figma `1099:15220`)                                       */
/* -------------------------------------------------------------------------- */

.page-shop .shop-routine-cta {
  background-color: var(--color-neutral-50);
}

.page-shop .shop-routine-cta__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-shop .shop-routine-cta__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.page-shop .shop-routine-cta__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-routine-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.page-shop .shop-routine-cta__copy h2,
.page-shop .shop-routine-cta__copy h3 {
  display: none;
}

.page-shop .shop-routine-cta__copy p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-routine-cta__highlight {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-brand-pink-500) !important;
}

.page-shop .shop-routine-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin: 0;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-brand-pink-500);
  text-decoration: none;
  background-color: #fff0f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.page-shop .shop-routine-cta__btn:hover {
  filter: brightness(0.98);
  text-decoration: none;
}

.page-shop .shop-routine-cta__btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* 09 — FAQ na PLP (Figma `1099:15228`, deljeni `faq.css`) */
.page-shop .faq {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-shop .shop-filters__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.196px;
  color: var(--color-brand-pink-500);
  background: none;
  border: none;
  cursor: pointer;
}

.page-shop .shop-filters__more[hidden] {
  display: none;
}

.page-shop .shop-filters__more.is-ui-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none;
}

.page-shop .shop-filters__more.is-expanded .shop-filters__arrow {
  transform: rotate(225deg);
  margin-top: 2px;
}

.page-shop .shop-filters__list--extra {
  margin-top: 5px;
}

.page-shop .shop-filters__list--extra[hidden] {
  display: none !important;
}

.page-shop .shop-filters__more:hover {
  text-decoration: underline;
}

.page-shop .shop-filters__more:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-filters__arrow {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-brand-pink-500);
  border-bottom: 1.5px solid var(--color-brand-pink-500);
  transform: rotate(45deg);
  margin-top: -2px;
}

.page-shop .shop-filters__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-shop .shop-filters__block {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.page-shop .shop-filters__group--chips {
  gap: 15px;
}

.page-shop .shop-filters__heading {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-filters__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-shop .shop-filters__link {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
  text-decoration: none;
}

.page-shop .shop-filters__link:hover,
.page-shop .shop-filters__link--active {
  color: var(--color-brand-pink-500);
}

.page-shop .shop-filters__link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-filters__alpha {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  max-width: 220px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.196px;
  color: var(--color-neutral-900);
}

.page-shop .shop-filters__alpha-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  line-height: 1.2;
}

.page-shop .shop-filters__alpha-btn:hover:not(:disabled),
.page-shop .shop-filters__alpha-btn.is-active {
  color: var(--color-brand-pink-500);
}

.page-shop .shop-filters__alpha-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

.page-shop .shop-filters__alpha-btn:disabled,
.page-shop .shop-filters__alpha-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
}

.page-shop .shop-filters__chip.is-alpha-hidden,
.page-shop .shop-filters__chip-row.is-alpha-hidden,
.page-shop .shop-filters__chip-row[hidden] {
  display: none !important;
}

.page-shop .shop-filters__chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-shop .shop-filters__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-shop .shop-filters__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 3px 5px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: var(--color-neutral-500-text);
  background-color: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-100);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.page-shop .shop-filters__chip:hover {
  border-color: var(--color-brand-pink-500);
  color: var(--color-neutral-900);
}

.page-shop .shop-filters__chip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop a.shop-filters__chip {
  text-decoration: none;
  cursor: pointer;
}

.page-shop .shop-filters__reset {
  text-decoration: none;
}

.page-shop .shop-filters__swatch:not([style]) {
  background: linear-gradient(135deg, #f0f0f0 50%, #d8d8d8 50%);
}

.page-shop .shop-filters__chip--selected {
  border-color: var(--color-brand-pink-500);
  color: var(--color-neutral-900);
}

.page-shop .shop-filters__chips-extra {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-shop .shop-filters__chips-extra[hidden] {
  display: none;
}

.page-shop .shop-filters__swatch {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.page-shop .shop-filters__swatch--rose {
  background-color: #f4c4c8;
}

.page-shop .shop-filters__swatch--pink {
  background-color: #ea7490;
}

.page-shop .shop-filters__swatch--red {
  background-color: #c41e3a;
}

.page-shop .shop-filters__swatch--nude {
  background-color: #d4a88c;
}

.page-shop .shop-filters__swatch--coral {
  background-color: #ff7f6e;
}

.page-shop .shop-filters__swatch--berry {
  background-color: #8b2252;
}

.page-shop .shop-filters__swatch--plum {
  background-color: #6b3a6b;
}

.page-shop .shop-filters__swatch--brown {
  background-color: #6b4423;
}

.page-shop .shop-filters__swatch--orange {
  background-color: #e86a2a;
}

.page-shop .shop-filters__swatch--beige {
  background-color: #e8d4b8;
}

.page-shop .shop-filters__group--price {
  gap: 16px;
}

.page-shop .shop-filters__slider {
  width: 100%;
}

.page-shop .shop-filters__slider-track {
  --price-min: 0%;
  --price-max: 100%;
  position: relative;
  height: 20px;
}

.page-shop .shop-filters__slider-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 4px;
  background-color: var(--color-neutral-100);
  border-radius: 2px;
}

.page-shop .shop-filters__slider-range {
  position: absolute;
  left: var(--price-min);
  width: calc(var(--price-max) - var(--price-min));
  top: 8px;
  height: 4px;
  background-color: var(--color-brand-pink-500);
  border-radius: 2px;
  pointer-events: none;
}

.page-shop .shop-filters__range {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  padding: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.page-shop .shop-filters__range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.page-shop .shop-filters__range::-moz-range-track {
  height: 4px;
  background: transparent;
}

.page-shop .shop-filters__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border-radius: 50%;
  background-color: var(--color-neutral-0);
  border: 2px solid var(--color-brand-pink-500);
  box-shadow: 0 1px 3px rgba(28, 28, 30, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.page-shop .shop-filters__range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-neutral-0);
  border: 2px solid var(--color-brand-pink-500);
  box-shadow: 0 1px 3px rgba(28, 28, 30, 0.12);
  cursor: pointer;
  pointer-events: auto;
}

.page-shop .shop-filters__range--max {
  z-index: 2;
}

.page-shop .shop-filters__price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: var(--color-neutral-900);
}

.page-shop .shop-filters__reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  color: var(--color-brand-pink-500);
  background-color: var(--color-neutral-50);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.page-shop .shop-filters__reset:hover {
  background-color: var(--color-neutral-100);
}

.page-shop .shop-filters__reset:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-shop .shop-filters__reset-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

/* -------------------------------------------------------------------------- */
/* 10 — Responsive tablet (768–1023px), ref. index `homepage.css` §tablet      */
/* -------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1023px) {
  /* Listing: razmak naslov → filteri u sidebaru */
  .page-shop .shop-listing__sidebar {
    gap: 16px;
  }

  /* PLP grid — 3 kolone u main koloni (kao home-bestsellers / sp-section) */
  .page-shop .product-grid--shop {
    --product-card-width: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--product-grid-gap, 15px);
    width: 100%;
  }

  .page-shop .product-grid--shop .product-grid__item {
    flex: none;
    width: auto;
    max-width: none;
  }

  /* shop-brands — slider kao .home-brands @media (max-width: 1023px) */
  .page-shop .shop-brands__inner {
    gap: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .page-shop .shop-brands__grid-scroll {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    margin-right: calc(-1 * var(--layout-edge-padding));
    padding-right: var(--layout-edge-padding);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .page-shop .shop-brands__grid-scroll::-webkit-scrollbar {
    display: none;
  }

  .page-shop .shop-brands__grid-scroll.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .page-shop .shop-brands__grid-scroll.is-dragging .shop-brands__card {
    pointer-events: none;
  }

  .page-shop .shop-brands__grid {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 14px;
    width: max-content;
    min-width: max-content;
  }

  .page-shop .shop-brands__item {
    flex: none;
    flex-shrink: 0;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .page-shop .shop-brands__card {
    flex-shrink: 0;
    width: 220px;
    max-width: 220px;
    height: 310px;
    min-height: 310px;
  }

  .page-shop .shop-brands__label {
    font-size: 15px;
    line-height: 21px;
  }

  /* FAQ — kao .page-home .faq @media (max-width: 1023px) */
  .page-shop .faq {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-shop .faq__layout {
    flex-direction: column;
    gap: 32px;
  }

  .page-shop .faq__intro {
    flex: none;
    width: 100%;
    gap: 8px;
  }

  .page-shop .faq__eyebrow {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .page-shop .faq__lead {
    font-size: 13px;
    line-height: 16px;
    color: var(--color-neutral-700, #47475b);
  }

  .page-shop .faq__accordion {
    width: 100%;
  }

  .page-shop .faq__item {
    padding: 20px;
  }

  .page-shop .faq__item--open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-shop .faq__trigger {
    align-items: center;
    padding: 0;
  }

  .page-shop .faq__icon {
    width: auto;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-neutral-700, #47475b);
  }

  .page-shop .faq__item--open .faq__icon {
    color: var(--color-brand-pink-500);
  }

  .page-shop .faq__panel {
    padding: 0;
  }

  .page-shop .faq__answer {
    color: var(--color-neutral-700, #47475b);
  }
}

/* -------------------------------------------------------------------------- */
/* 11 — Responsive mobile (Figma `2082:12156`, ≤767px)                        */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  /* r00 — foundation */
  .page-shop .layout-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-shop .shop-listing__shell {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
  }

  .page-shop .shop-listing__sidebar {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .page-shop .shop-listing__main {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    margin-top: 16px;
  }

  .page-shop .shop-heading {
    padding: 16px 0;
  }

  .page-shop .shop-heading__title {
    font-size: 17px;
    line-height: 22px;
  }

  .page-shop .shop-heading__desc {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.196px;
    color: var(--color-neutral-700, #47475b);
  }

  /* r01 — breadcrumbs `2082:12203`, tekst `2082:12204` */
  .page-shop .shop-breadcrumb-wrap {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .page-shop .shop-breadcrumb__list {
    color: #838383;
  }

  .page-shop .shop-breadcrumb__item:not(:first-child)::before {
    content: "  /  ";
    color: #838383;
  }

  .page-shop .shop-breadcrumb__link,
  .page-shop .shop-breadcrumb__current {
    color: #838383;
  }

  .page-shop .shop-breadcrumb__link:hover {
    color: #838383;
    text-decoration: underline;
  }

  /* Figma: putanja do kategorije, bez naziva proizvoda */
  .page-shop .shop-breadcrumb__item:last-child {
    display: none;
  }

  /* r03 — filter bottom sheet `2082:12805` + toolbar `2082:12209` */
  .page-shop .shop-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: rgba(28, 28, 30, 0.45);
  }

  .page-shop .shop-filters-backdrop[hidden] {
    display: none;
  }

  .page-shop .shop-filters--drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 201;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    max-height: min(92vh, 900px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--color-neutral-0);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(28, 28, 30, 0.12);
    transform: translateY(100%);
    transition: transform 0.28s ease;
    visibility: hidden;
  }

  .page-shop .shop-filters--drawer.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .page-shop.page-shop--filters-open {
    overflow: hidden;
  }

  html.shop-filters-drawer-open,
  body.shop-filters-drawer-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .page-shop .shop-filters-drawer__body {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .page-shop .shop-filters-drawer__header {
    position: relative;
    flex-shrink: 0;
    padding: 8px 16px 0;
    border-bottom: 1px solid var(--color-neutral-100);
  }

  .page-shop .shop-filters-drawer__handle {
    display: block;
    width: 36px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 2px;
    background-color: var(--color-neutral-100);
  }

  .page-shop .shop-filters-drawer__title-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 18px;
  }

  .page-shop .shop-filters-drawer__title {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-neutral-900);
  }

  .page-shop .shop-filters-drawer__count {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-neutral-400);
  }

  .page-shop .shop-filters-drawer__close {
    position: absolute;
    top: 22px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    color: var(--color-neutral-900);
    background: none;
    border: none;
    cursor: pointer;
  }

  .page-shop .shop-filters-drawer__close:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
  }

  .page-shop .shop-filters-drawer__tags {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-shop .shop-filters-drawer__tags .shop-toolbar__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .page-shop .shop-filters-drawer__tags .shop-toolbar__tag {
    flex-shrink: 0;
    height: auto;
    padding: 8px;
  }

  .page-shop .shop-filters-drawer__tags .shop-toolbar__tag--trending {
    color: var(--color-neutral-700);
  }

  .page-shop .shop-filters-drawer__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-shop .shop-filters-drawer__body > [data-shop-listing-fragment="filters"] {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .page-shop .shop-filters-drawer__footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background-color: var(--color-neutral-0);
    border-top: 1px solid var(--color-neutral-100);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  }

  .page-shop .shop-filters-drawer__reset {
    display: inline-flex;
    flex: 0 0 110px;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-neutral-700);
    text-decoration: none;
    background-color: var(--color-neutral-50);
    border-radius: 6px;
  }

  .page-shop .shop-filters-drawer__reset:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
  }

  .page-shop .shop-filters-drawer__apply {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 0;
    padding: 0 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-neutral-0);
    background-color: var(--color-brand-pink-500);
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .page-shop .shop-filters-drawer__apply:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
  }

  .page-shop .shop-filters-drawer__header,
  .page-shop .shop-filters-drawer__tags {
    display: block;
  }

  .page-shop .shop-filters-drawer__tags {
    display: flex;
  }

  /* Mobilni accordion + checkbox (sakrij desktop panel) */
  .page-shop .shop-filters__desktop {
    display: none;
  }

  .page-shop .shop-filters__acc--mobile {
    display: block;
    border-bottom: 1px solid var(--color-neutral-100);
  }

  .page-shop .shop-filters__acc-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 0 40px 0 16px;
    font-family: var(--font-sans);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
  }

  .page-shop .shop-filters__acc-trigger:focus-visible {
    outline: none;
    box-shadow: inset var(--focus-ring);
  }

  .page-shop .shop-filters__acc-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-neutral-900);
  }

  .page-shop .shop-filters__acc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-neutral-0);
    background-color: var(--color-brand-pink-500);
    border-radius: 10px;
  }

  .page-shop .shop-filters__acc-badge[hidden] {
    display: none;
  }

  .page-shop .shop-filters__acc-chevron {
    position: absolute;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-neutral-700);
    border-bottom: 2px solid var(--color-neutral-700);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .page-shop .shop-filters__acc-trigger {
    position: relative;
  }

  .page-shop .shop-filters__acc-trigger[aria-expanded="true"] .shop-filters__acc-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .page-shop .shop-filters__acc-panel {
    padding: 4px 0 8px;
  }

  .page-shop .shop-filters__acc-panel[hidden] {
    display: none;
  }

  .page-shop .shop-filters__checklist {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .page-shop .shop-filters__check-item {
    margin: 0;
  }

  .page-shop .shop-filters__check {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 16px;
    text-decoration: none;
    color: var(--color-neutral-900);
  }

  .page-shop .shop-filters__check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--color-neutral-100);
    border-radius: 4px;
    background-color: var(--color-neutral-0);
  }

  .page-shop .shop-filters__check.is-checked .shop-filters__check-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-neutral-0);
    background-color: var(--color-brand-pink-500);
    border-color: var(--color-brand-pink-500);
  }

  .page-shop .shop-filters__check.is-checked .shop-filters__check-box::before {
    content: "✓";
    line-height: 1;
  }

  .page-shop .shop-filters__check.is-checked .shop-filters__check-label {
    font-weight: 600;
    color: var(--color-brand-pink-500);
  }

  .page-shop .shop-filters__check-label {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
  }

  .page-shop .shop-filters__check-swatch {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-neutral-100);
  }

  .page-shop .shop-filters__check--color .shop-filters__check-box {
    display: none;
  }

  .page-shop .shop-filters__acc-panel--price {
    padding: 8px 16px 16px;
  }

  .page-shop .shop-filters__acc-panel--price .shop-filters__price-labels {
    margin-top: 12px;
  }

  /* Samo desktop toolbar — brzi filteri u draweru ostaju vidljivi */
  .page-shop .shop-toolbar .shop-toolbar__tags {
    display: none;
  }

  .page-shop .shop-toolbar__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
  }

  .page-shop .shop-toolbar__filters-btn {
    display: inline-flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-brand-pink-500);
    background-color: #fff0f3;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .page-shop .shop-toolbar__filters-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
  }

  .page-shop .shop-toolbar__filters-icon {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
  }

  .page-shop .shop-toolbar__filters-icon::before,
  .page-shop .shop-toolbar__filters-icon::after {
    content: "";
    position: absolute;
    height: 1.5px;
    border-radius: 1px;
    background-color: var(--color-brand-pink-500);
  }

  .page-shop .shop-toolbar__filters-icon::before {
    top: 2px;
    left: 1px;
    width: 10px;
    box-shadow: 0 3.5px 0 var(--color-brand-pink-500);
  }

  .page-shop .shop-toolbar__filters-icon::after {
    top: 9px;
    left: 4px;
    width: 4px;
  }

  .page-shop .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 16px;
  }

  .page-shop .shop-toolbar__controls {
    gap: 5px;
    flex-direction: column;
    align-items: flex-end;
  }

  .page-shop .shop-toolbar__sort-wrap,
  .page-shop .shop-toolbar__per-page-wrap {
    flex-shrink: 0;
  }

  .page-shop .shop-toolbar__sort,
  .page-shop .shop-toolbar__per-page {
    gap: 8px;
    padding: 0;
    font-size: 12px;
    color: #9999a6;
  }

  .page-shop .shop-toolbar__sort span:first-child::after,
  .page-shop .shop-toolbar__per-page span:first-child::after {
    content: none;
  }

  .page-shop .shop-toolbar__sort-chevron,
  .page-shop .shop-toolbar__per-page-chevron {
    width: 24px;
    height: 24px;
    margin-top: 0;
    border: none;
    border-radius: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6l6 6-6 6' stroke='%239999a6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / contain no-repeat;
    transform: rotate(90deg);
  }

  .page-shop .shop-toolbar__sort[aria-expanded="true"] .shop-toolbar__sort-chevron,
  .page-shop .shop-toolbar__per-page[aria-expanded="true"] .shop-toolbar__per-page-chevron {
    transform: rotate(-90deg);
  }

  /* r04 — product grid `2082:12232` (puna širina main-a; nadjačava product-card.css ≤700px) */
  .page-shop .product-grid--shop {
    --product-card-width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--product-grid-gap, 16px);
    width: 100%;
    max-width: 100%;
    row-gap: 32px;
    margin-top: 0;
  }

  .page-shop .product-grid--shop .product-grid__item {
    flex: none;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  /* r05 — pagination `2082:12780` — count + < 1 2 … 25 > */
  .page-shop .shop-pagination {
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 12px;
  }

  .page-shop .shop-pagination__inner {
    justify-content: flex-end;
    gap: 5px;
  }

  .page-shop .shop-pagination__control-label {
    display: none;
  }

  .page-shop .shop-pagination__control {
    flex-shrink: 0;
    gap: 0;
    min-width: 40px;
    padding: 5px 8px;
  }

  .page-shop .shop-pagination__control--prev .shop-pagination__chevron--prev {
    margin-right: 0;
  }

  .page-shop .shop-pagination__control--next .shop-pagination__chevron--next {
    margin-left: 0;
  }

  .page-shop .shop-pagination__control,
  .page-shop .shop-pagination__page {
    height: 32px;
    min-width: 40px;
    padding: 5px 8px;
  }

  .page-shop .shop-pagination__page {
    min-width: 40px;
    font-size: 12px;
    line-height: 16px;
  }

  .page-shop .shop-pagination__page--ellipsis {
    min-width: 28px;
    padding: 5px 6px;
  }

  /* r06 — SEO `2082:12254` */
  .page-shop .shop-seo {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-shop .shop-seo__inner {
    gap: 24px;
  }

  .page-shop .shop-seo__content {
    gap: 24px;
  }

  .page-shop .shop-seo__title {
    font-size: 16px;
  }

  .page-shop .shop-seo__wysiwyg h3 {
    margin-top: 22px;
    font-size: 16px;
  }

  .page-shop .shop-seo__wysiwyg p,
  .page-shop .shop-seo__teaser.shop-seo__wysiwyg p {
    font-size: 13px;
    line-height: 1.55;
  }

  .page-shop .shop-seo__block {
    gap: 10px;
  }

  .page-shop .shop-seo__text {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.196px;
    color: var(--color-neutral-700, #47475b);
  }

  /* r07 — brands: slider (baza) + ≤767 nadjačava kartice (home-brands R10) */
  .page-shop .shop-brands__inner {
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .page-shop .shop-brands__grid-scroll {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .page-shop .shop-brands__grid-scroll::-webkit-scrollbar {
    display: none;
  }

  .page-shop .shop-brands__grid-scroll.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .page-shop .shop-brands__grid-scroll.is-dragging .shop-brands__card {
    pointer-events: none;
  }

  .page-shop .shop-brands__grid {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 14px;
    width: max-content;
    min-width: max-content;
  }

  .page-shop .shop-brands__item {
    flex: none;
    flex-shrink: 0;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }

  .page-shop .shop-brands__card {
    flex-shrink: 0;
    width: 220px;
    max-width: 220px;
    height: 310px;
    min-height: 310px;
  }

  .page-shop .shop-brands__label {
    font-size: 15px;
    line-height: 21px;
  }

  .page-shop .shop-brands__title {
    padding-right: 16px;
  }

  .page-shop .shop-brands__grid-scroll {
    width: calc(100% + 28px);
    max-width: 100vw;
    margin-left: calc(-1 * 14px);
    margin-right: calc(-1 * 14px);
    padding-right: 0;
    scroll-padding-inline: 14px;
  }

  .page-shop .shop-brands__grid {
    gap: 12.5px;
    padding-inline: 14px;
  }

  .page-shop .shop-brands__item {
    width: 173px;
    min-width: 173px;
    max-width: 173px;
  }

  .page-shop .shop-brands__card {
    width: 173px;
    max-width: 173px;
    height: 275px;
    min-height: 275px;
    border-radius: 3px;
  }

  .page-shop .shop-brands__label {
    font-size: 14px;
    line-height: 20px;
  }

  /* r08 — FAQ (ista baza kao tablet / index ≤1023) */
  .page-shop .faq {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .page-shop .faq__layout {
    flex-direction: column;
    gap: 32px;
  }

  .page-shop .faq__intro {
    flex: none;
    width: 100%;
    gap: 8px;
  }

  .page-shop .faq__eyebrow {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .page-shop .faq__lead {
    font-size: 13px;
    line-height: 16px;
    color: var(--color-neutral-700, #47475b);
  }

  .page-shop .faq__accordion {
    width: 100%;
  }

  .page-shop .faq__item {
    padding: 20px;
  }

  .page-shop .faq__item--open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .page-shop .faq__trigger {
    align-items: center;
    padding: 0;
  }

  .page-shop .faq__icon {
    width: auto;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-neutral-700, #47475b);
  }

  .page-shop .faq__item--open .faq__icon {
    color: var(--color-brand-pink-500);
  }

  .page-shop .faq__panel {
    padding: 0;
  }

  .page-shop .faq__answer {
    color: var(--color-neutral-700, #47475b);
  }
}
