:root {
    --sk-bg: #f7f4ec;
    --sk-panel: #fffdf8;
    --sk-ink: #12211a;
    --sk-muted: #5e6d66;
    --sk-primary: #255f45;
    --sk-primary-strong: #173d2d;
    --sk-accent: #d4955b;
    --sk-line: rgba(18, 33, 26, 0.1);
    --sk-shadow: 0 20px 60px rgba(14, 23, 18, 0.08);
    --sk-radius: 24px;
    --sk-shell: min(1060px, calc(100vw - 64px));
}

/* Hide ModernCart entirely */
.moderncart-floating-cart-button,
.moderncart-plugin,
.moderncart-modal,
.moderncart-modal-wrap { display: none !important; }

html {
    scroll-behavior: smooth;
}

body.smart-kubek-mvp-page {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(212, 149, 91, 0.18), transparent 32%),
        linear-gradient(180deg, #fffdf7 0%, #f3eee4 100%);
    color: var(--sk-ink);
    font-family: ui-rounded, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

.smart-kubek-mvp-page * {
    box-sizing: border-box;
}

.smart-kubek-mvp-page a {
    color: inherit;
    text-decoration: none;
}

.smart-kubek-mvp-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sk-shell {
    width: var(--sk-shell);
    margin: 0 auto;
}

.sk-topbar {
    background: linear-gradient(90deg, var(--sk-primary-strong), #274d3b 55%, #4b6f44);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.sk-topbar .sk-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sk-header-inner,
.sk-sticky-inner,
.sk-footer-inner,
.sk-proof-grid,
.sk-final-grid,
.sk-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sk-countdown {
    color: #ffdfba;
}

.sk-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(255, 252, 245, 0.8);
    border-bottom: 1px solid var(--sk-line);
}

body.admin-bar .sk-header {
    top: 32px;
}

.sk-header-inner {
    min-height: 76px;
}

.sk-logo {
    display: inline-flex;
    align-items: baseline;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.sk-logo span {
    color: var(--sk-ink);
}

.sk-logo em {
    color: var(--sk-accent);
    font-style: normal;
}

.sk-mini-cta,
.sk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sk-mini-cta,
.sk-button-primary {
    background: linear-gradient(135deg, var(--sk-primary) 0%, var(--sk-primary-strong) 100%);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(37, 95, 69, 0.18);
}

.sk-mini-cta {
    min-height: 46px;
    padding: 0 18px;
    font-weight: 700;
}

.sk-button {
    min-height: 58px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 700;
}

.sk-button:hover,
.sk-mini-cta:hover {
    transform: translateY(-1px);
}

.sk-button-ghost {
    border: 1px solid var(--sk-line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--sk-ink);
}

.sk-button-full {
    width: 100%;
}

/* Header actions */
.sk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--sk-ink);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

.sk-cart-count {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--sk-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Cart overlay */
.sk-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sk-cart-overlay--open {
    opacity: 1;
    visibility: visible;
}

/* Cart sidebar */
.sk-cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    background: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
}

.sk-cart-sidebar--open {
    transform: translateX(0);
}

.sk-cart-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--sk-line);
}

.sk-cart-sidebar-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.sk-cart-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--sk-muted);
    padding: 4px;
}

.sk-cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.sk-cart-empty {
    text-align: center;
    color: var(--sk-muted);
    padding: 40px 0;
}

.sk-cart-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--sk-line);
}

.sk-cart-item img {
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.sk-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.sk-cart-item-info strong {
    font-size: 15px;
}

.sk-cart-item-info span,
.sk-cart-item-price {
    font-size: 13px;
    color: var(--sk-muted);
}

.sk-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    border: 1px solid var(--sk-line);
    border-radius: 10px;
    overflow: hidden;
}

.sk-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--sk-ink);
    transition: background .15s;
    padding: 0;
    line-height: 1;
}

.sk-qty-btn:hover {
    background: rgba(0, 0, 0, .06);
}

