/* ================================================================
   JeSuspended Homepage — Stylesheet
   All selectors scoped to #jsh-homepage for Divi compatibility.
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --jsh-font-display: 'Playfair Display', Georgia, serif;
    --jsh-font-body: 'DM Sans', -apple-system, sans-serif;

    --jsh-black: #0f0f0f;
    --jsh-white: #fafaf8;
    --jsh-cream: #f5f0eb;
    --jsh-warm-gray: #b5a99a;
    --jsh-mid-gray: #7a7067;
    --jsh-accent: #c8a97e;
    --jsh-accent-dark: #a88b64;
    --jsh-danger: #c45c4f;

    --jsh-radius: 4px;
    --jsh-radius-lg: 12px;
    --jsh-shadow-soft: 0 4px 30px rgba(15,15,15,.07);
    --jsh-shadow-hover: 0 12px 40px rgba(15,15,15,.12);
    --jsh-transition: .35s cubic-bezier(.4,0,.2,1);
    --jsh-container: 1280px;
}

/* ── Hard reset scoped to #jsh-homepage ────────────────────────── */
#jsh-homepage,
#jsh-homepage *,
#jsh-homepage *::before,
#jsh-homepage *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    float: none !important;
    list-style: none !important;
    text-decoration: none !important;
    background: transparent !important;
}

/* Restore backgrounds where needed via more specific selectors below */

#jsh-homepage {
    font-family: var(--jsh-font-body) !important;
    color: var(--jsh-black) !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

#jsh-homepage img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
    border-radius: 0 !important;
}

#jsh-homepage a {
    text-decoration: none !important;
    color: inherit !important;
}

#jsh-homepage h1,
#jsh-homepage h2,
#jsh-homepage h3,
#jsh-homepage h4,
#jsh-homepage h5,
#jsh-homepage h6 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
}

#jsh-homepage p {
    margin: 0 !important;
    padding: 0 !important;
}

#jsh-homepage ul,
#jsh-homepage ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#jsh-homepage li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}

#jsh-homepage li::before {
    content: none !important;
    display: none !important;
}

/* ── Container ─────────────────────────────────────────────────── */
#jsh-homepage .jsh-container {
    width: 100% !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* ── Sections base ─────────────────────────────────────────────── */
#jsh-homepage .jsh-section {
    padding: 100px 0 !important;
    width: 100% !important;
}

#jsh-homepage .jsh-section--hero {
    padding: 0 !important;
}

#jsh-homepage .jsh-section--gender-split {
    padding: 0 !important;
}

#jsh-homepage .jsh-section--categories {
    background: var(--jsh-cream) !important;
}

#jsh-homepage .jsh-section--featured {
    background: var(--jsh-white) !important;
}

#jsh-homepage .jsh-section--brands {
    background: var(--jsh-white) !important;
}

#jsh-homepage .jsh-section--newsletter {
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
}

/* ── Section Headers ───────────────────────────────────────────── */
#jsh-homepage .jsh-section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

#jsh-homepage .jsh-section-header__tag {
    display: inline-block !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent-dark) !important;
    margin-bottom: 12px !important;
}

#jsh-homepage .jsh-section-header__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: var(--jsh-black) !important;
}

#jsh-homepage .jsh-section--newsletter .jsh-section-header__title,
#jsh-homepage .jsh-section--newsletter .jsh-section-header__tag {
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-section-header__link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--jsh-accent-dark) !important;
    transition: gap var(--jsh-transition) !important;
}

#jsh-homepage .jsh-section-header__link:hover {
    gap: 10px !important;
}

/* ── Buttons ───────────────────────────────────────────────────── */
#jsh-homepage .jsh-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: var(--jsh-radius) !important;
    cursor: pointer !important;
    transition: all var(--jsh-transition) !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

#jsh-homepage .jsh-btn--primary {
    background: var(--jsh-accent-dark) !important;
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-btn--primary:hover {
    background: var(--jsh-accent) !important;
    gap: 12px !important;
}

#jsh-homepage .jsh-btn--ghost {
    background: rgba(255,255,255,.08) !important;
    color: var(--jsh-white) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    backdrop-filter: blur(4px) !important;
}

#jsh-homepage .jsh-btn--ghost:hover {
    background: rgba(255,255,255,.18) !important;
    border-color: rgba(255,255,255,.4) !important;
}

#jsh-homepage .jsh-btn--outline-white {
    background: transparent !important;
    color: var(--jsh-white) !important;
    border: 1px solid rgba(255,255,255,.4) !important;
}

#jsh-homepage .jsh-btn--outline-white:hover {
    background: var(--jsh-white) !important;
    color: var(--jsh-black) !important;
    gap: 12px !important;
}

/* ================================================================
   HERO — MOSAIC
   ================================================================ */
#jsh-homepage .jsh-hero {
    position: relative !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--jsh-black) !important;
    overflow: hidden !important;
}

#jsh-homepage .jsh-hero__mosaic {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 4px !important;
    padding: 4px !important;
}

#jsh-homepage .jsh-hero__mosaic-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 2px !important;
}

#jsh-homepage .jsh-hero__mosaic-item img {
    transform: scale(1.05);
    animation: jsh-mosaic-drift 20s ease-in-out infinite alternate;
}

#jsh-homepage .jsh-hero__mosaic-item--1 { grid-column: 1 / 2 !important; grid-row: 1 / 3 !important; }
#jsh-homepage .jsh-hero__mosaic-item--2 { grid-column: 2 / 3 !important; grid-row: 1 / 2 !important; }
#jsh-homepage .jsh-hero__mosaic-item--3 { grid-column: 3 / 4 !important; grid-row: 1 / 2 !important; }
#jsh-homepage .jsh-hero__mosaic-item--4 { grid-column: 2 / 4 !important; grid-row: 2 / 3 !important; }
#jsh-homepage .jsh-hero__mosaic-item--5 { grid-column: 4 / 5 !important; grid-row: 1 / 3 !important; }

#jsh-homepage .jsh-hero__mosaic-item--1 img { animation-duration: 22s; }
#jsh-homepage .jsh-hero__mosaic-item--2 img { animation-duration: 18s; animation-delay: -3s; }
#jsh-homepage .jsh-hero__mosaic-item--3 img { animation-duration: 25s; animation-delay: -7s; }
#jsh-homepage .jsh-hero__mosaic-item--4 img { animation-duration: 20s; animation-delay: -5s; }
#jsh-homepage .jsh-hero__mosaic-item--5 img { animation-duration: 23s; animation-delay: -9s; }

@keyframes jsh-mosaic-drift {
    0%   { transform: scale(1.05) translate(0, 0); }
    33%  { transform: scale(1.1)  translate(-1%, 1%); }
    66%  { transform: scale(1.08) translate(1%, -0.5%); }
    100% { transform: scale(1.12) translate(-0.5%, 0.5%); }
}

#jsh-homepage .jsh-hero__mosaic-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background:
        radial-gradient(ellipse at center, rgba(15,15,15,.5) 0%, rgba(15,15,15,.8) 100%),
        linear-gradient(180deg, rgba(15,15,15,.3) 0%, rgba(15,15,15,.6) 100%) !important;
}

#jsh-homepage .jsh-hero::before {
    content: '' !important;
    position: absolute !important;
    inset: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E") !important;
    z-index: 3 !important;
    pointer-events: none !important;
    animation: jsh-grain 8s steps(10) infinite;
}

@keyframes jsh-grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(12%, 9%); }
    70% { transform: translate(9%, 4%); }
    90% { transform: translate(-1%, 7%); }
}

#jsh-homepage .jsh-hero__content {
    position: relative !important;
    z-index: 4 !important;
    text-align: center !important;
    padding: 24px !important;
    max-width: 700px !important;
}

#jsh-homepage .jsh-hero__tag {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent) !important;
    margin-bottom: 20px !important;
    padding: 6px 16px !important;
    border: 1px solid rgba(200,169,126,.4) !important;
    border-radius: 2px !important;
}

#jsh-homepage .jsh-hero__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(40px, 8vw, 80px) !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    color: var(--jsh-white) !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.02em !important;
}

#jsh-homepage .jsh-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px) !important;
    color: rgba(250,250,248,.7) !important;
    margin-bottom: 36px !important;
    font-weight: 400 !important;
}

#jsh-homepage .jsh-hero__ctas {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
}

#jsh-homepage .jsh-hero__scroll-hint {
    position: absolute !important;
    bottom: 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    color: rgba(250,250,248,.4) !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    animation: jsh-bounce 2s ease-in-out infinite;
}

@keyframes jsh-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   CATEGORIES GRID
   ================================================================ */
#jsh-homepage .jsh-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

#jsh-homepage .jsh-cat-card {
    position: relative !important;
    display: block !important;
    border-radius: var(--jsh-radius-lg) !important;
    overflow: hidden !important;
    aspect-ratio: 3/4 !important;
    box-shadow: var(--jsh-shadow-soft) !important;
    transition: transform var(--jsh-transition), box-shadow var(--jsh-transition) !important;
}

#jsh-homepage .jsh-cat-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--jsh-shadow-hover) !important;
}

#jsh-homepage .jsh-cat-card__img-wrap {
    position: absolute !important;
    inset: 0 !important;
}

#jsh-homepage .jsh-cat-card__img-wrap img {
    transition: transform .6s cubic-bezier(.4,0,.2,1) !important;
}

#jsh-homepage .jsh-cat-card:hover .jsh-cat-card__img-wrap img {
    transform: scale(1.06) !important;
}

#jsh-homepage .jsh-cat-card__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        0deg,
        rgba(15,15,15,.75) 0%,
        rgba(15,15,15,.1) 50%,
        transparent 100%
    ) !important;
}

#jsh-homepage .jsh-cat-card__content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 32px !important;
    z-index: 2 !important;
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-cat-card__name {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(22px, 2.5vw, 32px) !important;
    font-weight: 400 !important;
    margin-bottom: 6px !important;
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-cat-card__desc {
    font-size: 14px !important;
    color: rgba(250,250,248,.6) !important;
    margin-bottom: 8px !important;
}

#jsh-homepage .jsh-cat-card__count {
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent) !important;
}

#jsh-homepage .jsh-cat-card__arrow {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.1) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--jsh-white) !important;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--jsh-transition) !important;
}

#jsh-homepage .jsh-cat-card:hover .jsh-cat-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   PRODUCTS GRID — kwadratowe zdjęcia (1:1)
   ================================================================ */
#jsh-homepage .jsh-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

#jsh-homepage .jsh-product-card {
    transition: transform var(--jsh-transition) !important;
}

#jsh-homepage .jsh-product-card:hover {
    transform: translateY(-4px) !important;
}

