/* ============================================================
   Herbarium Zakwitło — Main Stylesheet
   Kolory z logo: zieleń #1B4D3E, róż #F2A5B8
   ============================================================ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500;600&family=Capriola&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
    /* Brand */
    --black:        #000000;
    --white:        #FFFFFF;
    --pink:         #FFABCB;
    --green:        #084433;
    --mint:         #C4E2D2;

    /* Grey scale */
    --gray-900:     #3D3D3D;
    --gray-800:     #464646;
    --gray-700:     #525252;
    --gray-600:     #656565;
    --gray-500:     #7C7C7C;
    --gray-400:     #989898;
    --gray-300:     #BDBDBD;
    --gray-200:     #E7E7E7;
    --gray-100:     #F2F2F2;
    --gray-50:      #F8F8F8;

    /* Semantic aliases */
    --bg:           var(--gray-50);
    --bg-alt:       var(--gray-100);
    --text:         var(--gray-900);
    --text-muted:   var(--gray-600);
    --border:       var(--gray-200);

    /* Legacy */
    --green-dark:   #052b1f;
    --green-mid:    #0a5540;

    --font-serif:   'Libre Caslon Text', Georgia, serif;
    --font-sans:    'Jost', 'Gill Sans', 'Gill Sans MT', system-ui, sans-serif;

    --radius:       12px;
    --radius-lg:    8px;
    --shadow:       0 2px 12px rgba(27, 77, 62, 0.10);
    --shadow-hover: 0 6px 24px rgba(27, 77, 62, 0.18);

    --max-width:    1200px;
    --gutter:       clamp(1rem, 4vw, 2rem);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 1rem;      /* 16px = Body 1 */
    line-height: 1.5;     /* 150% */
    color: var(--text);
    background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: 3rem; }      /* 48px */
h2 { font-size: 2.25rem; }   /* 36px */
h3 { font-size: 1.875rem; }  /* 30px */
h4 { font-size: 1.25rem; }   /* 20px */

h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.125rem;      /* 18px */
    line-height: 1.2;
    color: var(--text);
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn--outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    color: var(--text);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo row */
.header-logo-row {
    padding: 12px 0 0;
    display: flex;
    justify-content: center;
}

.header-logo-row .container {
    display: flex;
    justify-content: center;
}

/* Nav row — full viewport width */
.header-bottom {
    width: 100%;
    margin-top: 10px;
}

.header-bottom .container {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.header-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}

.site-logo img,
.site-logo svg {
    height: 48px;
    width: auto;
    max-width: 143px;
    display: block;
}

.site-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.15s;
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
    color: var(--green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-self: end;
}

.header-icon,
.cart-icon {
    color: var(--text-muted);
    transition: color 0.15s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}
.header-icon:hover,
.cart-icon:hover { color: var(--green); }

.header-icon__label {
    font-size: 13px;
    line-height: 1;
    color: inherit;
    letter-spacing: 0.02em;
}

.cart-icon__svg {
    position: relative;
    display: flex;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--pink);
    color: var(--green-dark);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text);
}

/* ─── Topbar ─────────────────────────────────────────────────── */
.topbar {
    background: var(--green);
    color: var(--white);
    text-align: center;
    font-size: 13px;
    padding: 8px 0;
    line-height: 1.4;
}

.topbar a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.topbar a:hover {
    opacity: 0.8;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
    background: var(--white);
    padding: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
    max-width: var(--max-width);
    margin-inline: auto;
    background: #c4e2d2;
    overflow: hidden;
    color: var(--text);
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem var(--gutter);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #3D3D3D;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero__sub {
    font-size: 1.125rem;
    color: var(--text);
    max-width: 44ch;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero__actions .btn {
    padding: 0.75rem 1.5rem;
}

.hero__images {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.hero__right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* ─── Trust strip (Benefits) ─────────────────────────────────── */
.trust-strip {
    background: var(--white);
    padding: 0;
}
.trust-strip .container {
    padding-top: 16px;
    padding-bottom: 16px;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.trust-item__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-item__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text);
    white-space: nowrap;
}

.trust-item__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ─── Categories section (portrait cards) ───────────────────── */
.categories-section {
    padding: 2.25rem 0;
    background: var(--white);
}

.categories-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.categories-section__header h2 {
    font-size: 1.4rem;
}

.categories-track-wrap {
    position: relative;
    overflow: hidden;
}

.categories-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.categories-track::-webkit-scrollbar { display: none; }

.cat-card {
    flex: 0 0 210px;
    display: block;
    text-decoration: none;
    color: var(--text);
}

.cat-card__img {
    aspect-ratio: 2/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    width: 100%;
}

.cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cat-card:hover .cat-card__img img {
    transform: scale(1.04);
}

.cat-card__name {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    margin-top: 0.6rem;
    font-weight: 500;
}

.categories-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
}

.categories-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    padding: 0;
}

.categories-dots .dot.active {
    background: var(--green);
}

/* ─── Products section ───────────────────────────────────────── */
.products-section {
    padding: 2.5rem 0;
    background: var(--bg);
}

.products-section + .products-section {
    padding-top: 0;
}

.products-section__inner {
    display: grid;
    grid-template-columns: 240px repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.products-section__intro {
    padding-right: 1rem;
}

.products-section__intro h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.products-section__intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.product-card {
    display: block;
    color: var(--text);
    text-decoration: none;
}

.product-card__img {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    width: 100%;
    margin-bottom: 0.6rem;
    transition: box-shadow 0.2s;
}

.product-card:hover .product-card__img {
    box-shadow: var(--shadow-hover);
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-card__img img {
    transform: scale(1.04);
}

.product-card__brand {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.product-card__name {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.product-card__price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.product-card__price del {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
}

.product-card__price ins {
    text-decoration: none;
    color: var(--pink-dark);
}

/* ─── About section ──────────────────────────────────────────── */
.about-section {
    padding: 3rem 0;
    background: var(--bg);
}

.about-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-section__img {
    aspect-ratio: 3/2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
}

.about-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__content {
    padding-left: 1rem;
}

.about-section__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
}

.about-section__content > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.about-icons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-icon-item svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.about-icon-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.about-icon-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FAQ section (2-col) ────────────────────────────────────── */
.faq-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-section__img {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    position: sticky;
    top: 100px;
}

.faq-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-list {
    max-width: none;
    margin-inline: 0;
}

/* ─── Blog section redesign ──────────────────────────────────── */
.blog-section__inner {
    display: grid;
    grid-template-columns: 240px repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.blog-section__intro {
    padding-right: 1rem;
}

.blog-section__intro h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.blog-section__intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

/* ─── Section header left-aligned ───────────────────────────── */
.section-header--left {
    text-align: left;
}

/* ─── Category tabs ──────────────────────────────────────────── */
.category-tabs-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.category-tabs-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 0.25rem 0;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.category-tab:hover,
.category-tab.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.category-tabs__arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color 0.15s, color 0.15s;
}

.category-tabs__arrow:hover {
    border-color: var(--green);
    color: var(--green);
}

/* ─── Promo banner ───────────────────────────────────────────── */
.promo-banner {
    padding: 2rem 0;
}

.promo-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--green);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}

.promo-banner__text h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--white);
    margin-bottom: 0.35rem;
}

