/* =========================================================================
   Palais Royal — arkusz glowny
   Konwersja projektu Claude Design (inline styles) na system klas.
   Spis: 1 tokeny · 2 baza · 3 typografia/UI · 4 bramka wieku · 5 header
         6 mega menu · 7 wyszukiwarka · 8 menu mobilne · 9 bloki home
         10 karta produktu · 11 katalog · 12 produkt · 13 blog · 14 strony
         15 stopka · 16 RWD
   ========================================================================= */

/* ---------- 1. TOKENY ---------- */
:root {
    --pr-cream: #f5eddd;
    --pr-cream-soft: #fbf6ec;
    --pr-cream-deep: #f0e6d2;
    --pr-wine: #7c1e34;
    --pr-wine-dark: #5e1626;
    --pr-navy: #1e2843;
    --pr-ink: #242b3e;
    --pr-gold: #c9a24b;
    --pr-muted: #9a8f7e;
    --pr-body: #5f5848;
    --pr-body-soft: #7a7261;
    --pr-green: #5f8a5f;

    --pr-line: rgba(30, 40, 67, 0.12);
    --pr-line-strong: rgba(30, 40, 67, 0.25);
    --pr-line-soft: rgba(30, 40, 67, 0.07);
    --pr-wine-line: rgba(124, 30, 52, 0.3);

    --pr-serif: "Cormorant Garamond", "Times New Roman", serif;
    --pr-sans:
        "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;

    --pr-max: 1280px;
    --pr-gutter: 32px;
    --pr-header-h: 78px;

    --pr-hatch: repeating-linear-gradient(
        135deg,
        #f1e8d6 0 14px,
        #efe4d0 14px 28px
    );
    --pr-hatch-lg: repeating-linear-gradient(
        135deg,
        #ece1cc 0 16px,
        #e8dcc4 16px 32px
    );
    --pr-shadow-card: 0 16px 34px -22px rgba(30, 40, 67, 0.45);
    --pr-shadow-pop: 0 28px 46px -24px rgba(30, 40, 67, 0.5);
}

/* ---------- 2. BAZA ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pr-cream);
    font-family: var(--pr-sans);
    font-size: 15px;
    color: var(--pr-ink);
    -webkit-font-smoothing: antialiased;
}

body.pr-no-scroll {
    overflow: hidden;
}

/* Stopka przy dolnej krawedzi okna, gdy tresci jest malo.
   Koszyk z jedna butelka albo pusty wynik wyszukiwania konczyly sie w polowie
   ekranu, a pod stopka zostawal pas tla — wyglada to jak uciety layout.
   Kolumna na cala wysokosc okna i rosnaca sekcja tresci zalatwiaja to bez
   zgadywania wysokosci naglowka. */
.pr-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#pr-content {
    flex: 1 0 auto;
}

/* Pasek administracyjny zabiera swoje z gory okna — bez tego korekta daje
   pionowy pasek przewijania na kazdej krotkiej stronie po zalogowaniu. */
.admin-bar .pr-site {
    min-height: calc(100vh - 32px);
}
@media (max-width: 782px) {
    .admin-bar .pr-site {
        min-height: calc(100vh - 46px);
    }
}

::selection {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--pr-wine);
    text-decoration: none;
    transition: color 0.18s ease;
}
a:hover {
    color: var(--pr-wine-dark);
}

button {
    font-family: inherit;
}

:focus-visible {
    outline: 2px solid var(--pr-wine);
    outline-offset: 2px;
}

.pr-is-hidden {
    display: none !important;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 3000;
    background: var(--pr-navy);
    color: var(--pr-cream);
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
}
.skip-link:focus {
    left: 0;
}

@keyframes prFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes prRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes prDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- 3. TYPOGRAFIA / UI ---------- */
.pr-container {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding-left: var(--pr-gutter);
    padding-right: var(--pr-gutter);
}
.pr-container--narrow {
    max-width: 1080px;
}
.pr-container--text {
    max-width: 860px;
}

.pr-section {
    padding-top: 74px;
    padding-bottom: 20px;
}
.pr-section--tight {
    padding-top: 48px;
}

.pr-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pr-wine);
    margin-bottom: 12px;
}
.pr-eyebrow--muted {
    color: var(--pr-muted);
    letter-spacing: 1.8px;
    font-size: 10.5px;
}
.pr-eyebrow--gold {
    color: var(--pr-gold);
}

.pr-display,
.pr-h1,
.pr-h2,
.pr-h3 {
    font-family: var(--pr-serif);
    font-weight: 600;
    color: var(--pr-navy);
    margin: 0;
    line-height: 1.06;
}
.pr-display {
    font-size: 62px;
}
.pr-h1 {
    font-size: 46px;
}
.pr-h2 {
    font-size: 40px;
}
.pr-h3 {
    font-size: 27px;
    line-height: 1.1;
}

.pr-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--pr-body);
    margin: 0 0 34px;
    max-width: 460px;
}

.pr-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--pr-body);
    margin: 0;
}

.pr-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pr-link-more {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pr-wine);
    border-bottom: 1px solid rgba(124, 30, 52, 0.4);
    padding-bottom: 3px;
    white-space: nowrap;
}
.pr-link-more:hover {
    border-color: var(--pr-wine);
}

/* Przyciski */
.pr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
    font-family: var(--pr-sans);
    font-size: 13.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 16px 30px;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    text-align: center;
}
.pr-btn:hover {
    background: var(--pr-wine-dark);
    color: var(--pr-cream-soft);
}

.pr-btn--ghost {
    background: transparent;
    border: 1px solid var(--pr-line-strong);
    color: var(--pr-navy);
}
.pr-btn--ghost:hover {
    background: rgba(30, 40, 67, 0.04);
    border-color: var(--pr-navy);
    color: var(--pr-navy);
}

.pr-btn--outline {
    background: transparent;
    border: 1px solid var(--pr-wine);
    color: var(--pr-wine);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 9px 14px;
}
.pr-btn--outline:hover {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
}

.pr-btn--block {
    width: 100%;
}
.pr-btn--lg {
    height: 52px;
    font-size: 14px;
    letter-spacing: 1.5px;
    padding: 0 30px;
}

.pr-chip {
    display: inline-block;
    font-size: 11.5px;
    letter-spacing: 0.5px;
    color: var(--pr-wine);
    border: 1px solid rgba(124, 30, 52, 0.28);
    padding: 5px 11px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}
.pr-chip:hover {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
}

.pr-chip--neutral {
    color: var(--pr-body);
    border-color: rgba(30, 40, 67, 0.18);
    background: var(--pr-cream);
}
.pr-chip--neutral:hover {
    border-color: var(--pr-wine);
    color: var(--pr-wine);
    background: var(--pr-cream);
}

/* Okruszki */
.pr-breadcrumb {
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: var(--pr-muted);
    margin-bottom: 26px;
}
.pr-breadcrumb a {
    color: var(--pr-muted);
}
.pr-breadcrumb a:hover {
    color: var(--pr-wine);
}
.pr-breadcrumb .pr-breadcrumb__sep {
    padding: 0 10px;
}
.pr-breadcrumb .pr-breadcrumb__current {
    color: var(--pr-ink);
}

