/**
 * NestlyKitchen Starter — Custom Styles
 *
 * Color Palette:
 *   Primary Teal:    #E11566
 *   Secondary Saffron: #FBD9DE
 *   Off-white BG:    #FFF7F3
 *   Dark Slate Text: #3A1013
 *   Light Gray:      #FFF0EE
 *   Success:         #4CAF50
 *   Warning:         #FF9800
 *   Accent Soft:     #FCE1EC
 *
 * Typography:
 *   Headings: Poppins
 *   Body: Karla
 *
 * @package NestlyKitchen_Starter
 */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Colors — Warm Pink/Cream palette */
    --nk-primary: #E11566;
    --nk-primary-dark: #C50E58;
    --nk-secondary: #FBD9DE;
    --nk-secondary-dark: #F3C5CE;
    --nk-bg: #FFF7F3;
    --nk-text: #3A1013;
    --nk-text-light: #8B6A6D;
    --nk-heading: #2C0B0E;
    --nk-surface: #FFF0EE;
    --nk-white: #ffffff;
    --nk-success: #4CAF50;
    --nk-warning: #FF9800;
    --nk-error: #E76F51;
    --nk-border: #F3E1E3;
    --nk-accent-soft: #FCE1EC;
    --nk-pink: #FBD9DE;
    --nk-tag: #FDE7EF;
    --nk-tag-text: #B0114F;

    /* Typography */
    --nk-font-heading: "Poppins", sans-serif;
    --nk-font-body: "Karla", system-ui, sans-serif;

    /* Spacing */
    --nk-gap: 1.5rem;
    --nk-container-max: 1200px;
    --nk-radius: 12px;
    --nk-radius-lg: 18px;

    /* Shadows — pink-tinted */
    --nk-shadow-sm: 0 1px 3px rgba(180, 20, 70, 0.06);
    --nk-shadow-md: 0 4px 12px rgba(180, 20, 70, 0.08);
    --nk-shadow-lg: 0 8px 24px rgba(180, 20, 70, 0.12);
    --nk-shadow-xl: 0 16px 34px rgba(180, 20, 70, 0.1);

    /* Transitions */
    --nk-transition: 0.2s ease;
}

/* Dark Mode */
[data-theme="dark"],
.nk-dark {
    --nk-bg: #160D0F;
    --nk-surface: #2A181C;
    --nk-white: #211417;
    --nk-text: #F6E7EA;
    --nk-heading: #FFFFFF;
    --nk-text-light: #B49599;
    --nk-primary: #FF4D8D;
    --nk-primary-dark: #FF6BA1;
    --nk-secondary: #2A181C;
    --nk-secondary-dark: #38232A;
    --nk-accent-soft: #3A1B27;
    --nk-border: #38232A;
    --nk-pink: #2A181C;
    --nk-tag: #3A1B27;
    --nk-tag-text: #FF8FB8;
    --nk-shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --nk-shadow-md: 0 4px 12px rgba(0,0,0,0.25);
    --nk-shadow-lg: 0 8px 24px rgba(0,0,0,0.3);
    --nk-shadow-xl: 0 16px 34px rgba(0,0,0,0.35);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--nk-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--nk-text);
    background-color: var(--nk-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nk-font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--nk-text);
    margin: 0 0 0.75rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

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

a:hover,
a:focus {
    color: var(--nk-primary-dark);
}

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

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--nk-bg);
    clip: auto !important;
    clip-path: none;
    color: var(--nk-text);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.nk-container {
    width: 100%;
    max-width: var(--nk-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--nk-gap);
    padding-right: var(--nk-gap);
}

/* ==========================================================================
   SKIP LINK
   ========================================================================== */

.nk-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nk-primary);
    color: var(--nk-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--nk-radius);
    z-index: 10000;
    transition: top var(--nk-transition);
}

.nk-skip-link:focus {
    top: 10px;
    color: var(--nk-white);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.nk-header {
    background: var(--nk-white);
    border-bottom: 1px solid var(--nk-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--nk-transition);
}

.nk-header.is-scrolled {
    box-shadow: var(--nk-shadow-md);
}

.nk-header__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

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

.nk-header__logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nk-text);
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.nk-header__logo-text:hover {
    color: var(--nk-primary);
}

.nk-header__tagline {
    font-size: 0.75rem;
    color: var(--nk-text-light);
    margin: 0.125rem 0 0;
    display: none;
}

@media (min-width: 768px) {
    .nk-header__tagline {
        display: block;
    }
}

/* Navigation */
.nk-header__nav {
    flex: 1;
    display: none;
}

@media (min-width: 768px) {
    .nk-header__nav {
        display: flex;
        justify-content: center;
    }
}

.nk-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.25rem;
}

.nk-nav-list li {
    position: relative;
}

.nk-nav-list > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nk-text);
    border-radius: var(--nk-radius);
    transition: background var(--nk-transition), color var(--nk-transition);
}

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

/* Dropdown submenu */
.nk-nav-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius);
    box-shadow: var(--nk-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--nk-transition), transform var(--nk-transition), visibility var(--nk-transition);
    z-index: 100;
}

.nk-nav-list li:hover > .sub-menu,
.nk-nav-list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nk-nav-list .sub-menu a {
    display: block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--nk-text);
}

.nk-nav-list .sub-menu a:hover {
    background: var(--nk-surface);
    color: var(--nk-primary);
}

/* Search Pill */
.nk-header__search {
    display: none;
}

@media (min-width: 768px) {
    .nk-header__search {
        display: block;
        flex-shrink: 0;
    }

    .nk-header__search .nk-search-form__wrapper {
        max-width: 220px;
    }
}

/* Hamburger */
.nk-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nk-header__hamburger {
        display: none;
    }
}

.nk-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nk-text);
    border-radius: 2px;
    transition: transform var(--nk-transition), opacity var(--nk-transition);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.nk-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(180, 20, 70, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nk-mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.nk-mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--nk-white);
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nk-mobile-overlay.is-active .nk-mobile-drawer {
    transform: translateX(0);
}

.nk-mobile-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--nk-surface);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: auto;
    margin-bottom: 1.5rem;
    color: var(--nk-text);
}

.nk-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nk-mobile-nav-list li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--nk-text);
    border-bottom: 1px solid var(--nk-border);
}

.nk-mobile-nav-list li a:hover {
    color: var(--nk-primary);
}

.nk-mobile-nav-list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
}