#jsh-homepage .jsh-product-card__link {
    display: block !important;
}

#jsh-homepage .jsh-product-card__img-wrap {
    position: relative !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: var(--jsh-radius-lg) !important;
    overflow: hidden !important;
    background: var(--jsh-cream) !important;
    margin-bottom: 16px !important;
}

#jsh-homepage .jsh-product-card__img-wrap img {
    object-position: center top !important;
    transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}

#jsh-homepage .jsh-product-card:hover .jsh-product-card__img-wrap img {
    transform: scale(1.05) !important;
}

#jsh-homepage .jsh-product-card__badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 2 !important;
    padding: 4px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
    border-radius: 2px !important;
}

#jsh-homepage .jsh-product-card__name {
    font-family: var(--jsh-font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
    color: var(--jsh-black) !important;
}

#jsh-homepage .jsh-product-card__price {
    font-size: 14px !important;
    color: var(--jsh-mid-gray) !important;
}

#jsh-homepage .jsh-product-card__price del {
    opacity: .5 !important;
    margin-right: 6px !important;
}

#jsh-homepage .jsh-product-card__price ins {
    text-decoration: none !important;
    color: var(--jsh-danger) !important;
    font-weight: 600 !important;
}

/* ================================================================
   BRANDS
   ================================================================ */
#jsh-homepage .jsh-brands-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}

#jsh-homepage .jsh-brand-card {
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    min-height: 480px !important;
    border-radius: var(--jsh-radius-lg) !important;
    overflow: hidden !important;
    transition: transform var(--jsh-transition) !important;
}

#jsh-homepage .jsh-brand-card:hover {
    transform: translateY(-4px) !important;
}

#jsh-homepage .jsh-brand-card__bg {
    position: absolute !important;
    inset: 0 !important;
}

#jsh-homepage .jsh-brand-card__bg img {
    transition: transform .7s cubic-bezier(.4,0,.2,1) !important;
}

#jsh-homepage .jsh-brand-card:hover .jsh-brand-card__bg img {
    transform: scale(1.04) !important;
}

#jsh-homepage .jsh-brand-card__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        0deg,
        rgba(15,15,15,.8) 0%,
        rgba(15,15,15,.3) 50%,
        rgba(15,15,15,.15) 100%
    ) !important;
}

#jsh-homepage .jsh-brand-card__content {
    position: relative !important;
    z-index: 2 !important;
    padding: 40px !important;
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-brand-card__name {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
    margin-bottom: 12px !important;
    color: var(--jsh-white) !important;
}

#jsh-homepage .jsh-brand-card__desc {
    font-size: 15px !important;
    color: rgba(250,250,248,.65) !important;
    margin-bottom: 8px !important;
    max-width: 400px !important;
    line-height: 1.6 !important;
}

#jsh-homepage .jsh-brand-card__meta {
    display: block !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent) !important;
    margin-bottom: 24px !important;
}

/* ================================================================
   GENDER SPLIT — poprawiona czytelność
   Ciemniejszy overlay, wyraźny tekst, tagi podkategorii z tłem
   ================================================================ */
#jsh-homepage .jsh-gender-split {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    min-height: 600px !important;
}

#jsh-homepage .jsh-gender-panel {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 48px !important;
    overflow: hidden !important;
}

#jsh-homepage .jsh-gender-panel__bg {
    position: absolute !important;
    inset: 0 !important;
}

#jsh-homepage .jsh-gender-panel__bg img {
    transition: transform .7s cubic-bezier(.4,0,.2,1) !important;
    filter: brightness(.6) !important;
}

#jsh-homepage .jsh-gender-panel:hover .jsh-gender-panel__bg img {
    transform: scale(1.04) !important;
    filter: brightness(.5) !important;
}

#jsh-homepage .jsh-gender-panel__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        180deg,
        rgba(15,15,15,.35) 0%,
        rgba(15,15,15,.7) 50%,
        rgba(15,15,15,.8) 100%
    ) !important;
    transition: background var(--jsh-transition) !important;
}

#jsh-homepage .jsh-gender-panel:hover .jsh-gender-panel__overlay {
    background: linear-gradient(
        180deg,
        rgba(15,15,15,.45) 0%,
        rgba(15,15,15,.75) 50%,
        rgba(15,15,15,.85) 100%
    ) !important;
}

#jsh-homepage .jsh-gender-panel__content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: var(--jsh-white) !important;
    max-width: 480px !important;
}

#jsh-homepage .jsh-gender-panel__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(32px, 5vw, 56px) !important;
    font-weight: 400 !important;
    margin-bottom: 28px !important;
    letter-spacing: 1px !important;
    color: var(--jsh-white) !important;
    text-shadow: 0 2px 20px rgba(0,0,0,.5) !important;
}

/* Podkategorie jako tagi z tłem — w pełni czytelne */
#jsh-homepage .jsh-gender-panel__subcats {
    list-style: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
}

#jsh-homepage .jsh-gender-panel__subcats li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
}

#jsh-homepage .jsh-gender-panel__subcats li::before {
    content: none !important;
    display: none !important;
}

#jsh-homepage .jsh-gender-panel__subcats li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--jsh-white) !important;
    padding: 8px 16px !important;
    background: rgba(255,255,255,.12) !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    border-radius: 100px !important;
    backdrop-filter: blur(8px) !important;
    transition: all var(--jsh-transition) !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
}

#jsh-homepage .jsh-gender-panel__subcats li a:hover {
    background: rgba(255,255,255,.25) !important;
    border-color: rgba(255,255,255,.45) !important;
    color: var(--jsh-white) !important;
    transform: translateY(-2px) !important;
}

#jsh-homepage .jsh-gender-panel__subcount {
    font-size: 11px !important;
    opacity: .6 !important;
    font-weight: 400 !important;
    color: var(--jsh-white) !important;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
#jsh-homepage .jsh-newsletter {
    position: relative !important;
    text-align: center !important;
    padding: 20px 0 !important;
    overflow: hidden !important;
}

#jsh-homepage .jsh-newsletter__deco {
    position: absolute !important;
    width: 300px !important;
    height: 300px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(200,169,126,.12) !important;
    pointer-events: none !important;
    background: transparent !important;
}

#jsh-homepage .jsh-newsletter__deco--left {
    top: -100px !important;
    left: -100px !important;
}

#jsh-homepage .jsh-newsletter__deco--right {
    bottom: -100px !important;
    right: -100px !important;
    width: 400px !important;
    height: 400px !important;
}

#jsh-homepage .jsh-newsletter__inner {
    position: relative !important;
    z-index: 2 !important;
}

#jsh-homepage .jsh-newsletter__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 400 !important;
    color: var(--jsh-white) !important;
    margin: 12px 0 16px !important;
}

#jsh-homepage .jsh-newsletter__desc {
    font-size: 16px !important;
    color: rgba(250,250,248,.55) !important;
    max-width: 480px !important;
    margin: 0 auto 36px !important;
    line-height: 1.6 !important;
}

#jsh-homepage .jsh-newsletter__form {
    max-width: 520px !important;
    margin: 0 auto !important;
}

#jsh-homepage .jsh-newsletter__field {
    display: flex !important;
    gap: 0 !important;
    border-radius: var(--jsh-radius) !important;
    overflow: hidden !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    transition: border-color var(--jsh-transition) !important;
}

#jsh-homepage .jsh-newsletter__field:focus-within {
    border-color: var(--jsh-accent) !important;
}

#jsh-homepage .jsh-newsletter__field input[type="email"] {
    flex: 1 !important;
    padding: 16px 20px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 15px !important;
    background: transparent !important;
    border: none !important;
    color: var(--jsh-white) !important;
    outline: none !important;
    min-width: 0 !important;
}

#jsh-homepage .jsh-newsletter__field input[type="email"]::placeholder {
    color: rgba(250,250,248,.35) !important;
}

#jsh-homepage .jsh-newsletter__field .jsh-btn {
    border-radius: 0 !important;
    flex-shrink: 0 !important;
}

#jsh-homepage .jsh-newsletter__legal {
    display: block !important;
    margin-top: 12px !important;
    font-size: 12px !important;
    color: rgba(250,250,248,.3) !important;
}

/* ================================================================
   ANIMATIONS (Intersection Observer driven)
   ================================================================ */
#jsh-homepage [data-jsh-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1),
                transform .7s cubic-bezier(.4,0,.2,1);
}

#jsh-homepage [data-jsh-animate="fade-down"] {
    transform: translateY(-20px);
}

#jsh-homepage [data-jsh-animate].jsh-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ================================================================
   SVG icons inside buttons / links
   ================================================================ */
#jsh-homepage .jsh-btn svg,
#jsh-homepage .jsh-hero__scroll-hint svg,
#jsh-homepage .jsh-section-header__link svg,
#jsh-homepage .jsh-cat-card__arrow svg {
    width: auto !important;
    height: auto !important;
    flex-shrink: 0 !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    #jsh-homepage .jsh-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #jsh-homepage .jsh-section {
        padding: 64px 0 !important;
    }

    #jsh-homepage .jsh-section-header {
        margin-bottom: 40px !important;
    }

    /* Hero mosaic mobile */
    #jsh-homepage .jsh-hero__mosaic {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr 1fr !important;
    }

    #jsh-homepage .jsh-hero__mosaic-item--1 { grid-column: 1 / 2 !important; grid-row: 1 / 3 !important; }
    #jsh-homepage .jsh-hero__mosaic-item--2 { grid-column: 2 / 3 !important; grid-row: 1 / 2 !important; }
    #jsh-homepage .jsh-hero__mosaic-item--3 { grid-column: 2 / 3 !important; grid-row: 2 / 3 !important; }
    #jsh-homepage .jsh-hero__mosaic-item--4 { grid-column: 1 / 2 !important; grid-row: 3 / 4 !important; }
    #jsh-homepage .jsh-hero__mosaic-item--5 { grid-column: 2 / 3 !important; grid-row: 3 / 4 !important; }

    #jsh-homepage .jsh-hero__ctas {
        flex-direction: column !important;
        align-items: center !important;
    }

    #jsh-homepage .jsh-categories-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    #jsh-homepage .jsh-cat-card {
        aspect-ratio: 4/3 !important;
    }

    #jsh-homepage .jsh-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    #jsh-homepage .jsh-brands-grid {
        grid-template-columns: 1fr !important;
    }

    #jsh-homepage .jsh-brand-card {
        min-height: 360px !important;
    }

    /* Gender split → stack on mobile */
    #jsh-homepage .jsh-gender-split {
        grid-template-columns: 1fr !important;
    }

    #jsh-homepage .jsh-gender-panel {
        padding: 60px 24px !important;
        min-height: 420px !important;
    }

    #jsh-homepage .jsh-gender-panel__subcats li a {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    #jsh-homepage .jsh-newsletter__field {
        flex-direction: column !important;
    }

    #jsh-homepage .jsh-newsletter__field .jsh-btn {
        justify-content: center !important;
    }

    #jsh-homepage .jsh-hero__scroll-hint {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #jsh-homepage .jsh-products-grid {
        gap: 12px !important;
    }

    #jsh-homepage .jsh-product-card__name {
        font-size: 13px !important;
    }

    #jsh-homepage .jsh-cat-card__content {
        padding: 20px !important;
    }

    #jsh-homepage .jsh-gender-panel__title {
        font-size: clamp(28px, 8vw, 40px) !important;
    }

    #jsh-homepage .jsh-gender-panel__subcats {
        gap: 6px !important;
    }
}