/* Akordeon FAQ */
.pr-faq {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(30, 40, 67, 0.14);
}
.pr-faq__item {
    border-bottom: 1px solid rgba(30, 40, 67, 0.14);
}
.pr-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--pr-navy);
    transition: color 0.18s ease;
}
.pr-faq__q:hover {
    color: var(--pr-wine);
}
.pr-faq__q span:first-child {
    font-family: var(--pr-serif);
    font-size: 21px;
    line-height: 1.25;
}
.pr-faq__sign {
    flex: none;
    font-size: 26px;
    line-height: 1;
    color: var(--pr-wine);
    width: 22px;
    text-align: center;
}
.pr-faq__a {
    font-size: 15px;
    line-height: 1.8;
    color: var(--pr-body);
    margin: 0;
    padding: 0 4px 24px;
    max-width: 880px;
}
.pr-faq__item[data-open="false"] .pr-faq__a {
    display: none;
}

/* Gwiazdki */
.pr-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--pr-gold);
}
.pr-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--pr-muted);
}
.pr-rating__star {
    color: var(--pr-gold);
}

/* Powiadomienie */
.pr-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1500;
    background: var(--pr-navy);
    color: var(--pr-cream);
    padding: 14px 22px;
    font-size: 13px;
    letter-spacing: 0.6px;
    box-shadow: var(--pr-shadow-pop);
    animation: prRise 0.25s ease;
}

/* ---------- 4. BRAMKA WIEKU ---------- */
.pr-agegate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(30, 40, 67, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.pr-agegate__box {
    width: 100%;
    max-width: 440px;
    background: var(--pr-cream);
    border: 1px solid rgba(124, 30, 52, 0.25);
    box-shadow: 0 40px 80px -30px rgba(30, 40, 67, 0.6);
    padding: 46px 44px 40px;
    text-align: center;
}
.pr-agegate__logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin: -14px auto 6px;
    display: block;
}
.pr-agegate__mark {
    color: var(--pr-wine);
    margin-bottom: 10px;
}
.pr-agegate__eyebrow {
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--pr-wine);
    margin-bottom: 14px;
}
.pr-agegate__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--pr-navy);
}
.pr-agegate__text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #6f6757;
    margin: 0 0 28px;
}
.pr-agegate__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pr-agegate__note {
    font-size: 11.5px;
    line-height: 1.6;
    color: var(--pr-muted);
    margin: 24px 0 0;
}
.pr-agegate__deny {
    display: none;
}
.pr-agegate.is-denied .pr-agegate__ask {
    display: none;
}
.pr-agegate.is-denied .pr-agegate__deny {
    display: block;
}

/* ---------- 5. HEADER ---------- */
.pr-topbar {
    background: var(--pr-navy);
    color: #ede3cf;
    text-align: center;
    font-size: 11.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 9px 16px;
}
.pr-topbar__sep {
    margin: 0 0.35em;
}

.pr-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--pr-cream);
    border-bottom: 1px solid var(--pr-line);
}

.pr-header__inner {
    position: relative;
}

.pr-header__bar {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 0 var(--pr-gutter);
    display: flex;
    align-items: center;
    gap: 28px;
    height: var(--pr-header-h);
}

.pr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px 5px;
    margin-left: -5px;
    background: none;
    border: none;
    cursor: pointer;
    flex: none;
}
.pr-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pr-navy);
}

/* Logo z kieliszkiem po lewej (ustalenie 04.09.2026) */
.pr-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: none;
    margin-right: 6px;
    line-height: 1;
}
.pr-brand__mark {
    flex: none;
    color: var(--pr-wine);
    display: flex;
    align-items: center;
}
.pr-brand__mark img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}
.pr-brand__text {
    display: flex;
    flex-direction: column;
}
.pr-brand__name {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 1px;
    color: var(--pr-wine);
    white-space: nowrap;
}
.pr-brand__tagline {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pr-navy);
    margin-top: 3px;
}

/* Nawigacja z ikonami (ustalenie 04.09.2026) */
.pr-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Uwaga: pozycja statyczna celowo — mega menu ma sie rozciagac
   na cala szerokosc naglowka (.pr-header__inner), nie pozycji menu. */
.pr-nav__item {
    position: static;
}
.pr-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    letter-spacing: 0.6px;
    color: var(--pr-ink);
    padding: 28px 12px;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.pr-nav__link:hover,
.pr-nav__item.is-open > .pr-nav__link,
.pr-nav__item.current-menu-item > .pr-nav__link {
    color: var(--pr-wine);
}
.pr-nav__icon {
    flex: none;
    color: var(--pr-wine);
    opacity: 0.85;
}
.pr-nav__link:hover .pr-nav__icon {
    opacity: 1;
}

.pr-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: none;
    color: var(--pr-navy);
    margin-left: auto;
}
.pr-header__action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--pr-navy);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.pr-header__action:hover {
    color: var(--pr-wine);
}
.pr-header__action .pr-icon {
    color: var(--pr-wine);
}
.pr-cart-count {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

/* ---------- 6. MEGA MENU ---------- */
.pr-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pr-cream-soft);
    border-top: 1px solid var(--pr-line);
    border-bottom: 1px solid var(--pr-line);
    box-shadow: 0 30px 50px -30px rgba(30, 40, 67, 0.4);
    z-index: 950;
    display: none;
    animation: prDrop 0.18s ease;
}
.pr-nav__item.is-open .pr-mega {
    display: block;
}

.pr-mega__inner {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 36px var(--pr-gutter) 40px;
    display: flex;
    gap: 48px;
}
.pr-mega__cols {
    flex: 1;
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}
.pr-mega__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pr-mega__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pr-mega__heading {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pr-muted);
}
.pr-mega__link {
    font-family: var(--pr-serif);
    font-size: 19px;
    color: var(--pr-navy);
    transition: color 0.18s ease;
    white-space: nowrap;
}
.pr-mega__link:hover {
    color: var(--pr-wine);
}

.pr-mega__promo {
    width: 300px;
    flex: none;
    background: var(--pr-wine);
    color: var(--pr-cream);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 230px;
    position: relative;
    overflow: hidden;
    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0 12px,
        transparent 12px 24px
    );
}
.pr-mega__promo:hover {
    color: var(--pr-cream);
}
.pr-mega__promo-eyebrow {
    display: block;
    font-size: 10.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 10px;
}
.pr-mega__promo-title {
    display: block;
    font-family: var(--pr-serif);
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.pr-mega__promo-desc {
    display: block;
    font-size: 13.5px;
    line-height: 1.55;
    opacity: 0.9;
    margin-bottom: 16px;
}
.pr-mega__promo-cta {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(245, 237, 221, 0.6);
    padding-bottom: 3px;
}
.pr-mega__promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.pr-mega__promo-body {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* ---------- 7. WYSZUKIWARKA ---------- */
.pr-search {
    position: relative;
    flex: none;
}

.pr-search__field {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--pr-line-strong);
    background: var(--pr-cream-soft);
    height: 40px;
    padding: 0 12px;
    width: 264px;
    transition: border-color 0.18s ease;
}
.pr-search__field:hover,
.pr-search__field:focus-within {
    border-color: var(--pr-wine);
}
.pr-search__field .pr-icon {
    color: var(--pr-muted);
    flex: none;
}
.pr-search__input {
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--pr-sans);
    font-size: 13px;
    letter-spacing: 0.2px;
    color: var(--pr-navy);
    width: 100%;
    min-width: 0;
}
.pr-search__clear {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: var(--pr-muted);
    flex: none;
    padding: 0;
}
.pr-search__clear:hover {
    color: var(--pr-wine);
}

