/* PBTECH — CATÁLOGO IPHONE DINÁMICO | Versión 1.1 */

/*
 * WordPress puede alojar el bloque dentro de un contenedor limitado.
 * El recorte global evita que el ancho de la barra vertical de Windows,
 * incluido por 100vw, genere desplazamiento horizontal.
 */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.pb-xc,
.pb-xc * {
  box-sizing: border-box;
}

.pb-xc {
  --xc-bg: #050506;
  --xc-card: rgba(20, 20, 23, .9);
  --xc-card-strong: #18181b;
  --xc-border: rgba(255, 255, 255, .12);
  --xc-text: #fff;
  --xc-soft: rgba(255, 255, 255, .62);
  --xc-blue: #2997ff;
  --xc-cyan: #8acbff;
  --xc-orange: #2997ff;
  position: relative;
  width: 100dvw;
  max-width: none !important;
  margin-right: calc(50% - 50dvw);
  margin-left: calc(50% - 50dvw);
  color: var(--xc-text);
  background:
    radial-gradient(circle at 86% 4%, rgba(41, 151, 255, .10), transparent 25%),
    linear-gradient(180deg, #0b0b0d 0%, #050506 100%);
  isolation: isolate;
  overflow: hidden;
  contain: paint;
  scroll-margin-top: 90px;
}

@supports not (width: 100dvw) {
  .pb-xc {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

/* Impide que el contenedor limitado de WordPress recorte la sección full width. */
#pb-iphone-page,
#pb-iphone-page > .pb-xc {
  max-width: none !important;
}

.pb-xc__ambient {
  position: absolute;
  top: 100px;
  left: -240px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 151, 255, .09), transparent 68%);
  pointer-events: none;
}

.pb-xc__inner {
  width: min(calc(100% - 48px), 1400px);
  margin: 0 auto;
  padding: 96px 0 112px;
}

.pb-xc__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.pb-xc__eyebrow {
  color: #8acbff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
}

.pb-xc__heading h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.pb-xc__heading p {
  margin: 13px 0 0;
  color: var(--xc-soft);
  font-size: 16px;
}

.pb-xc select,
.pb-xc input,
.pb-xc button {
  font: inherit;
}

.pb-xc__sort {
  width: 230px;
  flex: 0 0 auto;
}

.pb-xc__sort > span {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pb-xc select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 15px;
  color: #fff;
  border: 1px solid var(--xc-border);
  border-radius: 13px;
  outline: none;
  background: #18181b;
  color-scheme: dark;
}

.pb-xc select:focus,
.pb-xc input:focus {
  border-color: rgba(82, 216, 255, .6);
  box-shadow: 0 0 0 3px rgba(22, 139, 255, .14);
}