.nk-mobile-drawer__search {
    margin-top: 1.5rem;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.nk-breadcrumbs-bar {
    background: var(--nk-surface);
    border-bottom: 1px solid var(--nk-border);
    padding: 0.5rem 0;
}

.nk-breadcrumbs {
    font-size: 0.8rem;
    color: var(--nk-text-light);
}

.nk-breadcrumbs a {
    color: var(--nk-text-light);
}

.nk-breadcrumbs a:hover {
    color: var(--nk-primary);
}

.nk-breadcrumbs__sep {
    margin: 0 0.35rem;
    color: var(--nk-border);
}

.nk-breadcrumbs__current {
    color: var(--nk-text);
    font-weight: 500;
}

/* ==========================================================================
   SEARCH FORM
   ========================================================================== */

.nk-search-form__wrapper {
    display: flex;
    align-items: center;
    background: var(--nk-surface);
    border: 1px solid var(--nk-border);
    border-radius: 100px;
    overflow: hidden;
    transition: border-color var(--nk-transition), box-shadow var(--nk-transition);
}

.nk-search-form__wrapper:focus-within {
    border-color: var(--nk-primary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.nk-search-form__icon {
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    color: var(--nk-text-light);
    flex-shrink: 0;
}

.nk-search-form__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem;
    font-family: var(--nk-font-body);
    font-size: 0.875rem;
    color: var(--nk-text);
    outline: none;
    min-width: 0;
}

.nk-search-form__input::placeholder {
    color: var(--nk-text-light);
}

.nk-search-form__submit {
    flex-shrink: 0;
    background: var(--nk-primary);
    color: var(--nk-white);
    border: none;
    padding: 0.5rem 1rem;
    font-family: var(--nk-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--nk-transition);
}

.nk-search-form__submit:hover {
    background: var(--nk-primary-dark);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.nk-site-content {
    min-height: 60vh;
    padding: 2rem 0;
}

.nk-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nk-layout {
        grid-template-columns: 1fr 300px;
    }
}

.nk-layout--page {
    grid-template-columns: 1fr;
    max-width: 800px;
}

/* ==========================================================================
   POST CARD
   ========================================================================== */

.nk-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nk-gap);
}

@media (min-width: 520px) {
    .nk-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.nk-card:hover {
    box-shadow: var(--nk-shadow-md);
    transform: translateY(-2px);
}

.nk-card__thumbnail {
    display: block;
    aspect-ratio: 400 / 260;
    overflow: hidden;
    background: var(--nk-surface);
}

.nk-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nk-card:hover .nk-card__thumbnail img {
    transform: scale(1.04);
}

.nk-card__thumbnail--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nk-card__body {
    padding: 1rem 1.25rem 1.25rem;
}

.nk-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--nk-primary);
    background: rgba(42, 157, 143, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.nk-card__category:hover {
    background: rgba(42, 157, 143, 0.2);
}

.nk-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.nk-card__title a {
    color: var(--nk-text);
}

.nk-card__title a:hover {
    color: var(--nk-primary);
}

.nk-card__excerpt {
    font-size: 0.875rem;
    color: var(--nk-text-light);
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.nk-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--nk-text-light);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.nk-pagination {
    margin-top: 2rem;
    text-align: center;
}

.nk-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.nk-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--nk-radius);
    color: var(--nk-text);
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    transition: all var(--nk-transition);
}

.nk-pagination .page-numbers:hover {
    background: var(--nk-primary);
    color: var(--nk-white);
    border-color: var(--nk-primary);
}

.nk-pagination .page-numbers.current {
    background: var(--nk-primary);
    color: var(--nk-white);
    border-color: var(--nk-primary);
}

.nk-pagination .prev,
.nk-pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==========================================================================
   PAGE ARTICLE
   ========================================================================== */

.nk-page-article__header {
    margin-bottom: 1.5rem;
}

.nk-page-article__title {
    font-size: 2rem;
    font-weight: 700;
}

.nk-page-article__thumbnail {
    margin-bottom: 1.5rem;
    border-radius: var(--nk-radius-lg);
    overflow: hidden;
}

.nk-page-article__content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.nk-page-article__content p {
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.nk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nk-widget {
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius-lg);
    padding: 1.25rem;
}

.nk-widget__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--nk-secondary);
}

.nk-brand-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nk-brand-list__item {
    border-bottom: 1px solid var(--nk-surface);
}

.nk-brand-list__item:last-child {
    border-bottom: none;
}

.nk-brand-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nk-text);
}

.nk-brand-list__link:hover {
    color: var(--nk-primary);
}

.nk-popular-fixes {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nk-popular-fixes__item {
    margin-bottom: 0.75rem;
}

.nk-popular-fixes__item:last-child {
    margin-bottom: 0;
}

.nk-popular-fixes__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--nk-text);
}

.nk-popular-fixes__link:hover .nk-popular-fixes__title {
    color: var(--nk-primary);
}

.nk-popular-fixes__thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--nk-radius);
    overflow: hidden;
}

.nk-popular-fixes__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nk-popular-fixes__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nk-popular-fixes__title {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color var(--nk-transition);
}

.nk-popular-fixes__meta {
    font-size: 0.75rem;
    color: var(--nk-text-light);
}

.nk-widget__empty {
    font-size: 0.85rem;
    color: var(--nk-text-light);
    font-style: italic;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.nk-404 {
    text-align: center;
    padding: 3rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.nk-404__illustration {
    margin-bottom: 1.5rem;
}

.nk-404__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nk-text);
    margin-bottom: 0.75rem;
}

.nk-404__message {
    font-size: 1rem;
    color: var(--nk-text-light);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.nk-404__search {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.nk-404__subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.nk-404__cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.nk-404__cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius-lg);
    transition: all var(--nk-transition);
    color: var(--nk-text);
}

.nk-404__cat-card:hover {
    border-color: var(--nk-primary);
    box-shadow: var(--nk-shadow-sm);
    color: var(--nk-primary);
}

.nk-404__cat-icon {
    color: var(--nk-primary);
}

.nk-404__cat-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.nk-404__home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--nk-primary);
    color: var(--nk-white);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background var(--nk-transition);
}

.nk-404__home-btn:hover {
    background: var(--nk-primary-dark);
    color: var(--nk-white);
}

/* ==========================================================================
   COMMENTS
   ========================================================================== */

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

.nk-comments__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.nk-comment-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.nk-comment-list .comment {
    padding: 1rem 0;
    border-bottom: 1px solid var(--nk-surface);
}

.nk-comments__closed {
    font-style: italic;
    color: var(--nk-text-light);
}

.nk-comments__reply-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.nk-comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.nk-comment-form input[type="text"],
.nk-comment-form input[type="email"],
.nk-comment-form input[type="url"],
.nk-comment-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius);
    font-family: var(--nk-font-body);
    font-size: 0.9rem;
    transition: border-color var(--nk-transition);
    margin-bottom: 1rem;
}