.pr-search__drop {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 420px;
    background: var(--pr-cream-soft);
    border: 1px solid rgba(30, 40, 67, 0.16);
    box-shadow: var(--pr-shadow-pop);
    z-index: 1000;
    max-height: min(560px, 72vh);
    overflow-y: auto;
    display: none;
    animation: prDrop 0.16s ease;
}
.pr-search.is-open .pr-search__drop {
    display: block;
}

.pr-search__drop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(30, 40, 67, 0.1);
    background: var(--pr-cream);
}
.pr-search__scope {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--pr-muted);
}
.pr-search__scope select {
    border: 1px solid rgba(30, 40, 67, 0.2);
    background: var(--pr-cream-soft);
    font-family: var(--pr-sans);
    font-size: 11.5px;
    letter-spacing: 0.3px;
    color: var(--pr-navy);
    padding: 4px 6px;
    text-transform: none;
}
.pr-search__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10.5px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--pr-muted);
}
.pr-search__close:hover {
    color: var(--pr-wine);
}

.pr-search__hints {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.pr-search__hint-title {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-bottom: 10px;
}
.pr-search__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-search__group-title {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pr-muted);
    padding: 14px 16px 8px;
}
.pr-search__group + .pr-search__group {
    border-top: 1px solid rgba(30, 40, 67, 0.1);
}

.pr-search__product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-top: 1px solid var(--pr-line-soft);
    color: var(--pr-navy);
}
.pr-search__product:hover {
    background: var(--pr-cream);
    color: var(--pr-navy);
}
.pr-search__product img {
    width: 34px;
    height: 56px;
    object-fit: contain;
    flex: none;
}
.pr-search__product-name {
    font-size: 13.5px;
    line-height: 1.3;
}
.pr-search__product-meta {
    font-size: 11.5px;
    color: var(--pr-muted);
    margin-top: 3px;
}
.pr-search__product-price {
    flex: none;
    font-size: 13.5px;
    color: var(--pr-wine);
    white-space: nowrap;
}

.pr-search__cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 16px;
    font-size: 13.5px;
    color: var(--pr-navy);
}
.pr-search__cat:hover {
    background: var(--pr-cream);
    color: var(--pr-wine);
}
.pr-search__cat span {
    font-size: 11.5px;
    color: var(--pr-muted);
}

.pr-search__post {
    display: block;
    padding: 9px 16px;
    color: var(--pr-navy);
}
.pr-search__post:hover {
    background: var(--pr-cream);
}
.pr-search__post-title {
    font-size: 13.5px;
    line-height: 1.35;
}
.pr-search__post-meta {
    font-size: 11.5px;
    color: var(--pr-muted);
    margin-top: 3px;
}

.pr-search__all {
    display: block;
    text-align: center;
    padding: 13px 16px;
    background: var(--pr-navy);
    color: var(--pr-cream);
    font-size: 11.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.pr-search__all:hover {
    background: var(--pr-wine);
    color: var(--pr-cream);
}

.pr-search__empty {
    padding: 20px 16px;
}
.pr-search__empty h4 {
    font-family: var(--pr-serif);
    font-size: 20px;
    color: var(--pr-navy);
    margin: 0 0 6px;
    font-weight: 600;
}
.pr-search__empty p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--pr-body-soft);
    margin: 0 0 14px;
}
.pr-search__loading {
    padding: 22px 16px;
    font-size: 13px;
    color: var(--pr-body-soft);
}

/* ---------- 8. MENU MOBILNE ---------- */
.pr-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}
.pr-drawer.is-open {
    display: flex;
}
.pr-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 67, 0.5);
    backdrop-filter: blur(3px);
    border: none;
}
.pr-drawer__panel {
    position: relative;
    width: min(340px, 86vw);
    max-width: 86vw;
    background: var(--pr-cream);
    height: 100%;
    overflow-y: auto;
    box-shadow: 0 0 60px -10px rgba(30, 40, 67, 0.6);
    display: flex;
    flex-direction: column;
    animation: prFade 0.2s ease;
}
.pr-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--pr-line);
}
.pr-drawer__brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 22px;
    color: var(--pr-wine);
}
.pr-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--pr-navy);
    line-height: 0;
}
.pr-drawer__search {
    padding: 16px 22px 6px;
}
.pr-drawer__search .pr-search__field {
    width: 100%;
    height: 44px;
}
.pr-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}
.pr-drawer__nav > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--pr-serif);
    font-size: 21px;
    color: var(--pr-navy);
    padding: 14px 24px;
    border-bottom: 1px solid var(--pr-line-soft);
}
.pr-drawer__nav > li > a:hover {
    color: var(--pr-wine);
}
.pr-drawer__nav .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 24px;
}
.pr-drawer__nav .sub-menu a {
    display: block;
    font-size: 14px;
    color: var(--pr-body);
    padding: 8px 24px 8px 0;
}
.pr-drawer__links {
    display: flex;
    flex-direction: column;
    padding: 14px 0 8px;
    margin-top: 4px;
    border-top: 1px solid var(--pr-line);
}
.pr-drawer__links a {
    font-size: 14.5px;
    letter-spacing: 0.4px;
    color: var(--pr-body);
    padding: 11px 24px;
}
.pr-drawer__links a:hover {
    color: var(--pr-wine);
}

/* ---------- 9. BLOKI STRONY GLOWNEJ ---------- */

/* 9a. Hero — Poznaj nasze regiony */
.pr-hero {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 0 var(--pr-gutter);
}
.pr-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 520px;
    gap: 0;
}
.pr-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 64px 64px 0;
}
.pr-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.pr-hero__title {
    margin: 0 0 24px;
}

.pr-hero__media {
    position: relative;
    margin: 32px 0;
    display: grid;
    gap: 14px;
}
.pr-hero__media--1 {
    grid-template-columns: 1fr;
}
.pr-hero__media--2 {
    grid-template-columns: 1fr 1fr;
}
.pr-hero__media--3 {
    grid-template-columns: 1fr 1fr;
}

.pr-region-card {
    position: relative;
    overflow: hidden;
    background: var(--pr-hatch-lg);
    display: block;
    min-height: 300px;
    color: var(--pr-cream);
}
.pr-region-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.pr-region-card:hover img {
    transform: scale(1.04);
}
.pr-region-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 40, 67, 0.78) 0%,
        rgba(30, 40, 67, 0.12) 52%,
        transparent 100%
    );
}
.pr-region-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 22px 20px;
}
.pr-region-card__eyebrow {
    font-size: 10px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--pr-gold);
    margin-bottom: 6px;
}
.pr-region-card__name {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 6px;
}
.pr-region-card__desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(245, 237, 221, 0.88);
    margin: 0;
}
.pr-region-card:hover {
    color: var(--pr-cream);
}