/* ================================================================
   FOOTER — scoped to #jsh-footer
   ================================================================ */

/* ── Reset (Divi override) ─────────────────────────────────────── */
#jsh-footer,
#jsh-footer *,
#jsh-footer *::before,
#jsh-footer *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    float: none !important;
    list-style: none !important;
    text-decoration: none !important;
}

#jsh-footer {
    font-family: var(--jsh-font-body) !important;
    color: var(--jsh-white) !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
    width: 100% !important;
}

#jsh-footer a {
    color: inherit !important;
    text-decoration: none !important;
}

#jsh-footer img {
    display: inline-block !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* ── Container ─────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__container {
    width: 100% !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* ── Main (4-kolumnowy) ────────────────────────────────────────── */
#jsh-footer .jsh-footer__main {
    background: var(--jsh-black) !important;
    padding: 64px 0 48px !important;
}

#jsh-footer .jsh-footer__main .jsh-footer__container {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr !important;
    gap: 40px !important;
}

/* ── Kolumny ───────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__col {
    display: flex !important;
    flex-direction: column !important;
}

#jsh-footer .jsh-footer__heading {
    font-family: var(--jsh-font-body) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

#jsh-footer .jsh-footer__heading--spaced {
    margin-top: 24px !important;
}

/* ── Kontakt ───────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    font-size: 14px !important;
    color: rgba(250,250,248,.75) !important;
}

#jsh-footer .jsh-footer__contact-item svg {
    flex-shrink: 0 !important;
    width: 16px !important;
    height: 16px !important;
    color: var(--jsh-accent) !important;
    stroke: var(--jsh-accent) !important;
}

#jsh-footer .jsh-footer__contact-item a {
    color: rgba(250,250,248,.75) !important;
    transition: color var(--jsh-transition) !important;
}

#jsh-footer .jsh-footer__contact-item a:hover {
    color: var(--jsh-white) !important;
}

/* ── Social ────────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__social {
    display: flex !important;
    gap: 12px !important;
    margin-top: 16px !important;
}

#jsh-footer .jsh-footer__social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: rgba(250,250,248,.5) !important;
    transition: all var(--jsh-transition) !important;
}

#jsh-footer .jsh-footer__social-link:hover {
    background: rgba(255,255,255,.14) !important;
    border-color: var(--jsh-accent) !important;
    color: var(--jsh-white) !important;
}

#jsh-footer .jsh-footer__social-link svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
}

/* ── Nawigacja ─────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#jsh-footer .jsh-footer__nav a {
    font-size: 14px !important;
    color: rgba(250,250,248,.6) !important;
    transition: color var(--jsh-transition) !important;
    line-height: 1.5 !important;
}

#jsh-footer .jsh-footer__nav a:hover {
    color: var(--jsh-white) !important;
}

/* ── Loga płatności / wysyłki ──────────────────────────────────── */
#jsh-footer .jsh-footer__logos {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
}

#jsh-footer .jsh-footer__logos img {
    width: auto !important;
    height: 28px !important;
    opacity: .7 !important;
    filter: brightness(1.2) !important;
    transition: opacity var(--jsh-transition) !important;
}

#jsh-footer .jsh-footer__logos img:hover {
    opacity: 1 !important;
}

/* ── PFR ───────────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__pfr {
    background: var(--jsh-black) !important;
    padding: 0 0 32px !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    padding-top: 32px !important;
}

#jsh-footer .jsh-footer__pfr img {
    display: block !important;
    width: 100% !important;
    max-width: 900px !important;
    height: auto !important;
    margin: 0 auto !important;
    opacity: .8 !important;
}

/* ── Bottom bar ────────────────────────────────────────────────── */
#jsh-footer .jsh-footer__bottom {
    background: #090909 !important;
    padding: 20px 0 !important;
}

#jsh-footer .jsh-footer__bottom .jsh-footer__container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

#jsh-footer .jsh-footer__copy {
    font-size: 12px !important;
    color: rgba(250,250,248,.35) !important;
    line-height: 1.5 !important;
}

#jsh-footer .jsh-footer__credit {
    font-size: 12px !important;
    color: rgba(250,250,248,.25) !important;
    line-height: 1.5 !important;
}

#jsh-footer .jsh-footer__credit a {
    color: rgba(250,250,248,.35) !important;
    transition: color var(--jsh-transition) !important;
}

#jsh-footer .jsh-footer__credit a:hover {
    color: var(--jsh-accent) !important;
}

/* ── Footer responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    #jsh-footer .jsh-footer__main .jsh-footer__container {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px 32px !important;
    }
}

@media (max-width: 600px) {
    #jsh-footer .jsh-footer__main {
        padding: 48px 0 32px !important;
    }

    #jsh-footer .jsh-footer__main .jsh-footer__container {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    #jsh-footer .jsh-footer__bottom .jsh-footer__container {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* ================================================================
   CATEGORY PAGE — scoped to #jsh-category
   ================================================================ */

/* ── Reset ─────────────────────────────────────────────────────── */
#jsh-category,
#jsh-category *,
#jsh-category *::before,
#jsh-category *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    float: none !important;
    list-style: none !important;
    text-decoration: none !important;
}

#jsh-category {
    font-family: var(--jsh-font-body) !important;
    color: var(--jsh-black) !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
    width: 100% !important;
}

#jsh-category a { color: inherit !important; text-decoration: none !important; }

#jsh-category img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
}

#jsh-category h1,
#jsh-category h3 {
    margin: 0 !important;
    padding: 0 !important;
}

#jsh-category .jsh-container {
    width: 100% !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* ── Category Hero ─────────────────────────────────────────────── */
#jsh-category .jsh-cat-hero {
    position: relative !important;
    min-height: 340px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: var(--jsh-black) !important;
}

#jsh-category .jsh-cat-hero__bg {
    position: absolute !important;
    inset: 0 !important;
}

#jsh-category .jsh-cat-hero__bg img {
    filter: brightness(.45) saturate(.9) !important;
    transform: scale(1.05) !important;
    object-position: center 30% !important;
}

#jsh-category .jsh-cat-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(15,15,15,.2) 0%, rgba(15,15,15,.75) 100%) !important;
}

#jsh-category .jsh-cat-hero__content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    padding: 60px 24px 48px !important;
    max-width: 680px !important;
}

/* Breadcrumb */
#jsh-category .jsh-cat-hero__breadcrumb {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

#jsh-category .jsh-cat-hero__breadcrumb a {
    color: rgba(250,250,248,.5) !important;
    transition: color var(--jsh-transition) !important;
}

#jsh-category .jsh-cat-hero__breadcrumb a:hover {
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-cat-hero__breadcrumb svg {
    width: 12px !important;
    height: 12px !important;
    color: rgba(250,250,248,.3) !important;
    flex-shrink: 0 !important;
}

#jsh-category .jsh-cat-hero__breadcrumb-current {
    color: var(--jsh-accent) !important;
    font-weight: 600 !important;
}

#jsh-category .jsh-cat-hero__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(32px, 6vw, 56px) !important;
    font-weight: 400 !important;
    color: var(--jsh-white) !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.01em !important;
}

#jsh-category .jsh-cat-hero__desc {
    font-size: 15px !important;
    color: rgba(250,250,248,.6) !important;
    margin-bottom: 16px !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#jsh-category .jsh-cat-hero__meta {
    font-size: 13px !important;
    color: rgba(250,250,248,.45) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

#jsh-category .jsh-cat-hero__count {
    color: var(--jsh-accent) !important;
    font-weight: 700 !important;
    font-variant-numeric: tabular-nums !important;
}

#jsh-category .jsh-cat-hero__sep {
    margin: 0 8px !important;
    opacity: .4 !important;
}

/* ── Toolbar (subcats + sizes) ─────────────────────────────────── */
#jsh-category .jsh-cat-toolbar {
    background: var(--jsh-white) !important;
    border-bottom: 1px solid rgba(15,15,15,.06) !important;
    padding: 20px 0 !important;
    z-index: 50 !important;
    transition: box-shadow .3s ease !important;
}

#jsh-category .jsh-cat-toolbar--sticky {
    position: sticky !important;
    top: 0 !important;
    box-shadow: 0 4px 20px rgba(15,15,15,.08) !important;
    backdrop-filter: blur(12px) !important;
    background: rgba(250,250,248,.92) !important;
}

#jsh-category .jsh-cat-toolbar__subcats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

/* Pill: podkategoria */
#jsh-category .jsh-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 18px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--jsh-mid-gray) !important;
    background: var(--jsh-cream) !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: all var(--jsh-transition) !important;
    white-space: nowrap !important;
}

#jsh-category .jsh-pill:hover {
    color: var(--jsh-black) !important;
    background: #ece5dc !important;
}

#jsh-category .jsh-pill--active {
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-pill__count {
    font-size: 11px !important;
    opacity: .5 !important;
    font-weight: 400 !important;
}

/* Sekcja filtrów (W / L / literowe) */
#jsh-category .jsh-cat-toolbar__filters {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

#jsh-category .jsh-filter-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
}

#jsh-category .jsh-filter-row__label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    color: var(--jsh-mid-gray) !important;
    min-width: 100px !important;
    flex-shrink: 0 !important;
}

/* Size pill (button) */
#jsh-category .jsh-size-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    padding: 6px 14px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--jsh-mid-gray) !important;
    background: transparent !important;
    border: 1px solid rgba(15,15,15,.1) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all var(--jsh-transition) !important;
    line-height: 1.3 !important;
}

#jsh-category .jsh-size-pill:hover {
    border-color: var(--jsh-accent) !important;
    color: var(--jsh-accent-dark) !important;
}

#jsh-category .jsh-size-pill--active {
    background: var(--jsh-black) !important;
    border-color: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-size-pill--disabled {
    opacity: .25 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    border-color: rgba(15,15,15,.06) !important;
    color: rgba(15,15,15,.25) !important;
    background: transparent !important;
}