.promo-banner__text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* ─── Blog section ───────────────────────────────────────────── */
.blog-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.blog-card__img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-alt);
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.04);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    min-height: 140px;
}

.blog-card__body {
    padding: 1rem 1.1rem 1.25rem;
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.4rem;
}

.blog-card__title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-card__title a {
    color: var(--text);
    transition: color 0.15s;
}

.blog-card__title a:hover { color: var(--green); }

.blog-card__excerpt {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ─── About herbarium ────────────────────────────────────────── */
.about-herbarium {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg);
}

.about-herbarium__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about-herbarium__text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.about-herbarium__text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-herbarium__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-alt);
}

.about-herbarium__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ─── Gallery section ────────────────────────────────────────── */
.gallery-section {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: var(--bg-alt);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-section {
    padding: clamp(3rem, 8vw, 6rem) 0 48px;
    background: var(--white);
}

/* shared base — używane też przez .sp-accordions */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.25s;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
}

.faq-answer.is-open {
    display: block;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ─── FAQ w sekcji (stand-alone, Figma card style) ───────────── */
.faq-section .faq-list {
    gap: 16px;
}

.faq-section .faq-item {
    background: #F8F8F8;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: none;
}

.faq-section .faq-question {
    padding: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-900);
}

.faq-section .faq-chevron {
    color: #3D3D3D;
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-section .faq-answer {
    padding: 0;
}

.faq-section .faq-answer p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-700);
}

/* ─── Section headings ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 50ch;
    margin-inline: auto;
}

/* ─── Featured Products ──────────────────────────────────────── */
.featured-products {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg);
}

/* ─── Process strip ──────────────────────────────────────────── */
.process-strip {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--bg);
    color: var(--text);
}

.process-strip .section-header h2 { color: var(--text); }
.process-strip .section-header p  { color: var(--text-muted); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    color: var(--pink-dark);
}

.process-step h3 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ─── About strip ────────────────────────────────────────────── */
.about-strip {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-alt);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    gap: 0.5rem;
}

/* ─── Categories grid (legacy, unused) ──────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.category-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}

/* ─── Newsletter section ─────────────────────────────────────── */
.newsletter-section {
    background: var(--green-dark);
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.newsletter-section > .container > p {
    color: rgba(255,255,255,0.72);
    max-width: 45ch;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.45);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--mint);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--mint);
    color: var(--green-dark);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--green-dark);
}

.newsletter-section small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    display: block;
}

/* ─── Shop: page layout ──────────────────────────────────────── */
.shop-main {
    padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

.shop-header {
    margin-bottom: 1.75rem;
}

.shop-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.shop-header__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 72ch;
}

/* ─── Promo banner ───────────────────────────────────────────── */
.promo-banner {
    background: #2b2b2b;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    color: #fff;
}

.promo-banner__text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.promo-banner__text p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.75;
}

.promo-banner__btn {
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 100px;
    background: transparent;
    color: #fff;
    padding: 0.6rem 1.6rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.promo-banner__btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Shop layout: sidebar + grid ───────────────────────────── */
.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ─── Sidebar ────────────────────────────────────────────────── */
.shop-sidebar {
    position: sticky;
    top: 1.5rem;
}

.sidebar-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.sidebar-all-link {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0;
}

.sidebar-all-link:hover,
.sidebar-all-link.is-active { color: var(--green); }

.sidebar-cat {
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0;
}

.sidebar-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sidebar-cat__head > a {
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    flex: 1;
    padding: 0.15rem 0;
}

.sidebar-cat__head > a:hover,
.sidebar-cat__head > a.is-active { color: var(--green); font-weight: 600; }

.sidebar-cat__toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-muted);
    padding: 0.2rem;
    transition: color 0.15s;
    flex-shrink: 0;
}

.sidebar-cat__toggle:hover { color: var(--text); }

.sidebar-cat__children {
    list-style: none;
    padding: 0.35rem 0 0.15rem 0.85rem;
    margin: 0;
    display: none;
}

.sidebar-cat__children.is-open { display: block; }

.sidebar-cat__children li { padding: 0.2rem 0; }

.sidebar-cat__children a {
    font-size: 0.825rem;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    transition: color 0.15s;
}

.sidebar-cat__children a:hover,
.sidebar-cat__children a.is-active { color: var(--green); font-weight: 500; }

/* WC layered nav widget inside sidebar */
.sidebar-filters-widgets .widget_layered_nav ul,
.sidebar-filters-widgets .wc-block-attribute-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-filters-widgets .widget_layered_nav li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--text);
}

.sidebar-filters-widgets .widget_layered_nav li a {
    color: var(--text);
    text-decoration: none;
}

.sidebar-filters-widgets .widget_layered_nav li a:hover { color: var(--green); }

.sidebar-filters-widgets .count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ─── Sort bar ───────────────────────────────────────────────── */
.shop-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.shop-bar__count {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.shop-bar__count strong {
    color: var(--text);
    font-weight: 600;
}

.shop-bar__sort {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.shop-bar__sort-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.shop-bar__sort .woocommerce-ordering {
    margin: 0;
}

.shop-bar__sort .woocommerce-ordering select {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    padding: 0 1.25rem 0 0;
    appearance: auto;
    font-family: var(--font-sans);
}

/* ─── Product cards (listing grid) ──────────────────────────── */
.shop-products ul.products {
    list-style: none;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem 1.25rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

li.prod-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
}

.prod-card__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.prod-card__img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
    aspect-ratio: 4 / 5;
}

/* absolute fill — pokonuje WC height:auto na img */
.prod-card__img-wrap img,
.prod-card__img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.35s ease;
}

.prod-card__link:hover .prod-card__img-wrap img,
.prod-card__link:hover .prod-card__img {
    transform: scale(1.04);
}

.prod-card__img-wrap .onsale {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--pink);
    color: var(--green-dark);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.03em;
    z-index: 1;
}