/* 9b. Pasek regionow (zamiast paska wyroznikow) */
.pr-strip {
    border-top: 1px solid var(--pr-line);
    border-bottom: 1px solid var(--pr-line);
    background: var(--pr-cream-soft);
}
.pr-strip__grid {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 0 var(--pr-gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.pr-strip__item {
    padding: 30px 24px;
    text-align: center;
    border-left: 1px solid rgba(30, 40, 67, 0.08);
}
.pr-strip__item:first-child {
    border-left: none;
}
.pr-strip__item .pr-icon {
    color: var(--pr-wine);
    margin-bottom: 8px;
}
.pr-strip__title {
    font-family: var(--pr-serif);
    font-size: 21px;
    color: var(--pr-wine);
    margin-bottom: 5px;
}
.pr-strip__desc {
    font-size: 13.5px;
    color: var(--pr-body-soft);
    letter-spacing: 0.3px;
}
a.pr-strip__item:hover .pr-strip__title {
    color: var(--pr-wine-dark);
}

/* 9c. Kafle kategorii */
.pr-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pr-tile {
    background: var(--pr-cream-soft);
    border: 1px solid var(--pr-line);
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.pr-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -28px rgba(30, 40, 67, 0.5);
    border-color: rgba(124, 30, 52, 0.4);
}
.pr-tile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.pr-tile__icon {
    color: var(--pr-wine);
    height: 44px;
    display: flex;
    align-items: center;
}
.pr-tile__num {
    font-family: var(--pr-serif);
    font-size: 15px;
    color: var(--pr-gold);
}
.pr-tile__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 27px;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--pr-navy);
}
.pr-tile__title a {
    color: inherit;
}
.pr-tile__title a:hover {
    color: var(--pr-wine);
}
.pr-tile__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--pr-body-soft);
    margin: 0 0 18px;
}
.pr-tile__subs {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 9d. Skroty */
.pr-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.pr-shortcut {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(30, 40, 67, 0.2);
    padding: 16px 18px;
    transition: all 0.2s ease;
    color: var(--pr-navy);
}
.pr-shortcut:hover {
    border-color: var(--pr-wine);
    background: var(--pr-cream-soft);
    transform: translateY(-2px);
    color: var(--pr-navy);
}
.pr-shortcut__eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pr-muted);
    display: block;
}
.pr-shortcut__label {
    font-size: 15px;
    letter-spacing: 0.3px;
    color: var(--pr-navy);
    display: block;
    margin-top: 4px;
}
.pr-shortcut__arrow {
    font-size: 17px;
    color: var(--pr-wine);
    flex: none;
}

/* 9e. O nas */
.pr-about {
    margin: 80px 0 0;
    background: var(--pr-navy);
    color: #ede3cf;
    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0 14px,
        transparent 14px 28px
    );
}
.pr-about__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 78px var(--pr-gutter);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
.pr-about__title {
    font-family: var(--pr-serif);
    font-weight: 500;
    font-size: 40px;
    line-height: 1.12;
    margin: 0;
    color: var(--pr-cream);
}
.pr-about__body p {
    font-size: 16px;
    line-height: 1.75;
    color: #d8cdb6;
    margin: 0 0 18px;
}
.pr-about__sign {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.pr-about__voila {
    font-family: var(--pr-serif);
    font-size: 30px;
    color: var(--pr-cream);
}
.pr-about__link {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pr-gold);
    border-bottom: 1px solid rgba(201, 162, 75, 0.5);
    padding-bottom: 3px;
}
.pr-about__link:hover {
    color: var(--pr-gold);
}

/* 9f. Kolumny SEO */
.pr-seo-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.pr-seo-cols h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.18;
    margin: 0 0 13px;
    color: var(--pr-navy);
}
.pr-seo-cols p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--pr-body);
    margin: 0;
}

/* Siatka produktow na home */
.pr-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pr-product-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ---------- 10. KARTA PRODUKTU ---------- */
.pr-card {
    position: relative;
    height: 100%;
    background: var(--pr-cream-soft);
    border: 1px solid var(--pr-line);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    list-style: none;
}
.pr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pr-shadow-card);
}

/* Kadr bez wlasnej oprawy — tak samo jak galeria na karcie produktu.
   Zdjecia butelek maja wlasne jasne tlo studyjne, wiec fakturowane tlo,
   margines wokol zdjecia i cien tylko dokladaly druga oprawe wokol pierwszej.
   Kadr trzyma proporcje 3:4, czyli te sama, w ktorej motyw generuje rozmiar
   "pr-bottle-card" (600x800). Dopasowanie przez contain, nie cover: zdjecia
   butelek bywaja kadrowane ciasno i przy przycinaniu do ramki traca czubek
   kapsla — sprawdzone na pierwszym zdjeciu produktowym. Przy proporcji innej
   niz 3:4 po bokach zostaje waski pas tla karty, i to jest cena za to, ze
   zadna butelka nie jest ucieta. */
.pr-card__media {
    /*aspect-ratio: 3 / 4;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex: none;
}
.pr-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pr-card__badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pr-wine);
    border: 1px solid rgba(124, 30, 52, 0.32);
    padding: 3px 9px;
    background: rgba(251, 246, 236, 0.78);
}
.pr-card__badge--sale {
    left: auto;
    right: 13px;
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
    border-color: var(--pr-wine);
}

.pr-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.pr-card__meta {
    font-size: 10.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pr-muted);
}
.pr-card__title {
    font-family: var(--pr-serif);
    font-size: 21px;
    line-height: 1.12;
    color: var(--pr-navy);
    margin: 0;
    font-weight: 600;
}
.pr-card__title a {
    color: inherit;
}
.pr-card__title a:hover {
    color: var(--pr-wine);
}
.pr-card__foot {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    gap: 10px;
    flex-wrap: wrap;
}
.pr-card__foot .pr-btn--outline {
    white-space: nowrap;
}
.pr-card__price {
    font-family: var(--pr-serif);
    font-size: 25px;
    color: var(--pr-wine);
    line-height: 1;
}
.pr-card__price del {
    font-size: 15px;
    opacity: 0.55;
    margin-right: 6px;
}
.pr-card__price ins {
    text-decoration: none;
}
.pr-card__price-net {
    display: block;
    font-family: var(--pr-sans);
    font-size: 11px;
    color: var(--pr-muted);
    letter-spacing: 0.4px;
    margin-top: 4px;
}
.pr-card__link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.pr-card__foot .pr-btn--outline {
    position: relative;
    z-index: 2;
}

/* ---------- 11. KATALOG ---------- */
.pr-archive {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 28px var(--pr-gutter) 40px;
}
.pr-archive__head {
    border-bottom: 1px solid rgba(30, 40, 67, 0.14);
    padding-bottom: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.pr-archive__intro {
    max-width: 620px;
}
.pr-archive__intro p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--pr-body-soft);
    margin: 12px 0 0;
}
.pr-archive__layout {
    display: grid;
    grid-template-columns: 248px 1fr;
    gap: 44px;
    align-items: start;
}
.pr-archive__layout--full {
    grid-template-columns: 1fr;
}
.pr-archive__toolbar {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 14px;
    flex-wrap: wrap;
}
.pr-archive__count {
    font-size: 13.5px;
    color: var(--pr-body-soft);
}
/* Licznik po lewej, sortowanie i przelacznik widoku po prawej. */
.pr-archive__toolbar .woocommerce-result-count,
.pr-archive__toolbar .pr-archive__count {
    margin-right: auto;
    margin-bottom: 0;
}
.pr-archive__toolbar .woocommerce-ordering {
    margin: 0;
}

