/* =============================================================================
   NannyPop – Main Stylesheet
   Playful, colorful, 100% responsive design for children's birthday kits.
   ============================================================================= */

/* ---------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   --------------------------------------------------------------------------- */
:root {
    /* Brand colors */
    --color-primary:     #FF6B35;   /* Orange-red – energy & fun */
    --color-secondary:   #4ECDC4;   /* Teal-mint – fresh */
    --color-accent:      #FFE66D;   /* Sunny yellow */
    --color-purple:      #A855F7;   /* Purple – magic */
    --color-pink:        #FF6EB4;   /* Pink */
    --color-green:       #2ECC71;   /* Success green */
    --color-dark:        #1A1A2E;   /* Deep navy */
    --color-dark-soft:   #2D2D4E;
    --color-light:       #F8F9FA;
    --color-white:       #FFFFFF;
    --color-muted:       #6B7280;
    --color-border:      #E5E7EB;

    /* Gradients */
    --gradient-hero:     linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-primary:  linear-gradient(135deg, var(--color-primary) 0%, #FF8C42 100%);
    --gradient-secondary:linear-gradient(135deg, var(--color-secondary) 0%, #45B7D1 100%);
    --gradient-rainbow:  linear-gradient(135deg, #FF6B35, #FF6EB4, #A855F7, #4ECDC4, #FFE66D);
    --gradient-colored:  linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

    /* Typography */
    --font-body:         'Nunito', system-ui, -apple-system, sans-serif;
    --font-heading:      'Fredoka One', 'Nunito', sans-serif;
    --font-size-xs:      0.75rem;
    --font-size-sm:      0.875rem;
    --font-size-base:    1rem;
    --font-size-lg:      1.125rem;
    --font-size-xl:      1.25rem;
    --font-size-2xl:     1.5rem;
    --font-size-3xl:     1.875rem;
    --font-size-4xl:     2.25rem;
    --font-size-5xl:     3rem;
    --font-size-6xl:     3.75rem;

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

    /* Layout */
    --container-max:    1200px;
    --container-pad:    1.5rem;

    /* Borders & Shadows */
    --radius-sm:    0.375rem;
    --radius-md:    0.75rem;
    --radius-lg:    1.25rem;
    --radius-xl:    2rem;
    --radius-full:  9999px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
    --shadow-xl:    0 20px 60px rgba(0,0,0,.16);
    --shadow-card:  0 8px 32px rgba(0,0,0,.08);

    /* Transitions */
    --transition:   0.25s ease;
    --transition-slow: 0.4s ease;
}

/* ---------------------------------------------------------------------------
   2. CSS RESET & BASE
   --------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    font-size: var(--font-size-base);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover { color: var(--color-dark); }

ul, ol { list-style: none; }

button, input, textarea, select {
    font: inherit;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    line-height: 1.2;
}

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

.skip-link:focus {
    position: fixed;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 9999;
    padding: var(--space-3) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    clip: auto;
    width: auto;
    height: auto;
    white-space: normal;
}

/* ---------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   --------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-20);
}

.section--light  { background-color: var(--color-light); }
.section--white  { background-color: var(--color-white); }
.section--colored { background: var(--gradient-colored); color: var(--color-white); }

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-size: var(--font-size-4xl);
    color: var(--color-dark);
    margin-bottom: var(--space-4);
}

.section--colored .section-title,
.section--colored .section-subtitle {
    color: var(--color-white);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted);
    max-width: 640px;
    margin-inline: auto;
}

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

.section-stars {
    color: var(--color-accent);
    font-size: var(--font-size-lg);
    margin-top: var(--space-2);
}

/* ---------------------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn--primary:hover { color: var(--color-white); box-shadow: 0 8px 24px rgba(255,107,53,.4); }

.btn--secondary {
    background: var(--gradient-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn--accent {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

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

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.btn--white:hover { background: var(--color-light); color: var(--color-primary); }

.btn--sm  { padding: 0.5rem 1rem; font-size: var(--font-size-sm); }
.btn--lg  { padding: 1rem 2rem; font-size: var(--font-size-lg); }
.btn--xl  { padding: 1.125rem 2.5rem; font-size: var(--font-size-xl); }

/* ---------------------------------------------------------------------------
   5. AUDIO PLAYER
   --------------------------------------------------------------------------- */
.audio-player {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 1000;
}

.audio-player--hidden { display: none; }

.audio-player__btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
    position: relative;
}
.audio-player__btn:hover { transform: scale(1.1); }

.audio-player__icon--pause { display: none; }

.audio-player--playing .audio-player__icon--play  { display: none; }
.audio-player--playing .audio-player__icon--pause { display: block; }

/* Pulsing animation when playing */
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: .7; }
    100% { transform: scale(1.6); opacity: 0; }
}
.audio-player--playing .audio-player__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse-ring 1.5s ease-out infinite;
}