.nk-comment-form input:focus,
.nk-comment-form textarea:focus {
    outline: none;
    border-color: var(--nk-primary);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}

.nk-comment-form__submit {
    cursor: pointer;
}

.nk-comments__note {
    font-size: 0.8rem;
    color: var(--nk-text-light);
    margin-bottom: 1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.nk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    font-family: var(--nk-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: var(--nk-radius);
    cursor: pointer;
    transition: all var(--nk-transition);
    text-decoration: none;
}

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

.nk-btn--primary:hover {
    background: var(--nk-primary-dark);
    color: var(--nk-white);
}

/* ==========================================================================
   SHORTCODE: Pros & Cons
   ========================================================================== */

.nk-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

@media (min-width: 520px) {
    .nk-pros-cons {
        grid-template-columns: 1fr 1fr;
    }
}

.nk-pros-cons__col {
    padding: 1rem 1.25rem;
    border-radius: var(--nk-radius-lg);
}

.nk-pros-cons__col--pros {
    background: rgba(76, 175, 80, 0.07);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.nk-pros-cons__col--cons {
    background: rgba(231, 111, 81, 0.07);
    border: 1px solid rgba(231, 111, 81, 0.2);
}

.nk-pros-cons__heading {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.nk-pros-cons__heading--pros { color: var(--nk-success); }
.nk-pros-cons__heading--cons { color: var(--nk-error); }

.nk-pros-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nk-pros-cons ul li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.nk-pros-cons__col--pros ul li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--nk-success);
    font-weight: 700;
}

.nk-pros-cons__col--cons ul li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: var(--nk-error);
    font-weight: 700;
}

/* ==========================================================================
   SHORTCODE: Verdict Box
   ========================================================================== */

.nk-verdict-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.06), rgba(233, 196, 106, 0.08));
    border: 1px solid var(--nk-primary);
    border-radius: var(--nk-radius-lg);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.nk-verdict-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.nk-verdict-box__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nk-primary);
    margin: 0;
}

.nk-verdict-box__stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nk-star { font-size: 1.1rem; }
.nk-star--full { color: var(--nk-secondary); }
.nk-star--half { color: var(--nk-secondary); opacity: 0.6; }
.nk-star--empty { color: var(--nk-border); }

.nk-verdict-box__rating {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nk-text);
    margin-left: 0.35rem;
}

.nk-verdict-box__body {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   SHORTCODE: Product Card
   ========================================================================== */

.nk-product-card {
    display: flex;
    flex-direction: column;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius-lg);
    overflow: hidden;
    margin: 1.5rem 0;
    transition: box-shadow var(--nk-transition);
}

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

@media (min-width: 520px) {
    .nk-product-card {
        flex-direction: row;
    }
}

.nk-product-card__image {
    flex-shrink: 0;
    max-width: 220px;
    background: var(--nk-surface);
}

.nk-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.nk-product-card__body {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.nk-product-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nk-product-card__desc {
    font-size: 0.9rem;
    color: var(--nk-text-light);
    margin: 0 0 auto;
    line-height: 1.6;
}

.nk-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--nk-surface);
}

.nk-product-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nk-text);
    font-family: var(--nk-font-heading);
}

.nk-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: var(--nk-secondary);
    color: var(--nk-text);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--nk-radius);
    transition: background var(--nk-transition);
    white-space: nowrap;
}

.nk-product-card__cta:hover {
    background: var(--nk-secondary-dark);
    color: var(--nk-text);
}

/* ==========================================================================
   SHORTCODE: Comparison Table
   ========================================================================== */

.nk-comparison-table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
}

.nk-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}

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

.nk-comparison-table thead th {
    background: var(--nk-primary);
    color: var(--nk-white);
    font-weight: 600;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
}

.nk-comparison-table tbody th {
    font-weight: 500;
    background: var(--nk-surface);
    white-space: nowrap;
}

.nk-comparison-table tbody tr:hover td {
    background: rgba(42, 157, 143, 0.04);
}

/* ==========================================================================
   SHORTCODE: Step
   ========================================================================== */

.nk-step {
    display: flex;
    gap: 1rem;
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-left: 4px solid var(--nk-primary);
    border-radius: 0 var(--nk-radius) var(--nk-radius) 0;
}

.nk-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--nk-primary);
    color: var(--nk-white);
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
}

.nk-step__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.nk-step__content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--nk-text-light);
}

/* ==========================================================================
   DISCLOSURE
   ========================================================================== */