.pr-filters {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.pr-filters__group-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pr-navy);
    border-bottom: 1px solid rgba(30, 40, 67, 0.14);
    padding-bottom: 10px;
    margin-bottom: 14px;
}
.pr-filters__list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pr-filters__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--pr-body);
}
.pr-filters__list a:hover {
    color: var(--pr-wine);
}
.pr-filters__box {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(30, 40, 67, 0.35);
    flex: none;
    display: inline-block;
}
.pr-filters__list .chosen .pr-filters__box {
    background: var(--pr-wine);
    border-color: var(--pr-wine);
}

.pr-sort select {
    border: 1px solid rgba(30, 40, 67, 0.22);
    background: transparent;
    padding: 8px 14px;
    color: var(--pr-navy);
    letter-spacing: 0.4px;
    font-family: var(--pr-sans);
    font-size: 13px;
}

.pr-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.pr-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--pr-line-strong);
    margin: 0 4px;
    font-size: 13.5px;
    color: var(--pr-navy);
}
.pr-pagination .page-numbers.current,
.pr-pagination .page-numbers:hover {
    background: var(--pr-wine);
    border-color: var(--pr-wine);
    color: var(--pr-cream-soft);
}

.pr-empty {
    padding: 60px 0;
    text-align: center;
}
.pr-empty p {
    font-size: 16px;
    color: var(--pr-body-soft);
    margin: 0 0 24px;
}

/* Tekst SEO pod katalogiem */
.pr-catalog-seo {
    margin-top: 72px;
    border-top: 1px solid rgba(30, 40, 67, 0.14);
    padding-top: 48px;
}
.pr-catalog-seo h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--pr-navy);
}
.pr-catalog-seo p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--pr-body);
    margin: 0 0 34px;
}

/* ---------- 11a. WIDOK LISTY (przelacznik siatka/lista) ---------- */
.pr-view-toggle {
    display: inline-flex;
    border: 1px solid rgba(30, 40, 67, 0.22);
    flex: none;
}
.pr-view-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    color: var(--pr-muted);
    border-left: 1px solid rgba(30, 40, 67, 0.14);
    transition:
        background 0.18s ease,
        color 0.18s ease;
}
.pr-view-toggle__btn:first-child {
    border-left: none;
}
.pr-view-toggle__btn:hover {
    color: var(--pr-wine);
}
.pr-view-toggle__btn.is-active {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
}

/* Kontener listy — nadpisuje siatke z woocommerce.css.
   Dwie drogi: klasa na <ul> (z filtru petli) i klasa na <body>. */
ul.products.pr-list,
.pr-view-list ul.products {
    display: block;
    border-top: 1px solid var(--pr-line);
}

.pr-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 200px 176px;
    gap: 22px;
    align-items: center;
    padding: 20px 4px;
    border-bottom: 1px solid var(--pr-line-soft);
    background: transparent;
    transition: background 0.18s ease;
}
.pr-row:hover {
    background: var(--pr-cream-soft);
}
.pr-row--no-rating {
    grid-template-columns: 92px minmax(0, 1fr) 190px;
}

/* Ten sam zabieg co na kaflu: bez faktury i bez cienia, zeby widok listy
   i widok siatki pokazywaly zdjecie tak samo. Wysokosc zostaje sztywna, bo
   wiersz uklada sie poziomo i rowne kadry trzymaja liste w ryzach. */
.pr-row__media {
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.pr-row__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pr-row__body {
    min-width: 0;
}
.pr-row__meta {
    font-size: 10.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-bottom: 5px;
}
.pr-row__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 6px;
    color: var(--pr-navy);
}
.pr-row__title a {
    color: inherit;
}
.pr-row__title a:hover {
    color: var(--pr-wine);
}
.pr-row__grapes {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--pr-body-soft);
    margin-bottom: 6px;
}
.pr-row__grapes .pr-icon {
    color: var(--pr-wine);
    flex: none;
}
.pr-row__note {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--pr-body-soft);
    margin: 0;
    max-width: 62ch;
}

.pr-row__rating {
    min-width: 0;
}
.pr-row__buy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: right;
}
.pr-row__price {
    font-family: var(--pr-serif);
    font-size: 26px;
    line-height: 1;
    color: var(--pr-wine);
}
.pr-row__price del {
    font-size: 16px;
    opacity: 0.55;
    margin-right: 6px;
}
.pr-row__price ins {
    text-decoration: none;
}
.pr-row__soldout {
    font-size: 12.5px;
    color: var(--pr-muted);
}

/* Gwiazdki */
.pr-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.pr-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}
.pr-star {
    display: inline-flex;
    line-height: 0;
}
.pr-star--full {
    color: var(--pr-gold);
}
.pr-star--empty {
    color: rgba(30, 40, 67, 0.18);
}
.pr-star--half {
    position: relative;
    display: inline-flex;
    color: rgba(30, 40, 67, 0.18);
}
.pr-star--half .pr-icon:last-child {
    position: absolute;
    inset: 0;
    color: var(--pr-gold);
}
.pr-stars-row__value {
    font-size: 14px;
    color: var(--pr-navy);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.pr-stars-row__count {
    font-size: 12px;
    color: var(--pr-muted);
    white-space: nowrap;
}

/* ---------- 11b. STRONA REGIONU ---------- */
.pr-region {
    padding-top: 28px;
}
.pr-region__body {
    padding-bottom: 40px;
}

.pr-region__hero {
    position: relative;
    overflow: hidden;
    background: var(--pr-cream-soft);
    border-top: 1px solid var(--pr-line);
    border-bottom: 1px solid var(--pr-line);
    margin-bottom: 36px;
}
/* Opis po lewej, zdjecie regionu w prawej kolumnie. */
.pr-region__hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 64px;
    padding-block: 54px 48px;
}
.pr-region__intro {
    min-width: 0;
}

/* Kolumna ze zdjeciem. Siatka zamiast position:relative, zeby ramka
   passe-partout obejmowala samo zdjecie, a nie podpis pod nim. */
.pr-region__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
}
.pr-region__photo,
.pr-region__plate {
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--pr-cream-deep);
}
/* Passe-partout: cienka zlota ramka wpuszczona w kadr. */
.pr-region__media::after {
    content: "";
    grid-area: 1 / 1;
    margin: 12px;
    border: 1px solid rgba(201, 162, 75, 0.55);
    pointer-events: none;
}
.pr-region__media-cap {
    grid-area: 2 / 1;
    margin-top: 14px;
    font-size: 10.5px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--pr-muted);
    text-align: right;
}

.pr-region__eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pr-wine);
    margin-bottom: 14px;
}
.pr-region__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 52px;
    line-height: 1.02;
    margin: 0 0 16px;
    color: var(--pr-navy);
}
.pr-region__desc {
    max-width: 60ch;
    font-size: 16px;
    line-height: 1.75;
    color: var(--pr-body);
}
.pr-region__desc p {
    margin: 0 0 12px;
}
.pr-region__desc p:last-child {
    margin-bottom: 0;
}

