/* ============================================
   u Henia szyte - Main Stylesheet
   ============================================
   1.  Design Tokens (CSS Variables)
   2.  Reset & Base
   3.  Typography
   4.  Layout
   5.  Buttons
   6.  Forms
   7.  Decorations & Utilities
   8.  Header & Top bar
   9.  Footer
   10. Homepage Sections
   11. Product Card (reused)
   12. Page Templates
   13. WooCommerce Archive
   14. Blog / 404
   15. Responsive
   16. Animations
   ============================================ */


/* ===========================
   1. DESIGN TOKENS
   =========================== */
:root {
    /* Paleta kolorów */
    --uhs-cream:        #FAF5EE;
    --uhs-cream-2:      #FDF8F2;
    --uhs-cream-warm:   #FFF5F1;
    --uhs-graphite:     #2D2D34;
    --uhs-graphite-soft:#4A4A55;
    --uhs-yellow:       #EBCB68;
    --uhs-yellow-soft:  #F5E4B5;
    --uhs-coral:        #E8A598;
    --uhs-coral-soft:   #F5D3CC;
    --uhs-mint:         #99C7A9;
    --uhs-mint-soft:    #CCE3D3;
    --uhs-blue:         #95B2D1;
    --uhs-blue-soft:    #C9D9E8;

    /* Neutralne */
    --uhs-white:        #ffffff;
    --uhs-border:       rgba(45, 45, 52, 0.08);
    --uhs-border-warm:  rgba(232, 165, 152, 0.25);

    /* Typografia */
    --uhs-font-display: 'Fredoka', 'Segoe UI', Roboto, system-ui, sans-serif;
    --uhs-font-body:    'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Rozmiary tekstu */
    --uhs-text-xs:   0.8125rem;  /* 13px */
    --uhs-text-sm:   0.9375rem;  /* 15px */
    --uhs-text-base: 1.0625rem;  /* 17px */
    --uhs-text-lg:   1.25rem;
    --uhs-text-xl:   1.5rem;
    --uhs-text-2xl:  2rem;
    --uhs-text-3xl:  2.75rem;
    --uhs-text-4xl:  3.5rem;
    --uhs-text-5xl:  4.5rem;

    /* Spacing */
    --uhs-space-1: 0.25rem;
    --uhs-space-2: 0.5rem;
    --uhs-space-3: 0.75rem;
    --uhs-space-4: 1rem;
    --uhs-space-6: 1.5rem;
    --uhs-space-8: 2rem;
    --uhs-space-12: 3rem;
    --uhs-space-16: 4rem;
    --uhs-space-20: 5rem;
    --uhs-space-24: 6rem;
    --uhs-space-32: 8rem;

    /* Promienie */
    --uhs-radius-sm:  12px;
    --uhs-radius-md:  20px;
    --uhs-radius-lg:  28px;
    --uhs-radius-xl:  40px;
    --uhs-radius-full: 999px;

    /* Cienie (miękkie, kolorowe) */
    --uhs-shadow-sm:    0 2px 8px rgba(45, 45, 52, 0.06);
    --uhs-shadow-md:    0 8px 24px rgba(45, 45, 52, 0.08);
    --uhs-shadow-lg:    0 20px 60px rgba(45, 45, 52, 0.12);
    --uhs-shadow-coral: 0 12px 32px rgba(232, 165, 152, 0.35);
    --uhs-shadow-mint:  0 12px 32px rgba(153, 199, 169, 0.35);
    --uhs-shadow-yellow:0 12px 32px rgba(235, 203, 104, 0.4);

    /* Transitions */
    --uhs-transition: 260ms cubic-bezier(0.4, 0, 0.2, 1);
    --uhs-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --uhs-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --uhs-container: 1350px;
    --uhs-container-narrow: 900px;
}


/* ===========================
   2. RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--uhs-font-body);
    font-size: var(--uhs-text-base);
    line-height: 1.65;
    color: var(--uhs-graphite);
    background-color: var(--uhs-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--uhs-graphite);
    text-decoration: none;
    transition: color var(--uhs-transition);
}

a:hover {
    color: var(--uhs-coral);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

ul, ol {
    padding-left: 1.25rem;
}

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

.uhs-skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    z-index: 1000;
    padding: 8px 16px;
    background: var(--uhs-graphite);
    color: white;
    border-radius: var(--uhs-radius-sm);
}

.uhs-skip-link:focus {
    top: 10px;
}


/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--uhs-font-display);
    font-weight: 600;
    color: var(--uhs-graphite);
    margin: 0 0 var(--uhs-space-4);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: var(--uhs-text-4xl); font-weight: 700; }
h2 { font-size: var(--uhs-text-3xl); }
h3 { font-size: var(--uhs-text-xl); font-weight: 600; }
h4 { font-size: var(--uhs-text-lg); }

p {
    margin: 0 0 var(--uhs-space-4);
}

.uhs-lead {
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite-soft);
    line-height: 1.55;
    max-width: 48ch;
}

.uhs-eyebrow {
    display: inline-block;
    font-family: var(--uhs-font-display);
    font-weight: 500;
    font-size: var(--uhs-text-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--uhs-coral);
    background: var(--uhs-coral-soft);
    padding: 0.5rem 1.1rem;
    border-radius: var(--uhs-radius-full);
    margin-bottom: var(--uhs-space-4);
}

.uhs-eyebrow-coral  { color: #C4776A;    background: var(--uhs-coral-soft);  }
.uhs-eyebrow-mint   { color: #4A8962;    background: var(--uhs-mint-soft);   }
.uhs-eyebrow-yellow { color: #8B6A1E;    background: var(--uhs-yellow-soft); }
.uhs-eyebrow-blue   { color: #3C6492;    background: var(--uhs-blue-soft);   }

.uhs-eyebrow-wave::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: uhs-pulse 1.8s ease-in-out infinite;
}

.uhs-eyebrow-highlight {
    font-size: var(--uhs-text-base);
    padding: 0.6rem 1.4rem;
}


/* ===========================
   4. LAYOUT
   =========================== */
.uhs-container {
    width: 100%;
    max-width: var(--uhs-container);
    margin: 0 auto;
    padding: 0 var(--uhs-space-6);
}

.uhs-container-narrow {
    max-width: var(--uhs-container-narrow);
}

.uhs-section {
    position: relative;
    padding: var(--uhs-space-24) 0;
    overflow: hidden;
}

.uhs-section-bg-alt    { background: var(--uhs-cream-2); }
.uhs-section-bg-cream  { background: var(--uhs-cream-warm); }
.uhs-section-bg-coral  { background: var(--uhs-coral-soft); }

.uhs-section-header {
    margin-bottom: var(--uhs-space-12);
    max-width: 700px;
}

.uhs-section-header-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.uhs-section-header-centered .uhs-lead,
.uhs-section-header-centered .uhs-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.uhs-section-title {
    font-size: var(--uhs-text-3xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--uhs-space-4);
}

.uhs-section-title-xl { font-size: var(--uhs-text-4xl); }

.uhs-section-title-white { color: white; }

.uhs-section-subtitle {
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite-soft);
    max-width: 60ch;
    line-height: 1.55;
}

.uhs-section-cta {
    text-align: center;
    margin-top: var(--uhs-space-12);
}


/* ===========================
   5. BUTTONS
   =========================== */
.uhs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--uhs-font-display);
    font-weight: 600;
    font-size: var(--uhs-text-base);
    padding: 0.95rem 1.75rem;
    border-radius: var(--uhs-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--uhs-transition);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-btn-primary {
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    box-shadow: var(--uhs-shadow-yellow);
}

.uhs-btn-primary:hover {
    background: #F0D577;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(235, 203, 104, 0.55);
    color: var(--uhs-graphite);
}

.uhs-btn-secondary {
    background: var(--uhs-coral);
    color: white;
    box-shadow: var(--uhs-shadow-coral);
}

.uhs-btn-secondary:hover {
    background: #EFB5AA;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(232, 165, 152, 0.55);
    color: white;
}

.uhs-btn-ghost {
    background: transparent;
    color: var(--uhs-graphite);
    border: 2px solid var(--uhs-graphite);
    box-shadow: none;
}

.uhs-btn-ghost:hover {
    background: var(--uhs-graphite);
    color: white;
    transform: translateY(-2px);
}

.uhs-btn-large {
    padding: 1.15rem 2.4rem;
    font-size: var(--uhs-text-lg);
}

.uhs-btn-arrow {
    transition: transform var(--uhs-transition);
}

.uhs-btn:hover .uhs-btn-arrow {
    transform: translateX(4px);
}

.uhs-btn-paw {
    font-size: 1.2em;
    animation: uhs-wag 2.4s ease-in-out infinite;
    display: inline-block;
}

.uhs-ctas-group {
    display: flex;
    gap: var(--uhs-space-4);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


/* ===========================
   6. FORMS
   =========================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-family: var(--uhs-font-body);
    font-size: var(--uhs-text-base);
    color: var(--uhs-graphite);
    background: white;
    border: 2px solid var(--uhs-border);
    border-radius: var(--uhs-radius-md);
    transition: border-color var(--uhs-transition), box-shadow var(--uhs-transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--uhs-coral);
    box-shadow: 0 0 0 4px var(--uhs-coral-soft);
}

label {
    display: block;
    font-weight: 600;
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite);
    margin-bottom: var(--uhs-space-2);
}


/* ===========================
   7. DECORATIONS & UTILITIES
   =========================== */

/* Falbanka separator */
.uhs-scallop {
    position: relative;
    width: 100%;
    height: 40px;
    margin-top: -40px;
    pointer-events: none;
}

.uhs-scallop svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Twinkle / gwiazdki w tle */
.uhs-twinkle-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.uhs-twinkle {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    animation: uhs-twinkle 4s ease-in-out infinite;
}

.uhs-twinkle-1 { top: 12%;  left: 8%;   animation-delay: 0s;   }
.uhs-twinkle-2 { top: 24%;  right: 14%; animation-delay: 1.2s; width: 18px; height: 18px; }
.uhs-twinkle-3 { bottom: 18%; left: 18%; animation-delay: 2.4s; width: 28px; height: 28px; }
.uhs-twinkle-4 { bottom: 10%; right: 10%; animation-delay: 1.8s; }

.uhs-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.45;
}

.uhs-dot-1 { top: 8%;   left: 22%;  background: var(--uhs-coral); }
.uhs-dot-2 { top: 35%;  right: 8%;  background: var(--uhs-mint);  width: 10px; height: 10px; }
.uhs-dot-3 { bottom: 20%; left: 8%; background: var(--uhs-yellow); }
.uhs-dot-4 { top: 60%;  right: 28%; background: var(--uhs-blue);  }
.uhs-dot-5 { bottom: 6%; right: 40%; background: var(--uhs-coral); width: 6px; height: 6px; }

/* Dekoracje (szpulki, igły) */
.uhs-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.uhs-deco {
    position: absolute;
    width: 48px;
    height: 48px;
    opacity: 0.35;
    animation: uhs-float 6s ease-in-out infinite;
}

.uhs-deco svg { width: 100%; height: 100%; }

.uhs-deco-spool-1  { top: 8%;   left: 4%;   animation-delay: 0s;   }
.uhs-deco-spool-2  { bottom: 12%; right: 6%; animation-delay: 2s;  width: 56px; height: 56px; }
.uhs-deco-spool-3  { top: 48%;  left: 90%;  animation-delay: 1s;  width: 40px; height: 40px; }
.uhs-deco-needle-1 { top: 24%;  right: 12%; animation-delay: 3s;  }
.uhs-deco-needle-2 { bottom: 20%; left: 12%; animation-delay: 1.5s; }

.uhs-icon {
    display: inline-block;
    vertical-align: middle;
}

/* Eyebrow / inne utils */
.uhs-stars {
    color: var(--uhs-yellow);
    letter-spacing: 2px;
    font-size: 1.1em;
}

.uhs-stars-big { font-size: 1.8em; }


/* ===========================
   8. HEADER & TOP BAR
   =========================== */

/* Top bar */
.uhs-topbar {
    background: var(--uhs-graphite);
    color: var(--uhs-cream);
    font-size: var(--uhs-text-xs);
    padding: 0.55rem 0;
    overflow: hidden;
    position: relative;
}

.uhs-topbar-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    animation: uhs-topbar-slide 24s linear infinite;
    white-space: nowrap;
}

.uhs-topbar-slide {
    flex-shrink: 0;
}

@keyframes uhs-topbar-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.uhs-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 245, 238, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--uhs-border);
    transition: box-shadow var(--uhs-transition), background var(--uhs-transition);
}

.uhs-header.is-scrolled {
    box-shadow: var(--uhs-shadow-md);
    background: rgba(250, 245, 238, 0.98);
}

.uhs-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--uhs-space-8);
    padding-top: var(--uhs-space-4);
    padding-bottom: var(--uhs-space-4);
}

.uhs-logo a {
    display: block;
    line-height: 0;
}

.uhs-logo img,
.uhs-logo-img {
    max-height: 64px;
    width: auto;
    border-radius: var(--uhs-radius-sm);
    transition: transform var(--uhs-transition);
}

.uhs-logo:hover .uhs-logo-img {
    transform: scale(1.04) rotate(-1deg);
}

/* Navigation */
.uhs-nav {
    display: flex;
    justify-content: center;
}

.uhs-menu {
    display: flex;
    gap: var(--uhs-space-2);
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.uhs-menu > li > a,
.uhs-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-family: var(--uhs-font-display);
    font-weight: 500;
    color: var(--uhs-graphite);
    border-radius: var(--uhs-radius-full);
    position: relative;
    transition: all var(--uhs-transition);
}

.uhs-menu a:hover,
.uhs-menu .current-menu-item > a,
.uhs-menu .current_page_item > a {
    background: var(--uhs-coral-soft);
    color: var(--uhs-graphite);
}

.uhs-menu .menu-item-has-children > a::after {
    content: '▾';
    margin-left: 0.3rem;
    font-size: 0.8em;
}

.uhs-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: white;
    border-radius: var(--uhs-radius-md);
    box-shadow: var(--uhs-shadow-lg);
    padding: var(--uhs-space-2);
    list-style: none;
    margin: 0.5rem 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--uhs-transition);
}

.uhs-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.uhs-menu .sub-menu a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: var(--uhs-radius-sm);
}

/* Header actions */
.uhs-header-actions {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-2);
}

.uhs-header-actions button,
.uhs-header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--uhs-radius-full);
    color: var(--uhs-graphite);
    position: relative;
    transition: all var(--uhs-transition);
}

.uhs-header-actions a:hover,
.uhs-header-actions button:hover {
    background: var(--uhs-coral-soft);
    transform: translateY(-2px);
}

.uhs-cart-link {
    position: relative;
}

.uhs-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--uhs-coral);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--uhs-font-display);
    border-radius: var(--uhs-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile toggle */
.uhs-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: var(--uhs-radius-full);
}

.uhs-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--uhs-graphite);
    border-radius: 4px;
    transition: transform var(--uhs-transition), opacity var(--uhs-transition);
}

.uhs-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.uhs-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.uhs-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Search panel */
.uhs-search-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--uhs-cream-2);
    border-top: 1px solid var(--uhs-border);
    transition: max-height var(--uhs-transition-slow);
}

.uhs-search-panel.is-open {
    max-height: 120px;
    padding: var(--uhs-space-6) 0;
}

.uhs-search-form {
    display: flex;
    gap: var(--uhs-space-2);
    align-items: stretch;
}

.uhs-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: var(--uhs-text-lg);
    border-radius: var(--uhs-radius-full);
}

.uhs-search-submit {
    width: 56px;
    height: 56px;
    background: var(--uhs-yellow);
    border-radius: var(--uhs-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--uhs-transition);
}