.nk-disclosure {
    font-size: 0.8rem;
    color: var(--nk-text-light);
    line-height: 1.6;
    background: var(--nk-surface);
    padding: 0.75rem 1rem;
    border-radius: var(--nk-radius);
    border-left: 3px solid var(--nk-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.nk-footer {
    margin-top: 2rem;
    background: var(--nk-text);
    color: rgba(255, 255, 255, 0.85);
}

.nk-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.nk-footer a:hover {
    color: var(--nk-secondary);
}

/* Top Guides */
.nk-footer__guides {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nk-footer__heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nk-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nk-footer__guides-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.nk-footer__guides-list a {
    display: block;
    font-size: 0.875rem;
    padding: 0.3rem 0;
}

/* Newsletter */
.nk-footer__newsletter {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nk-newsletter {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.nk-newsletter__heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nk-white);
    margin-bottom: 0.5rem;
}

.nk-newsletter__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.nk-newsletter__form {
    display: flex;
    gap: 0;
    border-radius: 100px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nk-newsletter__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-family: var(--nk-font-body);
    font-size: 0.9rem;
    color: var(--nk-white);
    outline: none;
}

.nk-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nk-newsletter__btn {
    flex-shrink: 0;
    background: var(--nk-secondary);
    color: var(--nk-text);
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--nk-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--nk-transition);
}

.nk-newsletter__btn:hover {
    background: var(--nk-secondary-dark);
}

.nk-newsletter__note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
}

/* Footer Widgets */
.nk-footer__widgets {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nk-footer-widget__title {
    font-size: 0.9rem;
    color: var(--nk-white);
    margin-bottom: 0.75rem;
}

/* Trust & Social */
.nk-footer__trust {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nk-footer__trust .nk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.nk-footer__disclosure {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.nk-footer__social {
    display: flex;
    gap: 0.75rem;
}

.nk-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--nk-transition);
}

.nk-social-link:hover {
    background: var(--nk-primary);
    color: var(--nk-white);
}

/* Bottom Bar */
.nk-footer__bottom {
    padding: 1.25rem 0;
}

.nk-footer__bottom .nk-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nk-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.nk-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.nk-footer__nav-list a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.nk-footer__nav-list a:hover {
    color: var(--nk-secondary);
}

/* ==========================================================================
   NO RESULTS
   ========================================================================== */

.nk-no-results {
    text-align: center;
    padding: 3rem 0;
}

.nk-no-results h2 {
    margin-bottom: 0.75rem;
}

.nk-no-results p {
    color: var(--nk-text-light);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   ARCHIVE HEADER
   ========================================================================== */

.nk-archive-header {
    margin-bottom: 1.5rem;
}

.nk-page-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.nk-archive-desc {
    color: var(--nk-text-light);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* ==========================================================================
   ENTRY CONTENT (Gutenberg / Classic Editor)
   ========================================================================== */

.entry-content > * + * {
    margin-top: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
}

.entry-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--nk-primary);
    background: var(--nk-surface);
    border-radius: 0 var(--nk-radius) var(--nk-radius) 0;
    font-style: italic;
}

.entry-content img {
    border-radius: var(--nk-radius);
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--nk-border);
    text-align: left;
}

.entry-content table th {
    background: var(--nk-surface);
    font-weight: 600;
}

/* ==========================================================================
   PAGE LINKS
   ========================================================================== */

.nk-page-links {
    margin-top: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--nk-border);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================================
   WORDPRESS ADMIN BAR OFFSET
   ========================================================================== */

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

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.nk-hero {
    background: linear-gradient(135deg, #f0f9f7 0%, var(--nk-bg) 50%, #fdf8ed 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nk-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nk-hero__content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nk-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--nk-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.nk-hero p {
    font-size: 1.125rem;
    color: var(--nk-text-light, #5A7A8A);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.nk-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nk-hero__featured {
    margin-top: 3rem;
    position: relative;
}

.nk-hero__featured-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    background: var(--nk-white);
    border-radius: var(--nk-radius-lg);
    box-shadow: 0 4px 24px var(--nk-shadow);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--nk-transition);
}

.nk-hero__featured-card:hover {
    box-shadow: 0 8px 32px var(--nk-shadow-lg);
}

.nk-hero__featured-img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}

.nk-hero__featured-badge {
    display: inline-block;
    background: var(--nk-secondary);
    color: var(--nk-text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Archive Hero */
.archive-hero {
    background: linear-gradient(135deg, #f0f9f7 0%, var(--nk-bg) 100%);
    padding: 3rem 0 2rem;
    text-align: center;
}

.archive-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--nk-text);
    margin-bottom: 0.75rem;
}

.archive-hero p {
    color: var(--nk-text-light, #5A7A8A);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.archive-hero__ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--nk-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--nk-transition);
    min-height: 44px;
    line-height: 1.4;
}

.btn-primary {
    background: var(--nk-primary);
    color: #fff;
    border-color: var(--nk-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--nk-primary-dark, #238377);
    border-color: var(--nk-primary-dark, #238377);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--nk-primary);
    border-color: var(--nk-primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--nk-primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ==========================================================================
   CATEGORY SHORTCUT CARDS
   ========================================================================== */

.nk-categories {
    padding: 3rem 0;
    background: var(--nk-bg);
}

.nk-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nk-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius-lg);
    text-decoration: none;
    color: var(--nk-text);
    transition: all var(--nk-transition);
    cursor: pointer;
}

.nk-category-card:hover,
.nk-category-card:focus-visible {
    border-color: var(--nk-primary);
    box-shadow: 0 4px 16px var(--nk-shadow);
    transform: translateY(-3px);
}

.nk-category-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.1);
    margin-bottom: 0.75rem;
}

.nk-category-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--nk-primary);
    fill: none;
    stroke-width: 1.5;
}

.nk-category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.nk-category-card p {
    font-size: 0.8125rem;
    color: var(--nk-text-light, #5A7A8A);
    margin: 0;
}

.nk-category-card__count {
    font-size: 0.75rem;
    color: var(--nk-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ==========================================================================
   INTENT SELECTOR ("What are you doing today?")
   ========================================================================== */

.nk-intent {
    padding: 3rem 0;
    text-align: center;
    background: var(--nk-surface);
}

.nk-intent h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.nk-intent__options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.nk-intent__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.5rem;
    background: var(--nk-white);
    border: 2px solid var(--nk-border);
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nk-text);
    cursor: pointer;
    transition: all var(--nk-transition);
    min-height: 48px;
}

.nk-intent__btn:hover,
.nk-intent__btn:focus-visible,
.nk-intent__btn--active {
    border-color: var(--nk-primary);
    background: rgba(42, 157, 143, 0.06);
    color: var(--nk-primary);
}

.nk-intent__btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   FILTER CHIPS & BRAND FILTER STRIP
   ========================================================================== */

.nk-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    padding: 1rem 0;
}

.nk-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.125rem;
    background: var(--nk-white);
    border: 1.5px solid var(--nk-border);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nk-text);
    cursor: pointer;
    transition: all var(--nk-transition);
    text-decoration: none;
    min-height: 40px;
}

.nk-filter-chip:hover,
.nk-filter-chip:focus-visible {
    border-color: var(--nk-primary);
    color: var(--nk-primary);
}

.nk-filter-chip--active,
.nk-filter-chip[aria-pressed="true"] {
    background: var(--nk-primary);
    border-color: var(--nk-primary);
    color: #fff;
    font-weight: 600;
}

.nk-filter-chip svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nk-brand-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem 0 1.5rem;
}

.nk-brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.875rem;
    background: var(--nk-surface);
    border: 1px solid var(--nk-border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--nk-text);
    cursor: pointer;
    transition: all var(--nk-transition);
    text-decoration: none;
}

.nk-brand-chip:hover,
.nk-brand-chip:focus-visible {
    border-color: var(--nk-secondary);
    color: var(--nk-text);
    background: rgba(233, 196, 106, 0.15);
}

.nk-brand-chip--active,
.nk-brand-chip[aria-pressed="true"] {
    background: var(--nk-secondary);
    border-color: var(--nk-secondary);
    color: var(--nk-text);
    font-weight: 600;
}

/* ==========================================================================
   CONTENT SECTIONS (Homepage & Archive)
   ========================================================================== */

.nk-section {
    padding: 3.5rem 0;
}

.nk-section:nth-child(even) {
    background: var(--nk-surface);
}

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

.nk-section__header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nk-text);
    margin: 0;
}

.nk-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nk-primary);
    text-decoration: none;
    transition: gap var(--nk-transition);
}