#jsh-category .jsh-size-pill--disabled:hover {
    border-color: rgba(15,15,15,.06) !important;
    color: rgba(15,15,15,.25) !important;
}

/* ── Grid produktów ────────────────────────────────────────────── */
#jsh-category .jsh-cat-grid-wrap {
    background: var(--jsh-white) !important;
    padding: 40px 0 80px !important;
}

#jsh-category .jsh-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

/* ── Karta produktu ────────────────────────────────────────────── */
#jsh-category .jsh-cat-card {
    transition: opacity .4s ease, transform var(--jsh-transition) !important;
}

#jsh-category .jsh-cat-card--dimmed {
    opacity: .25 !important;
    pointer-events: none !important;
}

#jsh-category .jsh-cat-card:hover {
    transform: translateY(-4px) !important;
}

#jsh-category .jsh-cat-card__link {
    display: block !important;
}

/* ── Zdjęcie z hover na drugie ─────────────────────────────────── */
#jsh-category .jsh-cat-card__img {
    position: relative !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: var(--jsh-radius-lg) !important;
    overflow: hidden !important;
    background: var(--jsh-cream) !important;
    margin-bottom: 12px !important;
}

#jsh-category .jsh-cat-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}

#jsh-category .jsh-cat-card:hover .jsh-cat-card__img img {
    transform: scale(1.06) !important;
}

/* Badge */
#jsh-category .jsh-cat-card__badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 5 !important;
    padding: 4px 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    border-radius: 4px !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

#jsh-category .jsh-cat-card__badge--sale {
    background: var(--jsh-danger) !important;
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-cat-card__badge--hit {
    background: var(--jsh-accent-dark) !important;
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-cat-card__badge--new {
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
}

/* ── Przycisk "Zobacz produkt" na hover ────────────────────────── */
#jsh-category .jsh-cat-card__hover-btn {
    position: absolute !important;
    inset: 0 !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding-bottom: 14px !important;
    background: linear-gradient(180deg, transparent 55%, rgba(15,15,15,.45) 100%) !important;
    opacity: 0 !important;
    transition: opacity .35s ease !important;
}

#jsh-category .jsh-cat-card:hover .jsh-cat-card__hover-btn {
    opacity: 1 !important;
}

#jsh-category .jsh-cat-card__hover-btn span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 10px 22px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
    color: var(--jsh-white) !important;
    background: var(--jsh-black) !important;
    border-radius: 6px !important;
    transform: translateY(10px) !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s ease !important;
    line-height: 1.3 !important;
}

#jsh-category .jsh-cat-card:hover .jsh-cat-card__hover-btn span {
    transform: translateY(0) !important;
}

#jsh-category .jsh-cat-card__hover-btn span:hover {
    background: var(--jsh-accent-dark) !important;
}

#jsh-category .jsh-cat-card__hover-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

/* ── Treść karty ───────────────────────────────────────────────── */
#jsh-category .jsh-cat-card__body {
    padding: 0 4px !important;
    margin-bottom: 8px !important;
}

#jsh-category .jsh-cat-card__title {
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: var(--jsh-black) !important;
    margin-bottom: 6px !important;
}

/* ── Cena — styled ─────────────────────────────────────────────── */
#jsh-category .jsh-cat-card__price-wrap {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
    flex-wrap: wrap !important;
}

#jsh-category .jsh-cat-card__price-current {
    font-family: var(--jsh-font-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--jsh-black) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

#jsh-category .jsh-cat-card__price-current--sale {
    color: var(--jsh-danger) !important;
}

#jsh-category .jsh-cat-card__price-old {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--jsh-warm-gray) !important;
    text-decoration: line-through !important;
    line-height: 1.2 !important;
}

/* Wewnętrzne elementy ceny WC (span.amount etc.) */
#jsh-category .jsh-cat-card__price-current .woocommerce-Price-amount {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
}

#jsh-category .jsh-cat-card__price-old .woocommerce-Price-amount {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
}

#jsh-category .jsh-cat-card__price-current .woocommerce-Price-currencySymbol,
#jsh-category .jsh-cat-card__price-old .woocommerce-Price-currencySymbol {
    font-size: inherit !important;
    font-weight: inherit !important;
}

/* ── Rozmiary — label tekstowy ─────────────────────────────────── */
#jsh-category .jsh-cat-card__sizes-info {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: var(--jsh-warm-gray) !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

#jsh-category .jsh-cat-card__sizes-info svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
    stroke: var(--jsh-warm-gray) !important;
    opacity: .7 !important;
}

/* ── Komunikat "brak wyników" ──────────────────────────────────── */
#jsh-category .jsh-cat-empty {
    text-align: center !important;
    padding: 80px 24px !important;
}

#jsh-category .jsh-cat-empty svg {
    color: var(--jsh-warm-gray) !important;
    stroke: var(--jsh-warm-gray) !important;
    margin-bottom: 16px !important;
    width: 48px !important;
    height: 48px !important;
}

#jsh-category .jsh-cat-empty p {
    font-size: 16px !important;
    color: var(--jsh-mid-gray) !important;
    margin-bottom: 24px !important;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    #jsh-category .jsh-cat-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #jsh-category .jsh-cat-hero {
        min-height: 260px !important;
    }

    #jsh-category .jsh-cat-hero__content {
        padding: 40px 20px 36px !important;
    }

    #jsh-category .jsh-cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    #jsh-category .jsh-cat-toolbar__subcats {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 4px !important;
    }

    #jsh-category .jsh-cat-toolbar__subcats::-webkit-scrollbar {
        display: none !important;
    }

    #jsh-category .jsh-filter-row {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    #jsh-category .jsh-filter-row::-webkit-scrollbar {
        display: none !important;
    }

    #jsh-category .jsh-filter-row__label {
        min-width: auto !important;
    }
}

@media (max-width: 480px) {
    #jsh-category .jsh-cat-grid {
        gap: 12px !important;
    }

    #jsh-category .jsh-cat-card__title {
        font-size: 13px !important;
    }

    #jsh-category .jsh-cat-card__price-current {
        font-size: 14px !important;
    }

    #jsh-category .jsh-cat-card__hover-btn {
        display: none !important;
    }
}

/* ================================================================
   HEADER — scoped to #jsh-header
   ================================================================ */

/* ── Reset ─────────────────────────────────────────────────────── */
#jsh-header,
#jsh-header *,
#jsh-header *::before,
#jsh-header *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    float: none !important;
    list-style: none !important;
    text-decoration: none !important;
}

#jsh-header {
    font-family: var(--jsh-font-body) !important;
    -webkit-font-smoothing: antialiased !important;
    width: 100% !important;
    position: relative !important;
    z-index: 9999 !important;
}

#jsh-header a {
    color: inherit !important;
    text-decoration: none !important;
}

#jsh-header ul,
#jsh-header li {
    list-style: none !important;
}

#jsh-header li::before {
    content: none !important;
    display: none !important;
}

/* ── Top Bar (benefits) ────────────────────────────────────────── */
#jsh-header .jsh-topbar {
    background: var(--jsh-black) !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#jsh-header .jsh-topbar__inner {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 8px 24px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

#jsh-header .jsh-topbar__inner::-webkit-scrollbar {
    display: none !important;
}

#jsh-header .jsh-topbar__item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: .5px !important;
    text-transform: uppercase !important;
    color: rgba(250,250,248,.65) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

#jsh-header .jsh-topbar__icon {
    display: flex !important;
    align-items: center !important;
    color: var(--jsh-accent) !important;
}

#jsh-header .jsh-topbar__icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke: var(--jsh-accent) !important;
    flex-shrink: 0 !important;
}

/* ── Main Nav ──────────────────────────────────────────────────── */
#jsh-header .jsh-nav {
    background: var(--jsh-white) !important;
    border-bottom: 1px solid rgba(15,15,15,.06) !important;
    transition: box-shadow .3s ease, background .3s ease !important;
    position: relative !important;
    z-index: 9998 !important;
}

#jsh-header .jsh-nav--sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 2px 20px rgba(15,15,15,.08) !important;
    background: rgba(250,250,248,.96) !important;
    backdrop-filter: blur(12px) !important;
}

#jsh-header .jsh-nav__inner {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    height: 68px !important;
}

/* ── Logo ──────────────────────────────────────────────────────── */
#jsh-header .jsh-nav__logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-right: 32px !important;
}

#jsh-header .jsh-nav__logo img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
    max-width: none !important;
}

/* ── Menu ──────────────────────────────────────────────────────── */
#jsh-header .jsh-nav__menu {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
}

#jsh-header .jsh-nav__list {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
}

#jsh-header .jsh-nav__list li {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

#jsh-header .jsh-nav__list > li > a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 14px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: .3px !important;
    color: var(--jsh-black) !important;
    border-radius: 6px !important;
    transition: background .25s ease, color .25s ease !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
}

#jsh-header .jsh-nav__list > li > a:hover,
#jsh-header .jsh-nav__list > li.current-menu-item > a,
#jsh-header .jsh-nav__list > li.current-menu-ancestor > a {
    background: var(--jsh-cream) !important;
    color: var(--jsh-accent-dark) !important;
}

/* Dropdown (sub-menu) */
#jsh-header .jsh-nav__list .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 200px !important;
    padding: 8px 0 !important;
    background: var(--jsh-white) !important;
    border: 1px solid rgba(15,15,15,.06) !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 40px rgba(15,15,15,.1) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    transition: all .25s ease !important;
    z-index: 100 !important;
}

#jsh-header .jsh-nav__list li:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

#jsh-header .jsh-nav__list .sub-menu li {
    display: block !important;
}

#jsh-header .jsh-nav__list .sub-menu a {
    display: block !important;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--jsh-mid-gray) !important;
    transition: background .2s ease, color .2s ease !important;
    line-height: 1.5 !important;
}

#jsh-header .jsh-nav__list .sub-menu a:hover {
    background: var(--jsh-cream) !important;
    color: var(--jsh-black) !important;
}

/* ── Actions (search + icons) ──────────────────────────────────── */
#jsh-header .jsh-nav__actions {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    padding-left: 20px !important;
    border-left: 1px solid rgba(15,15,15,.08) !important;
}

/* FiboSearch container override — force inline styling */
#jsh-header .jsh-nav__search {
    display: flex !important;
    align-items: center !important;
    margin-right: 4px !important;
}

/* Override FiboSearch default styles to match our design */
#jsh-header .dgwt-wcas-search-wrapp {
    max-width: 220px !important;
    min-width: 180px !important;
}