.prod-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.prod-card__title {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-card__desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.prod-card__price .woocommerce-Price-amount { color: var(--text); }
.prod-card__price del { display: block; }
.prod-card__price del .woocommerce-Price-amount { color: var(--text-muted); font-size: 0.8em; font-weight: 400; text-decoration: line-through; }
.prod-card__price ins { text-decoration: none; display: block; }
.prod-card__price ins .woocommerce-Price-amount { color: var(--text); }

.prod-card__atc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 48px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.prod-card__atc:hover {
    border-color: var(--green-dark);
    background: var(--gray-50);
}

/* Fallback: generic WC card (related/upsell outside listing) */
ul.products:not(.shop-products ul.products) {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    padding: 0;
    margin: 0;
}

/* ─── WooCommerce: shop archive (legacy selectors kept) ─────── */
.woocommerce-result-count { display: none; } /* replaced by shop-bar */

/* ─── WooCommerce: single product ───────────────────────────── */
.woo-main { padding: clamp(2rem, 5vw, 4rem) 0; }

div.product {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

div.product .quantity {
    display: none;
}

div.product .woocommerce-product-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

div.product .summary h1.product_title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

div.product .summary .price {
    font-size: 1.6rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

div.product .summary .woocommerce-product-details__short-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

div.product .summary .single_add_to_cart_button {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}

div.product .summary .single_add_to_cart_button:hover {
    background: var(--green-dark);
    color: var(--white);
}


/* ─── Empty cart ─────────────────────────────────────────────── */
.cart-empty-wrap {
    padding: 2.5rem 0 4rem;
}

.cart-empty-hero {
    text-align: center;
    padding: 3rem 1rem 3.5rem;
}

.cart-empty-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.cart-empty-hero__sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 0 1.75rem;
}

.cart-empty-products {
    margin-top: 1rem;
}

.cart-empty-products__title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--text);
}

.cart-empty-products__grid {
    list-style: none !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem 1.25rem !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.cart-empty-products__grid li.prod-card {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* WC clearfix pseudo-elements become grid items — neutralize */
.cart-empty-products__grid::before,
.cart-empty-products__grid::after {
    display: none !important;
    content: none !important;
}

/* WooCommerce cart wrapper — usuń ograniczenie szerokości gdy pusty koszyk */
.woocommerce-cart .woocommerce .cart-empty-wrap {
    max-width: none;
    width: 100%;
}

@media (max-width: 700px) {
    .cart-empty-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* ─── WooCommerce: cart & checkout ──────────────────────────── */
.woocommerce table.shop_table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.95rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.woocommerce table.shop_table th {
    background: var(--bg-alt);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    padding: 0.7rem 1.5rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--green-dark) !important;
}

.woocommerce .checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background: var(--green) !important;
    color: var(--white) !important;
    font-size: 1rem !important;
    padding: 1rem 2rem !important;
    display: block !important;
    text-align: center !important;
}

.woocommerce .checkout-button:hover {
    background: var(--green-dark) !important;
    color: var(--white) !important;
}

.woocommerce form .form-row label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
    display: block;
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.15s;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--green);
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.woocommerce-breadcrumb a { color: var(--green); }
.woocommerce-breadcrumb a:hover { color: var(--pink-dark); }

/* ─── Notices ────────────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.woocommerce-message { background: var(--pink-light); color: var(--green-dark); border-left: 3px solid var(--pink-dark); }
.woocommerce-error   { background: #fde8e8; color: #8b2020; border-left: 3px solid #c0392b; }
.woocommerce-info    { background: var(--bg-alt); color: var(--text); border-left: 3px solid var(--green); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
    color: var(--text-muted);
}

/* Trust strip */
.footer-trust {
    background: var(--bg);
    padding: 0;
}
.footer-trust .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.footer-trust__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-trust__item svg {
    flex-shrink: 0;
    color: var(--green);
}

.footer-trust__item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-trust__item strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.footer-trust__item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Main footer area */
.footer-main {
    background: var(--bg);
    padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.footer-main .container {
    border-top: 1px solid var(--border);
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand address {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 1rem 0;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-contact-details a {
    color: var(--text);
    transition: color 0.15s;
}

.footer-contact-details a:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.footer-social a:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(8,68,51,0.06);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.15s;
}

.footer-col a:hover { color: var(--green); }

/* Footer bottom (payments + copyright) */
.footer-bottom-wrap {
    background: var(--bg);
    padding: 0 0 1.25rem;
}

.footer-bottom-wrap .container {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.footer-payments-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.footer-payment-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-payment-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.footer-payment-icons svg {
    opacity: 0.85;
    transition: opacity 0.15s;
}

.footer-payment-icons svg:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: left;
}

/* ─── Generic page ───────────────────────────────────────────── */
.page-main {
    padding: 0 0 5rem;
}

/* Pasek tytułowy — pełna szerokość, jasne zielonkawe tło */
.page-main .page-hero {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0 3rem;
    margin-bottom: 3.5rem;
}

.page-main .page-hero .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.page-main .page-hero .page-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Kolumna treści — wąska, wyśrodkowana */
.page-main .page-content {
    max-width: 740px;
}

/* Typografia treści */
.entry-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.75rem 0 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.3;
}

.entry-content h2:first-child { margin-top: 0; }

.entry-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.75rem 0 0.4rem;
}

.entry-content p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.entry-content strong {
    color: var(--text);
    font-weight: 600;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.25rem 0;
    padding-left: 1.4rem;
    color: var(--text);
}

.entry-content li {
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.35rem;
}

.entry-content ul li::marker {
    color: var(--green);
}

.entry-content a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content a:hover {
    color: var(--green-dark);
}

/* ─── 404 ────────────────────────────────────────────────────── */
.error-404 {
    padding: clamp(4rem, 10vw, 8rem) 0;
    text-align: center;
}

.error-404 h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--pink);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-404 h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .products-section__inner,
    .blog-section__inner {
        grid-template-columns: 200px repeat(3, 1fr);
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE (Faza 1)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Wrapper ────────────────────────────────────────────────── */
body.single-product {
    background: var(--white);
}

.sp-wrap {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.woocommerce-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    display: block;
}

.woocommerce-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: var(--green);
}

/* ─── Upper 2-column grid ────────────────────────────────────── */
.sp-upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

/* ─── Gallery ────────────────────────────────────────────────── */
.sp-gallery {
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sp-gallery__main {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
}

.sp-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

.sp-gallery__thumbs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.sp-thumb {
    flex: 0 0 80px;
    width: 80px;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--gray-100);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s;
}

.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-thumb.is-active {
    border-color: var(--green);
}

.sp-thumb:hover:not(.is-active) {
    border-color: var(--mint);
}

/* ─── Info top row (badge + meta-stats) ──────────────────────── */
.sp-info-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.sp-meta-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    flex-shrink: 0;
}