.nk-section__link:hover {
    gap: 0.6rem;
}

.nk-section__link svg {
    width: 16px;
    height: 16px;
}

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

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

/* ==========================================================================
   CONTENT CARD (Unified)
   ========================================================================== */

.nk-card {
    display: flex;
    flex-direction: column;
    background: var(--nk-white);
    border-radius: var(--nk-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px var(--nk-shadow);
    transition: all var(--nk-transition);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.nk-card:hover {
    box-shadow: 0 8px 24px var(--nk-shadow-lg);
    transform: translateY(-3px);
}

.nk-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nk-surface);
}

.nk-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nk-card:hover .nk-card__image img {
    transform: scale(1.04);
}

.nk-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background: var(--nk-primary);
    color: #fff;
    z-index: 2;
}

.nk-card__badge--guides {
    background: var(--nk-secondary);
    color: var(--nk-text);
}

.nk-card__badge--recipes {
    background: var(--nk-success);
    color: #fff;
}

.nk-card__badge--cleaning {
    background: #7FCCDE;
    color: var(--nk-text);
}

.nk-card__brand-overlay {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.92);
    color: var(--nk-text);
    backdrop-filter: blur(4px);
}

.nk-card__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nk-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--nk-text);
    line-height: 1.35;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nk-card__excerpt {
    font-size: 0.875rem;
    color: var(--nk-text-light, #5A7A8A);
    line-height: 1.55;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.nk-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--nk-text-light, #5A7A8A);
    margin-top: auto;
}

.nk-card__meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.nk-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--nk-primary);
    margin-top: 0.75rem;
    transition: gap var(--nk-transition);
}

.nk-card:hover .nk-card__cta {
    gap: 0.5rem;
}

/* Horizontal card variant for archive */
.nk-card--horizontal {
    flex-direction: row;
}

.nk-card--horizontal .nk-card__image {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
    min-height: 180px;
}

.nk-card--horizontal .nk-card__body {
    justify-content: center;
}

/* Placeholder image */
.nk-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-surface);
}

.nk-card__placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--nk-border);
    fill: none;
}

/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== */

.nk-toc-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 1rem;
}

.nk-toc-sidebar::-webkit-scrollbar {
    width: 3px;
}

.nk-toc-sidebar::-webkit-scrollbar-thumb {
    background: var(--nk-border);
    border-radius: 4px;
}

.toc-container {
    padding: 1.25rem;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius);
}

.toc-container h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nk-text-light, #5A7A8A);
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.125rem;
}

.toc-list a {
    display: block;
    padding: 0.375rem 0.625rem;
    font-size: 0.8125rem;
    color: var(--nk-text-light, #5A7A8A);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: all var(--nk-transition);
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--nk-primary);
    background: rgba(42, 157, 143, 0.04);
}

.toc-list a.active {
    color: var(--nk-primary);
    border-left-color: var(--nk-primary);
    font-weight: 600;
    background: rgba(42, 157, 143, 0.06);
}

.toc-list .toc-h3 {
    padding-left: 1.25rem;
    font-size: 0.75rem;
}

/* Mobile TOC */
.nk-toc-mobile-trigger {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nk-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(42,157,143,0.35);
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.nk-toc-bottom-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.nk-toc-bottom-sheet.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nk-toc-bottom-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.nk-toc-bottom-sheet__content {
    position: relative;
    background: var(--nk-white);
    border-radius: 16px 16px 0 0;
    max-height: 60vh;
    overflow-y: auto;
    padding: 1.5rem;
    animation: slideUp 0.3s ease;
}

.nk-toc-bottom-sheet__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--nk-surface);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--nk-text);
}

/* ==========================================================================
   VERDICT BOX
   ========================================================================== */

.nk-verdict-box {
    background: linear-gradient(135deg, rgba(42,157,143,0.04) 0%, rgba(42,157,143,0.08) 100%);
    border: 1px solid rgba(42,157,143,0.2);
    border-left: 4px solid var(--nk-primary);
    border-radius: var(--nk-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

.nk-verdict-box__heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nk-primary);
    margin-bottom: 1rem;
}

.nk-verdict-box__heading svg {
    width: 22px;
    height: 22px;
}

.nk-verdict-box__winner {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--nk-text);
    margin-bottom: 0.5rem;
}

.nk-verdict-box__winner .badge {
    display: inline-block;
    background: var(--nk-secondary);
    color: var(--nk-text);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.nk-verdict-box__summary {
    font-size: 0.9375rem;
    color: var(--nk-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.nk-verdict-box__specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nk-verdict-box__spec {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.nk-verdict-box__spec strong {
    color: var(--nk-text);
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.nk-product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    background: var(--nk-white);
    position: relative;
}

.nk-product-card__badge {
    position: absolute;
    top: -0.625rem;
    left: 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.nk-product-card__badge--best-overall {
    background: var(--nk-secondary);
    color: var(--nk-text);
}

.nk-product-card__badge--best-budget {
    background: var(--nk-success);
    color: #fff;
}

.nk-product-card__badge--editors-pick {
    background: var(--nk-primary);
    color: #fff;
}

.nk-product-card__image {
    border-radius: var(--nk-radius);
    overflow: hidden;
    background: var(--nk-surface);
}

.nk-product-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nk-product-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nk-product-card__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.nk-product-card__specs li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--nk-text);
    border-bottom: 1px solid var(--nk-surface);
}

.nk-product-card__specs li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--nk-primary);
    margin-top: 2px;
}

.nk-product-card__price {
    font-size: 0.875rem;
    color: var(--nk-text-light, #5A7A8A);
    margin-bottom: 1rem;
}

.amazon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #FF9900;
    color: #111;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--nk-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--nk-transition);
    min-height: 44px;
}

.amazon-btn:hover {
    background: #e58a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,153,0,0.3);
}

.amazon-btn svg {
    width: 18px;
    height: 18px;
}

.nk-affiliate-note {
    font-size: 0.6875rem;
    color: var(--nk-text-light, #5A7A8A);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ==========================================================================
   PROS & CONS
   ========================================================================== */

.nk-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.nk-pros {
    background: #E8F5E9;
    border-left: 4px solid var(--nk-success);
    border-radius: var(--nk-radius);
    padding: 1.25rem;
}

.nk-cons {
    background: #FBE9E7;
    border-left: 4px solid var(--nk-error);
    border-radius: var(--nk-radius);
    padding: 1.25rem;
}

.nk-pros h4,
.nk-cons h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nk-pros h4 { color: #2E7D32; }
.nk-cons h4 { color: #BF360C; }

.nk-pros ul,
.nk-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nk-pros li,
.nk-cons li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.nk-pros li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--nk-success);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}

.nk-cons li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--nk-error);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}

/* ==========================================================================
   TROUBLESHOOTING STEPS
   ========================================================================== */

.nk-steps {
    margin: 2rem 0;
    position: relative;
}

.nk-step-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--nk-surface);
    border-radius: var(--nk-radius);
    margin-bottom: 1.5rem;
}