.uhs-search-submit:hover {
    background: #F0D577;
    transform: scale(1.05);
}


/* ===========================
   9. FOOTER
   =========================== */

/* Final CTA before footer */
.uhs-final-cta {
    position: relative;
}

.uhs-final-cta-inner {
    position: relative;
    padding: var(--uhs-space-24) 0;
    background:
        radial-gradient(circle at 20% 30%, var(--uhs-coral-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--uhs-mint-soft)  0%, transparent 50%),
        var(--uhs-cream-warm);
    text-align: center;
    overflow: hidden;
}

.uhs-final-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--uhs-space-6);
    box-shadow: var(--uhs-shadow-lg);
    animation: uhs-bob 4s ease-in-out infinite;
}

.uhs-final-cta h2 {
    font-size: var(--uhs-text-4xl);
    margin-bottom: var(--uhs-space-6);
}

.uhs-final-cta p {
    font-size: var(--uhs-text-lg);
    max-width: 560px;
    margin: 0 auto var(--uhs-space-8);
    color: var(--uhs-graphite-soft);
}

/* Footer */
.uhs-footer {
    background: var(--uhs-graphite);
    color: var(--uhs-cream);
    padding: var(--uhs-space-20) 0 var(--uhs-space-6);
    position: relative;
}

.uhs-footer a {
    color: var(--uhs-cream);
}

.uhs-footer a:hover {
    color: var(--uhs-coral);
}

.uhs-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--uhs-space-12);
    margin-bottom: var(--uhs-space-16);
}

.uhs-footer-logo {
    width: 84px;
    height: 84px;
    border-radius: var(--uhs-radius-md);
    margin-bottom: var(--uhs-space-4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.uhs-footer-tagline {
    font-size: var(--uhs-text-sm);
    color: rgba(250, 245, 238, 0.75);
    line-height: 1.55;
    max-width: 28ch;
}

.uhs-footer-socials {
    display: flex;
    gap: var(--uhs-space-2);
    margin: var(--uhs-space-6) 0;
}

.uhs-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 245, 238, 0.1);
    border-radius: var(--uhs-radius-full);
    color: var(--uhs-cream);
    transition: all var(--uhs-transition);
}

.uhs-social-link:hover {
    background: var(--uhs-coral);
    transform: translateY(-3px) rotate(-6deg);
}

.uhs-footer-contact {
    font-size: var(--uhs-text-sm);
    line-height: 1.7;
}

.uhs-footer-contact small {
    color: rgba(250, 245, 238, 0.65);
}

.uhs-footer h4 {
    font-size: var(--uhs-text-lg);
    color: var(--uhs-cream);
    margin-bottom: var(--uhs-space-4);
}

.uhs-footer h5 {
    font-size: var(--uhs-text-sm);
    font-family: var(--uhs-font-display);
    color: rgba(250, 245, 238, 0.8);
    margin-bottom: var(--uhs-space-3);
}

.uhs-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uhs-footer li {
    margin-bottom: var(--uhs-space-3);
}

.uhs-footer li a {
    font-size: var(--uhs-text-sm);
    color: rgba(250, 245, 238, 0.8);
    transition: all var(--uhs-transition);
}

.uhs-footer li a:hover {
    color: var(--uhs-coral);
    padding-left: 6px;
}

.uhs-delivery-methods,
.uhs-footer-payments {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.uhs-delivery-badge,
.uhs-payment-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: rgba(250, 245, 238, 0.1);
    border-radius: var(--uhs-radius-full);
    font-size: var(--uhs-text-xs);
    font-weight: 500;
}

.uhs-footer-bottom {
    padding-top: var(--uhs-space-6);
    border-top: 1px solid rgba(250, 245, 238, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--uhs-space-4);
}

.uhs-footer-copy {
    font-size: var(--uhs-text-xs);
    color: rgba(250, 245, 238, 0.6);
}

.uhs-footer-payments {
    font-size: var(--uhs-text-xs);
    align-items: center;
}


/* ===========================
   10. HOMEPAGE SECTIONS
   =========================== */

/* ---- HERO ---- */
.uhs-hero {
    position: relative;
    padding: var(--uhs-space-24) 0 var(--uhs-space-32);
    background:
        radial-gradient(circle at 15% 30%, var(--uhs-coral-soft) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, var(--uhs-mint-soft) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, var(--uhs-yellow-soft) 0%, transparent 60%),
        var(--uhs-cream);
    overflow: hidden;
}

.uhs-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--uhs-space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.uhs-hero-title {
    font-size: clamp(2rem, 4.5vw, var(--uhs-text-5xl));
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--uhs-space-6);
}

.uhs-hero-subtitle {
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite-soft);
    line-height: 1.55;
    max-width: 48ch;
    margin-bottom: var(--uhs-space-8);
}

.uhs-hero-ctas {
    display: flex;
    gap: var(--uhs-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--uhs-space-8);
}

.uhs-hero-badges {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    flex-wrap: wrap;
}

.uhs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.uhs-hero-badge-stars {
    color: var(--uhs-yellow);
    font-size: 1.1em;
}

.uhs-hero-badge-sep {
    opacity: 0.4;
}

/* Hero visual */
.uhs-hero-visual {
    position: relative;
}

.uhs-hero-logo-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.uhs-hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--uhs-radius-xl);
    box-shadow: var(--uhs-shadow-lg);
    animation: uhs-bob 6s ease-in-out infinite;
}

.uhs-hero-float {
    position: absolute;
    font-size: 2.4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    animation: uhs-float 5s ease-in-out infinite;
}

.uhs-hero-float-1 { top: -8%;  left: -6%;  animation-delay: 0s;   font-size: 3rem; }
.uhs-hero-float-2 { top: 12%;  right: -8%; animation-delay: 1s;   }
.uhs-hero-float-3 { bottom: 10%; left: -10%; animation-delay: 2s; font-size: 2.8rem; }
.uhs-hero-float-4 { bottom: -4%; right: 6%;  animation-delay: 1.5s; }
.uhs-hero-float-5 { top: 50%;  right: -4%; animation-delay: 2.5s; font-size: 2rem; }

/* Hero quote card */
.uhs-hero-quote {
    position: absolute;
    bottom: -30px;
    left: -20px;
    max-width: 280px;
    background: white;
    border-radius: var(--uhs-radius-lg);
    padding: var(--uhs-space-4);
    box-shadow: var(--uhs-shadow-lg);
    display: flex;
    gap: var(--uhs-space-3);
    align-items: center;
    border: 3px solid var(--uhs-yellow-soft);
    animation: uhs-bob 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.uhs-hero-quote-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--uhs-yellow);
}

.uhs-hero-quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uhs-hero-quote-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.uhs-hero-quote-text strong {
    display: block;
    font-family: var(--uhs-font-display);
    color: var(--uhs-coral);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.uhs-hero-quote-text em {
    font-style: italic;
    color: var(--uhs-graphite-soft);
}

.uhs-hero-twinkle { z-index: 0; }


/* ---- USP BAR ---- */
.uhs-usp-bar {
    background: white;
    padding: var(--uhs-space-8) 0;
    border-top: 1px solid var(--uhs-border);
    border-bottom: 1px solid var(--uhs-border);
}

.uhs-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-6);
}

.uhs-usp {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
}

.uhs-usp-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--uhs-radius-md);
    font-size: 1.8rem;
    transition: transform var(--uhs-transition);
}

.uhs-usp-icon-1 { background: var(--uhs-coral-soft); }
.uhs-usp-icon-2 { background: var(--uhs-mint-soft);  }
.uhs-usp-icon-3 { background: var(--uhs-yellow-soft); }
.uhs-usp-icon-4 { background: var(--uhs-blue-soft);  }

.uhs-usp:hover .uhs-usp-icon {
    transform: rotate(-8deg) scale(1.1);
}

.uhs-usp-text strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-base);
    font-weight: 600;
    color: var(--uhs-graphite);
}

.uhs-usp-text small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    line-height: 1.45;
}


/* ---- CATEGORIES ---- */
.uhs-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-4);
}

.uhs-cat-card {
    display: flex;
    flex-direction: column;
    padding: var(--uhs-space-6);
    border-radius: var(--uhs-radius-lg);
    background: white;
    transition: all var(--uhs-transition);
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.uhs-cat-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--uhs-shadow-lg);
    color: var(--uhs-graphite);
}

.uhs-cat-coral  { background: linear-gradient(135deg, var(--uhs-coral-soft), white); }
.uhs-cat-mint   { background: linear-gradient(135deg, var(--uhs-mint-soft), white); }
.uhs-cat-yellow { background: linear-gradient(135deg, var(--uhs-yellow-soft), white); }
.uhs-cat-blue   { background: linear-gradient(135deg, var(--uhs-blue-soft), white); }

.uhs-cat-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: var(--uhs-radius-md);
    margin-bottom: var(--uhs-space-4);
}

.uhs-cat-emoji {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: var(--uhs-space-4);
    transition: transform var(--uhs-transition);
    display: block;
}

.uhs-cat-card:hover .uhs-cat-emoji {
    transform: rotate(-12deg) scale(1.15);
}

.uhs-cat-name {
    font-size: var(--uhs-text-xl);
    margin-bottom: 0.3rem;
}

.uhs-cat-count {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    margin-bottom: var(--uhs-space-3);
}

.uhs-cat-link-text {
    font-family: var(--uhs-font-display);
    font-weight: 600;
    color: var(--uhs-coral);
    transition: transform var(--uhs-transition);
    margin-top: auto;
}

.uhs-cat-card:hover .uhs-cat-link-text {
    transform: translateX(4px);
}


/* ---- PRODUCT CARD (reused) ---- */
/* Uwaga: nie dopisywać tu selektorów złożonych (np. .uhs-bestsellers .uhs-products-grid).
   Media query nie podnosi specyficzności, więc taki selektor nadpisywałby responsywne
   reguły z sekcji @media i siatka zostawałaby na 4 kolumnach także na telefonie. */
.uhs-products-grid,
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-6);
    list-style: none;
    padding: 0;
    margin: 0;
}

.uhs-product-card,
ul.products li.product {
    background: white;
    border-radius: var(--uhs-radius-lg);
    overflow: hidden;
    transition: all var(--uhs-transition);
    position: relative;
    list-style: none;
}

.uhs-product-card:hover,
ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-product-link {
    display: block;
    color: inherit;
}

.uhs-product-link:hover {
    color: inherit;
}

.uhs-product-media {
    position: relative;
    background: var(--uhs-cream-2);
    aspect-ratio: 4/5;
    overflow: hidden;
}

.uhs-product-img,
ul.products li.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--uhs-transition-slow);
}

.uhs-product-card:hover .uhs-product-img {
    transform: scale(1.08) rotate(-1deg);
}

.uhs-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    gap: 0.5rem;
    background:
        repeating-linear-gradient(45deg, var(--uhs-cream-2), var(--uhs-cream-2) 10px, var(--uhs-cream) 10px, var(--uhs-cream) 20px);
}

.uhs-product-placeholder small {
    font-size: 0.8rem;
    color: var(--uhs-graphite-soft);
    font-family: var(--uhs-font-display);
}

.uhs-product-badges {
    position: absolute;
    top: var(--uhs-space-3);
    left: var(--uhs-space-3);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 2;
}

.uhs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--uhs-radius-full);
    font-size: var(--uhs-text-xs);
    font-weight: 700;
    font-family: var(--uhs-font-display);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.uhs-badge-bestseller { background: var(--uhs-coral);  color: white; }
.uhs-badge-new        { background: var(--uhs-mint);   color: white; }
.uhs-badge-sale       { background: var(--uhs-yellow); color: var(--uhs-graphite); }

.uhs-product-out-of-stock {
    position: absolute;
    inset: 0;
    background: rgba(250, 245, 238, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite);
    font-weight: 700;
}

.uhs-product-quick-add {
    position: absolute;
    bottom: var(--uhs-space-3);
    right: var(--uhs-space-3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: white;
    color: var(--uhs-graphite);
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-weight: 600;
    font-size: var(--uhs-text-xs);
    box-shadow: var(--uhs-shadow-md);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--uhs-transition);
    z-index: 3;
}

.uhs-product-card:hover .uhs-product-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.uhs-product-quick-add:hover {
    background: var(--uhs-yellow);
}

.uhs-product-body {
    padding: var(--uhs-space-4) var(--uhs-space-4) var(--uhs-space-6);
}

.uhs-product-category {
    display: block;
    font-size: var(--uhs-text-xs);
    font-family: var(--uhs-font-display);
    color: var(--uhs-coral);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.uhs-product-name {
    font-size: var(--uhs-text-base);
    font-weight: 600;
    margin-bottom: var(--uhs-space-3);
    line-height: 1.3;
}

.uhs-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--uhs-space-2);
}

.uhs-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

.uhs-product-rating .uhs-stars { font-size: 0.95rem; }

.uhs-product-price {
    font-family: var(--uhs-font-display);
    font-weight: 700;
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite);
}

.uhs-product-price .price {
    font-family: var(--uhs-font-display);
    font-weight: 700;
}

.uhs-product-price del {
    opacity: 0.45;
    font-size: 0.85em;
    margin-right: 0.3rem;
    font-weight: 500;
}

.uhs-product-price ins {
    text-decoration: none;
    color: var(--uhs-coral);
}


/* ---- STORY SECTION ---- */
.uhs-story-section {
    padding: var(--uhs-space-32) 0;
    background: linear-gradient(180deg, var(--uhs-cream) 0%, var(--uhs-cream-warm) 100%);
}

.uhs-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--uhs-space-16);
    align-items: center;
}

.uhs-story-visual {
    position: relative;
}

.uhs-story-photo-frame {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.uhs-story-photo {
    border-radius: var(--uhs-radius-xl);
    overflow: hidden;
    box-shadow: var(--uhs-shadow-lg);
    aspect-ratio: 4/5;
    border: 8px solid white;
    transform: rotate(-2deg);
    transition: transform var(--uhs-transition);
}

.uhs-story-photo:hover {
    transform: rotate(0);
}

.uhs-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uhs-story-photo-deco {
    position: absolute;
    font-size: 3rem;
    background: white;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--uhs-shadow-md);
    animation: uhs-bob 4s ease-in-out infinite;
}

.uhs-story-photo-deco-1 {
    top: -20px;
    left: -20px;
}

.uhs-story-photo-deco-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 2s;
}

.uhs-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-4);
    margin-top: var(--uhs-space-8);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.uhs-story-stat {
    text-align: center;
    padding: var(--uhs-space-4);
    background: white;
    border-radius: var(--uhs-radius-md);
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-story-stat strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xl);
    color: var(--uhs-coral);
    margin-bottom: 0.2rem;
}

.uhs-story-stat small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

.uhs-story-intro {
    font-size: var(--uhs-text-lg);
    font-weight: 500;
    color: var(--uhs-graphite);
    margin-bottom: var(--uhs-space-6);
}


/* ---- HOW WE MAKE (steps) ---- */
.uhs-how-section {
    padding-top: var(--uhs-space-32);
    padding-bottom: var(--uhs-space-32);
}

.uhs-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-6);
    position: relative;
}

.uhs-how-step {
    position: relative;
    text-align: center;
    padding: var(--uhs-space-6) var(--uhs-space-4);
    background: white;
    border-radius: var(--uhs-radius-lg);
    box-shadow: var(--uhs-shadow-sm);
    transition: transform var(--uhs-transition);
}

.uhs-how-step:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: var(--uhs-shadow-md);
}

.uhs-how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    border-radius: 50%;
    font-family: var(--uhs-font-display);
    font-weight: 700;
    margin: 0 auto var(--uhs-space-3);
    font-size: var(--uhs-text-lg);
    box-shadow: var(--uhs-shadow-yellow);
}