/* ---------------------------------------------------------------------------
   6. SITE HEADER
   --------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    min-height: 72px;
}

.site-header__brand-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
    min-width: 0;
}

.site-header__brand {
    flex-shrink: 0;
}

.site-header__brand-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-header__logo {
    width: auto;
    height: 40px;
    max-width: min(215px, 34vw);
    border-radius: 0;
    object-fit: contain;
    display: block;
}

.site-header__slogan {
    max-width: min(42vw, 520px);
    min-width: 0;
    font-size: .92rem;
    line-height: 1.35;
    color: var(--color-muted);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header__logo-text {
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    font-weight: 900;
    letter-spacing: -.01em;
}
.site-header__logo-text:hover { color: var(--color-dark); }

.site-header__nav { flex: 1; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-menu li a {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--color-dark);
    transition: background var(--transition), color var(--transition);
    font-size: var(--font-size-sm);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    background: var(--color-primary);
    color: var(--color-white);
}

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

.site-header__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #1877f2;
    color: #ffffff;
    transition: transform var(--transition), background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.site-header__subscribe,
.site-header__subscribe:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .52rem .88rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff;
    color: #0f172a;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    flex-shrink: 0;
}

.site-header__subscribe:hover {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.3);
    transform: translateY(-1px);
}

.site-header__social:hover {
    background: #1665d8;
    color: #ffffff;
    transform: translateY(-1px);
}

.site-header__social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.header-cart {
    position: relative;
    font-size: 1.3rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
}
.header-cart:hover { color: var(--color-primary); }

.header-cart__count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-account { font-size: 1.3rem; color: var(--color-dark); }
.header-account:hover { color: var(--color-primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle__bar {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
   7. HERO
   --------------------------------------------------------------------------- */
.hero {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding-block: var(--space-24);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.hero__confetti {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
    opacity: .6;
}
.hero__confetti--1 { top: 10%; left: 5%;  animation-delay: 0s; }
.hero__confetti--2 { top: 20%; right: 8%; animation-delay: .8s; font-size: 2.5rem; }
.hero__confetti--3 { top: 60%; left: 2%;  animation-delay: 1.2s; }
.hero__confetti--4 { bottom: 15%; right: 5%; animation-delay: .4s; font-size: 3rem; }
.hero__confetti--5 { top: 40%; right: 15%; animation-delay: 2s; }
.hero__confetti--6 { bottom: 30%; left: 10%; animation-delay: 1.6s; }

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

.hero__pretitle {
    display: inline-block;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-full);
    padding: .375rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-4);
    backdrop-filter: blur(8px);
}

.hero__title {
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero__title-highlight {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: var(--font-size-lg);
    opacity: .9;
    max-width: 520px;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.hero__cta .btn--outline {
    border-color: rgba(255,255,255,.6);
    color: var(--color-white);
}
.hero__cta .btn--outline:hover {
    background: rgba(255,255,255,.15);
    color: var(--color-white);
}

.hero__stars {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    opacity: .9;
    color: var(--color-accent);
}
.hero__stars span:first-child { letter-spacing: 2px; }
.hero__stars strong { color: var(--color-white); }

/* Kit preview cards */
.hero__kit-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-end;
}

.kit-card {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    width: 200px;
    transition: transform var(--transition);
}
.kit-card:hover { transform: translateY(-4px) scale(1.03); }

.kit-card--secondary { transform: translateX(-20px); }
.kit-card--tertiary  { transform: translateX(-40px); }

.kit-card__emoji { font-size: 3rem; display: block; margin-bottom: var(--space-2); }
.kit-card__name  { font-family: 'Fredoka One', 'Nunito', sans-serif; font-weight: 700; font-size: var(--font-size-base); }
.kit-card__sub   { font-size: var(--font-size-xs); opacity: .8; margin-top: var(--space-1); }

/* ---------------------------------------------------------------------------
   8. TRUST BAND
   --------------------------------------------------------------------------- */
.trust-band {
    background: var(--color-dark);
    color: var(--color-white);
    padding-block: var(--space-5);
}

.trust-band__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.trust-band__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.trust-band__icon { font-size: 1.3rem; }

/* ---------------------------------------------------------------------------
   9. HOW IT WORKS
   --------------------------------------------------------------------------- */
.how-it-works { background: var(--color-white); }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.step__icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    display: block;
}

.step__title {
    font-size: var(--font-size-xl);
    color: var(--color-dark);
    margin-bottom: var(--space-3);
}

.step__desc {
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.step__arrow {
    font-size: 2rem;
    color: var(--color-primary);
    align-self: center;
    margin-top: calc(-1 * var(--space-4));
    font-weight: 900;
    flex-shrink: 0;
}

.how-it-works__cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* ---------------------------------------------------------------------------
   10. PRODUCTS GRID
   --------------------------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card__thumb-link { display: block; overflow: hidden; }
.product-card__thumb-link img,
.product-card__thumb-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card:hover .product-card__thumb-link img { transform: scale(1.06); }

.product-card__thumb-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    font-size: 5rem;
}

.product-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
    z-index: 1;
}
.product-card__badge--sale    { background: var(--color-primary); color: var(--color-white); }
.product-card__badge--featured { background: var(--color-accent); color: var(--color-dark); }

.product-card__body {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.product-card__title {
    font-size: var(--font-size-lg);
    line-height: 1.3;
}
.product-card__title a { color: var(--color-dark); }
.product-card__title a:hover { color: var(--color-primary); }

.product-card__price {
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    font-weight: 900;
}

.product-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-muted);
    flex: 1;
}

.product-card .btn { margin-top: auto; }

/* ---------------------------------------------------------------------------
   11. TESTIMONIALS
   --------------------------------------------------------------------------- */
.testimonials-grid {
    gap: 1.25rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 24px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.04);
    padding: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.stars {
    color: #FFE66D;
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card__quote {
    font-style: italic;
    color: #4f4b46;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--color-secondary);
    line-height: 0;
    vertical-align: -.4em;
    margin-right: .1em;
}

.testimonial-card__author {
    font-size: 0.875rem;
    color: #3e3a35;
    margin-top: 0.5rem;
}

.testimonial-card__author strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* ---------------------------------------------------------------------------
   12. ADVANTAGES
   --------------------------------------------------------------------------- */
.advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.advantages__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-block: var(--space-8);
}

.advantages__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.advantages__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .2em; }

.advantages__item strong {
    display: block;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
    color: var(--color-white);
}