.nk-step-progress__bar {
    flex: 1;
    height: 6px;
    background: var(--nk-border);
    border-radius: 3px;
    overflow: hidden;
}

.nk-step-progress__fill {
    height: 100%;
    background: var(--nk-primary);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 0;
}

.nk-step-progress__text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--nk-text);
    white-space: nowrap;
}

.nk-step-progress__reset {
    font-size: 0.75rem;
    color: var(--nk-text-light, #5A7A8A);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    display: none;
}

.nk-step-progress__reset.visible {
    display: inline;
}

.nk-step-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--nk-border);
    border-radius: var(--nk-radius);
    background: var(--nk-white);
    position: relative;
    transition: all var(--nk-transition);
}

.nk-step-item--completed {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.03);
}

.nk-step-item__number {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nk-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.nk-step-item--completed .nk-step-item__number {
    background: var(--nk-success);
}

.nk-step-item__checkbox {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 22px;
    height: 22px;
    accent-color: var(--nk-primary);
    cursor: pointer;
}

.nk-step-item__content {
    flex: 1;
}

.nk-step-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--nk-text);
}

.nk-step-item--completed .nk-step-item__title {
    text-decoration: line-through;
    color: var(--nk-text-light, #5A7A8A);
}

.nk-step-item__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--nk-text);
}

.nk-step-item details {
    margin-top: 0.75rem;
}

.nk-step-item summary {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nk-primary);
    cursor: pointer;
    padding: 0.25rem 0;
}

.nk-step-item details[open] summary {
    margin-bottom: 0.5rem;
}

.nk-step-item__image {
    margin-top: 0.75rem;
    border-radius: var(--nk-radius);
    overflow: hidden;
}

.nk-step-item__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Issue Summary Banner */
.nk-issue-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #FFF3E0;
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-left: 4px solid var(--nk-warning);
    border-radius: var(--nk-radius);
    margin-bottom: 1.5rem;
}

.nk-issue-banner svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--nk-warning);
}

.nk-issue-banner__text {
    flex: 1;
}

.nk-issue-banner__text strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.2rem;
}

.nk-difficulty {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.nk-difficulty--easy {
    background: #E8F5E9;
    color: #2E7D32;
}

.nk-difficulty--medium {
    background: #FFF3E0;
    color: #E65100;
}

.nk-difficulty--advanced {
    background: #FBE9E7;
    color: #BF360C;
}

.nk-est-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--nk-text-light, #5A7A8A);
}

.nk-est-time svg {
    width: 16px;
    height: 16px;
}

/* Step celebration */
.nk-celebration {
    display: none;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76,175,80,0.08), rgba(42,157,143,0.08));
    border-radius: var(--nk-radius-lg);
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.nk-celebration.active {
    display: block;
}

.nk-celebration h3 {
    font-size: 1.25rem;
    color: var(--nk-success);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.nk-comparison-wrapper {
    position: relative;
    margin: 2rem 0;
    border-radius: var(--nk-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px var(--nk-shadow);
}

.nk-comparison-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Right shadow indicator */
.nk-comparison-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.06), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.nk-comparison-wrapper.has-scroll::after {
    opacity: 1;
}

.nk-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.nk-comparison-table th {
    background: var(--nk-primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

.nk-comparison-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--nk-border);
    color: var(--nk-text);
    vertical-align: middle;
}

.nk-comparison-table tr:nth-child(even) td {
    background: var(--nk-surface);
}

.nk-comparison-table tr:hover td {
    background: rgba(42,157,143,0.04);
}

.nk-comparison-table tr.top-pick td {
    background: rgba(233,196,106,0.15);
    font-weight: 500;
}

.nk-comparison-table tr.top-pick td:first-child::before {
    content: '★ ';
    color: var(--nk-secondary);
}

.nk-comparison-table .sticky-col {
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 1;
}

/* ==========================================================================
   LOAD MORE & STILL LOOKING
   ========================================================================== */

.nk-load-more {
    text-align: center;
    padding: 2rem 0;
}

.nk-load-more .btn {
    min-width: 200px;
}

.nk-load-more .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.nk-load-more.loading .spinner {
    display: inline-block;
}

.nk-still-looking {
    text-align: center;
    padding: 3rem 0;
    background: var(--nk-surface);
    border-radius: var(--nk-radius-lg);
    margin: 3rem 0;
}

.nk-still-looking h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.nk-still-looking .search-form {
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.nk-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.nk-quick-links a {
    font-size: 0.8125rem;
    color: var(--nk-primary);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--nk-border);
    border-radius: 999px;
    transition: all var(--nk-transition);
}

.nk-quick-links a:hover {
    border-color: var(--nk-primary);
    background: rgba(42,157,143,0.06);
}

/* ==========================================================================
   RELATED POSTS
   ========================================================================== */

.nk-related {
    padding: 3rem 0;
    border-top: 1px solid var(--nk-border);
    margin-top: 3rem;
}

.nk-related h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   AUTHOR BOX
   ========================================================================== */

.nk-author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--nk-surface);
    border-radius: var(--nk-radius-lg);
    margin: 2.5rem 0;
}

.nk-author-box__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nk-author-box__name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.nk-author-box__name a {
    color: var(--nk-text);
    text-decoration: none;
}