.sp-meta-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ─── Badges ─────────────────────────────────────────────────── */
.sp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sp-badge--label {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.sp-badge--discount {
    background: var(--pink);
    color: var(--green-dark);
}

.sp-badge--sales {
    background: var(--gray-100);
    color: var(--text-muted);
}

.sp-badge--handmade {
    background: var(--green);
    color: var(--white);
}

/* ─── Title & short description ──────────────────────────────── */
.sp-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.sp-short-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.sp-short-desc p {
    margin: 0;
}

/* ─── Price block ────────────────────────────────────────────── */
.sp-price-wrap {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.sp-price .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.sp-price .price ins {
    text-decoration: none;
    color: var(--green);
}

.sp-price .price del {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.sp-price-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.4rem;
}

.sp-omnibus {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0;
}

.sp-stock {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: #2e7d4f;
    font-weight: 500;
    margin-top: 0;
}

.sp-stock svg {
    flex-shrink: 0;
    stroke: #2e7d4f;
}

/* ─── Add-to-cart wrap ───────────────────────────────────────── */
.sp-atc-wrap {
    margin-bottom: 1.5rem;
}

/* Variations table (selects → hidden, swatches shown) */
.sp-atc-wrap .variations {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.sp-atc-wrap .variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.sp-atc-wrap .variations .label label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.5rem;
}

.sp-atc-wrap .variations .value select {
    /* Visible fallback — JS hides when swatches are built */
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
}

/* Swatch container built by JS */
.sp-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.sp-swatch {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: var(--gray-100);
    transition: border-color 0.15s, transform 0.1s;
    font-size: 0.7rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-swatch.is-active {
    border-color: var(--green);
    transform: scale(1.05);
}

.sp-swatch:hover:not(.is-active) {
    border-color: var(--mint);
}

.sp-swatch--no-frame.is-active {
    box-shadow: 0 0 0 2px var(--green);
}

.sp-swatch--white-frame img {
    border: 4px solid #fff;
}

.sp-swatch--black-frame img {
    border: 4px solid #1a1a1a;
}

/* Reset variation link */
.sp-atc-wrap .reset_variations {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-top: 0.25rem;
}

/* Qty + button row */
.sp-atc-wrap .cart,
.sp-atc-wrap .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Quantity spinner — hidden site-wide */
.sp-atc-wrap .quantity,
form.cart .quantity {
    display: none !important;
}

.sp-atc-wrap .quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    flex-shrink: 0;
}

.sp-atc-wrap .qty-btn {
    width: 40px;
    height: 50px;
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.sp-atc-wrap .qty-btn:hover {
    background: var(--gray-200);
}

.sp-atc-wrap input.qty {
    width: 52px;
    height: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text);
    -moz-appearance: textfield;
    background: var(--white);
}

.sp-atc-wrap input.qty::-webkit-outer-spin-button,
.sp-atc-wrap input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Add-to-cart button */
.sp-atc-wrap .single_add_to_cart_button {
    flex: 1;
    min-width: 160px;
    padding: 0 1.5rem;
    height: 50px;
    background: var(--green);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sp-atc-wrap .single_add_to_cart_button:hover {
    background: var(--green-dark);
}

.sp-atc-wrap .single_add_to_cart_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Variation price/availability */
.sp-atc-wrap .woocommerce-variation-price {
    display: none; /* price shown in sp-price-wrap */
}

/* ─── Benefits title ─────────────────────────────────────────── */
.sp-benefits__title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ─── Benefits box ───────────────────────────────────────────── */
.sp-benefits {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sp-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sp-benefit__icon {
    flex-shrink: 0;
    color: var(--text);
}

.sp-benefit strong {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text);
}

/* ─── Accordion section icons ────────────────────────────────── */
.faq-question__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question__inner span {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.faq-acc-icon {
    flex-shrink: 0;
    color: var(--text);
    width: 24px;
    height: 24px;
}

/* ─── Product accordions ─────────────────────────────────────── */
/* Reuse .faq-list / .faq-item / .faq-question / .faq-answer from main FAQ — no extra CSS needed */
.sp-accordions {
    border-top: 1px solid var(--border);
}

.sp-accordions .faq-answer p {
    font-size: 0.87rem;
}

/* ─── Text swatches (no image) ───────────────────────────────── */
.sp-swatch--text {
    width: auto;
    height: auto;
    padding: 0.45rem 1rem;
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.sp-swatch--text.is-active {
    border-color: var(--text);
    background: var(--text);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.sp-swatch--text:hover:not(.is-active) {
    border-color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2 — CZĘSTO KUPOWANE RAZEM
   ═══════════════════════════════════════════════════════════════ */
.sp-woo-main {
    padding: 0;
}

.cs-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.cs-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.cs-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.cs-intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.cs-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cs-nav-btn,
.rev-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.cs-nav-btn:hover:not(:disabled),
.rev-nav-btn:hover:not(:disabled) {
    background: var(--gray-100);
    border-color: var(--green);
    color: var(--green);
}

.cs-nav-btn:disabled,
.rev-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cs-counter,
.rev-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.cs-carousel-wrap {
    overflow: hidden;
}

.cs-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.cs-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    scroll-snap-align: start;
}

.cs-card__img {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 0.75rem;
    transition: box-shadow 0.2s;
}

.cs-card__img:hover {
    box-shadow: var(--shadow-hover);
}

.cs-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.cs-card__img:hover img {
    transform: scale(1.04);
}

.cs-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cs-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.35;
}

.cs-card__name:hover {
    color: var(--green);
}

.cs-card__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.cs-card__btn {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
    margin-top: 0.25rem;
}

.cs-card__btn:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3 — SKUTECZNOŚĆ POTWIERDZONA BADANIAMI
   ═══════════════════════════════════════════════════════════════ */
.stats-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-alt);
    text-align: center;
}

.stats-section__header {
    max-width: 680px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.stats-section__header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.stats-section__header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item__value {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-item__label {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4 — KLUCZOWE SKŁADNIKI
   ═══════════════════════════════════════════════════════════════ */
.ing-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.ing-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.ing-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ing-intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.ing-intro__btn {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

.ing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ing-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ing-card__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-100);
}

.ing-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ing-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--mint-light);
}

.ing-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.ing-card__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5 — WIĘCEJ MIEJSCA NA OPIS
   ═══════════════════════════════════════════════════════════════ */
.ext-desc-section {
    border-top: 1px solid var(--border);
}

.ext-desc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-bottom: 1px solid var(--border);
}

.ext-desc-block--reverse .ext-desc-block__img {
    order: 2;
}

.ext-desc-block--reverse .ext-desc-block__content {
    order: 1;
}

.ext-desc-block__img {
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
}

.ext-desc-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ext-desc-block__img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--mint-light);
}