.pr-region__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--pr-line);
    max-width: 640px;
}
.pr-region__stats > div {
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(30, 40, 67, 0.12);
}
.pr-region__stats > div:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.pr-region__stats dt {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-bottom: 5px;
}
.pr-region__stats dd {
    margin: 0;
    font-size: 15.5px;
    color: var(--pr-navy);
    font-variant-numeric: tabular-nums;
}
.pr-region__stats .amount {
    color: inherit;
}

/* Fasety rodzaju wina */
.pr-facets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
}
.pr-facets__label {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-right: 6px;
}
.pr-chip.is-active {
    background: var(--pr-wine);
    color: var(--pr-cream-soft);
    border-color: var(--pr-wine);
}

/* Pozostale regiony */
.pr-region__more {
    margin-top: 72px;
    border-top: 1px solid rgba(30, 40, 67, 0.14);
    padding-top: 46px;
}
.pr-region__more .pr-h2 {
    margin-bottom: 28px;
}

/* minmax(0, …): sam 1fr nie schodzi ponizej szerokosci opisu (nowrap)
   i na tablecie oraz telefonie wypychal strone w bok. */
.pr-region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--pr-line);
    border: 1px solid var(--pr-line);
}
.pr-region-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--pr-cream-soft);
    color: var(--pr-navy);
    transition: background 0.2s ease;
}
.pr-region-item:hover {
    background: var(--pr-cream);
    color: var(--pr-navy);
}
.pr-region-item__media {
    flex: none;
    width: 54px;
    height: 54px;
    background: var(--pr-hatch);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-wine);
    overflow: hidden;
}
.pr-region-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pr-region-item__body {
    flex: 1;
    min-width: 0;
}
.pr-region-item__name {
    display: block;
    font-family: var(--pr-serif);
    font-size: 20px;
    line-height: 1.15;
}
.pr-region-item__desc {
    display: block;
    font-size: 12.5px;
    color: var(--pr-body-soft);
    margin-top: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pr-region-item__count {
    flex: none;
    font-size: 11.5px;
    letter-spacing: 0.4px;
    color: var(--pr-muted);
    white-space: nowrap;
}

/* Spis regionow (szablon strony) */
.pr-region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pr-region-grid .pr-region-card {
    min-height: 300px;
}

/* ---------- 12. STRONA PRODUKTU ---------- */
.pr-product {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 28px var(--pr-gutter) 40px;
}
.pr-product__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.pr-product__gallery {
    position: sticky;
    top: 130px;
}
/* Galeria bez wlasnej oprawy: zdjecia produktowe maja wlasne jasne tlo
   studyjne, wiec panel, ramka i padding tylko dokladaly druga krawedz wokol
   pierwszej. Zostaje samo zdjecie. position: relative jest tu punktem
   odniesienia dla lupy w rogu. */
.pr-product__gallery .woocommerce-product-gallery {
    position: relative;
    background: none;
    border: none;
    padding: 0;
}
/* Cien odpada razem z panelem: byl pomyslany pod wyciete butelki lezace na
   fakturze, a pod prostokatnym zdjeciem bez oprawy zostawial szara smuge
   wzdluz dolnej krawedzi. */
.pr-product__gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pr-product__summary {
    padding-top: 4px;
}
.pr-product__eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pr-wine);
    margin-bottom: 16px;
}
.pr-product__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 14px;
    color: var(--pr-navy);
}
.pr-product__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    font-size: 14px;
    color: var(--pr-body-soft);
}
.pr-product__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.pr-product__price .price,
.pr-product__price .amount {
    font-family: var(--pr-serif);
    font-size: 46px;
    color: var(--pr-wine);
    line-height: 1;
}
.pr-product__price del .amount {
    font-size: 26px;
    opacity: 0.5;
}
.pr-product__unit {
    font-size: 13px;
    color: var(--pr-muted);
}
.pr-product__stock {
    font-size: 13px;
    color: var(--pr-green);
    letter-spacing: 0.4px;
    margin-bottom: 30px;
}
.pr-product__stock--out {
    color: var(--pr-wine);
}

.pr-product__notes {
    border-top: 1px solid rgba(30, 40, 67, 0.14);
    padding-top: 26px;
    margin-bottom: 26px;
}
.pr-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-bottom: 12px;
}
.pr-product__notes p {
    font-size: 16px;
    line-height: 1.7;
    color: #4f4838;
    margin: 0;
}

.pr-pairing {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pr-pairing__item {
    flex: 1;
    min-width: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
    background: var(--pr-cream-soft);
    border: 1px solid rgba(30, 40, 67, 0.14);
    padding: 18px 12px;
}
.pr-pairing__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(124, 30, 52, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-wine);
    flex: none;
}
.pr-pairing__label {
    font-size: 13px;
    letter-spacing: 0.3px;
    color: var(--pr-navy);
    line-height: 1.3;
}

/* Wariant z uzasadnieniem przy kazdej parze — kafle w rzedzie sa wtedy za ciasne,
   wiec dopasowania ida w liste: ikona po lewej, nazwa i zdanie po prawej. */
.pr-pairing--rows {
    flex-direction: column;
    gap: 1px;
    background: rgba(30, 40, 67, 0.14);
    border: 1px solid rgba(30, 40, 67, 0.14);
}
.pr-pairing--rows .pr-pairing__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
    min-width: 0;
    border: none;
    padding: 14px 16px;
}
.pr-pairing--rows .pr-pairing__icon {
    width: 40px;
    height: 40px;
}
.pr-pairing__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.pr-pairing--rows .pr-pairing__label {
    font-size: 15px;
    color: var(--pr-navy);
}
.pr-pairing__note {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--pr-body-soft);
}

.pr-product__block {
    margin-bottom: 28px;
}

/* Okazje — „kiedy otworzyc” */
.pr-occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pr-occasion {
    font-size: 12.5px;
    letter-spacing: 0.3px;
    color: var(--pr-navy);
    background: var(--pr-cream-soft);
    border: 1px solid rgba(30, 40, 67, 0.14);
    padding: 6px 12px;
}
/* Zdanie domykajace liste okazji („szkoda trzymac na wielkie okazje”). */
.pr-occasions__note {
    margin: 14px 0 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--pr-body-soft);
    font-style: italic;
}

.pr-product__tagline {
    font-size: 17px;
    line-height: 1.6;
    color: var(--pr-body);
    margin: 0 0 22px;
    max-width: 48ch;
}

/* Profil wina — osie z ocena 1-5 */
.pr-profile {
    margin-top: 56px;
}
.pr-profile h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 30px;
    color: var(--pr-navy);
    margin: 0 0 26px;
}
.pr-profile__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 56px;
    margin: 0;
    max-width: 780px;
}
.pr-profile__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pr-line-soft);
}
.pr-profile__axis {
    font-size: 14.5px;
    letter-spacing: 0.3px;
    color: var(--pr-navy);
    margin: 0;
}
.pr-profile__scale {
    display: flex;
    gap: 6px;
    margin: 0;
    flex: none;
}
.pr-profile__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--pr-wine-line);
}
.pr-profile__dot.is-on {
    background: var(--pr-wine);
    border-color: var(--pr-wine);
}