.nk-author-box__bio {
    font-size: 0.875rem;
    color: var(--nk-text-light, #5A7A8A);
    line-height: 1.6;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, var(--nk-surface) 25%, var(--nk-surface-dark, #E5E4DF) 37%, var(--nk-surface) 63%);
    background-size: 400px 100%;
    animation: shimmer 1.4s ease infinite;
    border-radius: var(--nk-radius);
}

.skeleton--text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton--heading {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton--image {
    aspect-ratio: 16/10;
    border-radius: var(--nk-radius-lg);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.lazy-load {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================================================== */

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

    .nk-product-card {
        grid-template-columns: 1fr;
    }

    .nk-article-layout {
        grid-template-columns: 1fr;
    }

    .nk-toc-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .nk-hero {
        padding: 2.5rem 0 2rem;
    }

    .nk-hero h1 {
        font-size: 1.75rem;
    }

    .nk-hero__featured-card {
        flex-direction: column;
    }

    .nk-hero__featured-img {
        width: 100%;
        height: 160px;
    }

    .nk-grid-3,
    .nk-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .nk-card--horizontal {
        flex-direction: column;
    }

    .nk-card--horizontal .nk-card__image {
        width: 100%;
        aspect-ratio: 16/10;
        min-height: auto;
    }

    .nk-pros-cons {
        grid-template-columns: 1fr;
    }

    .nk-toc-mobile-trigger {
        display: flex;
    }

    .nk-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nk-intent__options {
        flex-direction: column;
        align-items: stretch;
    }

    .nk-intent__btn {
        justify-content: center;
    }

    .nk-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .nk-filter-chips {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .nk-filter-chip {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nk-brand-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .nk-brand-chip {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nk-comparison-table {
        min-width: 600px;
    }

    .nk-step-item {
        flex-direction: column;
    }

    .nk-step-item__checkbox {
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nk-categories__grid {
        grid-template-columns: 1fr;
    }

    .nk-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .archive-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1240px;
    }

    .nk-article-layout {
        grid-template-columns: 1fr 260px;
        gap: 3rem;
    }
}

/* Print styles */
@media print {
    .nk-header,
    .site-footer,
    .nk-toc-sidebar,
    .nk-toc-mobile-trigger,
    .nk-related,
    .nk-step-item__checkbox,
    .nk-step-progress,
    .search-form,
    .mobile-toggle,
    .amazon-btn,
    nav {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .nk-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* ==========================================================================
   DESIGN V2 — Pink/Cream Overrides & Dark Mode
   ========================================================================== */

/* --- Header V2 --- */
.nk-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--nk-white);
    border-bottom: 1px solid var(--nk-border);
    transition: background .25s, border-color .25s;
}
.nk-header__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 14px 28px;
}
.nk-header__logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}
.nk-header__logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--nk-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.nk-header__logo-text {
    font-family: var(--nk-font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.5px;
    color: var(--nk-heading);
    line-height: 1;
}
.nk-header__logo-accent {
    color: var(--nk-primary);
}
.nk-header__nav {
    margin-left: 8px;
    flex: 1;
}
.nk-header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.nk-header__menu li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--nk-text-light);
    padding: 8px 12px;
    border-radius: 9px;
    transition: background .15s, color .15s;
    text-decoration: none;
    display: block;
}
.nk-header__menu li a:hover {
    background: var(--nk-surface);
    color: var(--nk-heading);
}
.nk-header__menu li.current-menu-item a,
.nk-header__menu li.current_page_item a {
    font-weight: 600;
    color: var(--nk-heading);
}
.nk-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Dark mode toggle */
.nk-header__theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid var(--nk-border);
    background: var(--nk-white);
    color: var(--nk-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.nk-header__theme-toggle:hover {
    background: var(--nk-surface);
}
.nk-theme-icon--dark { display: none; }
[data-theme="dark"] .nk-theme-icon--light { display: none; }
[data-theme="dark"] .nk-theme-icon--dark { display: block; }

/* Subscribe button */
.nk-header__subscribe {
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 999px;
}

/* --- Card Image Fixes (V2) --- */
.nk-content-card__thumb,
.nk-archive-card__thumb {
    position: relative;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    height: 190px;
    background: var(--nk-surface);
}
.nk-content-card__thumb img,
.nk-archive-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.nk-content-card:hover .nk-content-card__thumb img,
.nk-archive-card:hover .nk-archive-card__thumb img {
    transform: scale(1.05);
}

/* Archive cards V2 */
.nk-archive-card {
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s, box-shadow .18s;
}
.nk-archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(180, 20, 70, 0.12);
}
.nk-archive-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}
.nk-archive-card__body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.nk-archive-card__title {
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.28;
    color: var(--nk-heading);
    margin: 0;
}
.nk-archive-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--nk-text-light);
    margin: 8px 0 0;
    flex: 1;
}
.nk-archive-card__meta {
    font-size: 13.5px;
    color: var(--nk-text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nk-archive-card__cat {
    background: var(--nk-tag);
    color: var(--nk-tag-text);
    font-weight: 600;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}
.nk-archive-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Content cards V2 (homepage) */
.nk-content-card {
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s, box-shadow .18s;
}
.nk-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(180, 20, 70, 0.12);
}
.nk-content-card__body {
    padding: 18px 18px 20px;
}
.nk-content-card__title {
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.28;
    color: var(--nk-heading);
}

/* Category badge on card images */
.nk-badge--brand-overlay,
.nk-badge--category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: var(--nk-tag-text);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
}

/* --- Single Article Image Fixes --- */
.nk-article-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 1.5rem 0;
    display: block;
    box-shadow: var(--nk-shadow-md);
}
.nk-article-content .wp-block-image,
.entry-content .wp-block-image {
    margin: 2rem 0;
}
.nk-article-content .wp-block-image img {
    border-radius: 18px;
}
.nk-article-content figure {
    margin: 1.5rem 0;
}
.nk-article-content figcaption {
    font-size: 13px;
    color: var(--nk-text-light);
    text-align: center;
    margin-top: 8px;
}

/* Featured image in single posts */
.nk-single__featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 2rem;
    box-shadow: var(--nk-shadow-lg);
}

/* --- Category Cards V2 (emoji style) --- */
.nk-categories__card {
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .18s, box-shadow .18s;
    text-decoration: none;
    color: inherit;
}
.nk-categories__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nk-shadow-xl);
}
.nk-categories__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--nk-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.nk-categories__label {
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--nk-heading);
}
.nk-categories__desc {
    font-size: 14px;
    color: var(--nk-text-light);
    margin-top: 3px;
}

/* --- Hero V2 --- */
.nk-hero-v2 {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding: 56px 0 40px;
}
.nk-hero-v2__badge {
    display: inline-block;
    background: var(--nk-accent-soft);
    color: var(--nk-tag-text);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;
    padding: 7px 14px;
    border-radius: 999px;
}
.nk-hero-v2__title {
    font-family: var(--nk-font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--nk-heading);
    margin: 20px 0 0;
}
.nk-hero-v2__title span {
    color: var(--nk-primary);
}
.nk-hero-v2__desc {
    font-size: 19px;
    line-height: 1.55;
    color: var(--nk-text-light);
    margin: 18px 0 28px;
    max-width: 520px;
}