.sk-qty-val {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.sk-cart-sidebar-foot {
    padding: 20px 24px;
    border-top: 1px solid var(--sk-line);
}

.sk-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.sk-cart-total strong {
    font-size: 22px;
    color: var(--sk-primary-strong);
}

.sk-cart-note {
    text-align: center;
    font-size: 12px;
    color: var(--sk-muted);
    margin-top: 10px;
}

.sk-hero {
    padding: 56px 0 30px;
}

.sk-hero-grid {
    align-items: stretch;
    gap: 42px;
}

.sk-copy,
.sk-hero-visual {
    flex: 1 1 0;
}

.sk-copy {
    padding: 22px 0;
}

.sk-badge,
.sk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--sk-primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.sk-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 95, 69, 0.08);
}

.sk-copy h1,
.sk-section-head h2,
.sk-final h2 {
    margin: 0;
    letter-spacing: -0.05em;
    line-height: 0.96;
}

.sk-copy h1 {
    font-size: clamp(42px, 8vw, 84px);
    max-width: 10ch;
}

.sk-lead,
.sk-section-head p,
.sk-review p,
.sk-step p,
.sk-benefits p,
.sk-final p,
.sk-faq-item p {
    color: var(--sk-muted);
    line-height: 1.75;
}

.sk-lead {
    font-size: 18px;
    max-width: 62ch;
    margin: 20px 0 0;
}

.sk-checks {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sk-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.sk-checks li::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: 0 0 24px;
    background: linear-gradient(135deg, var(--sk-accent), #f4c38b);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.55);
}

.sk-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
    margin: 28px 0 0;
}

.sk-price-old {
    font-size: 24px;
    color: #8f968f;
    text-decoration: line-through;
}

.sk-price-current {
    font-size: clamp(36px, 7vw, 58px);
    font-weight: 900;
    color: var(--sk-primary-strong);
}

.sk-price-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #d14124;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.sk-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 0;
}

.sk-trustline,
.sk-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.sk-trustline span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--sk-line);
    background: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.sk-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 1px;
    margin-right: 2px;
}

.sk-trust-inpost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sk-inpost-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #FFCB05;
    color: #3C3C3C;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.3px;
    padding: 3px 8px 3px 5px;
    border-radius: 999px;
    line-height: 1;
}

.sk-inpost-sun {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sk-payments {
    gap: 10px;
}

/* ── Payment badges ── */
.sk-pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--sk-line);
    background: #fff;
    height: 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
    user-select: none;
    white-space: nowrap;
}

.sk-pay-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* BLIK */
.sk-pay-blik {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: hidden;
    border-radius: 8px;
}
.sk-pay-blik .sk-pay-img {
    height: 42px;
    width: auto;
    display: block;
    border-radius: 8px;
}

/* Visa */
.sk-pay-visa {
    color: #1A1F71;
    font-size: 20px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Mastercard */
.sk-pay-mc {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1A1A1A;
    gap: 6px;
}
.sk-mc-circles {
    position: relative;
    width: 30px;
    height: 20px;
    display: inline-flex;
    flex-shrink: 0;
}
.sk-mc-red {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #EB001B;
}
.sk-mc-orange {
    position: absolute;
    left: 10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F79E1B;
}

/* Apple Pay */
.sk-pay-apple {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    gap: 3px;
}
.sk-apple-logo {
    width: 16px;
    height: 19px;
    margin-top: -2px;
}

/* Google Pay */
.sk-pay-gpay {
    color: #5F6368;
    font-size: 17px;
    font-weight: 600;
    gap: 4px;
}
.sk-gpay-g {
    width: 20px;
    height: 20px;
}


.sk-hero-card,
.sk-floating-review,
.sk-step,
.sk-benefits article,
.sk-uses article,
.sk-review,
.sk-final-card,
.sk-faq-item {
    background: var(--sk-panel);
    border: 1px solid rgba(18, 33, 26, 0.08);
    box-shadow: var(--sk-shadow);
}

.sk-hero-card {
    border-radius: 34px;
    padding: 18px;
    overflow: hidden;
    background: var(--sk-bg);
    border-color: transparent;
    box-shadow: none;
    max-width: 420px;
    margin: 0 auto;
}

.sk-hero-card img,
.sk-hero-card video {
    object-fit: contain;
    border-radius: 24px;
    width: 100%;
    display: block;
    background: var(--sk-bg);
}

.sk-floating-review {
    margin: -48px 24px 0 auto;
    max-width: 320px;
    border-radius: 22px;
    padding: 18px 20px;
    position: relative;
}

.sk-live-counter::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: sk-pulse 2s ease-in-out infinite;
}