.uhs-how-step-icon {
    font-size: 3.5rem;
    margin-bottom: var(--uhs-space-3);
    animation: uhs-bob 4s ease-in-out infinite;
    display: inline-block;
}

.uhs-how-step:nth-child(2) .uhs-how-step-icon { animation-delay: 0.5s; }
.uhs-how-step:nth-child(3) .uhs-how-step-icon { animation-delay: 1s; }
.uhs-how-step:nth-child(4) .uhs-how-step-icon { animation-delay: 1.5s; }

.uhs-how-step h3 {
    font-size: var(--uhs-text-lg);
    margin-bottom: var(--uhs-space-2);
}

.uhs-how-step p {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    line-height: 1.55;
}

.uhs-how-connector {
    position: absolute;
    top: 40px;
    right: -16%;
    width: 32%;
    height: 20px;
    display: none; /* pokazane tylko od md */
}

@media (min-width: 1024px) {
    .uhs-how-connector { display: block; }
}


/* ---- PERSONALIZATION SECTION ---- */
.uhs-perso-section {
    padding: var(--uhs-space-32) 0;
    background:
        radial-gradient(circle at 10% 20%, var(--uhs-coral-soft) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--uhs-yellow-soft) 0%, transparent 50%),
        var(--uhs-cream-warm);
    position: relative;
    overflow: hidden;
}

.uhs-perso-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
    margin-bottom: var(--uhs-space-12);
}

.uhs-perso-option-card {
    position: relative;
    padding: var(--uhs-space-8) var(--uhs-space-6);
    background: white;
    border-radius: var(--uhs-radius-lg);
    text-align: center;
    transition: all var(--uhs-transition);
    border: 3px solid transparent;
}

.uhs-perso-option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-perso-color-coral:hover  { border-color: var(--uhs-coral);  }
.uhs-perso-color-mint:hover   { border-color: var(--uhs-mint);   }
.uhs-perso-color-yellow:hover { border-color: var(--uhs-yellow); }

.uhs-perso-option-icon {
    font-size: 3.5rem;
    margin-bottom: var(--uhs-space-3);
    animation: uhs-wag 3s ease-in-out infinite;
    display: inline-block;
}

.uhs-perso-option-card h3 {
    font-size: var(--uhs-text-xl);
    margin-bottom: var(--uhs-space-2);
}

.uhs-perso-option-card p {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    margin-bottom: var(--uhs-space-6);
}

.uhs-perso-preview {
    padding: var(--uhs-space-6);
    background: var(--uhs-cream-2);
    border-radius: var(--uhs-radius-md);
    margin-bottom: var(--uhs-space-4);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uhs-perso-sample-haft {
    font-family: cursive, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--uhs-coral);
    text-shadow:
        0 1px 0 rgba(0,0,0,0.1),
        1px 2px 0 rgba(0,0,0,0.05);
    letter-spacing: 0.05em;
}

.uhs-perso-sample-nadruk {
    font-family: var(--uhs-font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--uhs-mint), var(--uhs-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.uhs-perso-sample-naszywka {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--uhs-yellow-soft);
    border: 3px dashed var(--uhs-yellow);
    border-radius: var(--uhs-radius-md);
    font-family: var(--uhs-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--uhs-graphite);
    transform: rotate(-3deg);
}

.uhs-perso-price-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--uhs-graphite);
    color: white;
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
    font-weight: 700;
}

.uhs-perso-note {
    text-align: center;
    margin-top: var(--uhs-space-3);
    color: var(--uhs-graphite-soft);
}


/* ---- NEW COLLECTION ---- */
.uhs-new-collection {
    padding: var(--uhs-space-32) 0;
}

.uhs-new-collection-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--uhs-space-16);
    align-items: center;
}

.uhs-new-collection-intro h2 {
    font-size: var(--uhs-text-3xl);
}

.uhs-collection-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--uhs-space-4);
    margin: var(--uhs-space-6) 0;
}

.uhs-collection-feat {
    padding: var(--uhs-space-4);
    background: rgba(255,255,255,0.55);
    border-radius: var(--uhs-radius-md);
    backdrop-filter: blur(6px);
}

.uhs-collection-feat strong {
    display: block;
    font-family: var(--uhs-font-display);
    color: var(--uhs-graphite);
    margin-bottom: 0.2rem;
}

.uhs-collection-feat small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

.uhs-new-collection-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--uhs-space-4);
}

.uhs-collection-tile {
    position: relative;
    aspect-ratio: 1/1.1;
    overflow: hidden;
    border-radius: var(--uhs-radius-lg);
    background: white;
    box-shadow: var(--uhs-shadow-md);
    transition: all var(--uhs-transition);
}

.uhs-collection-tile:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.uhs-collection-tile:nth-child(even) {
    transform: translateY(30px);
}

.uhs-collection-tile:nth-child(even):hover {
    transform: translateY(22px) rotate(1deg);
}

.uhs-collection-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uhs-collection-tile-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: var(--uhs-space-4);
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
}

.uhs-collection-tile-info strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
    margin-bottom: 0.2rem;
}

.uhs-collection-tile-info span {
    display: block;
    font-size: var(--uhs-text-sm);
}

.uhs-collection-tile-info .price { color: white; }


/* ---- REVIEWS ---- */
.uhs-reviews-section {
    padding: var(--uhs-space-32) 0;
}

.uhs-reviews-summary {
    display: flex;
    justify-content: center;
    margin-bottom: var(--uhs-space-12);
}

.uhs-reviews-rating-big {
    display: inline-flex;
    align-items: center;
    gap: var(--uhs-space-4);
    padding: var(--uhs-space-4) var(--uhs-space-8);
    background: white;
    border-radius: var(--uhs-radius-full);
    box-shadow: var(--uhs-shadow-md);
}

.uhs-rating-number {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-4xl);
    font-weight: 700;
    color: var(--uhs-yellow);
    line-height: 1;
}

.uhs-reviews-rating-big small {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
}

.uhs-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
}

.uhs-review-card {
    padding: var(--uhs-space-6);
    border-radius: var(--uhs-radius-lg);
    transition: all var(--uhs-transition);
    position: relative;
}

.uhs-review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-review-coral  { background: var(--uhs-coral-soft);  }
.uhs-review-mint   { background: var(--uhs-mint-soft);   }
.uhs-review-yellow { background: var(--uhs-yellow-soft); }
.uhs-review-blue   { background: var(--uhs-blue-soft);   }

.uhs-review-header {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    margin-bottom: var(--uhs-space-4);
}

.uhs-review-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-review-header > div:not(.uhs-review-avatar) {
    flex: 1;
    min-width: 0;
}

.uhs-review-header strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-weight: 600;
    color: var(--uhs-graphite);
}

.uhs-review-header small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

.uhs-review-stars {
    flex-shrink: 0;
    color: var(--uhs-yellow);
    letter-spacing: 1px;
    font-size: 1.05rem;
}

.uhs-review-text {
    margin: 0 0 var(--uhs-space-4);
    font-style: italic;
    line-height: 1.6;
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite);
    border-left: 3px solid rgba(45,45,52,0.12);
    padding-left: var(--uhs-space-4);
}

.uhs-review-product {
    padding-top: var(--uhs-space-3);
    border-top: 1px dashed rgba(45,45,52,0.12);
}

.uhs-review-product small {
    color: var(--uhs-graphite-soft);
}


/* ---- INSTAGRAM ---- */
.uhs-instagram-section {
    padding: var(--uhs-space-24) 0;
}

.uhs-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--uhs-space-2);
    margin-bottom: var(--uhs-space-6);
}

.uhs-ig-tile {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--uhs-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: var(--uhs-space-3);
    text-align: center;
    transition: all var(--uhs-transition);
}

.uhs-ig-tile:hover {
    transform: scale(1.05) rotate(-1deg);
    z-index: 2;
    box-shadow: var(--uhs-shadow-lg);
    color: white;
}

.uhs-ig-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--uhs-space-2);
}

.uhs-ig-caption {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xs);
    font-weight: 600;
    opacity: 0.95;
}

.uhs-ig-icon {
    position: absolute;
    top: var(--uhs-space-2);
    right: var(--uhs-space-2);
    opacity: 0;
    transition: opacity var(--uhs-transition);
}

.uhs-ig-tile:hover .uhs-ig-icon {
    opacity: 1;
}

.uhs-ig-note {
    text-align: center;
    color: var(--uhs-graphite-soft);
}


/* ---- NEWSLETTER ---- */
.uhs-newsletter-section {
    padding: var(--uhs-space-24) 0;
    position: relative;
}

.uhs-newsletter-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--uhs-space-12);
    align-items: center;
    padding: var(--uhs-space-16);
    background:
        radial-gradient(circle at 0% 50%, var(--uhs-coral) 0%, var(--uhs-coral) 40%, transparent 41%),
        linear-gradient(135deg, var(--uhs-graphite), #1F1F26);
    color: white;
    border-radius: var(--uhs-radius-xl);
    position: relative;
    overflow: hidden;
}

.uhs-newsletter-twinkle {
    z-index: 0;
}

.uhs-newsletter-box > * {
    position: relative;
    z-index: 1;
}

.uhs-newsletter-visual {
    position: relative;
    width: 180px;
    flex-shrink: 0;
}

.uhs-newsletter-henio {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: var(--uhs-shadow-lg);
    animation: uhs-bob 5s ease-in-out infinite;
}

.uhs-newsletter-gift {
    position: absolute;
    top: -12px;
    right: -16px;
    width: 64px;
    height: 64px;
    background: var(--uhs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--uhs-shadow-md);
    animation: uhs-wag 3s ease-in-out infinite;
}

.uhs-newsletter-content h2 {
    color: white;
    margin-bottom: var(--uhs-space-4);
}

.uhs-newsletter-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--uhs-space-6);
}

.uhs-newsletter-form {
    margin-bottom: var(--uhs-space-4);
}

.uhs-newsletter-input-wrap {
    display: flex;
    gap: var(--uhs-space-2);
    background: white;
    padding: 0.4rem;
    border-radius: var(--uhs-radius-full);
    max-width: 480px;
}

.uhs-newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 1.2rem;
    font-size: var(--uhs-text-base);
}

.uhs-newsletter-input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.uhs-newsletter-btn {
    flex-shrink: 0;
    padding: 0.8rem 1.6rem;
    font-size: var(--uhs-text-sm);
}

.uhs-newsletter-message {
    margin-top: var(--uhs-space-3);
    padding: 0.8rem 1.2rem;
    border-radius: var(--uhs-radius-md);
    display: none;
    font-size: var(--uhs-text-sm);
}

.uhs-newsletter-message.is-success {
    display: block;
    background: var(--uhs-mint-soft);
    color: #2B5B3A;
}

.uhs-newsletter-message.is-error {
    display: block;
    background: var(--uhs-coral-soft);
    color: #8B3A2C;
}

.uhs-newsletter-consent {
    color: rgba(255,255,255,0.65);
    margin-top: var(--uhs-space-3);
    margin-bottom: 0;
}

.uhs-newsletter-bonus {
    display: inline-flex;
    align-items: center;
    gap: var(--uhs-space-3);
    padding: 0.7rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: var(--uhs-radius-md);
    font-size: var(--uhs-text-sm);
    margin-top: var(--uhs-space-4);
}

.uhs-bonus-badge {
    padding: 0.3rem 0.7rem;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-weight: 700;
    font-size: var(--uhs-text-sm);
}


/* ---- FAQ ---- */
.uhs-faq-section {
    padding: var(--uhs-space-24) 0;
}

.uhs-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--uhs-space-3);
}

.uhs-faq-item {
    background: white;
    border-radius: var(--uhs-radius-md);
    overflow: hidden;
    transition: all var(--uhs-transition);
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-faq-item[open] {
    box-shadow: var(--uhs-shadow-md);
}

.uhs-faq-question {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    padding: var(--uhs-space-4) var(--uhs-space-6);
    cursor: pointer;
    font-family: var(--uhs-font-display);
    font-weight: 600;
    font-size: var(--uhs-text-base);
    color: var(--uhs-graphite);
    list-style: none;
    transition: background var(--uhs-transition);
}

.uhs-faq-question::-webkit-details-marker { display: none; }
.uhs-faq-question::marker { display: none; }

.uhs-faq-question:hover {
    background: var(--uhs-cream-2);
}

.uhs-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--uhs-coral-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.uhs-faq-question > span:nth-child(2) {
    flex: 1;
}

.uhs-faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--uhs-yellow-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--uhs-graphite);
    transition: transform var(--uhs-transition);
}

.uhs-faq-item[open] .uhs-faq-toggle {
    transform: rotate(45deg);
    background: var(--uhs-yellow);
}

.uhs-faq-answer {
    padding: 0 var(--uhs-space-6) var(--uhs-space-6);
    padding-left: calc(var(--uhs-space-6) + 32px + var(--uhs-space-3));
    color: var(--uhs-graphite-soft);
    line-height: 1.65;
}

.uhs-faq-answer p {
    margin: 0;
}

.uhs-faq-contact {
    text-align: center;
    margin-top: var(--uhs-space-12);
    padding: var(--uhs-space-6);
    background: white;
    border-radius: var(--uhs-radius-lg);
    border: 2px dashed var(--uhs-coral-soft);
}

.uhs-faq-contact p {
    font-family: var(--uhs-font-display);
    font-weight: 500;
    margin-bottom: var(--uhs-space-4);
}


/* ---- LIVE NOTIFIER ---- */
.uhs-live-notifier {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 90;
    max-width: 360px;
    pointer-events: none;
}

.uhs-live-notification {
    background: white;
    border-radius: var(--uhs-radius-md);
    padding: var(--uhs-space-3) var(--uhs-space-4);
    box-shadow: var(--uhs-shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    transform: translateY(120%);
    opacity: 0;
    transition: all 400ms var(--uhs-bounce);
    border-left: 4px solid var(--uhs-coral);
    pointer-events: auto;
}

.uhs-live-notification.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.uhs-live-notif-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--uhs-yellow-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.uhs-live-notif-content {
    flex: 1;
    min-width: 0;
}

.uhs-live-notif-content strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite);
    font-weight: 600;
}

.uhs-live-notif-content small {
    display: block;
    font-size: 0.7rem;
    color: var(--uhs-graphite-soft);
    margin-top: 0.15rem;
}

.uhs-live-notif-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--uhs-graphite-soft);
    opacity: 0.4;
    transition: opacity var(--uhs-transition);
}

.uhs-live-notif-close:hover { opacity: 1; }

/* Viewing counter on product page */
.uhs-product-viewing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--uhs-mint-soft);
    border-radius: var(--uhs-radius-full);
    font-size: var(--uhs-text-xs);
    color: #2B5B3A;
    font-weight: 500;
    margin: var(--uhs-space-3) 0;
}

.uhs-viewing-dot {
    width: 8px;
    height: 8px;
    background: var(--uhs-mint);
    border-radius: 50%;
    animation: uhs-pulse 1.5s ease-in-out infinite;
}


/* ===========================
   12. PAGE TEMPLATES
   =========================== */

/* Hero / page header */
.uhs-page-hero {
    padding: var(--uhs-space-20) 0 var(--uhs-space-12);
    background:
        radial-gradient(circle at 20% 30%, var(--uhs-coral-soft) 0%, transparent 50%),
        var(--uhs-cream);
    text-align: center;
    position: relative;
}

.uhs-page-hero .uhs-container {
    position: relative;
    z-index: 1;
}

.uhs-page-title {
    font-size: clamp(2rem, 4vw, var(--uhs-text-4xl));
    font-weight: 700;
    margin-bottom: var(--uhs-space-4);
}

.uhs-page-header {
    text-align: center;
    margin-bottom: var(--uhs-space-12);
    padding: var(--uhs-space-12) 0;
}