/* Search bar in hero */
.nk-hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: 999px;
    padding: 7px 7px 7px 20px;
    max-width: 480px;
    box-shadow: 0 8px 26px rgba(180, 20, 70, 0.07);
}
.nk-hero-search__icon {
    flex: 0 0 auto;
    color: var(--nk-text-light);
}
.nk-hero-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--nk-font-body);
    font-size: 16px;
    color: var(--nk-text);
    min-width: 0;
}
.nk-hero-search button {
    background: var(--nk-primary);
    color: #fff;
    font-family: var(--nk-font-heading);
    font-weight: 600;
    font-size: 15px;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s;
}
.nk-hero-search button:hover {
    background: var(--nk-primary-dark);
}

/* Popular tags row */
.nk-hero-popular {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 18px;
    align-items: center;
}
.nk-hero-popular__label {
    font-size: 14px;
    color: var(--nk-text-light);
}
.nk-hero-popular a {
    font-size: 14px;
    font-weight: 600;
    color: var(--nk-heading);
    background: var(--nk-surface);
    padding: 7px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nk-hero-popular a:hover {
    background: var(--nk-accent-soft);
    color: var(--nk-tag-text);
}

/* Hero image area */
.nk-hero-v2__image {
    position: relative;
}
.nk-hero-v2__image-blob {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 120px;
    height: 120px;
    background: var(--nk-pink);
    border-radius: 50%;
    z-index: 0;
    animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.nk-hero-v2__image-frame {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 24px 60px rgba(180, 20, 70, 0.16);
    border: 1px solid var(--nk-border);
    background: var(--nk-surface);
}
.nk-hero-v2__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nk-hero-v2__badge-float {
    position: absolute;
    left: -18px;
    bottom: 26px;
    z-index: 2;
    background: var(--nk-white);
    border: 1px solid var(--nk-border);
    border-radius: 16px;
    padding: 13px 17px;
    box-shadow: 0 14px 34px rgba(180, 20, 70, 0.14);
    display: flex;
    align-items: center;
    gap: 11px;
}
.nk-hero-v2__badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--nk-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* --- Section headers V2 --- */
.nk-section-header-v2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 16px;
}
.nk-section-header-v2 h2 {
    font-family: var(--nk-font-heading);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -.8px;
    color: var(--nk-heading);
    margin: 0;
}
.nk-section-header-v2 p {
    font-size: 16px;
    color: var(--nk-text-light);
    margin: 6px 0 0;
}
.nk-section-header-v2 .nk-viewall {
    font-family: var(--nk-font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--nk-primary);
    text-decoration: none;
    white-space: nowrap;
}

/* --- CTA Gradient Card --- */
.nk-cta-gradient-card {
    background: linear-gradient(150deg, var(--nk-primary), var(--nk-primary-dark));
    border: none;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    color: #fff;
    min-height: 250px;
    transition: transform .18s, box-shadow .18s;
}
.nk-cta-gradient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(180, 20, 70, 0.28);
}
.nk-cta-gradient-card__title {
    font-family: var(--nk-font-heading);
    font-weight: 800;
    font-size: 26px;
    line-height: 1.15;
    color: #fff;
}
.nk-cta-gradient-card__text {
    font-size: 15px;
    line-height: 1.5;
    opacity: .92;
    margin: 12px 0 20px;
}
.nk-cta-gradient-card__btn {
    align-self: flex-start;
    background: #fff;
    color: var(--nk-primary);
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s;
}
.nk-cta-gradient-card__btn:hover {
    transform: scale(1.03);
}

/* --- Newsletter V2 --- */
.nk-newsletter-v2 {
    background: var(--nk-pink);
    border-radius: 26px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.nk-newsletter-v2__title {
    font-family: var(--nk-font-heading);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -.7px;
    color: var(--nk-heading);
    margin: 0;
}
.nk-newsletter-v2__desc {
    font-size: 17px;
    color: var(--nk-text-light);
    margin: 10px 0 0;
    max-width: 460px;
}
.nk-newsletter-v2__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.nk-newsletter-v2__input {
    border: 1px solid var(--nk-border);
    background: var(--nk-white);
    border-radius: 999px;
    padding: 14px 22px;
    font-family: var(--nk-font-body);
    font-size: 16px;
    color: var(--nk-text);
    outline: none;
    min-width: 230px;
}
.nk-newsletter-v2__btn {
    background: var(--nk-primary);
    color: #fff;
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 16px;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.nk-newsletter-v2__btn:hover {
    background: var(--nk-primary-dark);
}

/* --- Footer V2 --- */
.nk-footer-v2 {
    background: var(--nk-white);
    border-top: 1px solid var(--nk-border);
    transition: background .25s, border-color .25s;
}
.nk-footer-v2__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0 30px;
}
.nk-footer-v2__brand-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--nk-text-light);
    margin: 0;
    max-width: 320px;
}
.nk-footer-v2__col-title {
    font-family: var(--nk-font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--nk-heading);
    margin-bottom: 12px;
}
.nk-footer-v2__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.nk-footer-v2__links a {
    font-size: 15px;
    color: var(--nk-text-light);
    text-decoration: none;
    transition: color .15s;
}
.nk-footer-v2__links a:hover {
    color: var(--nk-primary);
}
.nk-footer-v2__bottom {
    border-top: 1px solid var(--nk-border);
    margin-top: 34px;
    padding-top: 22px;
}
.nk-footer-v2__disclosure {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--nk-text-light);
    margin: 0 0 14px;
}
.nk-footer-v2__copyright {
    font-size: 13px;
    color: var(--nk-text-light);
}

/* --- Responsive V2 --- */
@media (max-width: 768px) {
    .nk-hero-v2 {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 24px;
    }
    .nk-hero-v2__title {
        font-size: 36px;
    }
    .nk-hero-v2__image-frame {
        height: 280px;
    }
    .nk-hero-v2__badge-float {
        left: 10px;
        bottom: 14px;
    }
    .nk-archive-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .nk-newsletter-v2 {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    .nk-footer-v2__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .nk-header__nav {
        display: none;
    }
    .nk-header__subscribe {
        display: none;
    }
    .nk-header__hamburger {
        display: flex;
    }
    .nk-section-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (min-width: 769px) {
    .nk-header__hamburger {
        display: none;
    }
    .nk-mobile-drawer {
        display: none !important;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .nk-archive-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .nk-hero-v2__title {
        font-size: 42px;
    }
}

/* --- Dark mode body/main transitions --- */
[data-theme="dark"] .nk-header {
    background: var(--nk-white);
    border-bottom-color: var(--nk-border);
}
[data-theme="dark"] .nk-header__logo-icon svg path {
    fill: #FF8FB8;
}
[data-theme="dark"] body {
    background: var(--nk-bg);
    color: var(--nk-text);
}