.sk-counter-sub {
    display: block;
    font-size: 13px;
    color: var(--sk-muted);
    margin-top: 2px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
}

.sk-counter-sub.sk-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sk-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.4); }
}

/* Badge: 1.5s visible, 2s hidden = 3.5s cycle */
@keyframes sk-badge-pulse {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    40%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    46%  { opacity: 0; transform: translateX(-50%) translateY(6px); }
    94%  { opacity: 0; transform: translateX(-50%) translateY(6px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.sk-floating-review strong,
.sk-proof-grid strong,
.sk-review strong,
.sk-final-price strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
}

.sk-floating-review span,
.sk-proof-grid span,
.sk-review span,
.sk-sticky-label {
    color: var(--sk-muted);
    font-size: 14px;
}

.sk-proof {
    padding: 22px 0 18px;
}

.sk-proof-grid {
    gap: 18px;
}

.sk-proof-grid > div {
    flex: 1 1 0;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid var(--sk-line);
    background: rgba(255,255,255,0.56);
}

.sk-section {
    padding: 82px 0;
}

.sk-gallery-section {
    padding: 0 0 20px;
}
.sk-gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f2f2f0;
    max-width: 380px;
    margin: 0 auto;
    box-shadow: 0 12px 48px rgba(0,0,0,0.13);
}
.sk-gallery-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.sk-gallery-track picture {
    display: contents;
}
.sk-gallery-slide {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: auto;
}
.sk-gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.sk-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.sk-gallery-dot.active {
    background: rgba(0,0,0,0.6);
    transform: scale(1.3);
}

.sk-gallery-track {
    touch-action: pan-y;
}

.sk-section-contrast {
    background: linear-gradient(180deg, rgba(32, 73, 55, 0.06), rgba(255,255,255,0));
}

.sk-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.sk-section-head h2,
.sk-final h2 {
    font-size: clamp(34px, 6vw, 62px);
}

.sk-steps,
.sk-benefits,
.sk-uses,
.sk-reviews {
    display: grid;
    gap: 18px;
}

.sk-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sk-step,
.sk-benefits article,
.sk-uses article,
.sk-review,
.sk-final-card {
    border-radius: 26px;
    padding: 28px;
}

.sk-step span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--sk-primary), var(--sk-accent));
    color: #fff;
    font-weight: 800;
}

.sk-step h3,
.sk-benefits h3,
.sk-uses h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

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

.sk-uses {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sk-uses article {
    text-align: center;
    padding-top: 34px;
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    transition: opacity .35s ease, transform .35s ease;
}

.sk-uses article.sk-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sk-uses article:nth-child(1) { transition-delay: 0s; }
.sk-uses article:nth-child(2) { transition-delay: .4s; }
.sk-uses article:nth-child(3) { transition-delay: .8s; }
.sk-uses article:nth-child(4) { transition-delay: 1.2s; }
.sk-uses article:nth-child(5) { transition-delay: 1.6s; }

.sk-uses span {
    display: block;
    font-size: 34px;
    margin-bottom: 10px;
}

.sk-social {
    background: linear-gradient(180deg, #173d2d 0%, #10281e 100%);
    color: #fff;
}

.sk-section-head-light .sk-kicker,
.sk-section-head-light p {
    color: rgba(255, 255, 255, 0.75);
}

.sk-section-head-light h2 {
    color: #fff;
}

.sk-reviews-carousel {
    position: relative;
    overflow: hidden;
}

.sk-reviews-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 12px;
}

.sk-reviews-track::-webkit-scrollbar {
    display: none;
}

.sk-review {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
    padding: 28px;
}


.sk-review p,
.sk-review span {
    color: rgba(255,255,255,0.8);
}

.sk-stars {
    color: #ffc86d;
    letter-spacing: 0.15em;
    font-size: 18px;
}

.sk-faq-list {
    display: grid;
    gap: 12px;
}

.sk-faq-item {
    border-radius: 20px;
    overflow: hidden;
}

.sk-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 48px 22px 24px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
}