.ext-desc-block__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.ext-desc-block__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.ext-desc-block__content .btn {
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6 — FAQ O PRODUKCIE
   ═══════════════════════════════════════════════════════════════ */
.prod-faq-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.prod-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.prod-faq-img {
    position: sticky;
    top: 1.5rem;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
}

.prod-faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-faq-img__placeholder {
    width: 100%;
    height: 100%;
    background: var(--mint-light);
}

.prod-faq-right h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 7 — OPINIE KLIENTÓW
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.reviews-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.reviews-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.reviews-intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.rev-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.rev-carousel-wrap {
    overflow: hidden;
}

.rev-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.rev-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    scroll-snap-align: start;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rev-card__stars {
    color: var(--pink-dark);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.rev-card__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.rev-card__author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 8 — ZOBACZ INNE Z TEJ KATEGORII
   ═══════════════════════════════════════════════════════════════ */
.related-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.related-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.related-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.related-intro p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.related-card {
    text-decoration: none;
    color: var(--text);
    display: block;
}

.related-card__img {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 0.6rem;
    transition: box-shadow 0.2s;
}

.related-card:hover .related-card__img {
    box-shadow: var(--shadow-hover);
}

.related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-card:hover .related-card__img img {
    transform: scale(1.04);
}

.related-card__desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.related-card__price {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
}

.related-card__price .price ins {
    text-decoration: none;
    color: var(--green);
}

.related-card__price .price del {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════
   PHOTO GALLERY CAROUSEL (full width)
   ═══════════════════════════════════════════════════════════════ */
.sp-photo-carousel {
    border-top: 1px solid var(--border);
    background: var(--white);
}

.sp-photo-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    height: 340px;
    gap: 0;
    scrollbar-width: none;
}

.sp-photo-carousel__track::-webkit-scrollbar {
    display: none;
}

.sp-photo-carousel__item {
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
}

.sp-photo-carousel__item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

.sp-photo-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 1.25rem;
}

.sp-photo-carousel__dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.sp-photo-carousel__dots .dot.active {
    background: var(--green);
    transform: scale(1.25);
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER (updated Figma design)
   ═══════════════════════════════════════════════════════════════ */
.newsletter-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--green-dark);
    text-align: center;
}

.newsletter-section__content {
    margin-bottom: 2rem;
}

.newsletter-section__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-section__content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.newsletter-form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.newsletter-form__row {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.95);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--mint);
    background: var(--white);
}

.newsletter-form button[type="submit"] {
    padding: 0.8rem 1.5rem;
    background: var(--mint);
    color: var(--green-dark);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.newsletter-form button[type="submit"]:hover {
    background: var(--white);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.9rem;
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--mint);
}

.newsletter-consent span {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.newsletter-consent a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

.newsletter-consent strong {
    color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   LISTING — RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .shop-layout {
        grid-template-columns: 180px 1fr;
        gap: 2rem;
    }

    .shop-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem 0.75rem !important;
    }

    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .shop-products ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT — RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    div.product {
        grid-template-columns: 1fr;
    }

    .sp-upper {
        grid-template-columns: 1fr;
    }

    .sp-gallery {
        position: static;
    }

    .cs-inner,
    .ing-inner,
    .reviews-inner,
    .related-inner {
        grid-template-columns: 1fr;
    }

    .cs-carousel .cs-card,
    .rev-carousel .rev-card {
        flex: 0 0 calc(50% - 0.65rem);
    }

    .prod-faq-inner {
        grid-template-columns: 1fr;
    }

    .prod-faq-img {
        position: static;
        aspect-ratio: 16/9;
    }

    .ext-desc-block {
        grid-template-columns: 1fr;
    }

    .ext-desc-block--reverse .ext-desc-block__img,
    .ext-desc-block--reverse .ext-desc-block__content {
        order: unset;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-photo-carousel__track {
        height: 260px;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero__content {
        align-items: flex-start;
        order: 0;
        padding: 2.5rem 1.5rem;
    }

    .hero__images {
        order: 1;
        height: 280px;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .trust-grid {
        gap: 1rem;
        justify-content: flex-start;
    }

    .about-herbarium__inner {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-payments-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .about-section__inner,
    .faq-section__inner {
        grid-template-columns: 1fr;
    }

    .about-section__content {
        padding-left: 0;
    }

    .faq-section__img {
        position: static;
        aspect-ratio: 16/9;
    }

    .products-section__inner,
    .blog-section__inner {
        grid-template-columns: 1fr;
    }

    .products-section__intro,
    .blog-section__intro {
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .cat-card {
        flex: 0 0 160px;
    }
}

@media (max-width: 640px) {
    .topbar {
        font-size: 12px;
        padding: 6px 0;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green-dark);
        padding: 1.5rem var(--gutter);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .site-header {
        position: relative;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-trust__grid {
        grid-template-columns: 1fr;
    }

    .hero__images {
        height: 220px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .trust-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        min-width: unset;
        width: 100%;
    }

    .cat-card {
        flex: 0 0 140px;
    }

    .sp-gallery__thumbs {
        flex-direction: row;
    }

    .sp-atc-wrap .cart,
    .sp-atc-wrap .woocommerce-variation-add-to-cart {
        flex-direction: column;
        align-items: stretch;
    }

    .sp-atc-wrap .single_add_to_cart_button {
        width: 100%;
        min-width: unset;
    }

    .sp-price .price {
        font-size: 1.4rem;
    }

    .cs-carousel .cs-card,
    .rev-carousel .rev-card {
        flex: 0 0 calc(100% - 0px);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ing-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .sp-photo-carousel__track {
        height: 200px;
    }

    .newsletter-form__row {
        flex-direction: column;
    }
}


/* ═══════════════════════════════════════════════════════════════
   STRONA KONTAKT
   ═══════════════════════════════════════════════════════════════ */

.contact-main {
    background: var(--white);
    padding: clamp(1.5rem, 4vw, 3rem) 0 4rem;
}

/* ─── Dwukolumnowy layout ────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

/* ─── Lewa: dane kontaktowe ──────────────────────────────────── */
.contact-info__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.contact-info__content {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.contact-info__content p {
    margin: 0 0 1rem;
}

.contact-info__content a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-info__content a:hover {
    color: var(--green);
}

.contact-info__img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1.91 / 1;
    background: var(--gray-100);
}

.contact-info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Prawa: karta formularza ───────────────────────────────── */
.contact-form-col {
    position: sticky;
    top: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2.25rem;
}

.contact-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gray-200, #e0e0e0);
    flex-shrink: 0;
}

.contact-card__heading {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 0.15rem;
}

.contact-card__subheading {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ─── Formularz ─────────────────────────────────────────────── */
.cf-field {
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    padding: 1.25rem;
}

.cf-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}

.cf-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
}

.cf-input:focus {
    border-color: var(--green);
    background: var(--white);
    outline: none;
}

.cf-textarea {
    resize: vertical;
    min-height: 130px;
}

.cf-consent {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    margin: 0.25rem 0 1.5rem;
    font-size: 0.875rem;
    color: var(--text);
}

.cf-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    accent-color: var(--green);
    flex-shrink: 0;
    cursor: pointer;
}

.cf-submit {
    display: block;
    width: 100%;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 0.9rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s;
}

.cf-submit:hover {
    background: var(--green);
}

/* Komunikaty ─────────────────────────────────────────────────── */
.contact-success {
    background: #edf7f1;
    border: 1px solid #b8dfc8;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: var(--green-dark, #1a3a2a);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-errors {
    list-style: none;
    padding: 0.85rem 1.1rem;
    margin: 0 0 1.25rem;
    background: #fff0f0;
    border: 1px solid #f5c0c0;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: #c0392b;
}

.contact-errors li + li { margin-top: 0.3rem; }
.contact-errors li::before { content: "• "; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-col {
        position: static;
    }
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT
   ══════════════════════════════════════════════════════════════ */

/* ─── Layout 2-kolumnowy ──────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 32px;
    align-items: start;
    padding: 2.5rem 0 4rem;
}

.checkout-col--summary {
    position: sticky;
    top: 1.5rem;
}

/* ─── Wróć do koszyka ─────────────────────────────────────────── */
.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-sans);
}
.checkout-back-link:hover { color: var(--text); }
.checkout-back-link svg { flex-shrink: 0; }

/* ─── Sekcje formularza ───────────────────────────────────────── */
.checkout-section {
    margin-bottom: 48px;
}

.checkout-section__title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.1rem;
    padding-bottom: 0;
    border-bottom: none;
}

/* ─── Pola formularza ─────────────────────────────────────────── */
.woocommerce-checkout .form-row {
    margin-bottom: 0.75rem;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    background: #f5f5f5;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    appearance: none;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    background: #fff;
    border-color: var(--green);
}

.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select {
    border-color: #e53e3e;
}

/* Dwa pola obok siebie (legacy) */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.woocommerce-checkout .form-row-first { margin-right: 4%; }

/* Kod pocztowy (30%) + Miasto (70%) */
.woocommerce-checkout .form-row-postcode {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    margin-right: 2%;
}
.woocommerce-checkout .form-row-city {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}

/* Select — custom arrow */
.woocommerce-checkout .form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23656565' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ─── Newsletter checkbox ─────────────────────────────────────── */
.checkout-newsletter-row {
    margin-top: 0.25rem;
    margin-bottom: 0 !important;
}

.checkout-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.checkout-checkbox-label input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--green);
    cursor: pointer;
}

