/**
 * RentPlus — authoritative mobile layout (≤900px)
 * Loaded after main.css. One source of truth for TZ mobile 1:1.
 */
@media (max-width: 900px) {
  :root {
    --rp-header-h: 56px;
    --rp-gutter: 16px;
    --rp-tap: 44px;
    --rp-icon: 22px;
  }

  html {
    -webkit-tap-highlight-color: transparent;
  }

  html,
  body {
    font-size: 14px;
  }

  /* —— Scroll lock (drawer / filters) —— */
  html.rp-drawer-open,
  body.rp-drawer-open {
    overflow: hidden;
    height: auto;
  }

  body.rp-drawer-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  body.rp-filters-open {
    overflow: hidden;
  }

  body.rp-filters-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 54;
    background: rgba(36, 53, 90, .34);
  }

  /* —— Page chrome —— */
  .rp-wrap {
    width: calc(100% - (var(--rp-gutter) * 2));
    max-width: none;
  }

  .rp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--rp-line);
    overflow: visible;
  }

  .rp-header .rp-wrap {
    width: 100%;
    max-width: none;
    padding: 0 6px;
  }

  .rp-header__bar {
    height: var(--rp-header-h);
    display: grid !important;
    grid-template-columns: var(--rp-tap) var(--rp-tap) minmax(0, 1fr) var(--rp-tap) var(--rp-tap) !important;
    grid-template-areas: "combo phone logo wish account" !important;
    align-items: center;
    column-gap: 0;
  }

  .rp-header__left,
  .rp-header__right {
    display: contents;
  }

  .rp-catalog-btn--desk,
  .rp-icon-btn--search {
    display: none !important;
  }

  .rp-header__combo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    grid-area: combo;
    width: var(--rp-tap);
    height: var(--rp-tap);
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--rp-navy);
    border-radius: 8px;
  }

  .rp-header__combo-icon,
  .rp-header__combo svg {
    width: var(--rp-icon);
    height: var(--rp-icon);
    display: block;
  }

  .rp-phone {
    grid-area: phone;
    position: relative;
    z-index: 6;
    width: var(--rp-tap);
    height: var(--rp-tap);
  }

  .rp-phone__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: var(--rp-tap) !important;
    min-width: var(--rp-tap) !important;
    height: var(--rp-tap) !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 8px;
    color: var(--rp-navy);
    touch-action: manipulation;
  }

  .rp-phone__icon {
    display: grid !important;
    place-items: center;
    pointer-events: none;
  }

  .rp-phone__icon svg,
  .rp-icon-btn svg {
    width: var(--rp-icon);
    height: var(--rp-icon);
  }

  .rp-phone__num,
  .rp-phone .rp-chevron,
  .rp-phone__drop {
    display: none !important;
  }

  .rp-logo {
    grid-area: logo;
    justify-self: center;
    min-width: 0;
    overflow: hidden;
  }

  .rp-logo img {
    height: 28px;
    max-width: min(148px, 100%);
    width: auto;
  }

  .rp-wish-link {
    grid-area: wish;
  }

  .rp-icon-btn--account {
    grid-area: account;
    display: inline-flex !important;
  }

  .rp-icon-btn {
    width: var(--rp-tap) !important;
    min-width: var(--rp-tap) !important;
    height: var(--rp-tap) !important;
    border-radius: 8px;
    color: var(--rp-navy);
  }

  .rp-header__combo:active,
  .rp-phone__btn:active,
  .rp-icon-btn:active {
    background: #fff !important;
    box-shadow: inset 0 0 0 1px #e8edf4;
  }

  .rp-wish-count {
    top: 6px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
    border-radius: 99px;
  }

  .rp-wish-count:empty,
  .rp-wish-count[data-wish-count="0"],
  .rp-wish-count[data-wish-count=""] {
    display: none !important;
  }

  /* —— Hero —— */
  .rp-hero {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .rp-hero__media {
    display: block;
    position: relative;
  }

  .rp-hero__media img {
    width: 100%;
    height: calc(100svh - var(--rp-header-h));
    min-height: 0;
    max-height: none;
    object-fit: cover;
    border-radius: 0;
  }

  .rp-hero__overlay {
    background: linear-gradient(180deg, rgba(12, 20, 36, .42), rgba(12, 20, 36, .72));
    padding: 0 20px;
  }

  .rp-hero__overlay-kicker {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: .06em;
  }

  .rp-hero__overlay-sub {
    font-size: 16px;
    margin-top: 6px;
  }

  .rp-home-lead {
    font-size: 15px;
    font-weight: 600;
    margin: 18px 0 10px;
    line-height: 1.35;
  }

  .rp-cats__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .rp-about h2 {
    font-size: 18px;
    line-height: 1.25;
  }

  .rp-about p {
    font-size: 14px;
  }

  /* —— Filter bar (aurashoes: bare icons) —— */
  .rp-filterbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
  }

  .rp-filterbar__btn,
  .rp-filterbar__btn--search {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    min-height: 36px;
    color: var(--rp-navy);
    font-weight: 600;
    font-size: 15px;
  }

  .rp-filterbar__btn--search {
    width: 36px;
    justify-content: center;
  }

  /* —— Filter sheet —— */
  .rp-filters {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 55;
    margin: 0;
    max-height: min(88vh, 100dvh - var(--rp-header-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #fff;
    box-shadow: 0 -12px 40px rgba(36, 53, 90, .16);
    transform: translateY(110%);
    transition: transform .32s ease;
    padding: 0;
  }

  body.rp-filters-open .rp-filters {
    transform: none;
  }

  .rp-filters__sheet-head {
    display: grid !important;
    grid-template-columns: 72px 1fr 40px;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 52px;
    margin: 0;
    padding: 4px 16px 0;
    background: #fff;
    z-index: 2;
  }

  .rp-filters__sheet-head strong {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--rp-navy);
  }

  .rp-filters__reset-link {
    border: 0;
    background: none;
    color: #8a94a6;
    text-decoration: underline;
    padding: 0;
    font-size: 13px;
    text-align: left;
    visibility: hidden;
    pointer-events: none;
  }

  .rp-filters.is-dirty .rp-filters__reset-link {
    visibility: visible;
    pointer-events: auto;
  }

  .rp-filters__sheet-close {
    border: 0;
    background: none;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    color: var(--rp-navy);
    justify-self: end;
    display: grid;
    place-items: center;
  }

  .rp-filters__sheet-body {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 8px;
  }

  .rp-filters__go--sheet {
    display: block;
  }

  .rp-filters__block {
    border: 0;
    margin: 0;
    padding: 0;
  }

  .rp-filters__block + .rp-filters__block {
    margin-top: 4px;
  }

  .rp-filters__block summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rp-line);
    font-weight: 700;
    font-size: 15px;
    color: var(--rp-navy);
    cursor: pointer;
  }

  .rp-filters__block summary::-webkit-details-marker {
    display: none;
  }

  .rp-filters__block summary:after {
    content: "";
    width: 8px;
    height: 8px;
    margin: 0 2px 0 12px;
    flex: 0 0 8px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .rp-filters__block[open] summary:after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .rp-filters__block-body {
    padding: 10px 0 14px;
  }

  .rp-filters__sort {
    display: block;
  }

  .rp-filters__sort select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--rp-line);
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    color: var(--rp-navy);
    font-size: 15px;
  }

  .rp-filters__actions {
    flex: 0 0 auto;
    display: grid !important;
    gap: 0;
    margin: 0;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--rp-line);
    box-shadow: 0 -8px 24px rgba(36, 53, 90, .06);
  }

  .rp-filters__actions .rp-btn--reset {
    display: none !important;
  }

  .rp-filters__go {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .rp-filters__cats {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    max-height: none !important;
    mask-image: none !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .rp-filters__cats .rp-chip {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--rp-line);
    border-radius: 0;
    background: transparent;
    min-height: 48px;
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
    color: var(--rp-ink);
  }

  .rp-filters__cats .rp-chip input {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    pointer-events: none;
  }

  .rp-filters__cats .rp-chip.is-on {
    color: var(--rp-navy);
    font-weight: 700;
  }

  /* —— Catalog cards —— */
  .rp-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .rp-cats__nav,
  .rp-cats__kicker {
    display: none;
  }

  .rp-cats__card {
    flex: none;
    width: auto;
  }

  .rp-cats__media {
    min-height: 88px;
  }

  .rp-cats__name {
    font-size: 12px;
  }

  .rp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
    align-items: stretch;
  }

  .rp-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .rp-card:hover {
    transform: none;
    box-shadow: none;
  }

  .rp-card__media {
    aspect-ratio: 1 / 1;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid var(--rp-line);
  }

  .rp-card__link,
  .rp-card__img--main {
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
  }

  .rp-card__photo,
  .rp-card__img--main img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }

  .rp-card__meta {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 8px 2px 0;
    min-height: 0;
  }

  .rp-card__title {
    font-size: 13px;
    line-height: 1.3;
    min-height: 2.6em;
    max-height: 2.6em;
    overflow: hidden;
  }

  .rp-card__meta .rp-card__price {
    margin-top: auto;
  }

  .rp-related__track {
    gap: 10px;
    align-items: stretch;
  }

  .rp-related__track .rp-card {
    flex: 0 0 calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }

  .rp-related__track .rp-card__media {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .rp-related__track .rp-card__link,
  .rp-related__track .rp-card__img--main {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .rp-related__track .rp-card__photo,
  .rp-related__track .rp-card__img--main img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }

  .rp-related__track .rp-card__title {
    min-height: 2.6em;
    font-size: 13px;
  }

  .rp-related__track .rp-card__price {
    min-height: 2.8em;
  }

  /* —— Product —— */
  .rp-crumbs {
    justify-content: center;
    margin: 20px 0 16px;
    font-size: 12px;
    color: #8a94a6;
  }

  .rp-product {
    gap: 4px;
  }

  .rp-product__info {
    padding-top: 4px;
  }

  .rp-product__sub {
    font-size: 14px;
    color: var(--rp-navy);
    margin: 0 0 10px;
  }

  .rp-product__price {
    margin: 0 0 16px;
  }

  .rp-qty-label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    color: #8a94a6;
    font-size: 13px;
  }

  .rp-stepper {
    display: inline-grid;
    grid-template-columns: 44px 56px 44px;
    align-items: stretch;
    width: max-content;
    border: 1px solid var(--rp-line);
    border-radius: 8px;
    overflow: hidden;
  }

  .rp-stepper__btn,
  .rp-qty {
    border: 0;
    background: #fff;
    min-height: 44px;
    color: var(--rp-navy);
  }

  .rp-qty {
    text-align: center;
    border-left: 1px solid var(--rp-line);
    border-right: 1px solid var(--rp-line);
    -moz-appearance: textfield;
  }

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

  .rp-product__cta .rp-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
  }

  .rp-colors {
    margin-top: 16px;
  }

  .rp-colors__swatch {
    width: 40px;
    height: 40px;
  }

  .rp-colors__tip {
    font-size: 11px;
    padding: 5px 8px;
  }

  .rp-product__tools {
    top: 10px;
    right: 10px;
    gap: 8px;
  }

  .rp-product__tools .rp-card__wish,
  .rp-product__tools .rp-card__share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(36, 53, 90, .12);
  }

  .rp-product__gallery {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    max-width: none;
    padding: 0;
  }

  .rp-thumbs {
    display: none !important;
  }

  .rp-product__stage {
    width: 100%;
    order: 1;
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 1 / 1;
    max-height: min(78vw, 520px);
    background: #fff;
    touch-action: pan-y;
  }

  .rp-product__track {
    display: flex;
    height: 100%;
    transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  }

  .rp-product__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 12px;
    background: #fff;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rp-product__photo,
  .rp-product__slide img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .rp-product__dots {
    order: 2;
    position: static !important;
    display: flex !important;
    justify-content: center;
    gap: 7px;
    margin: 10px 0 4px;
    padding: 0;
  }

  .rp-product__dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cfd8e4;
  }

  .rp-product__dots i.is-on {
    background: var(--rp-navy);
  }

  .rp-product__nav {
    display: none !important;
  }

  .rp-product__title {
    font-size: 22px;
    margin: 8px 0 6px;
  }

  .rp-accordions {
    border-top: 0;
  }

  .rp-acc {
    border-bottom: 0 !important;
  }

  .rp-acc summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rp-line);
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }

  .rp-acc summary::-webkit-details-marker {
    display: none;
  }

  .rp-acc summary:after {
    content: "";
    width: 8px;
    height: 8px;
    margin: 0 4px 0 12px;
    flex: 0 0 8px;
    align-self: center;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-25%);
  }

  .rp-acc[open] summary:after {
    transform: rotate(-135deg) translateY(-25%);
    margin-top: 0;
  }

  .rp-acc__body,
  .rp-acc__body.rp-prose,
  .rp-acc__body * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .rp-acc__body img,
  .rp-acc__body table,
  .rp-acc__body iframe {
    max-width: 100% !important;
    height: auto !important;
  }

  .rp-accordions .rp-acc:last-child,
  .rp-accordions .rp-acc:last-child summary,
  .rp-accordions .rp-acc:last-child .rp-acc__body {
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  .rp-related {
    border-top: 0;
    margin-top: 28px;
    padding-top: 8px;
  }

  /* —— Drawers —— */
  .rp-drawer[hidden] {
    display: block;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }

  .rp-drawer {
    transition: opacity .28s ease;
  }

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

  .rp-drawer__sheet {
    width: min(86vw, 360px);
    height: 100%;
    max-height: 100dvh;
    transform: translateX(-100%);
    transition: transform .34s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    background: #fff;
  }

  .rp-drawer.is-open .rp-drawer__sheet {
    transform: none;
  }

  .rp-drawer__search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    margin: 12px 16px 8px;
    padding: 0 14px;
    border: 0;
    border-radius: 22px;
    background: #f2f3f5;
  }

  .rp-drawer__search input {
    flex: 1;
    border: 0;
    background: transparent;
    min-width: 0;
    font-size: 16px;
  }

  .rp-drawer__item {
    border: 0;
    font-size: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    text-align: left;
    color: var(--rp-navy);
  }

  /* Wishlist = vtornik right sheet */
  .rp-drawer--wish .rp-drawer__sheet {
    width: 100%;
    max-width: none;
    margin-left: auto;
    transform: translateX(100%);
  }

  .rp-drawer--wish.is-open .rp-drawer__sheet {
    transform: none;
  }

  .rp-drawer--wish .rp-drawer__head {
    padding: 16px 16px 14px;
    border-bottom: 1px solid var(--rp-line);
  }

  .rp-drawer--wish .rp-drawer__title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }

  .rp-drawer--wish .rp-drawer__body {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .rp-wish-form {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .rp-wish-list {
    gap: 0;
  }

  .rp-wish-row {
    display: grid !important;
    grid-template-columns: 80px minmax(0, 1fr) 44px !important;
    gap: 12px;
    align-items: start;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid var(--rp-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 14px 12px 14px 16px !important;
  }

  .rp-wish-row__img {
    width: 80px;
    height: 80px;
    border: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .rp-wish-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rp-wish-row__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--rp-navy);
  }

  .rp-wish-row__price {
    margin: 4px 0 8px;
  }

  .rp-wish-row__remove {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #9aa3b2;
    font-size: 22px;
    line-height: 1;
    justify-self: end;
  }

  .rp-wish-row .rp-stepper {
    margin-top: 2px;
  }

  .rp-wish-row.is-leaving {
    transition: opacity .08s linear, transform .08s linear;
    opacity: 0;
    transform: translateX(24px);
  }

  .rp-wish-actions {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--rp-line);
  }

  .rp-wish-actions .rp-btn {
    width: 100%;
  }

  .rp-drawer--wish .rp-empty {
    padding: 48px 20px;
    text-align: center;
    color: var(--rp-muted);
  }

  /* —— Search panel —— */
  .rp-search {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 58;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -12px 40px rgba(36, 53, 90, .12);
  }

  .rp-search__form {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .rp-search__form input {
    font-size: 16px;
    flex: 1;
    min-height: 44px;
  }

  /* —— Checkout (aurashoes order) —— */
  .rp-checkout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "order"
      "form"
      "totals"
      "pay";
    gap: 8px;
  }

  .rp-checkout__col {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 8px 0;
    border-radius: 0;
  }

  .rp-checkout__col--order {
    grid-area: order;
  }

  .rp-checkout__col--form {
    grid-area: form;
  }

  .rp-checkout-totals {
    grid-area: totals;
    padding: 8px 0 0;
  }

  .rp-checkout-payment {
    grid-area: pay;
  }

  .rp-checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 20px;
    color: var(--rp-navy);
  }

  .rp-delivery-note {
    font-weight: 400 !important;
    color: var(--rp-muted);
    margin: 8px 0 0;
  }

  .rp-checkout-form .is-invalid,
  .rp-checkout-form .woocommerce-invalid input,
  .rp-checkout-form .woocommerce-invalid select,
  .rp-checkout-form .woocommerce-invalid textarea {
    border-color: #c0392b !important;
  }

  .rp-req-hint {
    display: block;
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
  }

  .rp-order-card__inner {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--rp-line);
  }

  .rp-btn {
    min-width: 0;
    width: 100%;
    font-size: 16px;
  }

  /* —— Auth / thankyou / cookie / footer —— */
  .rp-thankyou {
    text-align: center;
    padding: 28px 8px 40px;
  }

  .rp-thankyou__actions {
    display: grid;
    gap: 10px;
  }

  .rp-auth {
    gap: 28px !important;
  }

  .rp-auth .rp-btn,
  .woocommerce-form-login .button,
  .woocommerce-form-register .button {
    width: 100%;
  }

  .woocommerce-account .u-columns.col2-set#customer_login {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    background: #fff;
    padding: 8px 0 32px;
  }

  .rp-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .rp-cookie__actions {
    flex-direction: column;
  }

  .rp-footer__cookie {
    margin-left: 0;
    margin-top: 8px;
    display: inline-block;
  }

  .rp-footer {
    background: #d7e6f3;
    padding-top: 28px;
  }

  .rp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rp-footer h3 {
    font-size: 13px;
    letter-spacing: .08em;
  }

  .rp-footer ul a,
  .rp-footer__phone,
  .rp-footer__mail {
    font-size: 13px;
  }

  .rp-footer__logo img {
    height: 36px;
  }
}