.sk-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 400;
    color: var(--sk-muted);
    transition: transform .2s ease;
}

.sk-faq-item[open] summary::after {
    content: '−';
}

.sk-faq-item summary::-webkit-details-marker {
    display: none;
}

.sk-faq-item div {
    padding: 0 24px 22px;
}

.sk-final {
    padding-bottom: 110px;
}

.sk-final-grid {
    align-items: stretch;
}

.sk-final-grid > * {
    flex: 1 1 0;
}

.sk-final-copy {
    display: grid;
    gap: 16px;
}

.sk-final-highlights {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sk-final-highlights li {
    position: relative;
    padding-left: 26px;
    color: var(--sk-ink);
    font-weight: 600;
}

.sk-final-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sk-primary);
    font-weight: 800;
}

.sk-final-video {
    margin-bottom: 14px;
    border-radius: 24px;
    background: var(--sk-panel);
    border: 1px solid var(--sk-line);
    padding: 10px;
    box-shadow: var(--sk-shadow);
}

.sk-final-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: var(--sk-bg);
}

.sk-final-card ul {
    margin: 20px 0 0;
    padding-left: 18px;
    color: var(--sk-muted);
}

.sk-final-price {
    margin-bottom: 18px;
}

.sk-final-price span {
    color: #8f968f;
    text-decoration: line-through;
}

.sk-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--sk-line);
}

.sk-footer {
    padding: 22px 0 100px;
    border-top: 1px solid var(--sk-line);
}

.sk-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* Currently viewing widget */
.sk-viewing-widget {
    position: fixed;
    bottom: 90px;
    left: 16px;
    z-index: 45;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--sk-line);
    border-radius: 40px;
    padding: 8px 16px 8px 12px;
    font-size: 13px;
    color: var(--sk-ink);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: opacity .3s ease, transform .3s ease;
    white-space: nowrap;
}

.sk-viewing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
    animation: sk-viewing-blink 2s ease-in-out infinite;
}

@keyframes sk-viewing-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.sk-viewing-widget strong {
    font-weight: 800;
    font-size: 14px;
}