.uhs-page-content,
.uhs-rich-text {
    font-size: var(--uhs-text-base);
    line-height: 1.75;
    color: var(--uhs-graphite);
}

.uhs-rich-text h2 { margin-top: var(--uhs-space-12); }
.uhs-rich-text h3 { margin-top: var(--uhs-space-8); }

.uhs-rich-text a {
    color: var(--uhs-coral);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ---- HENIO STORY PAGE ---- */
.uhs-story-hero {
    padding: var(--uhs-space-24) 0 var(--uhs-space-20);
    background:
        radial-gradient(circle at 80% 20%, var(--uhs-coral-soft) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, var(--uhs-mint-soft) 0%, transparent 45%),
        var(--uhs-cream);
    position: relative;
}

.uhs-story-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--uhs-space-16);
    align-items: center;
}

.uhs-story-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, var(--uhs-text-4xl));
    margin-bottom: var(--uhs-space-6);
}

.uhs-story-photo-big {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--uhs-radius-xl);
    overflow: hidden;
    box-shadow: var(--uhs-shadow-lg);
    border: 10px solid white;
    transform: rotate(2deg);
    max-width: 440px;
    margin: 0 auto;
}

.uhs-story-photo-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline */
.uhs-timeline {
    position: relative;
    padding-left: 50px;
}

.uhs-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        var(--uhs-coral) 0,
        var(--uhs-coral) 8px,
        transparent 8px,
        transparent 16px
    );
}

.uhs-timeline-item {
    position: relative;
    padding: var(--uhs-space-6) 0;
}

.uhs-timeline-marker {
    position: absolute;
    left: -50px;
    top: var(--uhs-space-6);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--uhs-shadow-md);
    z-index: 1;
    border: 3px solid var(--uhs-coral);
}

.uhs-timeline-content {
    background: white;
    padding: var(--uhs-space-6);
    border-radius: var(--uhs-radius-lg);
    box-shadow: var(--uhs-shadow-sm);
    position: relative;
}

.uhs-timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 24px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid white;
}

.uhs-timeline-date {
    display: inline-block;
    font-family: var(--uhs-font-display);
    font-weight: 600;
    font-size: var(--uhs-text-sm);
    color: var(--uhs-coral);
    background: var(--uhs-coral-soft);
    padding: 0.3rem 0.8rem;
    border-radius: var(--uhs-radius-full);
    margin-bottom: var(--uhs-space-3);
}

/* Values cards */
.uhs-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--uhs-space-6);
}

.uhs-value-card {
    padding: var(--uhs-space-6);
    border-radius: var(--uhs-radius-lg);
    transition: all var(--uhs-transition);
}

.uhs-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-value-icon {
    font-size: 2.8rem;
    margin-bottom: var(--uhs-space-3);
}

.uhs-value-card h3 {
    font-size: var(--uhs-text-xl);
}

/* Story CTA box */
.uhs-story-cta-box {
    text-align: center;
    padding: var(--uhs-space-16) var(--uhs-space-8);
    background: white;
    border-radius: var(--uhs-radius-xl);
    box-shadow: var(--uhs-shadow-md);
    max-width: 720px;
    margin: 0 auto;
}

.uhs-story-cta-box h2 {
    margin-bottom: var(--uhs-space-4);
}

.uhs-story-cta-box p {
    font-size: var(--uhs-text-lg);
    color: var(--uhs-graphite-soft);
    margin-bottom: var(--uhs-space-6);
}


/* ---- HOW WE SEW PAGE ---- */
.uhs-process-detail {
    display: flex;
    flex-direction: column;
    gap: var(--uhs-space-16);
}

.uhs-process-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--uhs-space-8);
    align-items: start;
}

.uhs-process-reversed {
    grid-template-columns: 1fr 140px;
}

.uhs-process-reversed .uhs-process-number {
    order: 2;
}

.uhs-process-reversed .uhs-process-body {
    order: 1;
    text-align: right;
}

.uhs-process-number {
    font-family: var(--uhs-font-display);
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.9;
    color: var(--uhs-coral);
    opacity: 0.6;
}

.uhs-process-body h2 {
    margin-bottom: var(--uhs-space-4);
}

.uhs-process-highlight {
    padding: var(--uhs-space-4) var(--uhs-space-6);
    background: var(--uhs-yellow-soft);
    border-left: 4px solid var(--uhs-yellow);
    border-radius: var(--uhs-radius-md);
    font-size: var(--uhs-text-sm);
    margin-top: var(--uhs-space-4);
}

.uhs-process-reversed .uhs-process-highlight {
    border-left: none;
    border-right: 4px solid var(--uhs-yellow);
}

.uhs-materials-list {
    margin-top: var(--uhs-space-4);
    padding-left: 0;
    list-style: none;
}

.uhs-materials-list li {
    padding: var(--uhs-space-2) 0;
    padding-left: var(--uhs-space-6);
    position: relative;
}

.uhs-materials-list li::before {
    content: '🧵';
    position: absolute;
    left: 0;
    top: var(--uhs-space-2);
}


/* ---- SIZE CHART PAGE ---- */
.uhs-measurements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
    margin-bottom: var(--uhs-space-12);
}

.uhs-measurement-card {
    text-align: center;
    padding: var(--uhs-space-6);
    background: white;
    border-radius: var(--uhs-radius-lg);
    position: relative;
    border: 3px solid transparent;
    transition: all var(--uhs-transition);
}

.uhs-measurement-card:hover {
    border-color: var(--uhs-coral);
    transform: translateY(-4px);
}

.uhs-measurement-icon {
    font-size: 3rem;
    margin-bottom: var(--uhs-space-2);
}

.uhs-measurement-letter {
    position: absolute;
    top: var(--uhs-space-4);
    left: var(--uhs-space-4);
    width: 36px;
    height: 36px;
    background: var(--uhs-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--uhs-font-display);
    font-weight: 700;
}

/* Size table */
.uhs-size-table-wrap {
    overflow-x: auto;
    background: white;
    border-radius: var(--uhs-radius-lg);
    box-shadow: var(--uhs-shadow-md);
    margin-bottom: var(--uhs-space-8);
}

.uhs-size-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: var(--uhs-text-sm);
}

.uhs-size-table th,
.uhs-size-table td {
    padding: var(--uhs-space-4);
    text-align: center;
    border-bottom: 1px solid var(--uhs-border);
}

.uhs-size-table th {
    background: var(--uhs-graphite);
    color: white;
    font-family: var(--uhs-font-display);
    font-weight: 600;
}

.uhs-size-table th:first-child { border-top-left-radius: var(--uhs-radius-lg); }
.uhs-size-table th:last-child  { border-top-right-radius: var(--uhs-radius-lg); }

.uhs-size-table tbody tr:hover {
    background: var(--uhs-cream-2);
}

.uhs-size-table td:last-child {
    text-align: left;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

.uhs-size-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-weight: 700;
    font-size: var(--uhs-text-xs);
    color: white;
}

.uhs-size-xs  { background: var(--uhs-blue);   }
.uhs-size-s   { background: var(--uhs-mint);   }
.uhs-size-m   { background: var(--uhs-yellow); color: var(--uhs-graphite); }
.uhs-size-l   { background: var(--uhs-coral);  }
.uhs-size-xl  { background: #C4776A; }
.uhs-size-xxl { background: var(--uhs-graphite); }

.uhs-size-note {
    padding: var(--uhs-space-6);
    background: var(--uhs-yellow-soft);
    border-radius: var(--uhs-radius-lg);
    border: 2px dashed var(--uhs-yellow);
}

.uhs-size-note h4 {
    margin-bottom: var(--uhs-space-2);
}


/* ---- CONTACT PAGE ---- */
.uhs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--uhs-space-12);
}

.uhs-contact-info h2 {
    margin-bottom: var(--uhs-space-6);
}

.uhs-contact-method {
    display: flex;
    gap: var(--uhs-space-4);
    padding: var(--uhs-space-4) 0;
    border-bottom: 1px solid var(--uhs-border);
}

.uhs-contact-method:last-child {
    border-bottom: none;
}

.uhs-contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--uhs-coral-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.uhs-contact-method strong {
    display: block;
    font-family: var(--uhs-font-display);
    margin-bottom: 0.3rem;
}

.uhs-contact-method a {
    color: var(--uhs-coral);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.uhs-contact-method small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    margin-top: 0.2rem;
}

.uhs-contact-socials {
    display: flex;
    gap: var(--uhs-space-3);
    margin-top: 0.3rem;
}

/* Form */
.uhs-contact-form-box {
    background: white;
    padding: var(--uhs-space-8);
    border-radius: var(--uhs-radius-lg);
    box-shadow: var(--uhs-shadow-md);
}

.uhs-form-row {
    margin-bottom: var(--uhs-space-4);
}

.uhs-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--uhs-space-2);
}

.uhs-form-checkbox input {
    width: auto;
    margin-top: 0.35rem;
}

.uhs-form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}


/* ---- LOYALTY PAGE ---- */
.uhs-loyalty-hero {
    background:
        radial-gradient(circle at 20% 30%, var(--uhs-yellow-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--uhs-coral-soft) 0%, transparent 50%),
        var(--uhs-cream);
    position: relative;
    overflow: hidden;
}

.uhs-loyalty-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
}

.uhs-loyalty-how {
    text-align: center;
    padding: var(--uhs-space-6);
    background: white;
    border-radius: var(--uhs-radius-lg);
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-loyalty-how-num {
    width: 56px;
    height: 56px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    border-radius: 50%;
    font-family: var(--uhs-font-display);
    font-weight: 700;
    font-size: var(--uhs-text-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--uhs-space-4);
    box-shadow: var(--uhs-shadow-yellow);
}

/* Tier cards */
.uhs-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-4);
}

.uhs-tier-card {
    padding: var(--uhs-space-6);
    border-radius: var(--uhs-radius-lg);
    text-align: center;
    transition: all var(--uhs-transition);
    position: relative;
}

.uhs-tier-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-tier-points {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-4xl);
    font-weight: 700;
    line-height: 1;
    color: var(--uhs-graphite);
}

.uhs-tier-label {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    margin-bottom: var(--uhs-space-4);
}

.uhs-tier-card h3 {
    margin-bottom: var(--uhs-space-2);
}

.uhs-tier-card p {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
}

.uhs-tier-premium {
    border: 3px solid var(--uhs-yellow);
    background: linear-gradient(135deg, var(--uhs-yellow-soft), white);
}

.uhs-tier-premium-badge {
    position: absolute;
    top: -14px;
    right: var(--uhs-space-4);
    background: var(--uhs-graphite);
    color: var(--uhs-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Bonus list */
.uhs-bonus-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--uhs-space-4);
}

.uhs-bonus-item {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-4);
    padding: var(--uhs-space-4);
    background: var(--uhs-cream-2);
    border-radius: var(--uhs-radius-md);
}

.uhs-bonus-icon {
    font-size: 2rem;
}

.uhs-bonus-item strong {
    display: block;
    font-family: var(--uhs-font-display);
    margin-bottom: 0.2rem;
}

.uhs-bonus-item small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}

/* Loyalty widget (w panelu klienta) */
.uhs-loyalty-widget {
    padding: var(--uhs-space-8);
    background: linear-gradient(135deg, var(--uhs-coral-soft), var(--uhs-yellow-soft));
    border-radius: var(--uhs-radius-lg);
    margin-bottom: var(--uhs-space-8);
}

.uhs-loyalty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--uhs-space-4);
}

.uhs-points-big {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-4xl);
    font-weight: 700;
    color: var(--uhs-graphite);
    line-height: 1;
}

.uhs-points-big small {
    font-size: 0.4em;
    color: var(--uhs-graphite-soft);
}

.uhs-loyalty-progress {
    height: 12px;
    background: white;
    border-radius: var(--uhs-radius-full);
    overflow: hidden;
    margin-bottom: var(--uhs-space-3);
}

.uhs-loyalty-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--uhs-coral), var(--uhs-yellow));
    border-radius: var(--uhs-radius-full);
    transition: width var(--uhs-transition-slow);
}

.uhs-loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--uhs-space-3);
    margin: var(--uhs-space-6) 0;
}

.uhs-tier {
    text-align: center;
    padding: var(--uhs-space-3);
    background: rgba(255,255,255,0.6);
    border-radius: var(--uhs-radius-md);
    opacity: 0.5;
    transition: all var(--uhs-transition);
}

.uhs-tier-achieved {
    background: white;
    opacity: 1;
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-tier strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-base);
}

.uhs-tier small {
    display: block;
    font-size: var(--uhs-text-xs);
}


/* ===========================
   13. WOOCOMMERCE ARCHIVE / SHOP
   =========================== */

.uhs-wc-main {
    padding: var(--uhs-space-8) 0 var(--uhs-space-20);
}

.uhs-shop-hero {
    padding: var(--uhs-space-16) 0 var(--uhs-space-8);
    text-align: center;
    background:
        radial-gradient(circle at 20% 30%, var(--uhs-coral-soft) 0%, transparent 40%),
        var(--uhs-cream);
}

.uhs-archive-description {
    font-size: var(--uhs-text-base);
    max-width: 640px;
    margin: var(--uhs-space-4) auto 0;
    color: var(--uhs-graphite-soft);
}

/* Breadcrumbs */
.uhs-breadcrumbs {
    padding: var(--uhs-space-4) 0;
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
}

.uhs-breadcrumbs a {
    color: var(--uhs-coral);
}

.uhs-crumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Shop toolbar (sorting, results) */
.uhs-shop-toolbar,
.woocommerce-ordering,
.woocommerce-result-count {
    margin-bottom: var(--uhs-space-6);
}

.woocommerce-ordering select {
    padding: 0.7rem 1.2rem;
    background: white;
    border: 2px solid var(--uhs-border);
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-body);
}

.woocommerce-result-count {
    color: var(--uhs-graphite-soft);
    font-size: var(--uhs-text-sm);
}

.uhs-no-products {
    text-align: center;
    padding: var(--uhs-space-20) var(--uhs-space-6);
}

.uhs-no-products .uhs-404-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto var(--uhs-space-6);
    opacity: 0.8;
}

/* Free shipping bar */
.uhs-free-shipping-bar {
    padding: var(--uhs-space-4) var(--uhs-space-6);
    background: var(--uhs-mint-soft);
    border-radius: var(--uhs-radius-md);
    margin-bottom: var(--uhs-space-6);
    color: #2B5B3A;
}

.uhs-fs-text {
    margin-bottom: var(--uhs-space-3);
    font-size: var(--uhs-text-sm);
}

.uhs-fs-progress {
    height: 10px;
    background: white;
    border-radius: var(--uhs-radius-full);
    overflow: hidden;
}

.uhs-fs-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--uhs-mint), var(--uhs-yellow));
    border-radius: var(--uhs-radius-full);
    transition: width var(--uhs-transition);
}

.uhs-fs-achieved {
    background: var(--uhs-yellow-soft);
    color: #6B4E0A;
    text-align: center;
    font-family: var(--uhs-font-display);
    font-weight: 600;
}

/* Product page personalization */
.uhs-personalization {
    margin: var(--uhs-space-6) 0;
    padding: var(--uhs-space-6);
    background: linear-gradient(135deg, var(--uhs-coral-soft), var(--uhs-yellow-soft));
    border-radius: var(--uhs-radius-lg);
}

.uhs-perso-header {
    margin-bottom: var(--uhs-space-4);
}

.uhs-perso-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--uhs-graphite);
    color: var(--uhs-yellow);
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: var(--uhs-space-2);
}

.uhs-perso-header h3 {
    margin-bottom: 0.3rem;
}

.uhs-perso-header p {
    font-size: var(--uhs-text-sm);
    margin-bottom: 0;
}

.uhs-perso-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--uhs-space-2);
    margin-bottom: var(--uhs-space-4);
}