/* Lista podpowiedzi FiboSearch szersza niz zwezone pole wyszukiwarki.
   UWAGA: FiboSearch dopina dropdown bezposrednio do <body> (POZA #jsh-header),
   wiec selektor NIE moze byc scope-owany do #jsh-header. FiboSearch (JS) ustawia
   inline width = szerokosc pola oraz inline left = lewa krawedz pola. Poszerzamy
   liste do 400px i ujemnym margin-left (-220 = 400 - 180) przesuwamy ja w lewo,
   tak by PRAWA krawedz listy wyrownala sie z prawa krawedzia pola. Guard
   :not(.dgwt-wcas-overlay-mobile-on) zostawia mobilny overlay bez zmian. */
body:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-suggestions-wrapp {
    width: 400px !important;
    max-width: 90vw !important;
    margin-left: -220px !important;
}

#jsh-header .dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    background: var(--jsh-cream) !important;
    border: none !important;
    border-radius: 8px !important;
    height: 38px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 13px !important;
    padding: 0 14px !important;
    color: var(--jsh-black) !important;
    box-shadow: none !important;
}

#jsh-header .dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
    color: var(--jsh-warm-gray) !important;
}

#jsh-header .dgwt-wcas-search-wrapp .dgwt-wcas-search-submit,
#jsh-header .dgwt-wcas-search-wrapp .dgwt-wcas-ico-magnifier-handler {
    color: var(--jsh-mid-gray) !important;
}

/* Fallback search */
#jsh-header .jsh-nav__search-fallback {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    background: var(--jsh-cream) !important;
    border-radius: 8px !important;
    height: 38px !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#jsh-header .jsh-nav__search-fallback input[type="search"] {
    border: none !important;
    background: transparent !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 13px !important;
    color: var(--jsh-black) !important;
    width: 200px !important;
    height: 38px !important;
    outline: none !important;
    padding: 0 14px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

#jsh-header .jsh-nav__search-fallback input[type="search"]::placeholder {
    color: var(--jsh-warm-gray) !important;
}

#jsh-header .jsh-nav__search-fallback input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none !important;
}

#jsh-header .jsh-nav__search-fallback button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    cursor: pointer !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    color: var(--jsh-mid-gray) !important;
    padding: 0 !important;
    transition: color .25s ease !important;
}

#jsh-header .jsh-nav__search-fallback button:hover {
    color: var(--jsh-accent-dark) !important;
}

#jsh-header .jsh-nav__search-fallback button svg {
    width: 16px !important;
    height: 16px !important;
}

/* Icon links (account, cart) */
#jsh-header .jsh-nav__icon-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
    color: var(--jsh-black) !important;
    transition: background .25s ease !important;
    position: relative !important;
}

#jsh-header .jsh-nav__icon-link:hover {
    background: var(--jsh-cream) !important;
}

#jsh-header .jsh-nav__icon-link svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

/* Cart count badge */
#jsh-header .jsh-nav__cart-count {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    min-width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--jsh-white) !important;
    background: var(--jsh-accent-dark) !important;
    border-radius: 100px !important;
    padding: 0 4px !important;
    line-height: 1 !important;
}

/* ── Hamburger ─────────────────────────────────────────────────── */
#jsh-header .jsh-nav__hamburger {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 38px !important;
    height: 38px !important;
    background: transparent !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    transition: background .2s ease !important;
    flex-shrink: 0 !important;
    order: -1 !important;
}

#jsh-header .jsh-nav__hamburger:hover {
    background: var(--jsh-cream) !important;
}

#jsh-header .jsh-nav__hamburger span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--jsh-black) !important;
    border-radius: 2px !important;
    transition: all .3s ease !important;
}

#jsh-header .jsh-nav__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}

#jsh-header .jsh-nav__hamburger--open span:nth-child(2) {
    opacity: 0 !important;
}

#jsh-header .jsh-nav__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}

/* ── Mobile overlay ────────────────────────────────────────────── */
#jsh-header .jsh-mobile-overlay {
    display: none !important;
}

/* ── Body padding when sticky ──────────────────────────────────── */
#jsh-header .jsh-nav--sticky ~ * {
    /* handled by JS or Divi */
}

/* ================================================================
   HEADER RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    #jsh-header .jsh-nav__hamburger {
        display: flex !important;
    }

    #jsh-header .jsh-nav__menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 300px !important;
        max-width: 85vw !important;
        background: var(--jsh-white) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 80px 24px 24px !important;
        transform: translateX(-100%) !important;
        transition: transform .35s cubic-bezier(.4,0,.2,1) !important;
        z-index: 10001 !important;
        overflow-y: auto !important;
        box-shadow: 4px 0 40px rgba(15,15,15,.15) !important;
    }

    #jsh-header .jsh-nav__menu--open {
        transform: translateX(0) !important;
    }

    #jsh-header .jsh-nav__list {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    #jsh-header .jsh-nav__list > li > a {
        padding: 12px 0 !important;
        font-size: 15px !important;
        border-bottom: 1px solid rgba(15,15,15,.06) !important;
        border-radius: 0 !important;
    }

    /* Sub-menu mobile */
    #jsh-header .jsh-nav__list .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 16px !important;
        min-width: 0 !important;
        background: transparent !important;
    }

    #jsh-header .jsh-nav__list .sub-menu a {
        padding: 10px 0 !important;
        font-size: 14px !important;
        border-bottom: 1px solid rgba(15,15,15,.04) !important;
    }

    /* Overlay */
    #jsh-header .jsh-mobile-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(15,15,15,.4) !important;
        z-index: 10000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all .3s ease !important;
    }

    #jsh-header .jsh-mobile-overlay--open {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Search narrower on tablet */
    #jsh-header .jsh-nav__search-fallback input[type="search"] {
        width: 120px !important;
    }

    #jsh-header .jsh-nav__actions {
        border-left: none !important;
        padding-left: 0 !important;
    }

    #jsh-header .jsh-nav__logo {
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    #jsh-header .jsh-topbar__inner {
        justify-content: flex-start !important;
        gap: 24px !important;
        padding: 7px 16px !important;
    }

    #jsh-header .jsh-nav__inner {
        padding: 0 16px !important;
        height: 56px !important;
        gap: 12px !important;
    }

    #jsh-header .jsh-nav__logo img {
        height: 36px !important;
    }

    #jsh-header .jsh-nav__search-fallback input[type="search"] {
        width: 90px !important;
    }

    #jsh-header .jsh-nav__search-fallback {
        height: 34px !important;
    }

    #jsh-header .jsh-nav__icon-link {
        width: 34px !important;
        height: 34px !important;
    }
}

/* ================================================================
   ═══ #jsh-product — strona produktu ═══
   ================================================================ */

/* ── Reset scoped ── */
#jsh-product,
#jsh-product *,
#jsh-product *::before,
#jsh-product *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    float: none !important;
    list-style: none !important;
    text-decoration: none !important;
    background: transparent !important;
}

#jsh-product {
    font-family: var(--jsh-font-body) !important;
    color: var(--jsh-black) !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
    background: var(--jsh-white) !important;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

#jsh-product img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
}

#jsh-product a { color: inherit !important; text-decoration: none !important; }
#jsh-product h1, #jsh-product h2, #jsh-product h3, #jsh-product h4 {
    margin: 0 !important; padding: 0 !important; line-height: 1.25 !important; letter-spacing: normal !important;
}
#jsh-product p { margin: 0 !important; }
#jsh-product ul, #jsh-product ol { list-style: none !important; margin: 0 !important; padding: 0 !important; }
#jsh-product li { list-style: none !important; margin: 0 !important; padding: 0 !important; line-height: 1.6 !important; }
#jsh-product li::before { content: none !important; display: none !important; }

#jsh-product .jsh-container {
    width: 100% !important;
    max-width: var(--jsh-container) !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* ── Breadcrumb bar ── */
#jsh-product .jsh-product-breadcrumb-bar {
    background: var(--jsh-cream) !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(15,15,15,.05) !important;
}
#jsh-product .jsh-product-breadcrumb {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: var(--jsh-mid-gray) !important;
    letter-spacing: .02em !important;
}
#jsh-product .jsh-product-breadcrumb a {
    color: var(--jsh-mid-gray) !important;
    transition: color var(--jsh-transition) !important;
}
#jsh-product .jsh-product-breadcrumb a:hover { color: var(--jsh-black) !important; }
#jsh-product .jsh-product-breadcrumb__current {
    color: var(--jsh-black) !important;
    font-weight: 500 !important;
}
#jsh-product .jsh-product-breadcrumb__sep { opacity: .5 !important; flex-shrink: 0 !important; }

/* ── Main grid ── */
#jsh-product .jsh-product-main {
    padding: 48px 0 80px !important;
}
#jsh-product .jsh-product-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px) !important;
    gap: 64px !important;
    align-items: flex-start !important;
}

/* ── Galeria ── */
#jsh-product .jsh-product-gallery {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    gap: 16px !important;
}
/* Pojedyncze zdjecie - brak paska miniatur, glowne zdjecie na cala szerokosc */
#jsh-product .jsh-product-gallery--single {
    grid-template-columns: 1fr !important;
}
#jsh-product .jsh-product-gallery--single .jsh-product-gallery__badges {
    left: 16px !important;
}
#jsh-product .jsh-product-gallery__badges {
    position: absolute !important;
    top: 16px !important;
    left: 96px !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}
#jsh-product .jsh-product-badge {
    display: inline-block !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
    border-radius: var(--jsh-radius) !important;
}
#jsh-product .jsh-product-badge--sale { background: var(--jsh-danger) !important; color: #fff !important; }
#jsh-product .jsh-product-badge--hit  { background: var(--jsh-accent) !important; color: var(--jsh-black) !important; }
#jsh-product .jsh-product-badge--new  { background: var(--jsh-black) !important; color: var(--jsh-white) !important; }

#jsh-product .jsh-product-gallery__thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
#jsh-product .jsh-product-thumb {
    width: 80px !important;
    height: 100px !important;
    cursor: pointer !important;
    overflow: hidden !important;
    border-radius: var(--jsh-radius) !important;
    background: var(--jsh-cream) !important;
    opacity: .55 !important;
    transition: opacity var(--jsh-transition), box-shadow var(--jsh-transition) !important;
    position: relative !important;
}
#jsh-product .jsh-product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
#jsh-product .jsh-product-thumb:hover { opacity: .85 !important; }
#jsh-product .jsh-product-thumb--active {
    opacity: 1 !important;
    box-shadow: 0 0 0 2px var(--jsh-black) !important;
}