.pr-producer {
    background: var(--pr-cream-soft);
    border: 1px solid rgba(124, 30, 52, 0.2);
    padding: 24px 26px;
    margin-top: 28px;
}
/* Naglowek boksu producenta to pelne zdanie („Maly producent. Kazdy rok
   troche inny.”), wiec wersaliki z .pr-label sie tu nie sprawdzaly — czyta
   sie jak krzyk i lamie w trzy linie. Szeryfowy naglowek zamiast etykiety. */
.pr-producer__lead {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 21px;
    line-height: 1.25;
    color: var(--pr-wine);
    margin-bottom: 14px;
}
.pr-producer p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--pr-body);
    margin: 0;
}
/* Notka o producencie bywa kilkuakapitowa — bez tego zlewa sie w jeden blok. */
.pr-producer p + p {
    margin-top: 13px;
}

.pr-facts {
    margin-top: 64px;
    border-top: 1px solid rgba(30, 40, 67, 0.14);
    padding-top: 46px;
}
.pr-facts h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin: 0 0 26px;
    color: var(--pr-navy);
}
.pr-facts .pr-prose {
    max-width: 780px;
}
/* Tabela faktow szla w jednej kolumnie na polowie szerokosci — prawa polowa
   sekcji zostawala pusta. Dwie kolumny zbijaja ja do czytelnej wysokosci. */
.pr-facts__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
}
.pr-facts__row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(30, 40, 67, 0.1);
}
/* W dwoch kolumnach ostatni wiersz to takze przedostatni element w DOM —
   inaczej lewa kolumna konczylaby sie kreska, a prawa nie. */
.pr-facts__row:nth-last-child(-n + 2) {
    border-bottom: none;
}
.pr-facts__icon {
    color: var(--pr-wine);
    flex: none;
    display: flex;
}
.pr-facts__key {
    flex: none;
    width: 162px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pr-muted);
    line-height: 1.4;
}
.pr-facts__val {
    font-size: 15.5px;
    color: var(--pr-navy);
}
.pr-facts__val a {
    color: var(--pr-wine);
    border-bottom: 1px solid var(--pr-wine-line);
}
/* Notki pod tabela — winifikacja i dodatkowe szczegoly to cale zdania, wiec
   dostaja pelna szerokosc kolumny zamiast wciskac sie w wiersz tabeli. */
.pr-facts__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 56px;
    margin: 0;
}
.pr-facts__list + .pr-facts__notes {
    margin-top: 10px;
    padding-top: 28px;
    border-top: 1px solid rgba(30, 40, 67, 0.1);
}
.pr-facts__note .pr-facts__key {
    width: auto;
    margin-bottom: 8px;
}
.pr-facts__note dd {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--pr-navy);
}

.pr-related {
    margin-top: 80px;
    border-top: 1px solid rgba(30, 40, 67, 0.14);
    padding-top: 46px;
}
.pr-related h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin: 0 0 28px;
    color: var(--pr-navy);
}

/* Ilosc */
.pr-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--pr-line-strong);
}
.pr-qty button {
    border: none;
    background: transparent;
    font-size: 20px;
    width: 46px;
    height: 52px;
    cursor: pointer;
    color: var(--pr-navy);
}
.pr-qty input {
    width: 42px;
    text-align: center;
    font-size: 16px;
    color: var(--pr-navy);
    border: none;
    background: transparent;
    height: 52px;
    font-family: var(--pr-sans);
    -moz-appearance: textfield;
}
.pr-qty input::-webkit-outer-spin-button,
.pr-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Uklad wiersza zakupu (ilosc + przycisk) siedzi w woocommerce.css, bo musi
   wygrac z wlasnymi stylami przycisku WooCommerce ladowanymi pozniej. */

/* ---------- 13. BLOG ---------- */
.pr-blog {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 28px var(--pr-gutter) 60px;
}
.pr-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pr-post-card {
    background: var(--pr-cream-soft);
    border: 1px solid var(--pr-line);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.pr-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pr-shadow-card);
}
.pr-post-card__media {
    height: 210px;
    overflow: hidden;
}
.pr-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pr-post-card__body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.pr-post-card__cat {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pr-wine);
}
.pr-post-card__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 23px;
    line-height: 1.15;
    margin: 0;
    color: var(--pr-navy);
}
.pr-post-card__title a {
    color: inherit;
}
.pr-post-card__title a:hover {
    color: var(--pr-wine);
}
.pr-post-card__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pr-body-soft);
    margin: 0;
}
.pr-post-card__meta {
    margin-top: auto;
    padding-top: 12px;
    font-size: 12px;
    color: var(--pr-muted);
    letter-spacing: 0.3px;
}

.pr-single {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px var(--pr-gutter) 70px;
}
.pr-single__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 46px;
    line-height: 1.08;
    margin: 0 0 16px;
    color: var(--pr-navy);
}
.pr-single__meta {
    font-size: 12.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--pr-muted);
    margin-bottom: 30px;
}
.pr-single__lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--pr-body);
    margin: 0 0 34px;
    font-family: var(--pr-serif);
}
.pr-single__thumb {
    margin: 0 0 36px;
}

.pr-prose {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--pr-body);
}
/* Miara kolumny tekstu na stronach statycznych. Byla stylem inline w page.php,
   czyli nie do nadpisania z arkusza — koszyk i kasa nie mialy jak z niej wyjsc. */
.pr-page__body {
    max-width: 860px;
}
.pr-prose h2 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.15;
    color: var(--pr-navy);
    margin: 42px 0 16px;
}
.pr-prose h3 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 24px;
    color: var(--pr-navy);
    margin: 32px 0 12px;
}
.pr-prose p {
    margin: 0 0 20px;
}
.pr-prose ul,
.pr-prose ol {
    margin: 0 0 20px;
    padding-left: 22px;
}
.pr-prose li {
    margin-bottom: 8px;
}
.pr-prose img {
    margin: 24px 0;
}
.pr-prose blockquote {
    border-left: 2px solid var(--pr-wine);
    margin: 30px 0;
    padding: 6px 0 6px 24px;
    font-family: var(--pr-serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--pr-navy);
}
.pr-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
}
.pr-prose th,
.pr-prose td {
    border: 1px solid var(--pr-line);
    padding: 10px 14px;
    text-align: left;
    font-size: 14.5px;
}

/* ---------- 14. STRONY ---------- */
.pr-page {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 28px var(--pr-gutter) 70px;
}
.pr-page__head {
    border-bottom: 1px solid rgba(30, 40, 67, 0.14);
    padding-bottom: 26px;
    margin-bottom: 40px;
}
.pr-page__title {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 46px;
    line-height: 1.05;
    margin: 0;
    color: var(--pr-navy);
}

.pr-cols-2 {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}
.pr-box {
    background: var(--pr-cream-soft);
    border: 1px solid var(--pr-line);
    padding: 28px 30px;
}
.pr-box + .pr-box {
    margin-top: 20px;
}
.pr-box h3 {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--pr-navy);
}

/* Formularze */
.pr-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.pr-field label {
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--pr-muted);
}
.pr-field input[type="text"],
.pr-field input[type="email"],
.pr-field input[type="tel"],
.pr-field input[type="password"],
.pr-field textarea,
.pr-field select {
    border: 1px solid var(--pr-line-strong);
    background: var(--pr-cream-soft);
    padding: 13px 14px;
    font-family: var(--pr-sans);
    font-size: 14.5px;
    color: var(--pr-navy);
    width: 100%;
}
.pr-field textarea {
    min-height: 150px;
    resize: vertical;
}
.pr-field input:focus,
.pr-field textarea:focus,
.pr-field select:focus {
    outline: none;
    border-color: var(--pr-wine);
}