.advantages__item p {
    font-size: var(--font-size-sm);
    opacity: .85;
    line-height: 1.7;
}

.advantages__emoji-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    text-align: center;
}
.advantages__emoji-grid span {
    font-size: 3.5rem;
    background: rgba(255,255,255,.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: transform var(--transition);
}
.advantages__emoji-grid span:hover { transform: scale(1.15) rotate(5deg); }

/* ---------------------------------------------------------------------------
   13. BLOG
   --------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); }

.blog-card__thumb-link { display: block; overflow: hidden; }
.blog-card__thumb-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card__thumb-link img { transform: scale(1.06); }

.blog-card__thumb-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-light), var(--color-border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card__body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.blog-card__meta time {
    font-size: var(--font-size-xs);
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blog-card__title {
    font-size: var(--font-size-lg);
    line-height: 1.3;
}
.blog-card__title a { color: var(--color-dark); }
.blog-card__title a:hover { color: var(--color-primary); }

.blog-card__excerpt {
    font-size: var(--font-size-sm);
    color: var(--color-muted);
    flex: 1;
    line-height: 1.7;
}

.blog-card__link {
    font-weight: 700;
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    align-self: flex-start;
}
.blog-card__link:hover { color: var(--color-dark); }

/* ---------------------------------------------------------------------------
   14. FAQ ACCORDION
   --------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:has(.faq-item__question[aria-expanded="true"]),
.faq-item.is-open {
    border-color: var(--color-primary);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-5) var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    cursor: pointer;
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-dark);
    transition: background var(--transition);
}
.faq-item__question:hover { background: var(--color-light); }

.faq-item__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 400;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-primary);
    transition: transform var(--transition), background var(--transition);
    line-height: 1;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: var(--color-white);
}

.faq-item__answer {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--color-muted);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}
.faq-item__answer[hidden] { display: none; }

.faq__cta {
    text-align: center;
    margin-top: var(--space-10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.faq__cta p { color: var(--color-muted); }

/* ---------------------------------------------------------------------------
   15. CTA FINAL
   --------------------------------------------------------------------------- */
.cta-final {
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
    padding-block: var(--space-20);
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.cta-final__inner { position: relative; }
.cta-final__emoji { font-size: 4rem; display: block; margin-bottom: var(--space-4); }
.cta-final__title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    margin-bottom: var(--space-6);
}
.cta-final__desc {
    font-size: var(--font-size-lg);
    opacity: .9;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}
.cta-final__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------------------------- */
.footer-newsletter {
    background: linear-gradient(135deg, #6B4E45 0%, #8B5E4D 100%);
    color: var(--color-white);
    padding-block: var(--space-12);
}

.footer-newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.footer-newsletter__title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
    color: var(--color-white);
}

.footer-newsletter__text p {
    opacity: .8;
    font-size: var(--font-size-sm);
}

.newsletter-form__group {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.newsletter-form__input {
    flex: 1;
    min-width: 200px;
    padding: .75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: var(--color-white);
    font-size: var(--font-size-sm);
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form__input:focus {
    outline: none;
    border-color: #D9A15E;
    background: rgba(255,255,255,.16);
}

.newsletter-form__consent {
    color: rgba(255,255,255,.5);
    font-size: var(--font-size-xs);
    margin-top: var(--space-3);
}

/* Fluent Forms integration for footer newsletter */
.footer-newsletter__form .newsletter-form--fluent {
    width: 100%;
}

.footer-newsletter__form .fluentform form {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-2);
    align-items: flex-end;
}

.footer-newsletter__form .fluentform .ff-el-group,
.footer-newsletter__form .fluentform .ff_submit_btn_wrapper {
    margin: 0;
    width: auto;
    min-width: 0;
}

.footer-newsletter__form .fluentform .ff-el-group {
    flex: 1 1 0;
}

.footer-newsletter__form .fluentform .ff_submit_btn_wrapper {
    flex: 0 0 auto;
}

.footer-newsletter__form .fluentform .ff-el-input--label label,
.footer-newsletter__form .fluentform .ff-el-group > label {
    display: block;
    margin-bottom: .5rem;
    color: rgba(255,255,255,.82);
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.footer-newsletter__form .fluentform .ff-el-form-control {
    width: 100%;
    min-height: 48px;
    padding: .75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    box-shadow: none;
}

.footer-newsletter__form .fluentform .ff-el-form-control::placeholder {
    color: rgba(255,255,255,.5);
}

.footer-newsletter__form .fluentform .ff-el-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,.15);
}

.footer-newsletter__form .fluentform .ff-btn,
.footer-newsletter__form .fluentform .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 48px;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    background: var(--color-accent);
    color: var(--color-dark);
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-weight: 800;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.footer-newsletter__form .fluentform .ff-btn:hover,
.footer-newsletter__form .fluentform .ff-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #fff2a3;
}

.footer-newsletter__form .fluentform .ff-btn:focus-visible,
.footer-newsletter__form .fluentform .ff-btn-submit:focus-visible,
.footer-newsletter__form .fluentform .ff-el-form-control:focus-visible {
    outline: 3px solid rgba(255, 230, 109, .45);
    outline-offset: 2px;
}

.footer-newsletter__form .fluentform .ff-message-success,
.footer-newsletter__form .fluentform .ff-message-warning,
.footer-newsletter__form .fluentform .ff-message-error {
    border-radius: var(--radius-lg);
    margin-top: var(--space-3);
    padding: .85rem 1rem;
    font-size: var(--font-size-sm);
}

.footer-newsletter__form .fluentform .ff-el-form-check {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.footer-newsletter__form .fluentform .ff-el-form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.footer-newsletter__form .fluentform .ff-el-form-check-label {
    color: rgba(255,255,255,.52);
    font-size: var(--font-size-xs);
    line-height: 1.6;
}

.footer-widgets {
    background: var(--color-dark-soft);
    color: var(--color-white);
    padding-block: var(--space-16);
}

.footer-widgets__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
}