#jsh-product .jsh-product-gallery__main {
    position: relative !important;
}
#jsh-product .jsh-product-gallery__stage {
    position: relative !important;
    background: var(--jsh-cream) !important;
    border-radius: var(--jsh-radius-lg) !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 5 !important;
    cursor: zoom-in !important;
}
#jsh-product .jsh-product-gallery__stage img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity .3s ease, transform .45s ease !important;
}
#jsh-product .jsh-product-gallery__stage--zoom img {
    transform: scale(1.8) !important;
    cursor: zoom-in !important;
}
#jsh-product .jsh-product-gallery__zoom-btn {
    position: absolute !important;
    bottom: 16px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.95) !important;
    color: var(--jsh-black) !important;
    cursor: pointer !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: var(--jsh-shadow-soft) !important;
    transition: transform var(--jsh-transition) !important;
    z-index: 2 !important;
}
#jsh-product .jsh-product-gallery__zoom-btn:hover { transform: scale(1.08) !important; }

/* ── Info column ── */
#jsh-product .jsh-product-info {
    position: sticky !important;
    top: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}
#jsh-product .jsh-product-info__eyebrow {
    font-size: 12px !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: var(--jsh-mid-gray) !important;
    font-weight: 500 !important;
}
#jsh-product .jsh-product-info__eyebrow a { color: var(--jsh-accent-dark) !important; }
#jsh-product .jsh-product-info__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(28px, 3.4vw, 42px) !important;
    font-weight: 700 !important;
    color: var(--jsh-black) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
}

#jsh-product .jsh-product-info__rating {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
}
#jsh-product .jsh-product-stars {
    color: var(--jsh-accent) !important;
    display: inline-flex !important;
    gap: 2px !important;
}
#jsh-product .jsh-product-info__rating-count {
    color: var(--jsh-mid-gray) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

#jsh-product .jsh-product-info__price {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-top: 1px solid rgba(15,15,15,.08) !important;
    border-bottom: 1px solid rgba(15,15,15,.08) !important;
}
#jsh-product .jsh-product-info__price-now {
    font-family: var(--jsh-font-display) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--jsh-black) !important;
}
#jsh-product .jsh-product-info__price-now--sale { color: var(--jsh-danger) !important; }
#jsh-product .jsh-product-info__price-old {
    font-size: 18px !important;
    color: var(--jsh-warm-gray) !important;
    text-decoration: line-through !important;
    text-decoration-thickness: 1.5px !important;
}
#jsh-product .jsh-product-info__price-save {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    background: var(--jsh-danger) !important;
    color: #fff !important;
    padding: 4px 10px !important;
    border-radius: var(--jsh-radius) !important;
}
/* WC's default price markup normalization */
#jsh-product .jsh-product-info__price .woocommerce-Price-amount,
#jsh-product .jsh-product-info__price bdi { all: unset !important; font: inherit !important; color: inherit !important; }
#jsh-product .jsh-product-info__price .woocommerce-Price-currencySymbol { font-size: .7em !important; margin-left: 4px !important; }

#jsh-product .jsh-product-info__short {
    color: var(--jsh-mid-gray) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}
#jsh-product .jsh-product-info__short p { margin-bottom: 8px !important; }

/* ── Picker rozmiaru ── */
#jsh-product .jsh-product-info__sizes {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 8px 0 !important;
}
#jsh-product .jsh-product-size-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
#jsh-product .jsh-product-size-row__head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
#jsh-product .jsh-product-size-row__label {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: var(--jsh-black) !important;
}
#jsh-product .jsh-product-size-row__guide {
    font-size: 12px !important;
    color: var(--jsh-mid-gray) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    transition: color var(--jsh-transition) !important;
}
#jsh-product .jsh-product-size-row__guide:hover { color: var(--jsh-black) !important; }
#jsh-product .jsh-product-size-row__pills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}
#jsh-product .jsh-product-size-pill {
    min-width: 52px !important;
    padding: 10px 14px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--jsh-black) !important;
    background: var(--jsh-cream) !important;
    border: 1.5px solid transparent !important;
    border-radius: var(--jsh-radius) !important;
    cursor: pointer !important;
    transition: all var(--jsh-transition) !important;
    text-align: center !important;
}
#jsh-product .jsh-product-size-pill:hover:not(:disabled) {
    border-color: var(--jsh-black) !important;
}
#jsh-product .jsh-product-size-pill--active {
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
    border-color: var(--jsh-black) !important;
}
#jsh-product .jsh-product-size-pill--disabled,
#jsh-product .jsh-product-size-pill:disabled {
    opacity: .35 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
    color: var(--jsh-mid-gray) !important;
}

#jsh-product .jsh-product-info__size-hint {
    font-size: 13px !important;
    color: var(--jsh-mid-gray) !important;
    margin-top: 4px !important;
}
#jsh-product .jsh-product-info__size-hint--err {
    color: var(--jsh-danger) !important;
    font-weight: 500 !important;
}

/* ── Stock ── */
#jsh-product .jsh-product-info__stock {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}
#jsh-product .jsh-product-info__stock-dot {
    width: 8px !important; height: 8px !important;
    border-radius: 50% !important;
    display: inline-block !important;
}
#jsh-product .jsh-product-info__stock--in         { color: #2a7a3e !important; }
#jsh-product .jsh-product-info__stock--in .jsh-product-info__stock-dot  { background: #2a7a3e !important; }
#jsh-product .jsh-product-info__stock--out        { color: var(--jsh-danger) !important; }
#jsh-product .jsh-product-info__stock--out .jsh-product-info__stock-dot { background: var(--jsh-danger) !important; }

/* ── Add to cart ── */
#jsh-product .jsh-product-atc {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
}
#jsh-product .jsh-product-atc__qty-wrap {
    display: flex !important;
    align-items: center !important;
    background: var(--jsh-cream) !important;
    border-radius: var(--jsh-radius) !important;
    overflow: hidden !important;
}
#jsh-product .jsh-product-atc__qty-btn {
    width: 44px !important;
    height: 56px !important;
    display: grid !important;
    place-items: center !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--jsh-black) !important;
    cursor: pointer !important;
    background: transparent !important;
    transition: background var(--jsh-transition) !important;
}
#jsh-product .jsh-product-atc__qty-btn:hover { background: rgba(0,0,0,.04) !important; }
#jsh-product .jsh-product-atc__qty-input {
    width: 48px !important;
    height: 56px !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--jsh-black) !important;
    font-family: var(--jsh-font-body) !important;
    -moz-appearance: textfield !important;
}
#jsh-product .jsh-product-atc__qty-input::-webkit-outer-spin-button,
#jsh-product .jsh-product-atc__qty-input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }

#jsh-product .jsh-product-atc__btn {
    height: 56px !important;
    padding: 0 24px !important;
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    border-radius: var(--jsh-radius) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: transform var(--jsh-transition), background var(--jsh-transition), opacity var(--jsh-transition) !important;
    position: relative !important;
}
#jsh-product .jsh-product-atc__btn:hover:not(:disabled) {
    background: var(--jsh-accent-dark) !important;
    transform: translateY(-1px) !important;
}
#jsh-product .jsh-product-atc__btn:disabled {
    opacity: .45 !important;
    cursor: not-allowed !important;
}
#jsh-product .jsh-product-atc__btn--loading {
    pointer-events: none !important;
    color: transparent !important;
}
#jsh-product .jsh-product-atc__btn--loading::after {
    content: '' !important;
    position: absolute !important;
    width: 18px !important; height: 18px !important;
    border: 2px solid rgba(255,255,255,.25) !important;
    border-top-color: #fff !important;
    border-radius: 50% !important;
    animation: jshSpin .7s linear infinite !important;
}
@keyframes jshSpin { to { transform: rotate(360deg); } }

/* ── Trust ── */
#jsh-product .jsh-product-info__trust {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(15,15,15,.08) !important;
}
#jsh-product .jsh-product-trust-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
}
#jsh-product .jsh-product-trust-item__icon {
    width: 32px !important; height: 32px !important;
    flex-shrink: 0 !important;
    color: var(--jsh-accent-dark) !important;
}
#jsh-product .jsh-product-trust-item__icon svg { width: 100% !important; height: 100% !important; }
#jsh-product .jsh-product-trust-item__txt {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}
#jsh-product .jsh-product-trust-item__txt strong {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--jsh-black) !important;
    letter-spacing: .04em !important;
}
#jsh-product .jsh-product-trust-item__txt span {
    font-size: 11px !important;
    color: var(--jsh-mid-gray) !important;
}

/* ── Meta ── */
#jsh-product .jsh-product-info__meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    font-size: 12px !important;
    color: var(--jsh-mid-gray) !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(15,15,15,.08) !important;
}
#jsh-product .jsh-product-info__meta li span {
    color: var(--jsh-black) !important;
    font-weight: 600 !important;
    margin-right: 6px !important;
}
#jsh-product .jsh-product-info__meta a { color: var(--jsh-accent-dark) !important; }
#jsh-product .jsh-product-info__meta a:hover { color: var(--jsh-black) !important; }

/* ── Lightbox ── */
#jsh-product-lightbox {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(10,10,10,.94) !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px !important;
}
#jsh-product-lightbox.jsh-product-lightbox--open { display: flex !important; }
#jsh-product-lightbox .jsh-product-lightbox__img {
    max-width: 90% !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: var(--jsh-radius-lg) !important;
}
#jsh-product-lightbox .jsh-product-lightbox__close,
#jsh-product-lightbox .jsh-product-lightbox__nav {
    position: absolute !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: grid !important;
    place-items: center !important;
    transition: background var(--jsh-transition), transform var(--jsh-transition) !important;
}
#jsh-product-lightbox .jsh-product-lightbox__close {
    top: 24px !important; right: 24px !important;
    width: 44px !important; height: 44px !important;
}
#jsh-product-lightbox .jsh-product-lightbox__nav {
    width: 52px !important; height: 52px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
#jsh-product-lightbox .jsh-product-lightbox__nav--prev { left: 24px !important; }
#jsh-product-lightbox .jsh-product-lightbox__nav--next { right: 24px !important; }
#jsh-product-lightbox .jsh-product-lightbox__close:hover,
#jsh-product-lightbox .jsh-product-lightbox__nav:hover { background: rgba(255,255,255,.24) !important; }
#jsh-product-lightbox .jsh-product-lightbox__counter {
    position: absolute !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    color: #fff !important;
    font-size: 13px !important;
    letter-spacing: .1em !important;
    background: rgba(255,255,255,.1) !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
}