.uhs-perso-option input[type="radio"] {
    display: none;
}

.uhs-perso-card {
    display: flex;
    flex-direction: column;
    padding: var(--uhs-space-3);
    background: white;
    border-radius: var(--uhs-radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--uhs-transition);
}

.uhs-perso-option input[type="radio"]:checked + .uhs-perso-card {
    border-color: var(--uhs-coral);
    background: var(--uhs-coral-soft);
    transform: translateY(-2px);
}

.uhs-perso-card strong {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-base);
}

.uhs-perso-card small {
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    margin-top: 0.2rem;
}

.uhs-perso-price {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-xs);
    color: var(--uhs-coral);
    font-weight: 700;
    margin-top: auto;
    padding-top: 0.4rem;
    font-style: normal;
}

.uhs-perso-name-wrapper {
    padding: var(--uhs-space-4);
    background: white;
    border-radius: var(--uhs-radius-md);
}

.uhs-perso-name-wrapper small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    margin-top: 0.3rem;
}

/* Product guarantees */
.uhs-product-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--uhs-space-3);
    margin-top: var(--uhs-space-6);
    padding-top: var(--uhs-space-6);
    border-top: 1px dashed var(--uhs-border);
}

.uhs-guarantee {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    padding: var(--uhs-space-3);
    background: var(--uhs-cream-2);
    border-radius: var(--uhs-radius-md);
}

.uhs-guarantee-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.uhs-guarantee strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
}

.uhs-guarantee small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
}


/* ===========================
   14. BLOG / 404
   =========================== */

.uhs-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
}

.uhs-post-card {
    background: white;
    border-radius: var(--uhs-radius-lg);
    overflow: hidden;
    box-shadow: var(--uhs-shadow-sm);
    transition: all var(--uhs-transition);
}

.uhs-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--uhs-shadow-md);
}

.uhs-post-thumb {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.uhs-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--uhs-transition-slow);
}

.uhs-post-card:hover .uhs-post-thumb img {
    transform: scale(1.08);
}

.uhs-post-body {
    padding: var(--uhs-space-6);
}

.uhs-post-date {
    font-size: var(--uhs-text-xs);
    color: var(--uhs-coral);
    font-family: var(--uhs-font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.uhs-post-title {
    font-size: var(--uhs-text-xl);
    margin: var(--uhs-space-2) 0 var(--uhs-space-3);
}

.uhs-post-title a {
    color: var(--uhs-graphite);
}

.uhs-post-title a:hover {
    color: var(--uhs-coral);
}

.uhs-post-excerpt {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    margin-bottom: var(--uhs-space-4);
    line-height: 1.55;
}

.uhs-pagination {
    margin-top: var(--uhs-space-12);
    display: flex;
    justify-content: center;
}

.uhs-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    margin: 0 0.2rem;
    font-family: var(--uhs-font-display);
    font-weight: 600;
    transition: all var(--uhs-transition);
}

.uhs-pagination .page-numbers.current,
.uhs-pagination .page-numbers:hover {
    background: var(--uhs-yellow);
}

/* 404 */
.uhs-404 {
    padding: var(--uhs-space-24) 0;
    text-align: center;
}

.uhs-404-inner {
    max-width: 560px;
    margin: 0 auto;
}

.uhs-404-visual {
    position: relative;
    display: inline-block;
    margin-bottom: var(--uhs-space-6);
}

.uhs-404-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: var(--uhs-shadow-lg);
    animation: uhs-bob 4s ease-in-out infinite;
}

.uhs-404-emoji {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 3rem;
    background: white;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--uhs-shadow-md);
}

.uhs-404 h1 {
    margin-bottom: var(--uhs-space-4);
}

.uhs-404-ctas {
    display: flex;
    gap: var(--uhs-space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--uhs-space-12);
}

.uhs-404-search {
    max-width: 420px;
    margin: 0 auto;
}


/* ===========================
   15. RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    :root {
        --uhs-text-3xl: 2.2rem;
        --uhs-text-4xl: 2.75rem;
        --uhs-text-5xl: 3.5rem;
        --uhs-space-32: 5rem;
        --uhs-space-24: 4rem;
    }

    .uhs-hero-inner,
    .uhs-story-grid,
    .uhs-story-hero-grid,
    .uhs-new-collection-grid,
    .uhs-contact-grid {
        grid-template-columns: 1fr;
        gap: var(--uhs-space-12);
    }

    .uhs-story-hero-visual,
    .uhs-hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .uhs-footer-grid,
    .uhs-usp-grid,
    .uhs-categories-grid,
    .uhs-products-grid,
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }

    .uhs-how-grid,
    .uhs-measurements-grid,
    .uhs-loyalty-how-grid,
    .uhs-tiers-grid,
    .uhs-perso-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .uhs-newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--uhs-space-12);
    }

    .uhs-newsletter-visual {
        margin: 0 auto;
    }

    .uhs-process-step,
    .uhs-process-reversed {
        grid-template-columns: 1fr;
        gap: var(--uhs-space-4);
    }

    .uhs-process-reversed .uhs-process-number,
    .uhs-process-reversed .uhs-process-body {
        order: initial;
        text-align: left;
    }

    .uhs-process-reversed .uhs-process-highlight {
        border-left: 4px solid var(--uhs-yellow);
        border-right: none;
    }
}

@media (max-width: 768px) {
    :root {
        --uhs-text-3xl: 1.85rem;
        --uhs-text-4xl: 2.25rem;
        --uhs-text-5xl: 2.75rem;
    }

    /* Mobile header */
    .uhs-mobile-toggle { display: flex; }

    .uhs-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: var(--uhs-space-6);
        box-shadow: var(--uhs-shadow-md);
        flex-direction: column;
    }

    .uhs-nav.is-open { display: flex; }

    .uhs-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .uhs-menu a {
        padding: var(--uhs-space-4);
        border-radius: var(--uhs-radius-sm);
    }

    .uhs-menu .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: var(--uhs-space-4);
    }

    .uhs-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: var(--uhs-space-2);
    }

    .uhs-logo img,
    .uhs-logo-img {
        max-height: 48px;
    }

    /* Ukryj button 'Moje konto' na mobilu - opcjonalnie */
    .uhs-search-toggle {
        display: none;
    }

    /* Grids */
    .uhs-footer-grid,
    .uhs-usp-grid,
    .uhs-categories-grid,
    .uhs-products-grid,
    ul.products,
    .uhs-how-grid,
    .uhs-measurements-grid,
    .uhs-loyalty-how-grid,
    .uhs-tiers-grid,
    .uhs-perso-options-grid,
    .uhs-reviews-grid,
    .uhs-posts-grid,
    .uhs-values-grid,
    .uhs-new-collection-products,
    .uhs-bonus-list,
    .uhs-product-guarantees,
    .uhs-perso-options {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .uhs-story-stats,
    .uhs-loyalty-tiers,
    .uhs-collection-features {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Hero */
    .uhs-hero { padding: var(--uhs-space-16) 0 var(--uhs-space-24); }
    .uhs-hero-quote { position: static; margin-top: var(--uhs-space-6); max-width: 100%; }
    .uhs-hero-float-1, .uhs-hero-float-2, .uhs-hero-float-3, .uhs-hero-float-4, .uhs-hero-float-5 {
        font-size: 2rem;
    }

    /* Sections */
    .uhs-section { padding: var(--uhs-space-16) 0; }

    /* Newsletter */
    .uhs-newsletter-input-wrap {
        flex-direction: column;
        border-radius: var(--uhs-radius-lg);
        padding: var(--uhs-space-2);
    }

    .uhs-newsletter-input {
        text-align: center;
        padding: 0.8rem;
    }

    /* Timeline */
    .uhs-timeline { padding-left: 40px; }
    .uhs-timeline-marker { left: -40px; width: 36px; height: 36px; font-size: 1.2rem; }

    /* Tables */
    .uhs-size-table th,
    .uhs-size-table td {
        padding: var(--uhs-space-2);
        font-size: var(--uhs-text-xs);
    }

    /* Footer */
    .uhs-footer { padding: var(--uhs-space-12) 0 var(--uhs-space-4); }
    .uhs-footer-grid { gap: var(--uhs-space-8); margin-bottom: var(--uhs-space-8); }
    .uhs-footer-bottom { flex-direction: column; text-align: center; }

    /* CTAs */
    .uhs-ctas-group,
    .uhs-hero-ctas,
    .uhs-404-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .uhs-btn { width: 100%; justify-content: center; }

    /* Live notifier */
    .uhs-live-notifier {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .uhs-categories-grid,
    .uhs-products-grid,
    ul.products,
    .uhs-how-grid,
    .uhs-measurements-grid,
    .uhs-loyalty-how-grid,
    .uhs-tiers-grid,
    .uhs-perso-options-grid,
    .uhs-reviews-grid,
    .uhs-posts-grid,
    .uhs-footer-grid,
    .uhs-usp-grid,
    .uhs-perso-options,
    .uhs-product-guarantees,
    .uhs-bonus-list,
    .uhs-values-grid {
        grid-template-columns: 1fr;
    }

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

    .uhs-story-stats,
    .uhs-loyalty-tiers {
        grid-template-columns: 1fr;
    }

    .uhs-topbar-slide:not(:first-child) { display: none; }

    .uhs-topbar-slider {
        animation: none;
        justify-content: center;
    }
}


/* ===========================
   16. ANIMATIONS
   =========================== */

@keyframes uhs-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes uhs-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-14px) rotate(3deg); }
}

@keyframes uhs-wag {
    0%, 100% { transform: rotate(-10deg); }
    50%      { transform: rotate(10deg); }
}

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

@keyframes uhs-twinkle {
    0%, 100% { transform: scale(1)   rotate(0);      opacity: 0.6; }
    50%      { transform: scale(1.2) rotate(180deg); opacity: 0.9; }
}

@keyframes uhs-fade-up {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* ============================================
   17. NOWE SEKCJE v1.0.3: Family, Album, Video
   ============================================ */

/* ---- FAMILY (trzy pokolenia) ---- */
.uhs-family-section {
    padding: var(--uhs-space-32) 0;
    background:
        radial-gradient(circle at 15% 20%, var(--uhs-coral-soft) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, var(--uhs-mint-soft) 0%, transparent 45%),
        var(--uhs-cream);
    position: relative;
}

.uhs-family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-6);
    position: relative;
    z-index: 1;
}

.uhs-family-card {
    position: relative;
    padding: var(--uhs-space-8) var(--uhs-space-6);
    background: white;
    border-radius: var(--uhs-radius-xl);
    text-align: center;
    box-shadow: var(--uhs-shadow-md);
    transition: transform var(--uhs-transition), box-shadow var(--uhs-transition);
    overflow: hidden;
}

.uhs-family-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--uhs-shadow-lg);
}

.uhs-family-card-grandma::before,
.uhs-family-card-parents::before,
.uhs-family-card-henio::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 8px;
    border-radius: var(--uhs-radius-xl) var(--uhs-radius-xl) 0 0;
}

.uhs-family-card-grandma::before { background: linear-gradient(90deg, var(--uhs-coral), #D68576); }
.uhs-family-card-parents::before { background: linear-gradient(90deg, var(--uhs-mint), #6BA881); }
.uhs-family-card-henio::before   { background: linear-gradient(90deg, var(--uhs-yellow), #D4A83E); }

.uhs-family-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    background: var(--uhs-cream-2);
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--uhs-shadow-sm);
    animation: uhs-bob 3.5s ease-in-out infinite;
}

.uhs-family-card-parents .uhs-family-badge { animation-delay: 0.5s; }
.uhs-family-card-henio .uhs-family-badge   { animation-delay: 1s; }

/* Medal (20 lat, infinity, itp.) */
.uhs-family-medal {
    width: 96px;
    height: 96px;
    margin: var(--uhs-space-8) auto var(--uhs-space-6);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--uhs-yellow), #D4A83E);
    color: var(--uhs-graphite);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--uhs-shadow-yellow);
    position: relative;
}

.uhs-family-medal::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed var(--uhs-yellow);
    border-radius: 50%;
    opacity: 0.5;
    animation: uhs-spin 20s linear infinite;
}

@keyframes uhs-spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.uhs-family-medal-num {
    font-family: var(--uhs-font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--uhs-graphite);
}

.uhs-family-medal-label {
    font-size: 0.65rem;
    font-family: var(--uhs-font-display);
    font-weight: 500;
    color: var(--uhs-graphite-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* Foto zamiast medalu dla Henia */
.uhs-family-photo {
    width: 120px;
    height: 120px;
    margin: var(--uhs-space-8) auto var(--uhs-space-6);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--uhs-yellow);
    box-shadow: var(--uhs-shadow-md);
    position: relative;
}

.uhs-family-photo::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed var(--uhs-yellow);
    border-radius: 50%;
    opacity: 0.5;
    animation: uhs-spin 20s linear infinite reverse;
}

.uhs-family-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uhs-family-card h3 {
    font-size: var(--uhs-text-xl);
    margin-bottom: 0.4rem;
}

.uhs-family-role {
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
    color: var(--uhs-coral);
    font-weight: 600;
    margin-bottom: var(--uhs-space-4);
}

.uhs-family-desc {
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite-soft);
    line-height: 1.6;
    margin-bottom: var(--uhs-space-6);
}

.uhs-family-tags {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--uhs-space-4);
    border-top: 1px dashed var(--uhs-border);
}

.uhs-family-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--uhs-cream-2);
    border-radius: var(--uhs-radius-full);
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    font-family: var(--uhs-font-display);
    font-weight: 500;
}


/* ---- ALBUM POLAROIDS ---- */
.uhs-album-section {
    padding: var(--uhs-space-32) 0;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(235, 203, 104, 0.03),
            rgba(235, 203, 104, 0.03) 12px,
            transparent 12px,
            transparent 24px
        ),
        var(--uhs-cream-2);
    overflow: visible;
}

.uhs-album-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--uhs-space-12);
    position: relative;
    padding: var(--uhs-space-8) 0;
}

.uhs-album-pin-center {
    display: none; /* rezerwa na przyszłość */
}

.uhs-album-polaroid {
    background: white;
    padding: 16px 16px 20px;
    box-shadow:
        0 3px 6px rgba(0,0,0,0.12),
        0 10px 24px rgba(0,0,0,0.08);
    transition: transform var(--uhs-transition), box-shadow var(--uhs-transition);
    position: relative;
    cursor: grab;
    border-radius: 4px;
}

.uhs-polaroid-1 { transform: rotate(-4deg);  }
.uhs-polaroid-2 { transform: rotate(2deg);   margin-top: var(--uhs-space-8); }
.uhs-polaroid-3 { transform: rotate(-2deg);  }

.uhs-album-polaroid:hover {
    transform: rotate(0) translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Taśma na górze polaroida */
.uhs-polaroid-tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 80px;
    height: 22px;
    background: rgba(235, 203, 104, 0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border-left: 1px dashed rgba(0,0,0,0.08);
    border-right: 1px dashed rgba(0,0,0,0.08);
}

.uhs-polaroid-2 .uhs-polaroid-tape { background: rgba(232, 165, 152, 0.5); transform: translateX(-50%) rotate(5deg); }
.uhs-polaroid-3 .uhs-polaroid-tape { background: rgba(153, 199, 169, 0.5); transform: translateX(-50%) rotate(-6deg); }

.uhs-polaroid-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--uhs-cream-2);
    overflow: hidden;
    margin-bottom: var(--uhs-space-4);
}

.uhs-polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uhs-polaroid-caption {
    text-align: center;
    padding: 0 var(--uhs-space-2);
}

.uhs-polaroid-caption strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-base);
    color: var(--uhs-graphite);
    margin-bottom: 0.3rem;
}