.footer-brand {
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer-brand:hover,
.footer-brand:focus-visible {
    color: var(--color-white);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    opacity: .7;
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer-social__link {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    transition: background var(--transition), transform var(--transition);
}
.footer-social__link:hover,
.footer-social__link:focus-visible {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-social__icon {
    width: 20px;
    height: 20px;
    display: block;
    color: var(--color-white);
    fill: currentColor;
}

.footer-col__title {
    font-size: var(--font-size-base);
    color: var(--color-white);
    margin-bottom: var(--space-5);
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.footer-nav li a {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.65);
    transition: color var(--transition);
}
.footer-nav li a:hover { color: var(--color-white); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.footer-contact li {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,.7);
}
.footer-contact li a { color: var(--color-secondary); }
.footer-contact li a:hover { color: var(--color-white); }

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-5);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.65);
}

.footer-bottom {
    background: var(--color-dark);
    padding-block: var(--space-5);
    text-align: center;
}
.footer-bottom__copy {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.4);
}
.footer-bottom__copy a { color: rgba(255,255,255,.6); }
.footer-bottom__copy a:hover { color: var(--color-white); }

/* ---------------------------------------------------------------------------
   17. PAGE TEMPLATES
   --------------------------------------------------------------------------- */
.page-hero {
    text-align: center;
    padding-block: var(--space-16);
    background: var(--gradient-hero);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-12);
}

.page-hero__title {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
    margin-bottom: var(--space-4);
}

.page-hero__sub {
    font-size: var(--font-size-lg);
    opacity: .9;
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-10);
    margin-bottom: var(--space-16);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-info__card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.contact-info__icon { font-size: 2rem; margin-bottom: var(--space-2); display: block; }
.contact-info__card h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}
.contact-info__card p { font-size: var(--font-size-sm); color: var(--color-muted); }

/* Forms */
.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.form-label {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-dark);
}

.form-input {
    padding: .75rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--color-white);
    transition: border-color var(--transition);
    width: 100%;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-input--textarea { resize: vertical; min-height: 150px; }

.form-group--consent { flex-direction: row; align-items: flex-start; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--color-muted);
}
.form-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-primary); cursor: pointer; }

/* Blog / Posts grids */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.post-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition);
}
.post-card:hover { transform: translateY(-4px); }

.post-card__thumb-link img,
.post-card__thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    font-size: 4rem;
}

.post-card__body {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
}

.post-card__meta { font-size: var(--font-size-xs); color: var(--color-muted); font-weight: 600; }
.post-card__title { font-size: var(--font-size-lg); }
.post-card__title a { color: var(--color-dark); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__excerpt { font-size: var(--font-size-sm); color: var(--color-muted); flex: 1; line-height: 1.7; }

/* Single post */
.single-post { max-width: 800px; margin-inline: auto; padding-block: var(--space-12); }

.post-header { margin-bottom: var(--space-8); }
.post-header__title { font-size: var(--font-size-4xl); line-height: 1.2; margin-bottom: var(--space-4); }
.post-header__meta { font-size: var(--font-size-sm); color: var(--color-muted); }

.post-thumbnail { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: var(--space-8); }
.post-thumbnail img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.entry-content { line-height: 1.8; font-size: var(--font-size-lg); }
.entry-content h2 { font-size: var(--font-size-2xl); margin-block: var(--space-8) var(--space-4); color: var(--color-dark); }
.entry-content h3 { font-size: var(--font-size-xl); margin-block: var(--space-6) var(--space-3); }
.entry-content p { margin-bottom: var(--space-5); }
.entry-content ul, .entry-content ol { padding-left: var(--space-6); margin-bottom: var(--space-5); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: var(--space-2); }
.entry-content a { text-decoration: underline; }
.entry-content img { border-radius: var(--radius-lg); margin-block: var(--space-4); }
.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-6);
    margin-block: var(--space-6);
    font-style: italic;
    color: var(--color-muted);
}

/* Archive header */
.archive-header {
    text-align: center;
    padding-block: var(--space-10);
    margin-bottom: var(--space-8);
}
.archive-header--blog {
    padding-block: var(--space-12) var(--space-8);
}
.archive-header__title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-3);
}
.archive-header__eyebrow {
    color: var(--color-primary);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}
.archive-header__desc {
    max-width: 700px;
    margin-inline: auto;
    color: var(--color-muted);
    font-size: var(--font-size-lg);
}
.archive-header__count {
    margin-top: var(--space-3);
    color: var(--color-dark);
    font-weight: 600;
}

.blog-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: var(--space-8);
}

.blog-search,
.blog-tags {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.04);
}

.blog-search {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.blog-search__input {
    flex: 1 1 240px;
    min-width: 0;
    padding: .9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fcfbf8;
}

.blog-search__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, .12);
}

.blog-search .btn {
    flex-shrink: 0;
}

.blog-tags {
    padding: 1rem;
}

.blog-tags__label {
    display: block;
    margin-bottom: .75rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6e655d;
}

.blog-tags__cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.blog-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fcfbf8;
    color: #3e3a35;
    line-height: 1.1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.blog-tag-chip:hover {
    transform: translateY(-1px);
    background: #f4f1eb;
}

.blog-tag-chip--active {
    background: #1f1e1c;
    border-color: #1f1e1c;
    color: #fcfbf8;
}

.blog-filters__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: #6e655d;
    font-size: .95rem;
}

.blog-filters__clear {
    color: var(--color-primary);
    font-weight: 600;
}