/* ── Tabs ── */
#jsh-product .jsh-product-tabs-wrap {
    padding: 80px 0 !important;
    background: var(--jsh-cream) !important;
}
#jsh-product .jsh-product-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    border-bottom: 1.5px solid rgba(15,15,15,.12) !important;
    margin-bottom: 40px !important;
}
#jsh-product .jsh-product-tab {
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: var(--jsh-mid-gray) !important;
    padding: 16px 24px !important;
    cursor: pointer !important;
    background: transparent !important;
    position: relative !important;
    transition: color var(--jsh-transition) !important;
}
#jsh-product .jsh-product-tab:hover { color: var(--jsh-black) !important; }
#jsh-product .jsh-product-tab--active { color: var(--jsh-black) !important; }
#jsh-product .jsh-product-tab--active::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -1.5px !important;
    height: 2.5px !important;
    background: var(--jsh-black) !important;
}
#jsh-product .jsh-product-tab-panel { display: none !important; }
#jsh-product .jsh-product-tab-panel--active { display: block !important; }

/* ── Prose (opis, dostawa) ── */
#jsh-product .jsh-product-prose {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: var(--jsh-mid-gray) !important;
    max-width: 820px !important;
}
#jsh-product .jsh-product-prose h3 {
    font-family: var(--jsh-font-display) !important;
    font-size: 22px !important;
    color: var(--jsh-black) !important;
    margin: 24px 0 12px !important;
    font-weight: 700 !important;
}
#jsh-product .jsh-product-prose h3:first-child { margin-top: 0 !important; }
#jsh-product .jsh-product-prose p { margin-bottom: 12px !important; }
#jsh-product .jsh-product-prose ul {
    margin: 12px 0 !important;
    padding-left: 0 !important;
}
#jsh-product .jsh-product-prose li {
    position: relative !important;
    padding-left: 22px !important;
    margin-bottom: 6px !important;
}
#jsh-product .jsh-product-prose li::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 12px !important;
    width: 12px !important;
    height: 1.5px !important;
    background: var(--jsh-accent) !important;
}
#jsh-product .jsh-product-prose strong { color: var(--jsh-black) !important; font-weight: 600 !important; }

/* ── Specyfikacja ── */
#jsh-product .jsh-product-spec {
    width: 100% !important;
    max-width: 820px !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
}
#jsh-product .jsh-product-spec th,
#jsh-product .jsh-product-spec td {
    padding: 14px 16px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(15,15,15,.08) !important;
    vertical-align: top !important;
}
#jsh-product .jsh-product-spec th {
    width: 32% !important;
    font-weight: 600 !important;
    color: var(--jsh-black) !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
}
#jsh-product .jsh-product-spec td {
    color: var(--jsh-mid-gray) !important;
}

/* ── Reviews ── */
#jsh-product .jsh-product-reviews #comments,
#jsh-product .jsh-product-reviews #reviews {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}
#jsh-product .jsh-product-reviews .comment-form label {
    display: block !important;
    font-size: 12px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: var(--jsh-black) !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}
#jsh-product .jsh-product-reviews .comment-form input[type="text"],
#jsh-product .jsh-product-reviews .comment-form input[type="email"],
#jsh-product .jsh-product-reviews .comment-form textarea {
    width: 100% !important;
    max-width: 520px !important;
    padding: 12px 14px !important;
    background: #fff !important;
    border: 1px solid rgba(15,15,15,.15) !important;
    border-radius: var(--jsh-radius) !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    color: var(--jsh-black) !important;
    margin-bottom: 16px !important;
}
#jsh-product .jsh-product-reviews .submit {
    background: var(--jsh-black) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    border-radius: var(--jsh-radius) !important;
    cursor: pointer !important;
}

/* ── Related products ── */
#jsh-product .jsh-product-related-wrap {
    padding: 80px 0 !important;
    background: var(--jsh-white) !important;
}
#jsh-product .jsh-product-related__head {
    text-align: center !important;
    margin-bottom: 40px !important;
}
#jsh-product .jsh-product-related__tag {
    display: inline-block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    color: var(--jsh-accent-dark) !important;
    margin-bottom: 10px !important;
}
#jsh-product .jsh-product-related__title {
    font-family: var(--jsh-font-display) !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    color: var(--jsh-black) !important;
    font-weight: 700 !important;
}

/* Karty related: reużycie .jsh-cat-card — wrap-only grid */
#jsh-product .jsh-product-related-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px !important;
}
/* Przepisujemy tylko to, co jest niezbędne, by karty działały pod #jsh-product
   (pierwotne style są pod #jsh-homepage i #jsh-category) */
#jsh-product .jsh-cat-card {
    background: transparent !important;
    transition: transform var(--jsh-transition) !important;
}
#jsh-product .jsh-cat-card:hover { transform: translateY(-4px) !important; }
#jsh-product .jsh-cat-card__link { display: block !important; }
#jsh-product .jsh-cat-card__img {
    position: relative !important;
    aspect-ratio: 3/4 !important;
    overflow: hidden !important;
    border-radius: var(--jsh-radius-lg) !important;
    background: var(--jsh-cream) !important;
}
#jsh-product .jsh-cat-card__img img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important;
    transition: transform var(--jsh-transition) !important;
}
#jsh-product .jsh-cat-card:hover .jsh-cat-card__img img { transform: scale(1.04) !important; }
#jsh-product .jsh-cat-card__badge {
    position: absolute !important;
    top: 12px !important; left: 12px !important;
    padding: 4px 10px !important;
    background: var(--jsh-black) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    border-radius: var(--jsh-radius) !important;
    z-index: 2 !important;
}
#jsh-product .jsh-cat-card__badge--sale { background: var(--jsh-danger) !important; }
#jsh-product .jsh-cat-card__badge--hit  { background: var(--jsh-accent) !important; color: var(--jsh-black) !important; }
#jsh-product .jsh-cat-card__hover-btn {
    position: absolute !important;
    inset: auto 0 0 0 !important;
    padding: 14px !important;
    background: rgba(15,15,15,.92) !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
    transition: all var(--jsh-transition) !important;
}
#jsh-product .jsh-cat-card__hover-btn span {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
}
#jsh-product .jsh-cat-card:hover .jsh-cat-card__hover-btn {
    opacity: 1 !important; transform: translateY(0) !important;
}
#jsh-product .jsh-cat-card__body { padding: 16px 0 !important; }
#jsh-product .jsh-cat-card__title {
    font-family: var(--jsh-font-display) !important;
    font-size: 17px !important;
    color: var(--jsh-black) !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
}
#jsh-product .jsh-cat-card__price-wrap {
    display: flex !important; gap: 8px !important; align-items: baseline !important; margin-bottom: 6px !important;
}
#jsh-product .jsh-cat-card__price-current {
    font-weight: 700 !important; color: var(--jsh-black) !important; font-size: 15px !important;
}
#jsh-product .jsh-cat-card__price-current--sale { color: var(--jsh-danger) !important; }
#jsh-product .jsh-cat-card__price-old {
    color: var(--jsh-warm-gray) !important;
    text-decoration: line-through !important;
    font-size: 13px !important;
}
#jsh-product .jsh-cat-card__sizes-info {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11px !important;
    color: var(--jsh-mid-gray) !important;
}

/* ── Toast ── */
#jsh-product-toast {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    background: var(--jsh-black) !important;
    color: #fff !important;
    padding: 14px 20px !important;
    border-radius: var(--jsh-radius-lg) !important;
    box-shadow: var(--jsh-shadow-hover) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transform: translateY(140%) !important;
    transition: transform .35s cubic-bezier(.4,0,.2,1) !important;
    z-index: 9999 !important;
    max-width: calc(100vw - 48px) !important;
}
#jsh-product-toast.jsh-product-toast--show { transform: translateY(0) !important; }
#jsh-product-toast .jsh-product-toast__link {
    color: var(--jsh-accent) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    #jsh-product .jsh-product-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    #jsh-product .jsh-product-info {
        position: static !important;
        top: auto !important;
    }
    #jsh-product .jsh-product-gallery {
        grid-template-columns: 1fr !important;
    }
    #jsh-product .jsh-product-gallery__badges {
        left: 16px !important;
        top: 16px !important;
    }
    #jsh-product .jsh-product-gallery__thumbs {
        flex-direction: row !important;
        overflow-x: auto !important;
        scrollbar-width: thin !important;
        padding-bottom: 4px !important;
    }
    #jsh-product .jsh-product-thumb {
        width: 64px !important;
        height: 80px !important;
        flex-shrink: 0 !important;
    }
    #jsh-product .jsh-product-related-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #jsh-product .jsh-product-main { padding: 32px 0 56px !important; }
    #jsh-product .jsh-product-tabs-wrap { padding: 56px 0 !important; }
    #jsh-product .jsh-product-related-wrap { padding: 56px 0 !important; }
}

@media (max-width: 640px) {
    #jsh-product .jsh-container { padding: 0 16px !important; }
    #jsh-product .jsh-product-info { gap: 16px !important; }
    #jsh-product .jsh-product-info__title { font-size: 26px !important; }
    #jsh-product .jsh-product-info__price-now { font-size: 26px !important; }
    #jsh-product .jsh-product-info__trust {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    #jsh-product .jsh-product-atc {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    #jsh-product .jsh-product-atc__qty-wrap { justify-self: start !important; }
    #jsh-product .jsh-product-tab { padding: 14px 16px !important; font-size: 12px !important; }
    #jsh-product .jsh-product-spec th { width: 40% !important; font-size: 11px !important; padding: 12px 10px !important; }
    #jsh-product .jsh-product-spec td { padding: 12px 10px !important; font-size: 13px !important; }
    #jsh-product #jsh-product-lightbox .jsh-product-lightbox__nav { width: 40px !important; height: 40px !important; }
    #jsh-product #jsh-product-lightbox { padding: 16px !important; }
    #jsh-product-toast {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
        flex-wrap: wrap !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   ═══ #jsh-product-guide — modal "Tabela rozmiarów"       ═══
   ═══════════════════════════════════════════════════════════ */

/* Blokada scrolla strony gdy modal otwarty */
html.jsh-scroll-lock,
html.jsh-scroll-lock body {
    overflow: hidden !important;
}

/* Kontener root: fixed, centrowanie */
#jsh-product-guide {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transition: opacity .25s ease !important;
}
#jsh-product-guide *,
#jsh-product-guide *::before,
#jsh-product-guide *::after {
    box-sizing: border-box !important;
}
#jsh-product-guide.jsh-product-guide--open {
    pointer-events: auto !important;
    opacity: 1 !important;
}

/* Backdrop */
#jsh-product-guide .jsh-product-guide__backdrop {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(15, 15, 15, .6) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

/* Sheet — biała karta */
#jsh-product-guide .jsh-product-guide__sheet {
    position: relative !important;
    background: #fff !important;
    width: 100% !important;
    max-width: 860px !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: var(--jsh-radius-lg, 12px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28) !important;
    transform: translateY(20px) scale(.98) !important;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1) !important;
    overflow: hidden !important;
    font-family: 'DM Sans', system-ui, sans-serif !important;
    color: var(--jsh-black, #1a1a1a) !important;
}
#jsh-product-guide.jsh-product-guide--open .jsh-product-guide__sheet {
    transform: translateY(0) scale(1) !important;
}