.uhs-polaroid-caption p {
    font-size: var(--uhs-text-xs);
    line-height: 1.55;
    color: var(--uhs-graphite-soft);
    margin-bottom: 0.4rem;
    font-family: 'Caveat', 'Comic Sans MS', cursive;
    font-size: 1.05rem;
}

.uhs-polaroid-date {
    display: block;
    font-size: 0.7rem;
    color: var(--uhs-coral);
    font-family: var(--uhs-font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ---- VIDEO SECTION (pierwsze wakacje) ---- */
.uhs-video-section {
    padding: var(--uhs-space-32) 0;
    background:
        radial-gradient(circle at 80% 20%, var(--uhs-mint-soft) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, var(--uhs-blue-soft) 0%, transparent 45%),
        var(--uhs-cream-warm);
    position: relative;
    overflow: hidden;
}

.uhs-video-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--uhs-space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.uhs-video-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    background: white;
    border-radius: var(--uhs-radius-full);
    font-family: var(--uhs-font-display);
    font-weight: 500;
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite);
    margin-bottom: var(--uhs-space-6);
    box-shadow: var(--uhs-shadow-sm);
}

.uhs-video-pin {
    font-size: 1.1em;
    animation: uhs-bob 2.5s ease-in-out infinite;
}

.uhs-video-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--uhs-space-3);
    margin-top: var(--uhs-space-8);
}

.uhs-video-fact {
    display: flex;
    align-items: center;
    gap: var(--uhs-space-3);
    padding: var(--uhs-space-3) var(--uhs-space-4);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border-radius: var(--uhs-radius-md);
}

.uhs-video-fact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.uhs-video-fact strong {
    display: block;
    font-family: var(--uhs-font-display);
    font-size: var(--uhs-text-sm);
    color: var(--uhs-graphite);
    line-height: 1.25;
}

.uhs-video-fact small {
    display: block;
    font-size: var(--uhs-text-xs);
    color: var(--uhs-graphite-soft);
    line-height: 1.35;
}

/* Player */
.uhs-video-player-wrap {
    position: relative;
}

.uhs-video-player {
    position: relative;
    border-radius: var(--uhs-radius-xl);
    overflow: hidden;
    box-shadow: var(--uhs-shadow-lg);
    border: 10px solid white;
    transform: rotate(1deg);
    transition: transform var(--uhs-transition);
    background: var(--uhs-graphite);
    aspect-ratio: 9/16; /* telefon pionowy — typowy dla nagrań z iPhone */
    max-width: 380px;
    margin: 0 auto;
}

.uhs-video-player:hover {
    transform: rotate(0);
}

.uhs-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play indicator - ukryty gdy wideo jest odtwarzane */
.uhs-video-play-indicator {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity var(--uhs-transition);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.uhs-video-play-indicator svg {
    animation: uhs-bob 2.5s ease-in-out infinite;
}

/* Kiedy wideo jest odtwarzane, ikonka znika */
.uhs-video-player:has(video:not([paused])) .uhs-video-play-indicator,
.uhs-video-player.is-playing .uhs-video-play-indicator {
    opacity: 0;
}

/* Dekoracje wokół playerów */
.uhs-video-deco {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    animation: uhs-float 6s ease-in-out infinite;
    z-index: 0;
}

.uhs-video-deco-1 {
    top: -20px;
    left: -10px;
    animation-delay: 0s;
}

.uhs-video-deco-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1.5s;
    font-size: 2.5rem;
}

.uhs-video-deco-3 {
    bottom: -10px;
    right: 20%;
    animation-delay: 2.5s;
    font-size: 2.2rem;
}