.blog-empty {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
}

.blog-empty p {
    color: #6e655d;
}

.blog-pagination {
    margin-top: var(--space-10);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.blog-pagination .page-numbers {
    margin: 0;
}

/* WooCommerce shop header */
.shop-page__header {
    text-align: center;
    padding-block: var(--space-10);
    margin-bottom: var(--space-8);
}
.shop-page__title { font-size: var(--font-size-4xl); margin-bottom: var(--space-3); }
.shop-page__subtitle { font-size: var(--font-size-lg); color: var(--color-muted); }

/* ---------------------------------------------------------------------------
   18. PAGINATION
   --------------------------------------------------------------------------- */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-10);
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding-inline: var(--space-3);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--color-dark);
    background: var(--color-light);
    transition: background var(--transition), color var(--transition);
}
.page-numbers:hover, .page-numbers.current {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ---------------------------------------------------------------------------
   19. BADGE UTILITY
   --------------------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
}
.badge--primary  { background: var(--color-primary); color: var(--color-white); }
.badge--secondary{ background: var(--color-secondary); color: var(--color-white); }
.badge--accent   { background: var(--color-accent); color: var(--color-dark); }

/* ---------------------------------------------------------------------------
   20. RESPONSIVE – TABLET (≤ 1024px)
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__inner           { grid-template-columns: 1fr; text-align: center; }
    .hero__desc            { max-width: 100%; }
    .hero__cta             { justify-content: center; }
    .hero__stars           { justify-content: center; }
    .hero__visual          { display: none; }

    .advantages__grid      { grid-template-columns: 1fr; }
    .advantages__visual    { display: none; }

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

/* ---------------------------------------------------------------------------
   21. RESPONSIVE – MOBILE (≤ 768px)
   --------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root { --container-pad: 1rem; }

    .section { padding-block: var(--space-12); }

    .site-header__nav {
        position: fixed;
        inset: 72px 0 0;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--space-6);
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 800;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
    }
    .site-header__nav.is-open { transform: translateX(0); }

    .site-header__inner {
        flex-wrap: wrap;
    }

    .site-header__brand-group {
        width: 100%;
        justify-content: space-between;
        gap: var(--space-3);
    }

    .site-header__slogan {
        max-width: none;
        min-width: 0;
        text-align: right;
        font-size: .85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-header__social {
        margin-left: auto;
    }

    .site-header__subscribe {
        padding: .45rem .75rem;
        font-size: .8rem;
    }

    .site-header__logo {
        height: 32px;
        max-width: min(170px, 48vw);
        width: auto;
    }

    .nav-menu { flex-direction: column; align-items: stretch; gap: var(--space-2); }
    .nav-menu li a { display: block; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); }

    .nav-toggle { display: flex; }

    .hero { min-height: auto; padding-block: var(--space-16); }
    .hero__title { font-size: var(--font-size-3xl); }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { text-align: center; justify-content: center; }

    .steps { flex-direction: column; }
    .step  { max-width: 100%; }
    .step__arrow { transform: rotate(90deg); align-self: center; }

    .trust-band__list { gap: var(--space-4); }

    .contact-layout { grid-template-columns: 1fr; }
    .form-row--2col  { grid-template-columns: 1fr; }

    .footer-widgets__grid  { grid-template-columns: 1fr; }
    .footer-newsletter__inner { gap: var(--space-6); }
    .newsletter-form__group { flex-direction: column; }
    .footer-newsletter__form .fluentform form {
        flex-wrap: wrap;
        align-items: stretch;
    }
    .footer-newsletter__form .fluentform .ff-el-group,
    .footer-newsletter__form .fluentform .ff_submit_btn_wrapper {
        width: 100%;
        flex-basis: 100%;
    }
    .footer-newsletter__form .fluentform .ff-btn,
    .footer-newsletter__form .fluentform .ff-btn-submit { width: 100%; }

    .cta-final__actions { flex-direction: column; align-items: center; }

    .section-title { font-size: var(--font-size-3xl); }

    .blog-search {
        padding: .85rem;
    }

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

/* ---------------------------------------------------------------------------
   22. V3 THEME REFRESH (aligned with local prototype)
   --------------------------------------------------------------------------- */