/* Header */
#jsh-product-guide .jsh-product-guide__header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 24px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
    flex-shrink: 0 !important;
}
#jsh-product-guide .jsh-product-guide__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    letter-spacing: -.01em !important;
}
#jsh-product-guide .jsh-product-guide__close {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 8px !important;
    margin: -8px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    color: var(--jsh-black, #1a1a1a) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .15s ease !important;
}
#jsh-product-guide .jsh-product-guide__close:hover {
    background: rgba(0, 0, 0, .06) !important;
}
#jsh-product-guide .jsh-product-guide__close:focus-visible {
    outline: 2px solid var(--jsh-accent, #b08d57) !important;
    outline-offset: 2px !important;
}

/* Body — scroll container */
#jsh-product-guide .jsh-product-guide__body {
    padding: 24px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}
#jsh-product-guide .jsh-product-guide__intro {
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: rgba(26, 26, 26, .72) !important;
    margin: 0 0 -8px 0 !important;
}
#jsh-product-guide .jsh-product-guide__note {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(26, 26, 26, .65) !important;
    padding: 14px 16px !important;
    background: rgba(176, 141, 87, .08) !important;
    border-left: 3px solid var(--jsh-accent, #b08d57) !important;
    border-radius: 6px !important;
    margin: 0 !important;
}

/* Grupa (np. "Spodnie męskie") */
#jsh-product-guide .jsh-product-guide__group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
#jsh-product-guide .jsh-product-guide__group-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    letter-spacing: -.005em !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
}

/* Wrapper tabeli z poziomym scrollem (mobile) */
#jsh-product-guide .jsh-product-guide__table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    scrollbar-width: thin !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    border-radius: 8px !important;
    position: relative !important;
}
#jsh-product-guide .jsh-product-guide__table-wrap::-webkit-scrollbar { height: 6px !important; }
#jsh-product-guide .jsh-product-guide__table-wrap::-webkit-scrollbar-track { background: transparent !important; }
#jsh-product-guide .jsh-product-guide__table-wrap::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2) !important;
    border-radius: 3px !important;
}

/* Tabela */
#jsh-product-guide .jsh-product-guide__table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
    min-width: max-content !important;
}
#jsh-product-guide .jsh-product-guide__table th,
#jsh-product-guide .jsh-product-guide__table td {
    padding: 11px 14px !important;
    text-align: center !important;
    vertical-align: middle !important;
    border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
    white-space: nowrap !important;
}
#jsh-product-guide .jsh-product-guide__table thead th {
    background: var(--jsh-black, #1a1a1a) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: .02em !important;
    border-bottom: 0 !important;
}
#jsh-product-guide .jsh-product-guide__table tbody tr:last-child td { border-bottom: 0 !important; }
#jsh-product-guide .jsh-product-guide__table tbody tr:nth-child(even):not(.jsh-product-guide__row-group) td {
    background: rgba(0, 0, 0, .02) !important;
}
#jsh-product-guide .jsh-product-guide__table .jsh-product-guide__row-label {
    text-align: left !important;
    font-weight: 600 !important;
    background: rgba(0, 0, 0, .03) !important;
    color: var(--jsh-black, #1a1a1a) !important;
    position: sticky !important;
    left: 0 !important;
    z-index: 1 !important;
    box-shadow: 1px 0 0 rgba(0, 0, 0, .08) !important;
}
#jsh-product-guide .jsh-product-guide__table thead th.jsh-product-guide__row-label {
    background: var(--jsh-black, #1a1a1a) !important;
    color: #fff !important;
    box-shadow: 1px 0 0 rgba(255, 255, 255, .15) !important;
}
#jsh-product-guide .jsh-product-guide__table .jsh-product-guide__row-group td {
    background: rgba(176, 141, 87, .1) !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    color: var(--jsh-accent, #b08d57) !important;
    padding: 10px 14px !important;
}

/* Link "Tabela rozmiarów" w picker-ze — cursor pointer zamiast domyślnego z <a href="#"> */
#jsh-product .jsh-product-size-row__guide {
    cursor: pointer !important;
}

/* ── Mobile: bottom sheet ── */
@media (max-width: 640px) {
    #jsh-product-guide {
        padding: 0 !important;
        align-items: flex-end !important;
    }
    #jsh-product-guide .jsh-product-guide__sheet {
        max-width: 100% !important;
        max-height: 92vh !important;
        border-radius: 16px 16px 0 0 !important;
        transform: translateY(100%) !important;
    }
    #jsh-product-guide.jsh-product-guide--open .jsh-product-guide__sheet {
        transform: translateY(0) !important;
    }
    /* Drag handle na górze (czysto wizualny) */
    #jsh-product-guide .jsh-product-guide__header {
        padding: 16px 20px !important;
        position: relative !important;
    }
    #jsh-product-guide .jsh-product-guide__header::before {
        content: '' !important;
        position: absolute !important;
        top: 8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 40px !important;
        height: 4px !important;
        border-radius: 2px !important;
        background: rgba(0, 0, 0, .18) !important;
    }
    #jsh-product-guide .jsh-product-guide__title { font-size: 20px !important; }
    #jsh-product-guide .jsh-product-guide__body {
        padding: 20px !important;
        gap: 22px !important;
    }
    #jsh-product-guide .jsh-product-guide__table th,
    #jsh-product-guide .jsh-product-guide__table td {
        padding: 9px 10px !important;
        font-size: 13px !important;
    }
    #jsh-product-guide .jsh-product-guide__group-title { font-size: 16px !important; }
}

/* ── Tablet: trochę mniejszy padding ── */
@media (max-width: 960px) and (min-width: 641px) {
    #jsh-product-guide { padding: 16px !important; }
    #jsh-product-guide .jsh-product-guide__sheet { max-height: 92vh !important; }
}

/* ============================================================
   PAGINACJA KATEGORII (1.7.0)
   ============================================================ */
#jsh-category .jsh-cat-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 44px 0 8px !important;
    flex-wrap: wrap !important;
}

#jsh-category .jsh-page-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    font-family: var(--jsh-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--jsh-mid-gray) !important;
    background: var(--jsh-cream) !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: all var(--jsh-transition) !important;
}

#jsh-category a.jsh-page-pill:hover {
    color: var(--jsh-black) !important;
    background: #ece5dc !important;
}

#jsh-category .jsh-page-pill--active {
    background: var(--jsh-black) !important;
    color: var(--jsh-white) !important;
}

#jsh-category .jsh-page-pill--dots {
    background: transparent !important;
    min-width: 24px !important;
    padding: 0 !important;
}

@media (max-width: 640px) {
    #jsh-category .jsh-page-pill {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOT SALE (1.8.0)
   ═══════════════════════════════════════════════════════════ */

/* Badge HOT na kartach produktow (kategoria + strona HOT SALE) */
#jsh-category .jsh-cat-card__badge--hot {
    background: linear-gradient(135deg, #e0432d, #f07c1f);
    color: #fff;
}

/* Pozycja HOT SALE w menu glownym */
.jsh-nav__list .jsh-menu-hot > a {
    color: #e0432d !important;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.jsh-nav__list .jsh-menu-hot > a::after {
    content: "\1F525";
    margin-left: 4px;
    font-size: 0.85em;
}
.jsh-nav__list .jsh-menu-hot > a:hover {
    color: #b3361f !important;
}

/* Naglowek strony HOT SALE */
.jsh-hotsale .jsh-hot-hero {
    background: linear-gradient(135deg, #1c1c1c 0%, #3a1510 55%, #b3361f 130%);
    padding: 72px 24px 56px;
    text-align: center;
    color: #fff;
}
.jsh-hotsale .jsh-hot-hero__flame {
    display: block;
    font-size: 40px;
    margin-bottom: 8px;
}
.jsh-hotsale .jsh-hot-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 6vw, 56px);
    letter-spacing: 0.06em;
    margin: 0 0 10px;
    color: #fff;
}
.jsh-hotsale .jsh-hot-hero__meta {
    opacity: 0.85;
    font-size: 15px;
}
.jsh-hotsale .jsh-cat-grid-wrap {
    padding-top: 28px;
}
@media (max-width: 640px) {
    .jsh-hotsale .jsh-hot-hero {
        padding: 48px 16px 36px;
    }
}

/* ═══════════════════════════════════════════════════════════
   PRODUKTY NIEDOSTĘPNE (1.14.0)
   ═══════════════════════════════════════════════════════════ */

/* Plakietka "Niedostępny" — neutralna szarość, przebija HOT/Sale/Hit/Nowość */
#jsh-category .jsh-cat-card__badge--oos,
#jsh-product  .jsh-cat-card__badge--oos {
    background: #6f6a64 !important;
    color: #fff !important;
}

/* Cała karta wygaszona — czytelny sygnał "tego teraz nie kupisz" */
#jsh-category .jsh-cat-card--oos .jsh-cat-card__img img,
#jsh-product  .jsh-cat-card--oos .jsh-cat-card__img img {
    filter: grayscale(.55) !important;
    opacity: .8 !important;
}

#jsh-category .jsh-cat-card--oos .jsh-cat-card__title,
#jsh-product  .jsh-cat-card--oos .jsh-cat-card__title {
    color: var(--jsh-warm-gray, #8a8178) !important;
}

#jsh-category .jsh-cat-card--oos .jsh-cat-card__price-current,
#jsh-product  .jsh-cat-card--oos .jsh-cat-card__price-current {
    color: var(--jsh-warm-gray, #8a8178) !important;
    font-weight: 600 !important;
}

/* Strona produktu: przycisk "Niedostępny" ma wyglądać na martwy */
#jsh-product .jsh-product-atc__btn[data-oos] {
    background: #6f6a64 !important;
    opacity: .55 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
}

/* ── Hero: tryb "własna grafika" (1.15.0) ─────────────────────────────
   Kolaż jest gridem; przy jednej grafice grid trzeba wyłączyć, inaczej
   obrazek wyląduje w pierwszej komórce zamiast wypełnić tło.
   !important, bo Divi nadpisuje reguły obrazków w treści. */
#jsh-homepage .jsh-hero__mosaic--single {
    display: block !important;
}
#jsh-homepage .jsh-hero__single-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* ── Stopka: adres siedziby (1.15.0) ─────────────────────────────── */
#jsh-footer .jsh-footer__contact-item--address {
    align-items: flex-start;
}
#jsh-footer .jsh-footer__contact-item--address svg {
    margin-top: 3px;
    flex: 0 0 auto;
}