/* ---- RESPONSIVE dla nowych sekcji ---- */
@media (max-width: 1024px) {
    .uhs-family-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .uhs-video-grid {
        grid-template-columns: 1fr;
        gap: var(--uhs-space-12);
    }

    .uhs-video-player {
        max-width: 340px;
    }

    .uhs-album-board {
        grid-template-columns: 1fr 1fr;
        gap: var(--uhs-space-8);
    }

    .uhs-polaroid-3 {
        grid-column: 1 / -1;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .uhs-album-board {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .uhs-polaroid-2,
    .uhs-polaroid-3 {
        grid-column: auto;
        max-width: none;
        margin-top: 0;
    }

    .uhs-album-polaroid {
        transform: rotate(-2deg);
    }

    .uhs-polaroid-2 { transform: rotate(1deg); }

    .uhs-video-facts {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SECTION 18 — v1.0.4: UX REFACTOR
   Header v2, Shelter, Categories v2, Couples, Single product 3-col,
   Cart v2, Hero badges v2
   ============================================================ */

/* --- 18.1. SHELTER BANNER (zastępuje topbar) --- */
.uhs-shelter-banner {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5) 0%, var(--uhs-coral-soft, #F5D3CC) 100%);
    color: var(--uhs-graphite);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(45, 45, 52, 0.05);
    position: relative;
    overflow: hidden;
}
.uhs-shelter-banner::before {
    content: '🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾 🐾';
    position: absolute;
    inset: 0;
    font-size: 30px;
    opacity: 0.06;
    letter-spacing: 40px;
    line-height: 40px;
    pointer-events: none;
    animation: shelterPawsDrift 40s linear infinite;
}
@keyframes shelterPawsDrift {
    from { transform: translateX(0); }
    to { transform: translateX(-40px); }
}
.uhs-shelter-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.uhs-shelter-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(235, 203, 104, 0.5));
    animation: shelterHeart 2.5s ease-in-out infinite;
}
@keyframes shelterHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.uhs-shelter-content {
    color: var(--uhs-graphite);
    font-weight: 500;
}
.uhs-shelter-content strong { font-weight: 700; }
.uhs-shelter-name {
    background: rgba(255, 255, 255, 0.6);
    padding: 2px 10px;
    border-radius: 99px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}
.uhs-shelter-more {
    color: var(--uhs-graphite);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    padding: 4px 12px;
    border-radius: 99px;
    background: white;
    transition: all 0.2s ease;
    font-size: 12px;
}
.uhs-shelter-more:hover {
    background: var(--uhs-graphite);
    color: white;
    transform: translateY(-1px);
}

/* --- 18.2. HEADER V2 (większe logo, dekoracje) --- */
.uhs-header-v2 {
    background: var(--uhs-cream);
    padding: 18px 0;
    position: relative;
    box-shadow: 0 2px 12px rgba(45, 45, 52, 0.04);
    overflow: hidden;
}
.uhs-header-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.uhs-header-paw {
    position: absolute;
    opacity: 0.08;
    font-size: 36px;
}
.uhs-header-paw-1 { top: 5px; left: 5%; transform: rotate(-15deg); }
.uhs-header-paw-2 { top: 30%; right: 8%; transform: rotate(20deg); font-size: 24px; }
.uhs-header-paw-3 { bottom: 10px; left: 45%; transform: rotate(-10deg); font-size: 20px; }

.uhs-logo-v2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.uhs-logo-v2 a {
    display: block;
    transition: transform 0.3s ease;
}
.uhs-logo-v2 a:hover {
    transform: scale(1.04) rotate(-1deg);
}
.uhs-logo-v2 .uhs-logo-img,
.uhs-logo-v2 .custom-logo {
    max-height: 88px;
    width: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(45, 45, 52, 0.08);
}

/* --- 18.3. MENU V2 (cukierkowe buttony) --- */
.uhs-menu-v2 {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.uhs-menu-v2 > li > a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--uhs-graphite);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 99px;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.uhs-menu-v2 > li:nth-child(5n+1) > a:hover { background: var(--uhs-coral-soft, #F5D3CC); }
.uhs-menu-v2 > li:nth-child(5n+2) > a:hover { background: var(--uhs-mint-soft, #CCE3D3); }
.uhs-menu-v2 > li:nth-child(5n+3) > a:hover { background: var(--uhs-blue-soft, #C9D9E8); }
.uhs-menu-v2 > li:nth-child(5n+4) > a:hover { background: var(--uhs-yellow-soft, #F5E4B5); }
.uhs-menu-v2 > li:nth-child(5n+5) > a:hover { background: var(--uhs-coral-soft, #F5D3CC); }
.uhs-menu-v2 > li > a:hover {
    transform: translateY(-2px);
}
.uhs-menu-v2 > li.current-menu-item > a,
.uhs-menu-v2 > li.current_page_item > a {
    background: var(--uhs-graphite);
    color: white;
}

/* --- 18.4. HEADER ACTIONS V2 --- */
.uhs-header-actions-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.uhs-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: var(--uhs-graphite);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(45, 45, 52, 0.05);
}
.uhs-icon-btn:hover {
    background: var(--uhs-yellow);
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(235, 203, 104, 0.4);
}
.uhs-icon-btn.uhs-cart-link {
    background: var(--uhs-coral);
    color: white;
}
.uhs-icon-btn.uhs-cart-link:hover {
    background: var(--uhs-graphite);
    color: var(--uhs-yellow);
}
.uhs-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid white;
}

/* --- 18.5. HERO BADGES V2 (kafelki zamiast rządka) --- */
.uhs-hero-badges-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.uhs-hero-trust-card {
    background: white;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(45, 45, 52, 0.06);
    transition: all 0.3s ease;
}
.uhs-hero-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(45, 45, 52, 0.1);
}
.uhs-hero-trust-icon {
    font-size: 30px;
    flex-shrink: 0;
}
.uhs-hero-trust-card strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    color: var(--uhs-graphite);
    margin-bottom: 2px;
}
.uhs-hero-trust-card small {
    color: #7A7A85;
    font-size: 11px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .uhs-hero-badges-v2 {
        grid-template-columns: 1fr;
    }
}

/* --- 18.6. CATEGORIES GRID V2 --- */
.uhs-categories-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.uhs-cat-card-v2 {
    background: white;
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--uhs-graphite);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 45, 52, 0.05);
}
.uhs-cat-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--uhs-cream-2, #FDF8F2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.uhs-cat-card-v2.uhs-cat-coral::before { background: var(--uhs-coral-soft, #F5D3CC); }
.uhs-cat-card-v2.uhs-cat-blue::before { background: var(--uhs-blue-soft, #C9D9E8); }
.uhs-cat-card-v2.uhs-cat-mint::before { background: var(--uhs-mint-soft, #CCE3D3); }
.uhs-cat-card-v2.uhs-cat-yellow::before { background: var(--uhs-yellow-soft, #F5E4B5); }
.uhs-cat-card-v2:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(45, 45, 52, 0.12);
}
.uhs-cat-card-v2:hover::before { opacity: 1; }
.uhs-cat-card-v2 > * { position: relative; z-index: 1; }

.uhs-cat-icon-v2 {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}
.uhs-cat-icon-v2 svg {
    width: 100%;
    height: 100%;
}
.uhs-cat-card-v2:hover .uhs-cat-icon-v2 {
    transform: scale(1.1) rotate(-6deg);
}

.uhs-cat-body-v2 {
    flex: 1;
}
.uhs-cat-name-v2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--uhs-graphite);
}
.uhs-cat-count-v2 {
    font-size: 12px;
    color: #7A7A85;
    font-weight: 500;
}
.uhs-cat-arrow-v2 {
    margin-top: 14px;
    font-size: 20px;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.uhs-cat-card-v2:hover .uhs-cat-arrow-v2 {
    opacity: 1;
    transform: translateX(6px);
}

/* --- 18.7. KOMPLETY Z PUPILEM (sekcja ludzka) --- */
.uhs-couples-section {
    background: linear-gradient(135deg, var(--uhs-coral-soft, #F5D3CC) 0%, var(--uhs-blue-soft, #C9D9E8) 100%);
    position: relative;
    overflow: hidden;
}
.uhs-couples-section::before {
    content: '💕 💕 💕 💕 💕';
    position: absolute;
    inset: 0;
    font-size: 80px;
    opacity: 0.04;
    letter-spacing: 80px;
    line-height: 140px;
    pointer-events: none;
}
.uhs-couples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.uhs-couple-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    text-decoration: none;
    color: var(--uhs-graphite);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(45, 45, 52, 0.08);
    position: relative;
    overflow: hidden;
}
.uhs-couple-card::after {
    content: '💕';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.4;
    transition: all 0.3s ease;
}
.uhs-couple-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(45, 45, 52, 0.15);
}
.uhs-couple-card:hover::after {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
}
.uhs-couple-icon {
    width: 90px;
    height: 90px;
}
.uhs-couple-icon svg {
    width: 100%;
    height: 100%;
}
.uhs-couple-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin: 0;
}
.uhs-couple-card p {
    color: #7A7A85;
    font-size: 14px;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}
.uhs-couple-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px dashed rgba(45, 45, 52, 0.12);
}
.uhs-couple-count {
    font-size: 12px;
    color: #7A7A85;
    font-weight: 500;
}
.uhs-couple-cta {
    color: var(--uhs-coral);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.uhs-couples-perk {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(45, 45, 52, 0.08);
}
.uhs-couples-perk-icon {
    font-size: 40px;
    flex-shrink: 0;
}
.uhs-couples-perk strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: var(--uhs-graphite);
    margin-bottom: 4px;
}
.uhs-couples-perk small {
    color: #7A7A85;
    font-size: 13px;
}
.uhs-couples-perk small strong {
    display: inline;
    font-size: inherit;
    background: var(--uhs-yellow-soft, #F5E4B5);
    padding: 1px 8px;
    border-radius: 6px;
    margin: 0;
    color: var(--uhs-graphite);
}

@media (max-width: 768px) {
    .uhs-couples-grid { grid-template-columns: 1fr; }
    .uhs-couples-perk { flex-direction: column; text-align: center; }
}

/* --- 18.8. SHELTER SECTION (na homepage) --- */
.uhs-shelter-section {
    background: linear-gradient(135deg, #FFF5F1 0%, var(--uhs-mint-soft, #CCE3D3) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.uhs-shelter-paws {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.uhs-shelter-paws span {
    position: absolute;
    font-size: 60px;
    opacity: 0.08;
    animation: shelterPawFloat 6s ease-in-out infinite;
}
.uhs-shelter-paws span:nth-child(1) { top: 5%; left: 8%; animation-delay: 0s; }
.uhs-shelter-paws span:nth-child(2) { top: 20%; right: 12%; animation-delay: 1s; font-size: 80px; }
.uhs-shelter-paws span:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 2s; font-size: 50px; }
.uhs-shelter-paws span:nth-child(4) { bottom: 10%; right: 8%; animation-delay: 3s; }
.uhs-shelter-paws span:nth-child(5) { top: 50%; left: 45%; animation-delay: 4s; font-size: 40px; }
.uhs-shelter-paws span:nth-child(6) { top: 35%; right: 35%; animation-delay: 5s; font-size: 70px; }
@keyframes shelterPawFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.08; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.12; }
}

.uhs-shelter-box {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 32px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    box-shadow: 0 20px 60px rgba(45, 45, 52, 0.12);
}
.uhs-shelter-box-left h2 { margin: 16px 0 20px; }
.uhs-shelter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}
.uhs-shelter-stat-card {
    background: var(--uhs-cream);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
}
.uhs-shelter-stat-num {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--uhs-coral);
    line-height: 1;
    margin-bottom: 4px;
}
.uhs-shelter-stat-card small {
    font-size: 11px;
    color: #7A7A85;
}
.uhs-shelter-ctas {
    margin-top: 20px;
}
.uhs-btn-paw {
    margin-left: 4px;
}

.uhs-shelter-current {
    background: var(--uhs-cream);
    border-radius: 24px;
    padding: 24px;
    position: relative;
}
.uhs-shelter-current-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7A7A85;
    font-weight: 600;
    margin-bottom: 4px;
}
.uhs-shelter-current-month {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    color: var(--uhs-coral);
    margin-bottom: 16px;
    font-weight: 500;
}
.uhs-shelter-current-card {
    background: white;
    border-radius: 18px;
    padding: 22px 20px;
    text-align: center;
    border: 2px dashed var(--uhs-coral-soft, #F5D3CC);
}
.uhs-shelter-current-emoji {
    font-size: 48px;
    margin-bottom: 8px;
}
.uhs-shelter-current-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin: 0 0 6px;
}
.uhs-shelter-current-city {
    color: #7A7A85;
    font-size: 13px;
    margin: 0 0 10px;
}
.uhs-shelter-current-desc {
    font-size: 13px;
    color: #4A4A55;
    line-height: 1.5;
    margin: 0 0 10px;
}
.uhs-shelter-current-link {
    color: var(--uhs-coral);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.uhs-shelter-vote-banner {
    background: var(--uhs-yellow-soft, #F5E4B5);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}
.uhs-shelter-vote-banner span {
    font-size: 20px;
    flex-shrink: 0;
}
.uhs-shelter-vote-banner small {
    font-size: 12px;
    line-height: 1.4;
    color: var(--uhs-graphite);
}
.uhs-shelter-vote-banner a {
    color: var(--uhs-graphite);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .uhs-shelter-box {
        grid-template-columns: 1fr;
        padding: 28px;
    }
}
@media (max-width: 600px) {
    .uhs-shelter-stats { grid-template-columns: 1fr; }
}

/* --- 18.9. SHOP CATEGORY NAV (na stronie sklepu) --- */
.uhs-shop-cat-nav {
    background: var(--uhs-cream-2, #FDF8F2);
    padding: 24px 0;
    border-bottom: 1px solid rgba(45, 45, 52, 0.06);
    margin-bottom: 24px;
}
.uhs-shop-cat-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.uhs-shop-cat-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 16px 14px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: var(--uhs-graphite);
    transition: all 0.25s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(45, 45, 52, 0.04);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 14px;
}
.uhs-shop-cat-tab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(45, 45, 52, 0.1);
    background: var(--uhs-yellow-soft, #F5E4B5);
}
.uhs-shop-cat-tab.is-active {
    background: var(--uhs-graphite);
    color: white;
}
.uhs-shop-cat-tab.is-active:hover {
    background: var(--uhs-graphite);
}
.uhs-shop-cat-tab.is-human {
    background: linear-gradient(135deg, var(--uhs-coral-soft, #F5D3CC), var(--uhs-blue-soft, #C9D9E8));
}
.uhs-shop-cat-tab.is-human.is-active {
    background: var(--uhs-coral);
    color: white;
}
.uhs-shop-cat-tab-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uhs-shop-cat-tab-icon svg {
    width: 100%;
    height: 100%;
}
.uhs-shop-cat-tab small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    opacity: 0.6;
    font-weight: 400;
}

/* Shop shelter CTA (na dole sklepu) */
.uhs-shop-shelter-cta-box {
    background: white;
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(45, 45, 52, 0.06);
    border: 2px dashed var(--uhs-yellow-soft, #F5E4B5);
}
.uhs-shop-shelter-emoji {
    font-size: 48px;
    flex-shrink: 0;
}
.uhs-shop-shelter-cta-box > div {
    flex: 1;
}
.uhs-shop-shelter-cta-box strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    margin-bottom: 4px;
}
.uhs-shop-shelter-cta-box small {
    color: #7A7A85;
    font-size: 13px;
}
@media (max-width: 600px) {
    .uhs-shop-shelter-cta-box { flex-direction: column; text-align: center; }
}

/* --- 18.10. SINGLE PRODUCT 3-COLUMN LAYOUT --- */
.uhs-single-product-v2 {
    padding: 20px 0 60px;
}
.uhs-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    padding: 24px 0 60px;
    align-items: start;
}

/* LEWA: galeria */
.uhs-product-gallery-col {
    position: relative;
}
.uhs-product-gallery-v2 {
    position: relative;
}
.uhs-product-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--uhs-cream-2, #FDF8F2);
    margin-bottom: 16px;
}
.uhs-product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uhs-product-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--uhs-coral);
    font-family: 'Fredoka', sans-serif;
}
.uhs-product-placeholder span { font-size: 80px; }
.uhs-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.uhs-product-thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    background: var(--uhs-cream-2, #FDF8F2);
}
.uhs-product-thumb.uhs-product-thumb-active,
.uhs-product-thumb:hover {
    border-color: var(--uhs-coral);
    transform: translateY(-2px);
}
.uhs-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.uhs-product-badges-on-img {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

/* ŚRODEK: info */
.uhs-product-info-col {
    padding: 0 4px;
}
.uhs-product-cat-badge {
    display: inline-block;
    background: var(--uhs-coral-soft, #F5D3CC);
    color: var(--uhs-coral);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.uhs-product-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--uhs-graphite);
}
.uhs-product-short-desc {
    font-size: 16px;
    color: #4A4A55;
    line-height: 1.6;
    margin-bottom: 24px;
}
.uhs-product-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.uhs-product-highlight {
    background: var(--uhs-cream-2, #FDF8F2);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.uhs-highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.uhs-product-highlight strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    color: var(--uhs-graphite);
}
.uhs-product-highlight small {
    font-size: 12px;
    color: #7A7A85;
}

.uhs-product-size-picker {
    margin-bottom: 20px;
}
.uhs-product-size-picker label {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}
.uhs-size-guide-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--uhs-coral);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.uhs-product-accordion {
    background: var(--uhs-cream-2, #FDF8F2);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
}
.uhs-product-accordion summary {
    padding: 14px 18px;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.uhs-product-accordion summary::-webkit-details-marker { display: none; }
.uhs-product-accordion summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s ease;
}
.uhs-product-accordion[open] summary::after {
    transform: rotate(45deg);
}
.uhs-accordion-body {
    padding: 0 18px 16px;
}
.uhs-accordion-body ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #4A4A55;
}
.uhs-accordion-body li { margin-bottom: 4px; }

/* PRAWA: sticky box sprzedażowy */
.uhs-product-buy-col {
    position: relative;
}
.uhs-product-buy-sticky {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(45, 45, 52, 0.08);
}
.uhs-product-buy-price {
    margin-bottom: 16px;
}
.uhs-product-buy-price .price,
.uhs-product-buy-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--uhs-graphite);
    line-height: 1.1;
}
.uhs-product-buy-price .price del {
    font-size: 18px;
    color: #A0A0A0;
    margin-right: 8px;
    font-weight: 400;
}
.uhs-product-buy-price .price ins {
    text-decoration: none;
    color: var(--uhs-coral);
}
.uhs-product-buy-save {
    display: inline-block;
    margin-left: 8px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    vertical-align: middle;
}

.uhs-product-buy-stock {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.uhs-product-buy-stock.in-stock {
    background: var(--uhs-mint-soft, #CCE3D3);
    color: #4A8962;
}
.uhs-product-buy-stock.out-of-stock {
    background: var(--uhs-coral-soft, #F5D3CC);
    color: #C4776A;
}
.uhs-stock-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #5AA36A;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(90, 163, 106, 0.3);
    animation: stockPulse 2s ease-in-out infinite;
}
@keyframes stockPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(90, 163, 106, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(90, 163, 106, 0.15); }
}

.uhs-buy-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.uhs-buy-quantity label {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 500;
}
.uhs-buy-quantity .quantity input {
    width: 70px;
    padding: 10px;
    border: 2px solid var(--uhs-cream-2, #FDF8F2);
    border-radius: 10px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.uhs-buy-button {
    width: 100%;
    margin-bottom: 16px;
}

.uhs-buy-payments {
    padding: 14px 0;
    border-top: 1px dashed rgba(45, 45, 52, 0.1);
    margin-top: 14px;
}
.uhs-buy-payments-label {
    display: block;
    font-size: 12px;
    color: #7A7A85;
    margin-bottom: 8px;
    font-weight: 500;
}
.uhs-buy-payments-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.uhs-pay-badge {
    background: var(--uhs-cream-2, #FDF8F2);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--uhs-graphite);
}
.uhs-buy-paypo-hint {
    font-size: 12px;
    color: var(--uhs-coral);
    line-height: 1.4;
    display: block;
}

.uhs-buy-shipping {
    padding: 14px 0;
    border-top: 1px dashed rgba(45, 45, 52, 0.1);
}
.uhs-buy-shipping-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.uhs-buy-shipping-row > span { font-size: 20px; flex-shrink: 0; }
.uhs-buy-shipping-row strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    color: var(--uhs-graphite);
}
.uhs-buy-shipping-row small {
    font-size: 11px;
    color: #7A7A85;
}

.uhs-buy-actions {
    padding-top: 14px;
    border-top: 1px dashed rgba(45, 45, 52, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uhs-buy-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--uhs-cream-2, #FDF8F2);
    text-decoration: none;
    color: var(--uhs-graphite);
    transition: all 0.2s ease;
}
.uhs-buy-action:hover {
    background: var(--uhs-yellow-soft, #F5E4B5);
    transform: translateX(3px);
}
.uhs-buy-action > span {
    font-size: 20px;
    flex-shrink: 0;
}
.uhs-buy-action strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
}
.uhs-buy-action small {
    font-size: 11px;
    color: #7A7A85;
}

/* SHELTER WIDGET NA PRODUKCIE */
.uhs-shelter-widget {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5), var(--uhs-coral-soft, #F5D3CC));
    border-radius: 16px;
    padding: 16px;
    margin: 16px 0;
}
.uhs-shelter-widget-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.uhs-shelter-widget-emoji {
    font-size: 24px;
    flex-shrink: 0;
}
.uhs-shelter-widget-header strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    margin-bottom: 2px;
}
.uhs-shelter-widget-header small {
    font-size: 12px;
    color: #4A4A55;
    line-height: 1.4;
    display: block;
}
.uhs-shelter-widget-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.uhs-shelter-stat {
    background: white;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.uhs-shelter-stat-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.uhs-shelter-stat-text strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    line-height: 1;
    color: var(--uhs-graphite);
}
.uhs-shelter-stat-text small {
    font-size: 10px;
    color: #7A7A85;
    line-height: 1.2;
}

/* Responsive single product */
@media (max-width: 1000px) {
    .uhs-product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .uhs-product-buy-sticky {
        position: static;
    }
}

/* Pełny opis pod 3-kolumnami */
.uhs-product-full-description {
    background: var(--uhs-cream-2, #FDF8F2);
}
.uhs-full-desc-intro {
    text-align: center;
    margin-bottom: 32px;
}
.uhs-full-desc-content {
    font-size: 17px;
    line-height: 1.7;
    color: #4A4A55;
    max-width: 720px;
    margin: 0 auto;
}
.uhs-full-desc-content p { margin-bottom: 1.2em; }

/* --- 18.11. CART V2 --- */
.uhs-cart-v2 {
    padding-bottom: 60px;
}
.uhs-cart-hero {
    background: linear-gradient(135deg, var(--uhs-coral-soft, #F5D3CC), var(--uhs-yellow-soft, #F5E4B5));
    padding: 40px 0;
    margin-bottom: 30px;
}
.uhs-cart-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.uhs-cart-hero-text h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    margin: 8px 0;
}
.uhs-cart-hero-text p {
    color: #4A4A55;
    margin: 0;
}
.uhs-cart-hero-henio img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(45, 45, 52, 0.1);
}

.uhs-cart-free-shipping-calc {
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(45, 45, 52, 0.05);
}
.uhs-cart-free-shipping-calc.is-achieved {
    background: var(--uhs-mint-soft, #CCE3D3);
    text-align: center;
}
.uhs-fs-achieved-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    color: #4A8962;
}
.uhs-fs-achieved-msg span { font-size: 24px; }
.uhs-fs-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
}
.uhs-fs-emoji { font-size: 22px; }
.uhs-fs-amount {
    color: var(--uhs-coral);
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
}
.uhs-fs-progress {
    height: 10px;
    background: var(--uhs-cream-2, #FDF8F2);
    border-radius: 99px;
    overflow: hidden;
}
.uhs-fs-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--uhs-coral), var(--uhs-yellow));
    border-radius: 99px;
    transition: width 0.6s ease;
}

.uhs-cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}
.uhs-cart-items-col {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(45, 45, 52, 0.04);
}
.uhs-cart-section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    margin: 0 0 20px;
}

.uhs-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto 40px;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(45, 45, 52, 0.1);
}
.uhs-cart-item:last-of-type { border-bottom: none; }
.uhs-cart-item-img {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--uhs-cream-2, #FDF8F2);
}
.uhs-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.uhs-cart-item-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    margin: 0 0 4px;
}
.uhs-cart-item-name a {
    color: var(--uhs-graphite);
    text-decoration: none;
}
.uhs-cart-item-price {
    font-size: 13px;
    color: #7A7A85;
}
.uhs-cart-item-qty .quantity input {
    width: 60px;
    padding: 8px;
    border: 2px solid var(--uhs-cream-2, #FDF8F2);
    border-radius: 10px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}
.uhs-cart-item-subtotal {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--uhs-graphite);
}
.uhs-remove-btn {
    width: 32px;
    height: 32px;
    background: var(--uhs-cream-2, #FDF8F2);
    color: #7A7A85;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s ease;
}
.uhs-remove-btn:hover {
    background: var(--uhs-coral);
    color: white;
    transform: rotate(90deg);
}

.uhs-cart-coupon {
    margin-top: 20px;
    padding: 20px;
    background: var(--uhs-cream-2, #FDF8F2);
    border-radius: 14px;
}
.uhs-cart-coupon label {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}
.uhs-cart-coupon-row {
    display: flex;
    gap: 8px;
}
.uhs-cart-coupon-row input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid white;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
}
.uhs-cart-coupon small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #7A7A85;
}
.uhs-cart-coupon small strong {
    background: var(--uhs-yellow-soft, #F5E4B5);
    padding: 1px 6px;
    border-radius: 6px;
    color: var(--uhs-graphite);
}

.uhs-cart-update-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(45, 45, 52, 0.1);
}
.uhs-cart-continue {
    color: var(--uhs-graphite);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* CART SIDEBAR */
.uhs-cart-sidebar-col { position: relative; }
.uhs-cart-sidebar-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.uhs-cart-summary {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(45, 45, 52, 0.06);
}
.uhs-cart-summary h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    margin: 0 0 14px;
}
.uhs-cart-summary table {
    width: 100%;
    margin-bottom: 16px;
}
.uhs-cart-summary table th,
.uhs-cart-summary table td {
    padding: 8px 0;
    border: none;
    font-size: 14px;
}
.uhs-cart-summary table th {
    text-align: left;
    font-weight: 500;
    color: #4A4A55;
    font-family: inherit;
}
.uhs-cart-summary table td {
    text-align: right;
}
.uhs-cart-summary table .order-total th,
.uhs-cart-summary table .order-total td {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding-top: 14px;
    border-top: 2px dashed rgba(45, 45, 52, 0.1);
}
.uhs-cart-summary table .order-total td {
    color: var(--uhs-coral);
}
.uhs-cart-summary .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    text-align: center;
    display: block;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    padding: 16px;
    border-radius: 99px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(235, 203, 104, 0.4);
    transition: all 0.3s ease;
}
.uhs-cart-summary .wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(235, 203, 104, 0.55);
}

/* SHELTER COUNTER w cart */
.uhs-cart-shelter-counter {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5), var(--uhs-coral-soft, #F5D3CC));
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.uhs-cart-shelter-emoji {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(235, 203, 104, 0.5));
}
.uhs-cart-shelter-content strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    margin-bottom: 4px;
}
.uhs-cart-shelter-big-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--uhs-coral);
    line-height: 1;
    margin: 4px 0;
}
.uhs-cart-shelter-content small {
    font-size: 12px;
    color: #4A4A55;
    line-height: 1.4;
    display: block;
    margin-bottom: 8px;
}
.uhs-cart-shelter-equiv {
    background: white;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--uhs-graphite);
    display: inline-block;
    margin-top: 4px;
}