:root {
    --color-primary: #FF6B35;
    --color-secondary: #f6f4ef;
    --color-accent: #9AD0E9;
    --color-dark: #1B1A18;
    --color-dark-soft: #4f4b46;
    --color-light: #fcfbf8;
    --color-border: #ebe6de;
    --color-card: #ffffff;
    --color-brand-soft: rgba(255, 107, 53, .15);
    --color-grape-soft: rgba(186, 126, 227, .24);
    --color-mint-soft: rgba(124, 216, 175, .28);
    --color-sunny-soft: rgba(255, 228, 122, .36);

    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-heading: 'Fredoka', 'Outfit', system-ui, sans-serif;

    --radius-md: 0.875rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, .08);
    --shadow-card: 0 2px 0 rgba(0, 0, 0, .04);

    --gradient-hero: linear-gradient(160deg, #fff9f6 0%, #fefcf7 55%, #fcfbf8 100%);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #ff8254 100%);
    --gradient-secondary: linear-gradient(135deg, #9AD0E9 0%, #89c5e5 100%);
    --gradient-colored: linear-gradient(135deg, #1b1a18 0%, #2a2926 100%);
}

body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    background: var(--color-light);
    color: var(--color-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    letter-spacing: -0.01em;
}

.section {
    padding-block: clamp(2.75rem, 10vw, 4.5rem);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.625rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #6e655d;
    margin-top: 0.5rem;
}

.btn {
    border-radius: 12px;
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    box-shadow: none;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    transition: background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #FF5520 0%, #ff7744 100%);
}

.btn--outline {
    background: #fff;
    color: var(--color-dark);
    border-color: var(--color-border);
}

.btn--outline:hover {
    color: var(--color-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 251, 248, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.nav-menu li a {
    color: #3e3a35;
    font-weight: 500;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero {
    min-height: auto;
    padding-block: clamp(1.5rem, 5vw, 2.5rem);
    background: var(--gradient-hero);
}

.confetti-bg {
    background-color: oklch(0.99 0.008 90);
    background-image:
        radial-gradient(circle at 12% 18%, oklch(0.71 0.18 22 / 0.9) 0, oklch(0.71 0.18 22 / 0.9) 6px, transparent 7px),
        radial-gradient(circle at 88% 22%, oklch(0.81 0.13 188 / 0.9) 0, oklch(0.81 0.13 188 / 0.9) 5px, transparent 6px),
        radial-gradient(circle at 22% 78%, oklch(0.92 0.15 95 / 0.95) 0, oklch(0.92 0.15 95 / 0.95) 7px, transparent 8px),
        radial-gradient(circle at 76% 82%, oklch(0.7 0.18 320 / 0.85) 0, oklch(0.7 0.18 320 / 0.85) 5px, transparent 6px),
        radial-gradient(circle, oklch(0.88 0.13 160 / 0.9) 0, oklch(0.88 0.13 160 / 0.9) 4px, transparent 5px);
    background-size: 220px 220px;
}

@keyframes wobble {
    0%,
    100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-1px);
    }
}

.hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 880px;
    margin-inline: auto;
    gap: clamp(1rem, 2vw, 1.5rem);
    background: var(--color-card);
    border-radius: 28px;
    padding: clamp(1.5rem, 4vw, 2.35rem);
    border: 1px solid rgba(39, 33, 29, .06);
    box-shadow: 0 2px 0 0 rgba(39, 33, 29, 0.04);
}

.hero__pretitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: .375rem 1rem;
    background: var(--color-sunny-soft);
    border: 1px solid rgba(39, 33, 29, .04);
    border-radius: var(--radius-full);
    color: var(--color-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    box-shadow: 0 2px 0 0 rgba(39, 33, 29, 0.08);
    transform: rotate(-3deg);
    animation: wobble 3s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
}

.hero__title {
    max-width: 18ch;
    margin-inline: auto;
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 6.1vw, 3.9rem);
    line-height: 1.06;
    font-weight: 600;
    color: var(--color-dark);
}

.hero__title-highlight {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--color-primary);
}

.hero__desc {
    margin-inline: auto;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    max-width: 52ch;
    color: #665e56;
    margin-bottom: 0.25rem;
}

.hero__cta {
    justify-content: center;
    margin-bottom: 0;
    gap: 0.85rem;
}

.hero__cta .btn--outline {
    background: #1f1e1c;
    color: #fcfbf8;
    border-color: #1f1e1c;
}

.hero__cta .btn--outline:hover {
    background: #2a2926;
    color: #fcfbf8;
    border-color: #2a2926;
}

.hero__stars {
    justify-content: center;
    color: #6e655d;
}

.hero__stars strong {
    color: var(--color-dark);
}

.hero__visual {
    display: none;
}

.hero__bg {
    opacity: .55;
}

.hero__confetti {
    display: none;
}

.catalog-chips {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-block: 1rem;
    margin-top: 0.5rem;
    scrollbar-width: none;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section-header .catalog-chips {
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.9rem;
    padding-block: 0.35rem 0;
    padding-inline: 0;
}

.catalog-chips::-webkit-scrollbar {
    display: none;
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: #3e3a35;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.catalog-chip:hover {
    background: #f4f1eb;
}

.catalog-chip--active {
    background: #1f1e1c;
    color: #fcfbf8;
    border-color: #1f1e1c;
}

.trust-band {
    background: transparent;
    border-top: 0;
    border-bottom: 0;
    padding-block: 0;
}

.trust-band .container {
    max-width: 860px;
}

.trust-band__list {
    gap: var(--space-4);
    justify-content: center;
    padding: .5rem 0 0;
}

.trust-band__item {
    font-size: .86rem;
    color: #6e655d;
}

.products-grid,
.blog-grid,
.testimonials-grid {
    gap: 1.25rem;
}

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

.product-card,
.blog-card,
.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 24px;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.04);
}

.product-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.product-card__thumb-placeholder,
.blog-card__thumb-placeholder {
    border-radius: 16px;
    margin: 0.75rem 0.75rem 0;
    width: calc(100% - 1.5rem);
    background: var(--color-accent);
}

.product-card__thumb-link {
    margin: 0.75rem 0.75rem 0;
    border-radius: 16px;
    display: block;
    overflow: hidden;
}

.product-card__thumb-link img {
    border-radius: 16px;
    width: 100%;
    height: auto;
}

.product-card__body,
.blog-card__body {
    padding: 0.8rem 1rem 1.05rem;
    gap: 0.45rem;
}

.product-card__badge {
    top: 1.1rem;
    left: 1.1rem;
    background: #1f1e1c;
    color: #fcfbf8;
    font-size: 0.75rem;
}

.product-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-card .btn,
.blog-card .btn {
    width: 100%;
    justify-content: center;
    background: #1f1e1c;
    color: #fcfbf8;
    border-color: #1f1e1c;
}

.product-card .btn:hover,
.blog-card .btn:hover {
    background: #2a2926;
}

.how-it-works {
    background: var(--color-secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 2.2vw, 2.75rem);
    align-items: start;
}

.step {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    text-align: center;
    min-width: 0;
    max-width: none;
}

.step:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFE66D;
    color: #1B1A18;
    font-family: 'Fredoka One', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.08);
}