/* ─── Sposób dostawy ──────────────────────────────────────────── */
.checkout-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checkout-shipping-method {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.checkout-shipping-method:has(input:checked) {
    border-color: var(--green);
    background: #fff;
}

.checkout-shipping-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    font-size: 0.95rem;
}

.checkout-shipping-label input[type="radio"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--green);
    cursor: pointer;
    align-self: center;
}

/* Info block: name + meta row + logo */
.checkout-shipping-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.checkout-shipping-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.checkout-shipping-name {
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.3;
}

.checkout-shipping-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.checkout-shipping-price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.checkout-shipping-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.checkout-shipping-logo {
    flex-shrink: 0;
    height: 28px;
    width: auto;
    opacity: 0.85;
}

.checkout-shipping-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* ─── Metoda płatności ────────────────────────────────────────── */
#payment {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

#payment ul.wc_payment_methods {
    list-style: none;
    padding: 0 !important;
    margin: 0 0 1.25rem;
    border-bottom: none !important;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

#payment ul.wc_payment_methods li.wc_payment_method {
    background: #fff;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#payment ul.wc_payment_methods li.wc_payment_method:has(input:checked) {
    border-color: var(--green);
    background: #fff;
}

/* Radio — sibling of label w WooCommerce DOM */
#payment ul.wc_payment_methods li.wc_payment_method > input.input-radio {
    display: block !important;
    order: 1;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    accent-color: var(--green);
    cursor: pointer;
    margin: 0.85rem 0 0.85rem 1rem;
}

#payment ul.wc_payment_methods li.wc_payment_method label {
    order: 2;
    flex: 1;
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
}

/* payment_box wraps pod pełną szerokość */
#payment ul.wc_payment_methods li.wc_payment_method > .payment_box {
    order: 3;
    width: 100%;
    flex-basis: 100%;
}

#payment ul.wc_payment_methods li.wc_payment_method .payment-method-name {
    flex: 1;
}

#payment ul.wc_payment_methods li.wc_payment_method .payment-method-name strong {
    display: block;
    font-weight: 700;
    font-size: 0.93rem;
}

#payment ul.wc_payment_methods li.wc_payment_method .payment-method-name small {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

#payment ul.wc_payment_methods li.wc_payment_method label img {
    height: 26px;
    width: auto;
    border-radius: 3px;
    object-fit: contain;
}

#payment ul.wc_payment_methods li.wc_payment_method .pm-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

/* Payment box (below selected method) */
#payment div.payment_box {
    display: none !important;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Payment logos */
.pm-logos {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.pm-logos img {
    height: 26px;
    width: auto;
    display: block;
}

/* Stripe UPE — ukryj label gdy jedyna metoda płatności (wyłączone – wymagamy widocznej etykiety) */
/* #payment ul.wc_payment_methods:has(> li:only-child) li label { display: none; } */

/* Stripe payment element container */
#stripe-payment-element,
.wc-stripe-upe-element {
    margin-top: 0.75rem;
}

/* Regulamin checkbox — placeholder (zastąpiony poniżej) */

.woocommerce-checkout #payment .form-row.place-order {
    padding: 0 !important;
}

/* ─── Kupuję i płacę — ukryty, zastąpiony sticky barem ────────── */
#place_order,
.woocommerce-checkout #payment #place_order {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* ─── Privacy policy wrapper (ukryte) ────────────────────────── */
.woocommerce-privacy-policy-text { display: none; }