.pb-xc__search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.pb-xc__generations {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.pb-iphone-family-card {
  min-height: 78px;
  padding: 15px 17px;
  color: #fff;
  text-align: left;
  border: 1px solid var(--xc-border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.pb-iphone-family-card:hover,
.pb-iphone-family-card:focus-visible {
  border-color: rgba(138, 203, 255, .55);
  background: linear-gradient(145deg, rgba(41,151,255,.16), rgba(255,255,255,.025));
  transform: translateY(-2px);
  outline: none;
}

.pb-iphone-family-card span,
.pb-iphone-family-card strong {
  display: block;
}

.pb-iphone-family-card span {
  margin-bottom: 5px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pb-iphone-family-card strong {
  font-size: 16px;
  letter-spacing: -.02em;
}

.pb-iphone-family-card.is-all {
  background: linear-gradient(145deg, rgba(41,151,255,.25), rgba(41,151,255,.07));
}

.pb-xc__search {
  position: relative;
  min-width: 0;
  flex: 1;
}

.pb-xc__search svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}

.pb-xc__search input {
  width: 100%;
  height: 58px;
  padding: 0 20px 0 49px;
  color: #fff;
  border: 1px solid var(--xc-border);
  border-radius: 16px;
  outline: none;
  background: rgba(9, 20, 38, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.pb-xc__search input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.pb-xc__filter-toggle {
  display: none;
}

.pb-xc__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 25px;
}

.pb-xc__filters {
  --xc-border: rgba(255, 255, 255, .12);
  --xc-orange: #2997ff;
  position: sticky;
  top: 90px;
  padding: 22px;
  border: 1px solid var(--xc-border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008)), var(--xc-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 24px 55px rgba(0, 0, 0, .2);
}

.pb-xc__filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pb-xc__filter-head strong {
  font-size: 16px;
}

.pb-xc__filter-head button {
  display: none;
}

.pb-xc__filter-group {
  min-width: 0;
  margin: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(126, 187, 255, .11);
}

.pb-xc__filter-group legend {
  width: 100%;
  margin: 0 0 13px;
  padding: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 760;
}

.pb-xc__select-wrap {
  position: relative;
  width: 100%;
}

.pb-xc__native-family {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
}

.pb-xc__family-button {
  width: 100%;
  min-width: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px 0 15px;
  color: #fff;
  border: 1px solid var(--xc-border);
  border-radius: 13px;
  outline: none;
  background: #091426;
  cursor: pointer;
  text-align: left;
}

.pb-xc__family-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pb-xc__family-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.pb-xc__family-button[aria-expanded="true"] {
  border-color: rgba(82, 216, 255, .6);
  box-shadow: 0 0 0 3px rgba(22, 139, 255, .14);
}

.pb-xc__family-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pb-xc__family-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  max-height: min(390px, calc(100vh - 150px));
  padding: 7px;
  border: 1px solid rgba(82, 216, 255, .24);
  border-radius: 14px;
  background: #071120;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .52);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pb-xc__family-menu[hidden] {
  display: none;
}

.pb-xc__family-menu strong {
  display: block;
  padding: 9px 10px 5px;
  color: #8fd6ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pb-xc__family-menu button {
  width: 100%;
  min-height: 37px;
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .78);
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
}

.pb-xc__family-menu button[aria-selected="true"] {
  color: #fff;
  background: rgba(22, 139, 255, .2);
}

.pb-xc__family-menu button:disabled {
  display: none;
}

.pb-xc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pb-xc__chip {
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .68);
  border: 1px solid rgba(126, 187, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.pb-xc__chip.is-active {
  color: #fff;
  border-color: rgba(82, 216, 255, .5);
  background: rgba(22, 139, 255, .19);
  box-shadow: inset 0 0 18px rgba(22, 139, 255, .09);
}

.pb-xc__price-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.pb-xc__price-fields label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.pb-xc__money {
  height: 43px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(126, 187, 255, .16);
  border-radius: 11px;
  background: #071120;
  overflow: hidden;
}

.pb-xc__money b {
  padding-left: 11px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.pb-xc__money input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 8px 0 4px;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.pb-xc__money:focus-within {
  border-color: rgba(82, 216, 255, .6);
  box-shadow: 0 0 0 3px rgba(22, 139, 255, .14);
}

.pb-xc__clear {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  color: #91d8ff;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
}

.pb-xc__results {
  min-width: 0;
}

.pb-xc__results-head {
  min-height: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pb-xc__results-head p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.pb-xc__active-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.pb-xc__active-filters button {
  padding: 7px 10px;
  color: #b6e8ff;
  border: 1px solid rgba(82, 216, 255, .18);
  border-radius: 999px;
  background: rgba(22, 139, 255, .08);
  cursor: pointer;
  font-size: 11px;
}

.pb-xc__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pb-xc__card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  border: 1px solid var(--xc-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .008)), var(--xc-card-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 20px 42px rgba(0, 0, 0, .2);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.pb-xc__image-link {
  position: relative;
  height: 270px;
  display: grid;
  place-items: center;
  padding: 23px;
  background:
    radial-gradient(circle at 50% 66%, rgba(22, 139, 255, .12), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent);
  text-decoration: none;
  overflow: hidden;
}

.pb-xc__image-link::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 55%;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 100, 255, .13);
  filter: blur(10px);
}

.pb-xc__image-link img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, .38));
  transition: transform .42s cubic-bezier(.2, .72, .2, 1);
}