.step__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step__title {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.step__desc {
    color: #6e655d;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 26ch;
    margin-inline: auto;
}

.step:nth-child(1) .step__number {
    background: #FFE66D;
    color: #1B1A18;
}

.step:nth-child(2) .step__number {
    background: #9AD0E9;
    color: #1B1A18;
}

.step:nth-child(3) .step__number {
    background: var(--color-primary);
    color: #fff;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:has(.faq-item__question[aria-expanded="true"]),
.faq-item.is-open {
    border-color: var(--color-primary);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: background var(--transition);
}

.faq-item__question:hover {
    background: #faf8f4;
}

.faq-item__icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 400;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-primary);
    transition: transform var(--transition), background var(--transition);
    line-height: 1;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: var(--color-white);
}

.faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    color: #6e655d;
    font-size: 0.875rem;
    line-height: 1.8;
}

.faq-item__answer[hidden] {
    display: none;
}

.cta-final {
    background: #1f1e1c;
    color: #fff;
    text-align: center;
    padding-block: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-final__inner {
    position: relative;
    background: transparent;
    padding: 0;
}

.cta-final__emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.cta-final__title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-final__desc {
    font-size: 1rem;
    opacity: .9;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(252, 251, 248, .88);
}

.cta-final__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================================
   Page de recherche
   ========================================================================= */

.search-header {
    padding: clamp(2rem, 4vw, 3.5rem) 0 2rem;
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    margin-bottom: 2.5rem;
}

.search-header .npp-eyebrow {
    margin: 0 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 700;
    color: #b45309;
}

.search-header__title {
    margin: 0 0 .5rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

.search-header__count {
    margin: 0 0 1.5rem;
    font-size: .95rem;
    color: var(--color-muted, #6b7280);
}

.search-form__inner {
    display: flex;
    gap: .5rem;
    max-width: 560px;
}

.search-form__input {
    flex: 1;
    padding: .65rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    color: var(--color-dark);
    transition: border-color .15s;
}

.search-form__input:focus {
    outline: none;
    border-color: var(--color-primary, #f59e0b);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .15);
}

.search-form__btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.search-empty {
    padding: 3rem 0;
    text-align: center;
}

.search-empty__msg {
    font-size: 1.05rem;
    color: var(--color-muted, #6b7280);
    line-height: 1.6;
}

.search-empty__msg a {
    color: var(--color-primary, #f59e0b);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .search-form__inner {
        flex-direction: column;
    }

    .search-form__btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================================
   NannyPop Elementor block (home page id=2 + editor)
   ========================================================================= */

body.page-id-2 .npp-shell,
body.elementor-editor-active .npp-shell,
.entry-content .npp-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 3rem) 1rem 4rem;
    color: #111827;
}

body.page-id-2 .npp-hero,
body.elementor-editor-active .npp-hero,
.entry-content .npp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 28px;
    background: linear-gradient(135deg, #fff8ef 0%, #f4f7fb 100%);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body.page-id-2 .npp-section,
body.elementor-editor-active .npp-section,
.entry-content .npp-section {
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
}

body.page-id-2 .npp-section--soft,
body.elementor-editor-active .npp-section--soft,
.entry-content .npp-section--soft {
    background: #f8fafc;
}

body.page-id-2 .npp-panel,
body.elementor-editor-active .npp-panel,
.entry-content .npp-panel {
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.09);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    max-width: 760px;
    margin: 0 auto;
}

body.page-id-2 .npp-eyebrow,
body.elementor-editor-active .npp-eyebrow,
.entry-content .npp-eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b45309;
}

body.page-id-2 .npp-title,
body.elementor-editor-active .npp-title,
.entry-content .npp-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

body.page-id-2 .npp-lead,
body.page-id-2 .npp-section-lead,
body.elementor-editor-active .npp-lead,
body.elementor-editor-active .npp-section-lead,
.entry-content .npp-lead,
.entry-content .npp-section-lead {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: #4b5563;
}

body.page-id-2 .npp-section-title,
body.elementor-editor-active .npp-section-title,
.entry-content .npp-section-title {
    margin: 0 0 0.8rem;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.2;
}

body.page-id-2 .npp-actions,
body.page-id-2 .npp-footer-actions,
body.elementor-editor-active .npp-actions,
body.elementor-editor-active .npp-footer-actions,
.entry-content .npp-actions,
.entry-content .npp-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

body.page-id-2 .npp-button,
body.page-id-2 .npp-button:visited,
body.elementor-editor-active .npp-button,
body.elementor-editor-active .npp-button:visited,
.entry-content .npp-button,
.entry-content .npp-button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease;
}

body.page-id-2 .npp-button:hover,
body.elementor-editor-active .npp-button:hover,
.entry-content .npp-button:hover {
    transform: translateY(-1px);
}

body.page-id-2 .npp-button--primary,
body.page-id-2 .npp-button--primary:visited,
body.elementor-editor-active .npp-button--primary,
body.elementor-editor-active .npp-button--primary:visited,
.entry-content .npp-button--primary,
.entry-content .npp-button--primary:visited {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

body.page-id-2 .npp-button--outline,
body.page-id-2 .npp-button--outline:visited,
body.elementor-editor-active .npp-button--outline,
body.elementor-editor-active .npp-button--outline:visited,
.entry-content .npp-button--outline,
.entry-content .npp-button--outline:visited {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

body.page-id-2 .npp-badges,
body.elementor-editor-active .npp-badges,
.entry-content .npp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.page-id-2 .npp-badges li,
body.elementor-editor-active .npp-badges li,
.entry-content .npp-badges li {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.92rem;
}

body.page-id-2 .npp-logo-row,
body.elementor-editor-active .npp-logo-row,
.entry-content .npp-logo-row {
    margin: 1rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

body.page-id-2 .npp-logo-row__image,
body.elementor-editor-active .npp-logo-row__image,
.entry-content .npp-logo-row__image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
}

body.page-id-2 .npp-logo-row__text,
body.elementor-editor-active .npp-logo-row__text,
.entry-content .npp-logo-row__text {
    color: #374151;
}

body.page-id-2 .npp-grid,
body.page-id-2 .npp-latest-posts,
body.page-id-2 .npp-posts,
body.elementor-editor-active .npp-grid,
body.elementor-editor-active .npp-latest-posts,
body.elementor-editor-active .npp-posts,
.entry-content .npp-grid,
.entry-content .npp-latest-posts,
.entry-content .npp-posts {
    display: grid;
    gap: 1rem;
}

body.page-id-2 .npp-grid--3,
body.page-id-2 .npp-latest-posts,
body.page-id-2 .npp-posts,
body.elementor-editor-active .npp-grid--3,
body.elementor-editor-active .npp-latest-posts,
body.elementor-editor-active .npp-posts,
.entry-content .npp-grid--3,
.entry-content .npp-latest-posts,
.entry-content .npp-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-id-2 .npp-grid--split,
body.elementor-editor-active .npp-grid--split,
.entry-content .npp-grid--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

body.page-id-2 .npp-card,
body.page-id-2 .npp-post-card,
body.elementor-editor-active .npp-card,
body.elementor-editor-active .npp-post-card,
.entry-content .npp-card,
.entry-content .npp-post-card {
    padding: 1.2rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

body.page-id-2 .npp-card__badge,
body.elementor-editor-active .npp-card__badge,
.entry-content .npp-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.4rem 0.7rem;
    margin-bottom: 0.65rem;
    border-radius: 999px;
    background: #fff7ed;
    color: #b45309;
    font-weight: 800;
}

body.page-id-2 .npp-post-card h3,
body.elementor-editor-active .npp-post-card h3,
.entry-content .npp-post-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.07rem;
    line-height: 1.35;
}

body.page-id-2 .npp-post-card a,
body.elementor-editor-active .npp-post-card a,
.entry-content .npp-post-card a {
    color: #111827;
}

body.page-id-2 .npp-post-card__meta,
body.elementor-editor-active .npp-post-card__meta,
.entry-content .npp-post-card__meta {
    margin: 0 0 0.45rem;
    font-size: 0.92rem;
    color: #6b7280;
}

body.page-id-2 .npp-post-card__excerpt,
body.elementor-editor-active .npp-post-card__excerpt,
.entry-content .npp-post-card__excerpt {
    margin: 0 0 0.8rem;
    color: #4b5563;
}

body.page-id-2 .npp-post-card__link,
body.elementor-editor-active .npp-post-card__link,
.entry-content .npp-post-card__link {
    font-weight: 700;
    text-decoration: none;
}

body.page-id-2 .npp-list,
body.elementor-editor-active .npp-list,
.entry-content .npp-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

body.page-id-2 .npp-list li,
body.elementor-editor-active .npp-list li,
.entry-content .npp-list li {
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
}

body.page-id-2 .npp-visual,
body.elementor-editor-active .npp-visual,
.entry-content .npp-visual {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

body.page-id-2 .npp-visual > img,
body.elementor-editor-active .npp-visual > img,
.entry-content .npp-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-id-2 .npp-visual-card,
body.elementor-editor-active .npp-visual-card,
.entry-content .npp-visual-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
}

body.page-id-2 .npp-quote,
body.elementor-editor-active .npp-quote,
.entry-content .npp-quote {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border-left: 4px solid #f59e0b;
    background: #fff7ed;
    color: #7c2d12;
}

body.page-id-2 .npp-quote + .npp-quote,
body.elementor-editor-active .npp-quote + .npp-quote,
.entry-content .npp-quote + .npp-quote {
    margin-top: 0.75rem;
}

body.page-id-2 .npp-quote--alt,
body.elementor-editor-active .npp-quote--alt,
.entry-content .npp-quote--alt {
    border-left-color: #60a5fa;
    background: #eff6ff;
    color: #1e3a8a;
}

@media (max-width: 960px) {
    body.page-id-2 .npp-hero,
    body.page-id-2 .npp-grid,
    body.page-id-2 .npp-grid--split,
    body.page-id-2 .npp-grid--3,
    body.page-id-2 .npp-grid--4,
    body.page-id-2 .npp-latest-posts,
    body.page-id-2 .npp-posts,
    body.elementor-editor-active .npp-hero,
    body.elementor-editor-active .npp-grid,
    body.elementor-editor-active .npp-grid--split,
    body.elementor-editor-active .npp-grid--3,
    body.elementor-editor-active .npp-grid--4,
    body.elementor-editor-active .npp-latest-posts,
    body.elementor-editor-active .npp-posts,
    .entry-content .npp-hero,
    .entry-content .npp-grid,
    .entry-content .npp-grid--split,
    .entry-content .npp-grid--3,
    .entry-content .npp-grid--4,
    .entry-content .npp-latest-posts,
    .entry-content .npp-posts,
    .npp-shell .npp-hero,
    .npp-shell .npp-grid,
    .npp-shell .npp-grid--split,
    .npp-shell .npp-grid--3,
    .npp-shell .npp-grid--4,
    .npp-shell .npp-latest-posts,
    .npp-shell .npp-posts {
        grid-template-columns: 1fr !important;
    }

    .npp-shell .npp-grid[style*="grid-template-columns"],
    .entry-content .npp-grid[style*="grid-template-columns"],
    .elementor .npp-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