/* ─── Terms & Conditions checkbox ────────────────────────────── */
.woocommerce-terms-and-conditions-wrapper {
    margin: 1.25rem 0 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    font-weight: normal !important;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--green);
    cursor: pointer;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text {
    flex: 1;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-terms-and-conditions-checkbox-text a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.woocommerce-terms-and-conditions-wrapper abbr.required {
    color: var(--red, #c0392b);
    text-decoration: none;
    margin-left: 2px;
}

/* ─── Sticky checkout bar ─────────────────────────────────────── */
.checkout-sticky-bar {
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 1rem 0 1.25rem;
    margin-top: 2rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.checkout-sticky-bar__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-sticky-bar__delivery {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.checkout-sticky-bar__total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.checkout-sticky-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s;
}

.checkout-sticky-bar__btn:hover {
    background: var(--green-dark);
}

/* ─── Logo w checkout ─────────────────────────────────────────── */
.checkout-logo-link {
    display: block;
    margin-bottom: 1.75rem;
    text-decoration: none;
}

.checkout-logo-link img,
.checkout-logo-link .custom-logo {
    height: 40px;
    width: auto;
    display: block;
}

.checkout-logo-text {
    font-family: var(--font-serif, serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* ─── Faktura checkbox ────────────────────────────────────────── */
.checkout-invoice-row {
    margin-top: 0.5rem;
    margin-bottom: 0 !important;
}

/* ─── Faktura formularz ───────────────────────────────────────── */
.checkout-invoice-fields {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.checkout-invoice-fields[hidden] {
    display: none;
}
.checkout-invoice-fields__row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0 !important;
}
.checkout-invoice-fields__row label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}
.checkout-invoice-fields__row input.input-text {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
    transition: border-color 0.15s;
}
.checkout-invoice-fields__row input.input-text:focus {
    outline: none;
    border-color: var(--green);
}
#billing_nip {
    max-width: 180px;
}

/* ─── Karta podsumowania (prawa kolumna) ──────────────────────── */
.ckout-summary-card {
    background: var(--gray-50);
    border: none;
    border-radius: 8px;
    padding: 24px;
}

.ckout-summary-title {
    font-family: var(--font-serif) !important;
    font-size: 20px;
    border-bottom: none;
}

/* ─── Tabela produktów w podsumowaniu ─────────────────────────── */
.ckout-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
}

.ckout-product-row {
    border-bottom: 1px solid var(--border);
}

.ckout-product-row:last-child {
    border-bottom: none;
}

.ckout-product-img {
    width: 52px;
    padding: 0.6rem 0.5rem 0.6rem 0;
    position: relative;
    vertical-align: middle;
}

.ckout-product-img .ckout-product-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ckout-product-qty-badge {
    position: absolute;
    top: 4px;
    right: 0;
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ckout-product-name {
    padding: 0.6rem 0.5rem;
    font-size: 0.88rem;
    color: var(--text);
    vertical-align: middle;
}

.ckout-product-price {
    padding: 0.6rem 0 0.6rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    text-align: right;
    vertical-align: middle;
}

/* ─── Kod rabatowy ────────────────────────────────────────────── */
.ckout-coupon {
    margin-bottom: 1.25rem;
}

.ckout-coupon__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.ckout-coupon__form {
    display: flex;
    gap: 0.4rem;
}

.ckout-coupon__input {
    flex: 1;
    background: #f5f5f5;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    padding: 0.6rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.ckout-coupon__input:focus {
    background: #fff;
    border-color: var(--green);
}

.ckout-coupon__btn {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.ckout-coupon__btn:hover { background: var(--green-dark); }

/* ─── Sumy ────────────────────────────────────────────────────── */
.ckout-totals {
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
}

.ckout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

.ckout-totals__row + .ckout-totals__row {
    border-top: 1px solid #f0f0f0;
}

.ckout-totals__row--total {
    border-top: 2px solid var(--border) !important;
    margin-top: 0.4rem;
    padding-top: 0.7rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.ckout-totals__row--tax-incl .ckout-totals__label,
.ckout-totals__row--tax-incl .ckout-totals__value {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ckout-totals__row--coupon .ckout-totals__value {
    color: #27ae60;
}

/* ─── Checkout main wrapper ──────────────────────────────────── */
.checkout-main {
    background: #fff;
    padding: 0;
}

/* ─── Checkout header — tylko border-bottom pod logo ─────────── */
.site-header--checkout .header-bottom .container {
    border-top: none;
}

.site-header--checkout .header-bottom__inner {
    justify-content: flex-start;
}

.site-header--checkout .site-logo img,
.site-header--checkout .site-logo svg {
    height: 40px;
}

/* ─── Strona checkout — tło i kontener ──────────────────────── */
body.woocommerce-checkout,
body.woocommerce-checkout html {
    background: #fff;
}

.woocommerce-checkout .woocommerce > h1,
.woocommerce-checkout .woocommerce > h2,
.woocommerce-checkout .page-title,
.woocommerce-checkout .entry-title {
    display: none;
}

/* Zero out top padding on checkout page */
.woocommerce-checkout .page-main {
    padding-top: 0;
}

/* .container provides correct width/padding — zero out .woocommerce wrapper */
.woocommerce-checkout .woocommerce {
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ─── WooCommerce notices w checkout ─────────────────────────── */
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-info {
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* ─── Responsive — 1 kolumna poniżej 860px ───────────────────── */
@media (max-width: 860px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-col--summary {
        position: static;
        order: -1;
    }

    .checkout-col--form {
        order: 1;
    }

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100%;
        display: block;
        margin-right: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STRONA GŁÓWNA V2 — uproszczony layout
   ════════════════════════════════════════════════════════════ */

/* ─── Header text link ───────────────────────────────────────── */
.header-text-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.header-text-link:hover {
    color: var(--green);
}

/* ─── Shop section (currently for sale) ─────────────────────── */
.shop-section {
    background: var(--white);
    padding: 4rem 0;
}
.shop-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.shop-section__header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 0.75rem;
}
.shop-section__header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.shop-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.shop-card__img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
    display: block;
}
.shop-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.shop-card__img-wrap:hover img {
    transform: scale(1.04);
}
.shop-card__body {
    padding: 0.75rem 1rem 0;
    flex: 1;
}
.shop-card__name {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}
.shop-card__name a {
    color: inherit;
    text-decoration: none;
}
.shop-card__name a:hover {
    color: var(--green);
}
.shop-card__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}
.shop-card__atc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem;
    padding: 0.6rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.shop-card__atc:hover {
    border-color: var(--green);
    background: var(--bg-alt);
    color: var(--green);
}

/* ─── Process section ────────────────────────────────────────── */
/* ─── Shop section footer (dots + button) ────────────────────── */
.shop-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.shop-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.shop-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    display: block;
}
.shop-dot--active {
    width: 24px;
    border-radius: 4px;
    background: var(--green);
}
.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--green);
    border-radius: var(--radius);
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn--outline:hover {
    background: var(--green);
    color: #fff;
}

.btn--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── Shop section top row + caption ────────────────────────── */
.shop-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.shop-section__cat-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text);
}

.shop-section__see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}
.shop-section__see-all:hover { text-decoration: underline; }

.shop-section__caption {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.shop-section__header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 0.75rem;
}

.shop-section__desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 100%;
    margin: 0 0 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Process section (list layout) ─────────────────────────── */
.process-section {
    background: var(--bg);
    padding: 4rem 0;
}
.process-section__header {
    margin-bottom: 2rem;
}
.process-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 0;
}
.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3rem;
}
.process-list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px 24px 24px;
}
.process-list-item + .process-list-item {
    border-left: 1px solid var(--border);
}
.process-list-item__icon {
    flex-shrink: 0;
    color: var(--pink);
}
.process-list-item__title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    color: var(--text);
}
.process-list-item__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ─── Video embed (inside process section) ───────────────────── */
.video-section__embed {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-200);
}
.video-section__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ─── Responsive — strona główna V2 ─────────────────────────── */
@media (max-width: 860px) {
    .shop-grid    { grid-template-columns: repeat(2, 1fr); }
    .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .shop-grid            { grid-template-columns: 1fr; }
    .shop-section__footer { flex-direction: column; gap: 1.25rem; }
}

/* ═══ ZAMÓWIENIA INDYWIDUALNE ═══════════════════════════════════ */
.order-page-main {
    background: var(--white);
    padding: 3rem 0 5rem;
}
.order-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.order-form__title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #3d3d3d;
    margin-bottom: 1rem;
}
.order-form__intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}
.order-form__intro-item {
    display: flex;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #525252;
    line-height: 1.5;
}
.order-form__intro-icon {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.5;
}
/* .of-desc — opis pod labelem, przed textarea */
.of-desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: #7c7c7c;
    line-height: 1.5;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
}
/* Textarea wysokość w tym formularzu */
.order-form-wrap .cf-textarea {
    min-height: 80px;
}