.pb-xc__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--xc-orange);
  box-shadow: 0 8px 22px rgba(255, 105, 0, .22);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
}

.pb-xc__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
  border-top: 1px solid rgba(126, 187, 255, .1);
}

.pb-xc__family {
  color: #82d6ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pb-xc__card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: -.02em;
}

.pb-xc__card h3 a {
  color: inherit;
  text-decoration: none;
}

.pb-xc__specs {
  min-height: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.pb-xc__specs span {
  padding: 5px 8px;
  color: rgba(255, 255, 255, .62);
  border: 1px solid rgba(126, 187, 255, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  font-size: 10px;
}

.pb-xc__price {
  margin-top: 16px;
  color: #fff;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -.025em;
}

.pb-xc__price small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pb-xc__price del {
  margin-right: 6px;
  color: rgba(255, 255, 255, .38);
  font-size: 13px;
  font-weight: 500;
}

.pb-xc__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 17px;
}

.pb-xc__buy,
.pb-xc__details {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 780;
}

.pb-xc__buy {
  padding: 0 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #168bff, #0864e8);
  box-shadow: 0 10px 24px rgba(22, 139, 255, .2);
}

.pb-xc__buy.is-disabled {
  color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  pointer-events: none;
}

.pb-xc__details {
  width: 44px;
  border: 1px solid rgba(126, 187, 255, .17);
  background: rgba(255, 255, 255, .025);
  font-size: 18px;
}

.pb-xc__message {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 40px;
  border: 1px dashed rgba(126, 187, 255, .2);
  border-radius: 22px;
  text-align: center;
  background: rgba(9, 20, 38, .5);
}

.pb-xc__message[hidden] {
  display: none;
}

.pb-xc__message > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #8fdcff;
  border: 1px solid rgba(82, 216, 255, .2);
  border-radius: 50%;
  background: rgba(22, 139, 255, .08);
  font-size: 25px;
}

.pb-xc__message h3 {
  margin: 16px 0 0;
  color: #fff;
}

.pb-xc__message p {
  margin: 8px 0 0;
  color: var(--xc-soft);
}

.pb-xc__message button {
  margin-top: 18px;
  padding: 11px 17px;
  color: #fff;
  border: 1px solid rgba(82, 216, 255, .22);
  border-radius: 11px;
  background: rgba(22, 139, 255, .13);
  cursor: pointer;
}

.pb-xc__skeleton {
  height: 480px;
  border: 1px solid rgba(126, 187, 255, .08);
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(255,255,255,.025) 20%, rgba(255,255,255,.065) 40%, rgba(255,255,255,.025) 60%) #081221;
  background-size: 220% 100%;
  animation: pb-xc-loading 1.35s linear infinite;
}

@keyframes pb-xc-loading {
  to { background-position-x: -220%; }
}