/* ---------- 15. STOPKA ---------- */
.pr-footer {
    background: var(--pr-cream-deep);
    border-top: 1px solid var(--pr-line);
    margin-top: 80px;
}
.pr-footer__inner {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 56px var(--pr-gutter) 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.pr-footer__brand-name {
    font-family: var(--pr-serif);
    font-weight: 600;
    font-size: 26px;
    color: var(--pr-wine);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pr-footer__brand-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pr-navy);
    margin-bottom: 18px;
}
.pr-footer__about {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--pr-body-soft);
    max-width: 280px;
    margin: 0;
}
.pr-footer__col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pr-navy);
    margin-bottom: 16px;
}
.pr-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.pr-footer__menu a {
    font-size: 13.5px;
    color: var(--pr-body-soft);
}
.pr-footer__menu a:hover {
    color: var(--pr-wine);
}
.pr-footer__bar {
    border-top: 1px solid var(--pr-line);
}
.pr-footer__bar-inner {
    max-width: var(--pr-max);
    margin: 0 auto;
    padding: 18px var(--pr-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--pr-muted);
    letter-spacing: 0.4px;
}

/* Uproszczony chrome w koszyku/checkoucie */
.pr-header--flow .pr-header__bar {
    max-width: 1200px;
    height: 74px;
    justify-content: space-between;
}
.pr-header--flow .pr-nav,
.pr-header--flow .pr-search,
.pr-header--flow .pr-burger {
    display: none;
}
.pr-flow-back {
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: var(--pr-body-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.pr-flow-secure {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--pr-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.pr-footer--flow .pr-footer__inner {
    display: none;
}
.pr-legal-note {
    max-width: 1200px;
    margin: 24px auto 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--pr-muted);
}

/* ---------- 16. RWD ---------- */
@media (max-width: 1180px) {
    .pr-search__field {
        width: 186px;
    }
    .pr-nav__link {
        padding: 28px 9px;
        font-size: 13px;
    }
    .pr-region__hero-inner {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 44px;
    }
}

@media (max-width: 1000px) {
    :root {
        --pr-gutter: 22px;
    }

    .pr-burger {
        display: flex;
    }
    .pr-nav {
        display: none;
    }
    .pr-header__bar {
        gap: 16px;
    }

    .pr-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .pr-hero__copy {
        padding: 32px 0 40px;
    }
    .pr-hero__media {
        margin: 0 0 8px;
    }
    .pr-region-card {
        min-height: 260px;
    }

    .pr-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-product-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-posts {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-seo-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pr-archive__layout {
        grid-template-columns: 1fr;
    }
    .pr-filters {
        position: static;
    }
    .pr-region__title {
        font-size: 40px;
    }
    .pr-region__hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pr-region__photo,
    .pr-region__plate {
        aspect-ratio: 2 / 1;
    }
    .pr-region__media-cap {
        text-align: left;
    }
    .pr-region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pr-row,
    .pr-row--no-rating {
        grid-template-columns: 80px minmax(0, 1fr) 170px;
        gap: 18px;
    }
    .pr-row__rating {
        grid-column: 2;
        grid-row: 2;
    }
    .pr-row__buy {
        grid-column: 3;
        grid-row: 1 / span 2;
    }
    .pr-row__note {
        display: none;
    }
    .pr-product__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pr-product__gallery {
        position: static;
    }
    .pr-profile__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pr-facts__list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .pr-facts__row:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(30, 40, 67, 0.1);
    }
    .pr-facts__row:last-child {
        border-bottom: none;
    }
    .pr-facts__notes {
        grid-template-columns: 1fr;
    }
    .pr-about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px var(--pr-gutter);
    }
    .pr-cols-2 {
        grid-template-columns: 1fr;
    }
    .pr-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    /* Chowamy pole tylko w pasku nagłówka — w szufladzie menu ma zostać widoczne. */
    .pr-header__actions .pr-search {
        display: none;
    }
    .pr-strip__grid {
        grid-template-columns: 1fr;
    }
    .pr-strip__item {
        border-left: none;
        border-top: 1px solid rgba(30, 40, 67, 0.08);
    }
    .pr-strip__item:first-child {
        border-top: none;
    }
}

@media (max-width: 560px) {
    :root {
        --pr-gutter: 16px;
    }

    /* Na telefonie tylko pierwsza czesc paska — cale haslo w 9 px bylo nieczytelne. */
    .pr-topbar {
        font-size: 10.5px;
        letter-spacing: 1px;
        padding: 8px 10px;
    }
    .pr-topbar__sep,
    .pr-topbar__item:not(:first-child) {
        display: none;
    }

    /* Nagłówek koszyka: napis „Bezpieczne płatności” zostaje dla czytnikow,
	   na ekranie sama klodka — trzy elementy nie miescily sie w 375 px. */
    .pr-header--flow .pr-header__bar {
        gap: 12px;
    }
    .pr-flow-secure__label {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .pr-header__action span:not(.pr-cart-count) {
        display: none;
    }
    .pr-brand__name {
        font-size: 22px;
    }

    .pr-display {
        font-size: 34px;
    }
    .pr-h1 {
        font-size: 30px;
    }
    .pr-h2 {
        font-size: 27px;
    }
    .pr-h3 {
        font-size: 22px;
    }
    .pr-product__title {
        font-size: 29px;
    }
    .pr-single__title {
        font-size: 31px;
    }
    .pr-page__title {
        font-size: 31px;
    }
    .pr-about__title {
        font-size: 28px;
    }

    .pr-tiles,
    .pr-shortcuts,
    .pr-posts {
        grid-template-columns: 1fr;
    }
    .pr-product-grid,
    .pr-product-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .pr-card__title {
        font-size: 17px;
    }
    .pr-card__price {
        font-size: 20px;
    }
    .pr-card__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pr-hero__media--2,
    .pr-hero__media--3 {
        grid-template-columns: 1fr;
    }
    .pr-region__title {
        font-size: 31px;
    }
    .pr-region__hero-inner {
        padding-block: 36px 32px;
    }

    .pr-row,
    .pr-row--no-rating {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 8px 14px;
        padding: 16px 4px;
    }
    .pr-row__media {
        height: 88px;
    }
    .pr-row__title {
        font-size: 18px;
    }
    .pr-row__grapes {
        display: none;
    }
    .pr-row__rating {
        grid-column: 2;
        grid-row: auto;
    }
    .pr-row__buy {
        grid-column: 2;
        grid-row: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
    .pr-row__price {
        font-size: 21px;
    }
    .pr-region-list,
    .pr-region-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .pr-region__stats > div {
        border-right: none;
        margin-right: 20px;
        padding-right: 0;
    }
    .pr-search__drop {
        width: calc(100vw - 32px);
        right: -8px;
    }
    .pr-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pr-facts__row {
        flex-wrap: wrap;
        gap: 10px;
    }
    .pr-facts__key {
        width: auto;
    }
    .pr-btn {
        padding: 14px 22px;
        font-size: 12.5px;
    }
}