/* ═══ BLOG — ARCHIWUM ═══════════════════════════════════════════ */
.blog-archive-main {
    background: var(--white);
    padding: clamp(2rem, 5vw, 4rem) 0 5rem;
}

.blog-archive__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.blog-archive__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text);
    margin: 0 0 0.5rem;
}

.blog-archive__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.blog-card__more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.blog-card__more:hover { text-decoration: underline; }

.blog-archive__pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-archive__pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.blog-archive__pagination a,
.blog-archive__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.blog-archive__pagination a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.blog-archive__pagination .current {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.blog-archive__empty {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 0;
}

@media (max-width: 860px) {
    .blog-archive__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .blog-archive__grid { grid-template-columns: 1fr; }
}

/* ═══ BLOG — POJEDYNCZY WPIS ════════════════════════════════════ */
.single-post-main {
    background: var(--white);
    padding: clamp(2rem, 5vw, 4rem) 0 5rem;
}

.single-post__wrap {
    max-width: 760px;
    margin: 0 auto;
}

.single-post__header {
    margin-bottom: 2rem;
}

.single-post__date {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
}

.single-post__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.single-post__lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.single-post__thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.single-post__thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post__content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.single-post__content h2,
.single-post__content h3 {
    font-family: var(--font-serif);
    margin: 2rem 0 0.75rem;
    color: var(--text);
}

.single-post__content p { margin: 0 0 1.25rem; }

.single-post__content a {
    color: var(--green);
    text-decoration: underline;
}

.single-post__content ul,
.single-post__content ol {
    margin: 0 0 1.25rem 1.5rem;
}

.single-post__content li { margin-bottom: 0.4rem; }

.single-post__content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.single-post__back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.single-post__back-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
}

.single-post__back-link:hover { text-decoration: underline; }

.single-post__related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.single-post__related-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.blog-archive__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .blog-archive__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .blog-archive__grid--3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════════════════════════════ */

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
}

.cart-drawer.is-open {
    pointer-events: auto;
}

.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.is-open .cart-drawer__overlay {
    opacity: 1;
}

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 100vw;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.cart-drawer.is-open .cart-drawer__panel {
    transform: translateX(0);
}

.cart-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

/* Head */
.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-drawer__heading h2 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0;
}

.cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
}

.cart-drawer__close:hover {
    color: var(--gray-900);
}

/* Shipping bar */
.cart-drawer__shipping-bar {
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.cart-drawer__shipping-bar p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gray-700);
    margin: 0 0 8px;
}

.cart-drawer__shipping-bar strong {
    color: var(--gray-900);
}

.cart-drawer__shipping-bar--done p {
    color: var(--green);
}

.cart-drawer__progress {
    height: 4px;
    background: var(--gray-200);
    border-radius: 100px;
    overflow: visible;
    position: relative;
}

.cart-drawer__progress-fill {
    height: 100%;
    background: var(--green);
    border-radius: 100px;
    position: relative;
    transition: width 0.4s ease;
    min-width: 0;
}

.cart-drawer__progress-thumb {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer__progress-thumb svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* Items */
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.cart-drawer__empty {
    padding: 32px 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

.cart-drawer__item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cart-drawer__item-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}

.cart-drawer__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer__item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 12px;
}

.cart-drawer__item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-drawer__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.cart-drawer__item-name {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray-900);
    line-height: 1.4;
}

.cart-drawer__item-price {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    white-space: nowrap;
}

.cart-drawer__item-remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gray-600);
    padding: 0;
}

.cart-drawer__item-remove:hover {
    color: var(--gray-900);
}

/* Coupon */
.cart-drawer__coupon {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.cart-drawer__coupon-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 2px;
}

.cart-drawer__coupon-sub {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--gray-600);
    margin: 0 0 10px;
}

.cart-drawer__coupon-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.cart-drawer__coupon-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray-900);
    background: var(--white);
}

.cart-drawer__coupon-input::placeholder {
    color: var(--gray-400);
}

.cart-drawer__coupon-btn {
    background: none;
    border: none;
    border-left: 1px solid var(--gray-200);
    padding: 10px 14px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--green);
    cursor: pointer;
    white-space: nowrap;
}

.cart-drawer__coupon-btn:hover {
    background: var(--gray-50);
}

.cart-drawer__coupons-applied {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.cart-drawer__coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: var(--gray-700);
}

.cart-drawer__coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    font-size: 14px;
    line-height: 1;
}

/* Summary */
.cart-drawer__summary {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.cart-drawer__summary-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0 0 12px;
}

.cart-drawer__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray-700);
    padding: 4px 0;
}

.cart-drawer__summary-row--total {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid var(--gray-200);
}

.cart-drawer__delivery-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-drawer__checkout-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: var(--green);
    color: var(--white);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s;
}

.cart-drawer__checkout-btn:hover {
    background: var(--green-dark);
    color: var(--white);
}

.cart-drawer__payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* ─── WooCommerce notices ────────────────────────────────────── */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray-900);
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 24px;
    list-style: none;
}

.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

.woocommerce-error {
    border-color: #fca5a5;
    background: #fff5f5;
    color: var(--gray-900);
}

.woocommerce-error a.button,
.woocommerce-message a.button,
.woocommerce-info a.button {
    margin-left: auto;
    flex-shrink: 0;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.woocommerce-error a.button:hover,
.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover {
    background: var(--green-mid);
    color: var(--white);
}

/* ─── Toast notifications ────────────────────────────────────── */
.wc-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    width: calc(100vw - 40px);
    pointer-events: none;
}

.wc-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--gray-900);
    pointer-events: all;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.wc-toast--visible {
    opacity: 1;
    transform: translateX(0);
}

.wc-toast--error {
    border-left: 3px solid #f87171;
}

.wc-toast--success {
    border-left: 3px solid var(--green);
}

.wc-toast--info {
    border-left: 3px solid var(--mint);
}

.wc-toast__msg {
    flex: 1;
    line-height: 1.4;
}

.wc-toast__btn {
    flex-shrink: 0;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.wc-toast__btn:hover {
    background: var(--green-mid);
}

.wc-toast__close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
}

.wc-toast__close:hover {
    color: var(--gray-700);
}

/* Loading state */
.cart-drawer__inner--loading {
    opacity: 0.5;
    pointer-events: none;
}

/* WYSYŁKA I PŁATNOŚCI PAGE */
.shipping-section {
    margin-bottom: 2.5rem;
}
.shipping-section__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}
.shipping-section__intro {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.shipping-section__intro a {
    color: var(--green);
}
.shipping-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.shipping-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.shipping-list__icon {
    flex-shrink: 0;
    color: var(--green);
    width: 24px;
    height: 24px;
}
.shipping-list__item strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}
.shipping-list__item span {
    color: var(--text-muted);
    font-size: 0.875rem;
}