@media (hover: hover) and (pointer: fine) {
  .pb-xc__family-menu button:not(:disabled):hover {
    color: #fff;
    background: rgba(22, 139, 255, .12);
  }

  .pb-xc__chip:hover {
    color: #fff;
    border-color: rgba(82, 216, 255, .36);
    transform: translateY(-1px);
  }

  .pb-xc__card:hover {
    border-color: rgba(82, 216, 255, .35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 28px 58px rgba(0, 0, 0, .3);
    transform: translateY(-6px);
  }

  .pb-xc__card:hover .pb-xc__image-link img {
    transform: translateY(-5px) scale(1.035);
  }

  .pb-xc__buy:hover,
  .pb-xc__details:hover {
    color: #fff;
    filter: brightness(1.1);
  }
}

@media (max-width: 1180px) {
  .pb-xc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  html.pb-xc-filter-open,
  body.pb-xc-filter-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  .pb-xc__inner {
    width: min(calc(100% - 32px), 650px);
    padding: 78px 0 86px;
  }

  .pb-xc__heading {
    display: block;
  }

  .pb-xc__generations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-iphone-family-card.is-all {
    grid-column: 1 / -1;
  }

  .pb-xc__sort {
    width: 100%;
    margin-top: 22px;
  }

  .pb-xc__search-row {
    position: sticky;
    top: 8px;
    z-index: 12;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(12, 12, 14, .9);
    box-shadow: 0 15px 32px rgba(0, 0, 0, .24);
    backdrop-filter: blur(15px);
  }

  .pb-xc__search input {
    height: 50px;
  }

  .pb-xc__filter-toggle {
    position: relative;
    min-width: 106px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    border: 1px solid rgba(138, 203, 255, .24);
    border-radius: 13px;
    background: rgba(41, 151, 255, .14);
    cursor: pointer;
    font-size: 12px;
    font-weight: 760;
  }

  .pb-xc__filter-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .pb-xc__filter-toggle span {
    position: absolute;
    top: -6px;
    right: -5px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--xc-orange);
    font-size: 9px;
  }

  .pb-xc__layout {
    display: block;
  }

  .pb-xc__filters {
    position: fixed;
    inset: auto 0 0;
    z-index: 99999;
    max-height: min(84vh, 720px);
    padding: 23px 20px 28px;
    border-radius: 25px 25px 0 0;
    background: #141416;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, .65);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.2, .72, .2, 1), visibility .32s;
  }

  .pb-xc__filters.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pb-xc__filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(0, 3, 10, .72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity .26s ease, visibility .26s;
  }

  .pb-xc__filter-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pb-xc__filter-head button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(126, 187, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
  }

  .pb-xc__results-head {
    display: block;
  }

  .pb-xc__active-filters {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 540px) {
  .pb-iphone-family-card {
    min-height: 68px;
    padding: 12px 14px;
  }

  .pb-iphone-family-card strong {
    font-size: 14px;
  }
  .pb-xc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pb-xc__image-link {
    height: clamp(155px, 43vw, 185px);
    padding: 12px 8px;
  }

  .pb-xc__image-link::after {
    bottom: 9px;
    width: 68%;
  }

  .pb-xc__badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 7px;
  }

  .pb-xc__card {
    border-radius: 16px;
  }

  .pb-xc__content {
    padding: 13px 11px 12px;
  }

  .pb-xc__family {
    font-size: 7px;
  }

  .pb-xc__card h3 {
    min-height: 47px;
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .pb-xc__specs {
    min-height: 23px;
    gap: 4px;
    margin-top: 8px;
  }

  .pb-xc__specs span {
    padding: 4px 5px;
    font-size: 8px;
  }

  .pb-xc__price {
    margin-top: 10px;
    font-size: 16px;
  }

  .pb-xc__price small {
    min-height: 20px;
    font-size: 7px;
    line-height: 1.25;
  }

  .pb-xc__price del {
    display: block;
    margin: 0 0 2px;
    font-size: 10px;
  }

  .pb-xc__actions {
    grid-template-columns: 1fr;
    margin-top: 11px;
  }

  .pb-xc__buy {
    min-height: 39px;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
  }

  .pb-xc__details {
    display: none;
  }

  .pb-xc__filter-toggle {
    min-width: 52px;
    padding: 0;
    font-size: 0;
  }
}

@media (max-width: 350px) {
  .pb-xc__inner {
    width: min(calc(100% - 20px), 650px);
  }

  .pb-xc__grid {
    gap: 7px;
  }

  .pb-xc__content {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pb-xc__card,
  .pb-xc__image-link img,
  .pb-xc__chip,
  .pb-xc__filters,
  .pb-xc__filter-backdrop {
    transition: none !important;
  }

  .pb-xc__skeleton {
    animation: none !important;
  }
}