@media (max-width: 1024px) {
    :root {
        --sk-shell: min(1060px, calc(100vw - 48px));
    }

    .sk-hero-grid,
    .sk-final-grid,
    .sk-proof-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .sk-header-inner {
        min-height: 62px;
    }

    .sk-steps {
        grid-template-columns: 1fr;
    }

    .sk-benefits,
    .sk-uses {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sk-section {
        padding: 56px 0;
    }

    .sk-hero {
        padding: 36px 0 20px;
    }

    .sk-hero-grid {
        gap: 28px;
    }

    .sk-copy h1 {
        max-width: none;
    }

    .sk-floating-review {
        margin: -30px 20px 0 auto;
        max-width: 280px;
    }

    .sk-final {
        padding-bottom: 80px;
    }

    .sk-sticky-inner {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 782px) {
    body.admin-bar .sk-header {
        top: 46px;
    }
}

@media (max-width: 720px) {
    :root {
        --sk-shell: min(1060px, calc(100vw - 32px));
    }

    /* Topbar */
    .sk-topbar {
        font-size: 12px;
        padding: 8px 0;
    }

    .sk-topbar .sk-shell {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    /* Header: always horizontal */
    .sk-header-inner {
        min-height: 56px;
        flex-direction: row !important;
        justify-content: space-between;
    }

    .sk-logo {
        font-size: 22px;
    }

    .sk-mini-cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }

    /* Hero */
    .sk-hero {
        padding: 20px 0 12px;
    }

    .sk-hero-grid {
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

    .sk-hero-visual {
        order: -1;
    }

    .sk-copy {
        padding: 0;
        text-align: center;
    }

    .sk-copy h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .sk-badge {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 8px;
        display: inline-block;
    }

    .sk-lead {
        font-size: 15px;
        margin-top: 10px;
        line-height: 1.5;
    }

    .sk-checks {
        margin-top: 14px;
        gap: 6px;
        font-size: 14px;
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .sk-checks li {
        gap: 8px;
    }

    .sk-checks li::before {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .sk-price-row {
        margin-top: 16px;
        gap: 10px;
        justify-content: center;
    }

    .sk-price-old {
        font-size: 18px;
    }

    .sk-price-pill {
        font-size: 12px;
        padding: 5px 10px;
    }

    /* CTAs */
    .sk-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 18px;
    }

    .sk-button {
        min-height: 54px;
        font-size: 16px;
        padding: 0 22px;
        width: 100%;
        justify-content: center;
        border-radius: 16px;
    }

    .sk-mini-cta {
        width: auto;
    }

    /* Trust lines & payments */
    .sk-trustline,
    .sk-payments {
        gap: 6px;
        margin-top: 12px;
        justify-content: center;
    }

    .sk-trustline {
        flex-wrap: wrap;
    }

    .sk-trustline span {
        padding: 6px 10px;
        font-size: 11px;
    }

    .sk-payments {
        flex-wrap: wrap;
    }

    /* Hero visual */
    .sk-hero-card {
        border-radius: 20px;
        padding: 10px;
        max-width: 360px;
        margin: 0 auto;
    }

    .sk-hero-card img,
    .sk-hero-card video {
        border-radius: 14px;
    }

    .sk-floating-review {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        max-width: none;
        width: auto;
        border-radius: 40px;
        padding: 8px 16px 8px 12px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        white-space: nowrap;
        animation: sk-badge-pulse 3.5s ease-in-out infinite;
    }

    .sk-hero-visual {
        position: relative;
    }

    .sk-floating-review strong {
        font-size: 13px;
        display: inline;
    }

    .sk-counter-sub {
        font-size: 11px;
        display: none;
    }

    .sk-live-counter::before {
        position: static;
        margin-right: 2px;
        flex-shrink: 0;
    }

    /* Proof bar */
    .sk-proof {
        padding: 14px 0;
    }

    .sk-proof-grid {
        flex-direction: column;
        gap: 0;
    }

    .sk-proof-grid > div {
        padding: 14px 18px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--sk-line);
        background: transparent;
    }

    .sk-proof-grid > div:last-child {
        border-bottom: none;
    }

    .sk-proof-grid strong {
        font-size: 16px !important;
    }

    .sk-proof-grid span {
        font-size: 12px;
    }

    /* Sections */
    .sk-section {
        padding: 36px 0;
    }

    .sk-gallery-section {
        padding: 0 0 10px;
    }

    .sk-gallery-carousel {
        max-width: 320px;
        border-radius: 16px;
    }

    .sk-section-head {
        margin-bottom: 18px;
        text-align: center;
    }

    .sk-copy h1,
    .sk-section-head h2,
    .sk-final h2 {
        letter-spacing: -0.04em;
    }

    .sk-kicker {
        font-size: 11px;
        margin-bottom: 10px;
    }

    /* Steps */
    .sk-step,
    .sk-benefits article,
    .sk-final-card {
        padding: 22px;
        border-radius: 20px;
    }

    .sk-step h3,
    .sk-benefits h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .sk-step p,
    .sk-benefits p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Uses — 2 columns for readability */
    .sk-benefits,
    .sk-uses {
        grid-template-columns: 1fr;
    }

    .sk-uses {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sk-uses article {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .sk-uses span {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .sk-uses h3 {
        font-size: 14px !important;
    }

    /* Faster stagger on mobile */
    .sk-uses article:nth-child(1) { transition-delay: 0s; }
    .sk-uses article:nth-child(2) { transition-delay: .15s; }
    .sk-uses article:nth-child(3) { transition-delay: .3s; }
    .sk-uses article:nth-child(4) { transition-delay: .45s; }
    .sk-uses article:nth-child(5) { transition-delay: .6s; }

    /* Reviews */
    .sk-reviews-track {
        padding: 4px 16px 12px;
        gap: 14px;
        scroll-padding-left: 16px;
    }

    .sk-review {
        flex: 0 0 280px;
        padding: 22px;
        border-radius: 20px;
    }

    .sk-review p {
        font-size: 14px;
        line-height: 1.6;
    }

    .sk-review strong {
        font-size: 16px !important;
    }

    .sk-stars {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* FAQ */
    .sk-faq-list {
        gap: 10px;
    }

    .sk-faq-item summary {
        padding: 18px 44px 18px 20px;
        font-size: 16px;
        position: relative;
    }

    .sk-faq-item summary::after {
        content: '+';
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: 400;
        color: var(--sk-muted);
        transition: transform .2s ease;
    }

    .sk-faq-item[open] summary::after {
        content: '−';
    }

    .sk-faq-item div {
        padding: 0 20px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .sk-faq-item {
        border-radius: 16px;
    }

    /* Final CTA */
    .sk-final {
        padding-bottom: 60px;
    }

    .sk-final-grid > div:first-child {
        text-align: center;
    }

    .sk-final-grid > div:first-child h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .sk-final-grid > div:first-child p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .sk-final-highlights {
        text-align: left;
        gap: 6px;
        margin-top: 2px;
    }

    .sk-final-highlights li {
        font-size: 14px;
        line-height: 1.45;
    }

    .sk-final-video {
        margin: 2px auto 12px;
        max-width: 340px;
        border-radius: 18px;
        padding: 8px;
    }

    .sk-final-video video {
        border-radius: 12px;
    }

    .sk-final-card {
        border-radius: 20px;
        text-align: center;
    }

    .sk-final-price {
        margin-bottom: 14px;
    }

    .sk-final-price strong {
        font-size: 28px !important;
    }

    .sk-final-card ul {
        font-size: 14px;
        text-align: left;
    }

    /* Sticky CTA */
    .sk-sticky-cta {
        padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }

    .sk-sticky-inner {
        flex-direction: row !important;
        align-items: center;
        gap: 14px;
    }

    .sk-sticky-label {
        font-size: 10px !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0.7;
    }

    .sk-sticky-inner strong {
        font-size: 20px;
    }

    .sk-sticky-inner .sk-button {
        min-height: 48px;
        padding: 0 24px;
        font-size: 15px;
        width: auto;
        flex-shrink: 0;
        border-radius: 14px;
    }

    /* Footer */
    .sk-footer {
        padding: 18px 0 90px;
        text-align: center;
    }

    .sk-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sk-footer nav {
        justify-content: center;
        gap: 14px;
        font-size: 13px;
    }

    .sk-footer p {
        font-size: 13px;
        color: var(--sk-muted);
    }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
    :root {
        --sk-shell: min(1060px, calc(100vw - 24px));
    }

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

    .sk-review {
        flex: 0 0 240px;
    }

    .sk-floating-review {
        padding: 7px 14px 7px 10px;
    }

    .sk-floating-review strong {
        font-size: 12px;
    }

    .sk-payments {
        flex-wrap: wrap;
    }

    .sk-pay-badge {
        height: 36px;
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .sk-pay-visa {
        font-size: 16px;
    }

    .sk-pay-apple,
    .sk-pay-gpay {
        font-size: 14px;
    }

    .sk-pay-payu {
        padding: 4px 6px;
    }

    .sk-pay-payu .sk-pay-img-round {
        height: 24px;
    }
}