.uhs-cart-trust {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uhs-cart-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4A4A55;
}
.uhs-cart-trust-row span { font-size: 18px; }

@media (max-width: 900px) {
    .uhs-cart-layout { grid-template-columns: 1fr; }
    .uhs-cart-sidebar-sticky { position: static; }
    .uhs-cart-item {
        grid-template-columns: 80px 1fr 32px;
        gap: 12px;
    }
    .uhs-cart-item-qty, .uhs-cart-item-subtotal {
        grid-column: 2;
        grid-row: 2;
    }
    .uhs-cart-item-img { width: 80px; height: 80px; }
    .uhs-cart-hero-inner { flex-direction: column; text-align: center; }
    .uhs-cart-hero-henio img { width: 70px; height: 70px; }
}

/* --- 18.12. ZDJĘCIA PRODUKTÓW 1:1 WSZĘDZIE --- */
.uhs-product-card .uhs-product-media,
.woocommerce ul.products li.product .uhs-product-media {
    aspect-ratio: 1/1 !important;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--uhs-cream-2, #FDF8F2);
}
.uhs-product-card .uhs-product-media img,
.woocommerce ul.products li.product .uhs-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --- 18.13. CHECKOUT V2 --- */
.uhs-checkout-v2 {
    padding-bottom: 60px;
}
.uhs-checkout-hero {
    background: linear-gradient(135deg, var(--uhs-blue-soft, #C9D9E8), var(--uhs-mint-soft, #CCE3D3));
    padding: 40px 0 56px;
    margin-bottom: 28px;
    text-align: center;
}
.uhs-checkout-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    margin: 8px 0 28px;
}

.uhs-checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}
.uhs-checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}
.uhs-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: #7A7A85;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(45, 45, 52, 0.08);
}
.uhs-checkout-step.active .uhs-step-num {
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    box-shadow: 0 4px 14px rgba(235, 203, 104, 0.5);
    transform: scale(1.1);
}
.uhs-checkout-step.completed .uhs-step-num {
    background: var(--uhs-mint);
    color: white;
}
.uhs-step-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--uhs-graphite);
}
.uhs-checkout-step-line {
    flex: 1;
    max-width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 99px;
    margin-bottom: 20px;
}
.uhs-checkout-step-line.completed {
    background: var(--uhs-mint);
}

.uhs-checkout-shelter-banner {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5), var(--uhs-coral-soft, #F5D3CC));
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.uhs-checkout-shelter-emoji { font-size: 28px; }
.uhs-checkout-shelter-banner strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    margin-bottom: 2px;
}
.uhs-checkout-shelter-banner small {
    font-size: 12px;
    color: #4A4A55;
}

.uhs-checkout-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    align-items: start;
}
.uhs-checkout-panel {
    background: white;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(45, 45, 52, 0.04);
}
.uhs-checkout-panel h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    margin: 0 0 16px;
}
.uhs-checkout-panel .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Pola formularza */
.uhs-checkout-form .form-row {
    margin-bottom: 14px;
}
.uhs-checkout-form .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--uhs-graphite);
    margin-bottom: 4px;
}
.uhs-checkout-form .form-row .input-text,
.uhs-checkout-form .form-row select,
.uhs-checkout-form .form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--uhs-cream-2, #FDF8F2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease;
    background: white;
}
.uhs-checkout-form .form-row .input-text:focus,
.uhs-checkout-form .form-row select:focus,
.uhs-checkout-form .form-row textarea:focus {
    outline: none;
    border-color: var(--uhs-coral);
}

.uhs-checkout-sidebar { position: relative; }
.uhs-checkout-sidebar-sticky {
    position: sticky;
    top: 120px;
}
.uhs-checkout-review .shop_table {
    width: 100%;
    border: none;
}
.uhs-checkout-review .shop_table th,
.uhs-checkout-review .shop_table td {
    padding: 10px 0;
    border: none;
    font-size: 14px;
}
.uhs-checkout-review .order-total {
    background: var(--uhs-cream-2);
    border-radius: 12px;
}
.uhs-checkout-review .order-total th,
.uhs-checkout-review .order-total td {
    padding: 14px 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--uhs-coral);
}
.uhs-checkout-review #place_order {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    border: none;
    border-radius: 99px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(235, 203, 104, 0.4);
    transition: all 0.3s ease;
}
.uhs-checkout-review #place_order:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(235, 203, 104, 0.55);
}

/* Metody płatności */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.wc_payment_method {
    background: var(--uhs-cream-2, #FDF8F2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
}
.wc_payment_method label {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    cursor: pointer;
}
.payment_box {
    background: white;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 10px;
    font-size: 13px;
}

.uhs-checkout-trust {
    background: white;
    border-radius: 16px;
    padding: 18px;
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(45, 45, 52, 0.04);
}
.uhs-checkout-trust-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(45, 45, 52, 0.08);
}
.uhs-checkout-trust-row:last-child { border-bottom: none; }
.uhs-checkout-trust-row span { font-size: 22px; }
.uhs-checkout-trust-row small {
    font-size: 12px;
    line-height: 1.4;
    color: #4A4A55;
}
.uhs-checkout-trust-row small strong {
    color: var(--uhs-graphite);
    font-family: 'Fredoka', sans-serif;
}

@media (max-width: 900px) {
    .uhs-checkout-layout {
        grid-template-columns: 1fr;
    }
    .uhs-checkout-sidebar-sticky { position: static; }
    .uhs-checkout-panel .col2-set { grid-template-columns: 1fr; }
    .uhs-checkout-progress { flex-wrap: wrap; gap: 12px; }
    .uhs-checkout-step-line { display: none; }
}


/* --- 18.14. STRONA POMOC SCHRONISKOM --- */
.uhs-page-shelter-support {
    padding-bottom: 60px;
}

.uhs-shelter-page-hero {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5) 0%, var(--uhs-coral-soft, #F5D3CC) 50%, var(--uhs-mint-soft, #CCE3D3) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.uhs-shelter-page-hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.uhs-shelter-page-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    margin: 16px 0;
}
@media (max-width: 768px) {
    .uhs-shelter-page-hero h1 { font-size: 32px; }
}

.uhs-shelter-stats-big {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 3;
}
.uhs-shelter-stat-big-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(45, 45, 52, 0.08);
    transition: transform 0.3s ease;
}
.uhs-shelter-stat-big-card:hover {
    transform: translateY(-8px);
}
.uhs-shelter-stat-big-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--uhs-coral);
    line-height: 1;
    margin-bottom: 12px;
}
.uhs-shelter-stat-big-card strong {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--uhs-graphite);
}
.uhs-shelter-stat-big-card p {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 800px) {
    .uhs-shelter-stats-big { grid-template-columns: 1fr; margin-top: -40px; }
}

.uhs-shelter-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.uhs-shelter-process-step {
    background: white;
    border-radius: 20px;
    padding: 28px 22px;
    position: relative;
    box-shadow: 0 4px 20px rgba(45, 45, 52, 0.04);
}
.uhs-shelter-process-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--uhs-yellow);
    color: var(--uhs-graphite);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(235, 203, 104, 0.4);
}
.uhs-shelter-process-step h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    margin: 0 0 8px;
}
.uhs-shelter-process-step p {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 900px) {
    .uhs-shelter-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .uhs-shelter-process { grid-template-columns: 1fr; }
}

.uhs-shelter-current-big-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(45, 45, 52, 0.08);
    border: 3px dashed var(--uhs-coral-soft, #F5D3CC);
}
.uhs-shelter-city-big {
    font-size: 15px;
    color: #7A7A85;
    margin: 0 0 16px;
}
.uhs-shelter-desc-big {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A55;
    margin: 0 0 24px;
}

.uhs-shelter-vote-section {
    background: linear-gradient(135deg, var(--uhs-yellow-soft, #F5E4B5), var(--uhs-coral-soft, #F5D3CC));
}
.uhs-shelter-vote-box {
    background: white;
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(45, 45, 52, 0.08);
}
.uhs-shelter-vote-emoji {
    font-size: 64px;
    flex-shrink: 0;
}
.uhs-shelter-vote-box h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin: 0 0 8px;
}
.uhs-shelter-vote-box p {
    font-size: 14px;
    color: #4A4A55;
    line-height: 1.5;
    margin: 0 0 14px;
}
@media (max-width: 700px) {
    .uhs-shelter-vote-box {
        flex-direction: column;
        text-align: center;
    }
}



/* ============================================================
   MOBILNY PASEK APLIKACYJNY (sierpien 2026)
   Dolna nawigacja w stylu aplikacji. Widoczna tylko na mobile.
   ============================================================ */

.uhs-appbar { display: none; }

@media (max-width: 900px) {
    .uhs-appbar {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9000;
        background: rgba(255, 255, 255, 0.94);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        backdrop-filter: saturate(180%) blur(14px);
        border-top: 1px solid var(--uhs-border);
        box-shadow: 0 -4px 20px rgba(45, 45, 52, 0.07);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .uhs-appbar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        min-height: 58px;
        padding: 7px 2px 6px;
        text-decoration: none;
        color: #6B6B76;
        font-family: var(--uhs-font-body);
        -webkit-tap-highlight-color: transparent;
    }
    .uhs-appbar-item.is-active { color: #C97B6A; }

    .uhs-appbar-icon {
        position: relative;
        display: block;
        width: 24px;
        height: 24px;
    }
    .uhs-appbar-icon svg { width: 24px; height: 24px; display: block; }

    .uhs-appbar-label {
        font-size: 0.6875rem;
        font-weight: 600;
        line-height: 1;
        text-align: center;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .uhs-appbar-badge {
        display: none;
        position: absolute;
        top: -6px;
        right: -8px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 9px;
        background: #C97B6A;
        color: #fff;
        font-size: 0.6875rem;
        font-weight: 700;
        line-height: 18px;
        text-align: center;
    }
    .uhs-appbar-badge.is-visible { display: block; }

    /* Miejsce na pasek, zeby nie zaslanial konca strony */
    body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }

    /* Stopka i tak jest dluga — dodatkowy oddech nad paskiem */
    .uhs-footer-bottom { margin-bottom: 8px; }
}

@media (max-width: 900px) and (prefers-color-scheme: dark) {
    /* Motyw jest jasny; wymuszamy czytelne tlo takze przy ciemnym UI systemu */
    .uhs-appbar { background: rgba(255, 255, 255, 0.96); }
}


/* ============================================================
   TOPBAR MOBILNY — minimalistyczny pasek nad naglowkiem
   Na desktopie zostaje pelny baner; na mobile jedna waska linia.
   ============================================================ */

.uhs-shelter-banner-mobile { display: none; }

@media (max-width: 900px) {
    .uhs-shelter-banner {
        padding: 0;
        font-size: 12px;
        border-bottom: 1px solid rgba(45, 45, 52, 0.06);
    }
    /* Animowane lapki to zbedny ruch i praca GPU na telefonie */
    .uhs-shelter-banner::before { display: none; }

    .uhs-shelter-banner .uhs-container { padding-left: 0; padding-right: 0; }
    .uhs-shelter-banner-inner { display: none; }

    .uhs-shelter-banner-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 28px;
        padding: 5px 12px;
        text-decoration: none;
        color: var(--uhs-graphite);
        font-family: var(--uhs-font-body);
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0.01em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-tap-highlight-color: transparent;
    }
    .uhs-shelter-banner-mobile strong { font-weight: 700; }
    .uhs-shelter-banner-mobile span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 380px) {
    .uhs-shelter-banner-mobile { font-size: 11.5px; min-height: 26px; padding: 4px 10px; }
}


/* ============================================================
   ZAPOWIEDZ HENIA + BLOG (sierpien 2026)
   ============================================================ */

/* ---- Teaser Henia na stronie glownej ---- */
.uhs-henio-teaser-inner {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.uhs-henio-teaser-media { position: relative; }
.uhs-henio-teaser-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}
.uhs-henio-teaser-age {
    position: absolute;
    right: -12px;
    bottom: -12px;
    display: grid;
    place-items: center;
    gap: 1px;
    min-width: 116px;
    padding: 12px 16px;
    border-radius: 18px;
    background: var(--uhs-white);
    box-shadow: 0 8px 24px rgba(45, 45, 52, 0.12);
    text-align: center;
}
.uhs-henio-teaser-age strong {
    font-family: var(--uhs-font-display);
    font-size: 1.0625rem;
    line-height: 1.1;
    color: var(--uhs-graphite);
}
.uhs-henio-teaser-age small { font-size: 0.75rem; color: #6B6B76; }
.uhs-henio-teaser-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.uhs-story-hero-born {
    margin: 6px 0 0;
    font-size: 0.9375rem;
    color: #6B6B76;
}

/* ---- Siatka wpisow bloga ---- */
.uhs-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.uhs-blog-card {
    background: var(--uhs-white);
    border: 2px solid var(--uhs-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.uhs-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(45, 45, 52, 0.09);
}
.uhs-blog-card-link { display: block; text-decoration: none; color: inherit; }
.uhs-blog-card-media {
    aspect-ratio: 16 / 10;
    background: var(--uhs-cream);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.uhs-blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uhs-blog-card-placeholder { font-size: 2.5rem; opacity: 0.45; }
.uhs-blog-card-body { padding: 16px 18px 20px; }
.uhs-blog-card-date {
    display: block;
    font-size: 0.8125rem;
    color: #6B6B76;
    margin-bottom: 5px;
}
.uhs-blog-card-title {
    font-family: var(--uhs-font-display);
    font-size: 1.125rem;
    line-height: 1.25;
    margin: 0 0 8px;
    color: var(--uhs-graphite);
}
.uhs-blog-card-excerpt {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #55555F;
}
.uhs-blog-card-collection {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 11px;
    border-radius: 99px;
    background: var(--uhs-mint-soft);
    color: #2F6B45;
    font-size: 0.8125rem;
    font-weight: 600;
}
.uhs-blog-teaser-cta { text-align: center; margin-top: 28px; }

/* ---- Kolekcja testowana pod wpisem ---- */
.uhs-post-collection {
    margin: 40px 0 0;
    padding: 26px;
    border-radius: 22px;
    background: var(--uhs-cream);
    border: 2px solid var(--uhs-border-warm);
}
.uhs-post-collection-head { text-align: center; margin-bottom: 22px; }
.uhs-post-collection-head h2 {
    font-family: var(--uhs-font-display);
    font-size: 1.5rem;
    margin: 6px 0 4px;
    color: var(--uhs-graphite);
}
.uhs-post-collection-head p { margin: 0; color: #55555F; font-size: 0.9375rem; }

.uhs-post-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.uhs-post-collection-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-decoration: none;
    color: inherit;
    background: var(--uhs-white);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid var(--uhs-border);
    transition: border-color 0.2s;
}
.uhs-post-collection-item:hover { border-color: var(--uhs-coral); }
.uhs-post-collection-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 11px;
    display: block;
    background: var(--uhs-cream);
}
.uhs-post-collection-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
}
.uhs-post-collection-price { font-size: 0.875rem; color: #6B6B76; }
.uhs-post-collection-cta { display: block; width: fit-content; margin: 22px auto 0; }

@media (max-width: 900px) {
    .uhs-henio-teaser-inner { grid-template-columns: 1fr; gap: 26px; }
    .uhs-henio-teaser-media { max-width: 300px; margin: 0 auto; }
    .uhs-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .uhs-post-collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .uhs-blog-grid { grid-template-columns: 1fr; }
    .uhs-post-collection { padding: 18px; }
    .uhs-henio-teaser-ctas .uhs-btn { width: 100%; text-align: center; }
}
