/* ==========================================================================
   Naturanisa - Main Stylesheet (Combined)
   All component CSS merged into a single file for production reliability.
   ========================================================================== */


/* ==========================================================================
   CSS Custom Properties - Naturanisa Design Tokens
   ========================================================================== */

:root {
    /* Colors */
    --nn-primary: #32373c;
    --nn-primary-dark: #23272b;
    --nn-primary-light: #4a5058;
    --nn-accent: #c9a96e;
    --nn-accent-dark: #b8944f;
    --nn-white: #ffffff;
    --nn-black: #000000;
    --nn-gray-50: #fafafa;
    --nn-gray-100: #f5f5f5;
    --nn-gray-200: #eeeeee;
    --nn-gray-300: #e0e0e0;
    --nn-gray-400: #bdbdbd;
    --nn-gray-500: #9e9e9e;
    --nn-gray-600: #757575;
    --nn-gray-700: #616161;
    --nn-gray-800: #424242;
    --nn-gray-900: #212121;
    --nn-bg: #ffffff;
    --nn-bg-alt: #f8f8f8;
    --nn-bg-dark: #222222;
    --nn-text: #333333;
    --nn-text-light: #666666;
    --nn-text-muted: #999999;
    --nn-border: #e5e5e5;
    --nn-border-light: #f0f0f0;
    --nn-success: #4caf50;
    --nn-error: #f44336;
    --nn-warning: #ff9800;
    --nn-info: #2196f3;
    --nn-newsletter-bg: #ebd7ce;
    --nn-review-1: #1b2239;
    --nn-review-2: #52433c;
    --nn-review-3: #1f232f;
    --nn-hero-1: #b5a59f;
    --nn-hero-2: #698887;
    --nn-hero-3: #cfc1b5;
    --nn-badge-new: #4caf50;
    --nn-badge-sale: #f44336;
    --nn-badge-hot: #ff5722;
    --nn-badge-featured: #9c27b0;

    /* Typography */
    --nn-font-body: 'Outfit', sans-serif;
    --nn-font-heading: 'Playfair Display', serif;
    --nn-font-size-xs: 0.75rem;
    --nn-font-size-sm: 0.875rem;
    --nn-font-size-base: 1rem;
    --nn-font-size-md: 1.125rem;
    --nn-font-size-lg: 1.25rem;
    --nn-font-size-xl: 1.5rem;
    --nn-font-size-2xl: 2rem;
    --nn-font-size-3xl: 2.5rem;
    --nn-font-size-4xl: 3rem;
    --nn-font-size-5xl: 3.5rem;
    --nn-line-height: 1.6;
    --nn-letter-spacing: 0.025em;
    --nn-letter-spacing-wide: 0.05em;
    --nn-letter-spacing-wider: 0.1em;

    /* Spacing */
    --nn-space-xs: 0.25rem;
    --nn-space-sm: 0.5rem;
    --nn-space-md: 1rem;
    --nn-space-lg: 1.5rem;
    --nn-space-xl: 2rem;
    --nn-space-2xl: 3rem;
    --nn-space-3xl: 4rem;
    --nn-space-4xl: 6rem;
    --nn-space-5xl: 8rem;

    /* Layout */
    --nn-container: 1200px;
    --nn-container-wide: 1400px;
    --nn-container-narrow: 800px;
    --nn-header-height: 90px;
    --nn-sidebar-width: 280px;
    --nn-gap: 30px;

    /* Borders */
    --nn-radius-sm: 4px;
    --nn-radius-md: 8px;
    --nn-radius-lg: 12px;
    --nn-radius-xl: 20px;
    --nn-radius-full: 9999px;

    /* Shadows */
    --nn-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --nn-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --nn-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --nn-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    --nn-shadow-header: 0 4px 7px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --nn-transition-fast: 0.15s ease;
    --nn-transition: 0.3s ease;
    --nn-transition-slow: 0.5s ease;

    /* Z-index */
    --nn-z-dropdown: 100;
    --nn-z-sticky: 200;
    --nn-z-header: 1000;
    --nn-z-overlay: 5000;
    --nn-z-modal: 10000;
    --nn-z-toast: 15000;
}


/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

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

body {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-base);
    line-height: var(--nn-line-height);
    color: var(--nn-text);
    background-color: var(--nn-bg);
    letter-spacing: var(--nn-letter-spacing);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--nn-primary);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nn-font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--nn-primary);
}

h1 { font-size: var(--nn-font-size-4xl); }
h2 { font-size: var(--nn-font-size-3xl); }
h3 { font-size: var(--nn-font-size-2xl); }
h4 { font-size: var(--nn-font-size-xl); }
h5 { font-size: var(--nn-font-size-lg); }
h6 { font-size: var(--nn-font-size-md); }

p {
    margin-bottom: var(--nn-space-md);
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background-color: var(--nn-primary);
    color: var(--nn-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--nn-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--nn-gray-400);
    border-radius: var(--nn-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nn-gray-600);
}

/* Container */
.nn-container {
    width: 100%;
    max-width: var(--nn-container);
    margin: 0 auto;
    padding: 0 20px;
}

.nn-container-wide {
    max-width: var(--nn-container-wide);
    margin: 0 auto;
    padding: 0 20px;
}

.nn-container-narrow {
    max-width: var(--nn-container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section spacing */
.nn-section {
    padding: var(--nn-space-5xl) 0;
}

.nn-section-sm {
    padding: var(--nn-space-3xl) 0;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--nn-bg);
    clip: auto !important;
    display: block;
    height: auto;
    left: 5px;
    padding: 15px 23px 14px;
    top: 5px;
    width: auto;
    z-index: var(--nn-z-toast);
}


/* ==========================================================================
   Typography
   ========================================================================== */

.nn-heading {
    font-family: var(--nn-font-heading);
    font-weight: 500;
    color: var(--nn-primary);
    line-height: 1.2;
}

.nn-section-title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-3xl);
    font-weight: 500;
    color: var(--nn-primary);
    text-align: center;
    margin-bottom: var(--nn-space-sm);
    letter-spacing: var(--nn-letter-spacing);
}

.nn-section-subtitle {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-base);
    color: var(--nn-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--nn-space-3xl);
    line-height: 1.7;
}

.nn-text-uppercase {
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
}

.nn-text-center {
    text-align: center;
}

.nn-text-light {
    color: var(--nn-text-light);
}

.nn-text-muted {
    color: var(--nn-text-muted);
}

.nn-text-white {
    color: var(--nn-white);
}

.nn-font-body {
    font-family: var(--nn-font-body);
}

.nn-font-heading {
    font-family: var(--nn-font-heading);
}

/* Links */
.nn-link {
    color: var(--nn-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--nn-transition);
}

.nn-link:hover {
    opacity: 0.7;
}

/* Star ratings */
.nn-stars {
    display: inline-flex;
    gap: 2px;
    color: #ffc107;
    font-size: var(--nn-font-size-sm);
}

.nn-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.nn-stars--empty svg {
    fill: var(--nn-gray-300);
}


/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */

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

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

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

@keyframes nnSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nnSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nnScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nnMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes nnBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes nnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes nnShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes nnSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes nnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll animation classes */
.nn-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nn-animate.nn-visible {
    opacity: 1;
    transform: translateY(0);
}

.nn-animate--delay-1 { transition-delay: 0.1s; }
.nn-animate--delay-2 { transition-delay: 0.2s; }
.nn-animate--delay-3 { transition-delay: 0.3s; }
.nn-animate--delay-4 { transition-delay: 0.4s; }
.nn-animate--delay-5 { transition-delay: 0.5s; }

/* Skeleton loading */
.nn-skeleton {
    background: linear-gradient(90deg, var(--nn-gray-200) 25%, var(--nn-gray-100) 50%, var(--nn-gray-200) 75%);
    background-size: 200% 100%;
    animation: nnShimmer 1.5s infinite;
    border-radius: var(--nn-radius-sm);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.nn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    letter-spacing: var(--nn-letter-spacing-wide);
    text-transform: uppercase;
    border-radius: var(--nn-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--nn-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

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

.nn-btn--primary:hover {
    background-color: var(--nn-primary-dark);
    border-color: var(--nn-primary-dark);
    color: var(--nn-white);
    transform: translateY(-2px);
    box-shadow: var(--nn-shadow-md);
}

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

.nn-btn--outline:hover {
    background-color: var(--nn-primary);
    color: var(--nn-white);
    transform: translateY(-2px);
    box-shadow: var(--nn-shadow-md);
}

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

.nn-btn--white:hover {
    background-color: transparent;
    color: var(--nn-white);
    border-color: var(--nn-white);
    transform: translateY(-2px);
}

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

.nn-btn--outline-white:hover {
    background-color: var(--nn-white);
    color: var(--nn-primary);
    transform: translateY(-2px);
}

.nn-btn--sm {
    padding: 10px 24px;
    font-size: var(--nn-font-size-xs);
}

.nn-btn--lg {
    padding: 18px 48px;
    font-size: var(--nn-font-size-base);
}

.nn-btn--block {
    width: 100%;
}

/* Icon button (circle) */
.nn-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nn-white);
    color: var(--nn-primary);
    border: none;
    cursor: pointer;
    transition: all var(--nn-transition);
    box-shadow: var(--nn-shadow-sm);
}

.nn-btn-icon:hover {
    background: var(--nn-primary);
    color: var(--nn-white);
    transform: scale(1.1);
    box-shadow: var(--nn-shadow-md);
}

.nn-btn-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}


/* ==========================================================================
   Header
   ========================================================================== */

/* Top bar / Marquee */
.nn-topbar {
    background-color: var(--nn-primary);
    color: var(--nn-white);
    padding: 10px 0;
    font-size: var(--nn-font-size-xs);
    letter-spacing: var(--nn-letter-spacing-wide);
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}

.nn-topbar__track {
    display: flex;
    animation: nnMarquee 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.nn-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    flex-shrink: 0;
}

.nn-topbar__icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Main Header */
.nn-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--nn-z-header);
    background: transparent;
    transition: all var(--nn-transition);
}

.nn-header.has-topbar {
    top: auto;
}

.nn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--nn-header-height);
    padding: 0 50px;
    position: relative;
}

/* Sticky header */
.nn-header--sticky {
    position: fixed;
    top: 0;
    background: var(--nn-white);
    box-shadow: var(--nn-shadow-header);
    animation: nnFadeInDown 0.3s ease;
}

.nn-header--sticky .nn-header__logo-link,
.nn-header--sticky .nn-nav__link,
.nn-header--sticky .nn-header-icon {
    color: var(--nn-primary);
}

.nn-header--hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Logo */
.nn-header__logo {
    flex-shrink: 0;
    z-index: 2;
}

.nn-header__logo-link {
    display: inline-flex;
    align-items: center;
    color: var(--nn-white);
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-xl);
    font-weight: 600;
    letter-spacing: var(--nn-letter-spacing-wider);
    text-transform: uppercase;
    text-decoration: none;
}

.nn-header__logo img,
.nn-header__logo svg {
    max-height: 40px;
    width: auto;
}

.nn-header--sticky .nn-header__logo img.nn-logo-white {
    display: none;
}

.nn-header--sticky .nn-header__logo img.nn-logo-dark {
    display: block;
}

.nn-header__logo img.nn-logo-dark {
    display: none;
}

/* Navigation */
.nn-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nn-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nn-nav__item {
    position: relative;
}

.nn-nav__link {
    display: block;
    padding: 10px 18px;
    font-family: var(--nn-font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: var(--nn-letter-spacing-wide);
    text-transform: uppercase;
    color: var(--nn-white);
    transition: opacity var(--nn-transition);
    white-space: nowrap;
}

.nn-nav__link:hover {
    opacity: 0.7;
    color: inherit;
}

/* Dropdown */
.nn-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--nn-white);
    box-shadow: var(--nn-shadow-lg);
    border-radius: 0 0 var(--nn-radius-md) var(--nn-radius-md);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--nn-transition);
    z-index: var(--nn-z-dropdown);
}

.nn-nav__item:hover > .nn-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nn-nav__dropdown .nn-nav__link {
    color: var(--nn-text);
    padding: 8px 24px;
    font-size: 13px;
}

.nn-nav__dropdown .nn-nav__link:hover {
    background: var(--nn-gray-50);
    opacity: 1;
    color: var(--nn-primary);
}

/* Mega Menu */
.nn-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 100vw;
    max-width: 1200px;
    background: var(--nn-white);
    box-shadow: var(--nn-shadow-lg);
    border-radius: 0 0 var(--nn-radius-md) var(--nn-radius-md);
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--nn-transition);
    z-index: var(--nn-z-dropdown);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.nn-nav__item:hover > .nn-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nn-mega-menu__column-title {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    color: var(--nn-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--nn-border);
}

.nn-mega-menu__link {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: var(--nn-text-light);
    transition: color var(--nn-transition);
}

.nn-mega-menu__link:hover {
    color: var(--nn-primary);
}

/* Header Icons */
.nn-header__icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    z-index: 2;
}

.nn-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--nn-white);
    transition: transform var(--nn-transition), opacity var(--nn-transition);
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
}

.nn-header-icon:hover {
    transform: scale(1.15);
    color: inherit;
    opacity: 0.8;
}

.nn-header-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.nn-header-icon__badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    background: var(--nn-white);
    color: var(--nn-primary);
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.nn-header--sticky .nn-header-icon__badge {
    background: var(--nn-primary);
    color: var(--nn-white);
}

/* Hamburger */
.nn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    cursor: pointer;
    z-index: 2;
}

.nn-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nn-white);
    transition: all var(--nn-transition);
}

.nn-header--sticky .nn-hamburger span {
    background: var(--nn-primary);
}

.nn-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nn-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nn-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Search overlay */
.nn-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: var(--nn-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--nn-transition);
}

.nn-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.nn-search-overlay__form {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.nn-search-overlay__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--nn-white);
    color: var(--nn-white);
    font-size: var(--nn-font-size-2xl);
    font-family: var(--nn-font-heading);
    padding: 20px 0;
    outline: none;
}

.nn-search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nn-search-overlay__close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--nn-white);
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    line-height: 1;
}

/* Mini Cart */
.nn-mini-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--nn-white);
    box-shadow: var(--nn-shadow-xl);
    z-index: var(--nn-z-modal);
    transition: right var(--nn-transition);
    display: flex;
    flex-direction: column;
}

.nn-mini-cart.is-active {
    right: 0;
}

.nn-mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--nn-border);
}

.nn-mini-cart__title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-lg);
    font-weight: 500;
}

.nn-mini-cart__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: var(--nn-text-light);
    background: none;
    border: none;
    transition: color var(--nn-transition);
}

.nn-mini-cart__close:hover {
    color: var(--nn-primary);
}

.nn-mini-cart__items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.nn-mini-cart__item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--nn-border-light);
}

.nn-mini-cart__item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--nn-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.nn-mini-cart__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nn-mini-cart__item-info {
    flex: 1;
}

.nn-mini-cart__item-name {
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    margin-bottom: 4px;
}

.nn-mini-cart__item-price {
    font-size: var(--nn-font-size-sm);
    color: var(--nn-text-light);
}

.nn-mini-cart__item-remove {
    color: var(--nn-text-muted);
    cursor: pointer;
    font-size: 18px;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.nn-mini-cart__item-remove:hover {
    color: var(--nn-error);
}

.nn-mini-cart__footer {
    padding: 24px;
    border-top: 1px solid var(--nn-border);
}

.nn-mini-cart__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: var(--nn-font-size-md);
    font-weight: 600;
}

.nn-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cart overlay */
.nn-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--nn-z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--nn-transition);
}

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


/* ==========================================================================
   Hero Slider
   ========================================================================== */

.nn-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.nn-hero .swiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.nn-hero .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nn-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.nn-hero .swiper-slide-active .nn-hero__bg {
    transform: scale(1.05);
}

.nn-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.nn-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 690px;
    padding: 0 20px;
    color: var(--nn-white);
}

.nn-hero__subtitle {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 400;
    letter-spacing: var(--nn-letter-spacing-wider);
    text-transform: uppercase;
    margin-bottom: var(--nn-space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.nn-hero .swiper-slide-active .nn-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.nn-hero__title {
    font-family: var(--nn-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--nn-white);
    line-height: 1.1;
    margin-bottom: var(--nn-space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.nn-hero .swiper-slide-active .nn-hero__title {
    opacity: 1;
    transform: translateY(0);
}

.nn-hero__desc {
    font-size: var(--nn-font-size-base);
    line-height: 1.7;
    margin-bottom: var(--nn-space-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.nn-hero .swiper-slide-active .nn-hero__desc {
    opacity: 1;
    transform: translateY(0);
}

.nn-hero__cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.9s;
}

.nn-hero .swiper-slide-active .nn-hero__cta {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper navigation */
.nn-hero .swiper-button-next,
.nn-hero .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all var(--nn-transition);
}

.nn-hero .swiper-button-next:hover,
.nn-hero .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nn-hero .swiper-button-next::after,
.nn-hero .swiper-button-prev::after {
    font-size: 16px;
    color: var(--nn-white);
    font-weight: 600;
}

.nn-hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all var(--nn-transition);
}

.nn-hero .swiper-pagination-bullet-active {
    background: var(--nn-white);
    width: 30px;
    border-radius: var(--nn-radius-full);
}

/* Scroll indicator */
.nn-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--nn-white);
    text-align: center;
    animation: nnBounce 1.5s ease infinite;
}

.nn-hero__scroll svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}


/* ==========================================================================
   Marquee / Running Line
   ========================================================================== */

.nn-marquee {
    background: var(--nn-gray-50);
    border-top: 1px solid var(--nn-border-light);
    border-bottom: 1px solid var(--nn-border-light);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.nn-marquee__track {
    display: flex;
    animation: nnMarquee 25s linear infinite;
    will-change: transform;
}

.nn-marquee__track:hover {
    animation-play-state: paused;
}

.nn-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    flex-shrink: 0;
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--nn-text);
}

.nn-marquee__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.nn-marquee__separator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nn-primary);
    opacity: 0.3;
    flex-shrink: 0;
}


/* ==========================================================================
   Product Card
   ========================================================================== */

.nn-product-card {
    position: relative;
    background: var(--nn-white);
    border-radius: var(--nn-radius-md);
    overflow: hidden;
    transition: all var(--nn-transition);
}

.nn-product-card:hover {
    box-shadow: var(--nn-shadow-lg);
}

/* Image container */
.nn-product-card__image {
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    background: var(--nn-gray-100);
}

.nn-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nn-transition-slow);
}

.nn-product-card:hover .nn-product-card__image img {
    transform: scale(1.05);
}

/* Second image on hover */
.nn-product-card__image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--nn-transition-slow);
}

.nn-product-card:hover .nn-product-card__image-hover {
    opacity: 1;
}

/* Badges */
.nn-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.nn-badge {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--nn-white);
    border-radius: var(--nn-radius-sm);
    line-height: 1.2;
}

.nn-badge--sale {
    background: var(--nn-badge-sale);
}

.nn-badge--new {
    background: var(--nn-badge-new);
}

.nn-badge--hot {
    background: var(--nn-badge-hot);
}

.nn-badge--featured {
    background: var(--nn-badge-featured);
}

/* Hover overlay with actions */
.nn-product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    transform: translateY(100%);
    transition: transform var(--nn-transition);
    z-index: 3;
}

.nn-product-card:hover .nn-product-card__actions {
    transform: translateY(0);
}

.nn-product-card__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--nn-white);
    color: var(--nn-primary);
    border: none;
    cursor: pointer;
    transition: all var(--nn-transition);
    box-shadow: var(--nn-shadow-sm);
}

.nn-product-card__action-btn:hover {
    background: var(--nn-primary);
    color: var(--nn-white);
    transform: scale(1.1);
}

.nn-product-card__action-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.nn-product-card__action-btn.is-active {
    background: var(--nn-error);
    color: var(--nn-white);
}

/* Content */
.nn-product-card__content {
    padding: 16px;
    text-align: center;
}

.nn-product-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    color: var(--nn-text-muted);
    margin-bottom: 6px;
}

.nn-product-card__title {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    color: var(--nn-text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.nn-product-card__title a {
    color: inherit;
    transition: color var(--nn-transition);
}

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

.nn-product-card__desc {
    font-size: var(--nn-font-size-xs);
    color: var(--nn-text-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating */
.nn-product-card__rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.nn-product-card__rating svg {
    width: 13px;
    height: 13px;
}

.nn-product-card__rating .star-filled {
    fill: #ffc107;
    stroke: #ffc107;
}

.nn-product-card__rating .star-empty {
    fill: none;
    stroke: var(--nn-gray-300);
}

/* Price */
.nn-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--nn-font-size-base);
}

.nn-product-card__price .price-current {
    font-weight: 600;
    color: var(--nn-primary);
}

.nn-product-card__price .price-old {
    font-size: var(--nn-font-size-sm);
    color: var(--nn-text-muted);
    text-decoration: line-through;
}

/* Quick view button */
.nn-product-card__quick-add {
    display: none;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 10px;
    font-size: var(--nn-font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    background: var(--nn-primary);
    color: var(--nn-white);
    border: none;
    border-radius: var(--nn-radius-full);
    cursor: pointer;
    transition: all var(--nn-transition);
}

.nn-product-card:hover .nn-product-card__quick-add {
    display: block;
}

.nn-product-card__quick-add:hover {
    background: var(--nn-primary-dark);
}

/* Product Grid Layout */
.nn-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--nn-gap);
}

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

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

/* Swatches on card */
.nn-product-card__swatches {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.nn-product-card__swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--nn-white);
    box-shadow: 0 0 0 1px var(--nn-gray-300);
    cursor: pointer;
    transition: box-shadow var(--nn-transition);
}

.nn-product-card__swatch:hover,
.nn-product-card__swatch.is-active {
    box-shadow: 0 0 0 2px var(--nn-primary);
}


/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* --- Product Tabs --- */
.nn-product-tabs {
    padding: var(--nn-space-5xl) 0;
}

.nn-product-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: var(--nn-space-3xl);
}

.nn-product-tabs__btn {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-base);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    color: var(--nn-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--nn-transition);
}

.nn-product-tabs__btn:hover {
    color: var(--nn-text);
}

.nn-product-tabs__btn.is-active {
    color: var(--nn-primary);
    font-weight: 600;
    border-bottom-color: var(--nn-primary);
}

.nn-product-tabs__panel {
    display: none;
}

.nn-product-tabs__panel.is-active {
    display: block;
    animation: nnFadeIn 0.4s ease;
}

/* --- Category Showcase --- */
.nn-category-showcase {
    padding: var(--nn-space-4xl) 0;
}

.nn-category-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--nn-gap);
}

.nn-category-showcase__item {
    position: relative;
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    padding: 50px;
}

.nn-category-showcase__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nn-transition-slow);
}

.nn-category-showcase__item:hover img {
    transform: scale(1.05);
}

.nn-category-showcase__content {
    position: relative;
    z-index: 2;
}

.nn-category-showcase__label {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wider);
    color: var(--nn-white);
    margin-bottom: 8px;
}

.nn-category-showcase__title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-2xl);
    color: var(--nn-white);
    margin-bottom: var(--nn-space-lg);
    line-height: 1.2;
}

/* --- About Section --- */
.nn-about {
    padding: var(--nn-space-5xl) 0;
}

.nn-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nn-about__content {
    max-width: 500px;
}

.nn-about__title {
    font-size: var(--nn-font-size-3xl);
    margin-bottom: var(--nn-space-lg);
}

.nn-about__text {
    color: var(--nn-text-light);
    line-height: 1.8;
    margin-bottom: var(--nn-space-xl);
}

.nn-about__image {
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
}

.nn-about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --- Reviews / Testimonials --- */
.nn-reviews {
    padding: var(--nn-space-5xl) 0;
    background: var(--nn-gray-50);
}

.nn-review-card {
    position: relative;
    padding: 50px;
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    color: var(--nn-white);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nn-review-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--nn-transition-slow);
}

.nn-review-card:hover .nn-review-card__bg {
    transform: scale(1.05);
}

.nn-review-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity var(--nn-transition-slow);
}

.nn-review-card:hover .nn-review-card__overlay {
    opacity: 0.8;
}

.nn-review-card:nth-child(1) .nn-review-card__overlay { background: var(--nn-review-1); }
.nn-review-card:nth-child(2) .nn-review-card__overlay { background: var(--nn-review-2); }
.nn-review-card:nth-child(3) .nn-review-card__overlay { background: var(--nn-review-3); }

.nn-review-card__content {
    position: relative;
    z-index: 2;
}

.nn-review-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.nn-review-card__stars svg {
    width: 14px;
    height: 14px;
    fill: #ffc107;
}

.nn-review-card__text {
    font-size: var(--nn-font-size-base);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.nn-review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nn-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nn-review-card__name {
    font-weight: 600;
    font-size: var(--nn-font-size-sm);
    letter-spacing: var(--nn-letter-spacing-wide);
}

/* --- Benefits Grid --- */
.nn-benefits {
    padding: var(--nn-space-5xl) 0;
}

.nn-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nn-gap);
}

.nn-benefit-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--nn-border-light);
    border-radius: var(--nn-radius-lg);
    transition: all var(--nn-transition);
}

.nn-benefit-card:hover {
    border-color: var(--nn-primary);
    box-shadow: var(--nn-shadow-md);
    transform: translateY(-5px);
}

.nn-benefit-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--nn-space-lg);
    color: var(--nn-primary);
}

.nn-benefit-card__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.nn-benefit-card__title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-lg);
    margin-bottom: 10px;
}

.nn-benefit-card__text {
    font-size: var(--nn-font-size-sm);
    color: var(--nn-text-light);
    line-height: 1.7;
}

/* --- Category Grid --- */
.nn-cat-grid {
    padding: var(--nn-space-5xl) 0;
}

.nn-cat-grid__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nn-gap);
}

.nn-cat-grid__item {
    position: relative;
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.nn-cat-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nn-transition-slow);
}

.nn-cat-grid__item:hover img {
    transform: scale(1.08);
}

.nn-cat-grid__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: var(--nn-white);
    text-align: center;
}

.nn-cat-grid__name {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-xl);
    font-weight: 500;
    letter-spacing: var(--nn-letter-spacing-wide);
    text-transform: uppercase;
}

.nn-cat-grid__count {
    font-size: var(--nn-font-size-sm);
    opacity: 0.7;
    margin-top: 4px;
}

/* --- Newsletter --- */
.nn-newsletter {
    padding: var(--nn-space-5xl) 0;
    background-color: var(--nn-newsletter-bg);
    text-align: center;
}

.nn-newsletter__title {
    font-size: var(--nn-font-size-3xl);
    margin-bottom: 10px;
}

.nn-newsletter__text {
    color: var(--nn-text-light);
    margin-bottom: var(--nn-space-xl);
}

.nn-newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.nn-newsletter__input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--nn-primary);
    border-right: none;
    border-radius: var(--nn-radius-full) 0 0 var(--nn-radius-full);
    font-size: var(--nn-font-size-sm);
    outline: none;
    background: var(--nn-white);
    transition: border-color var(--nn-transition);
}

.nn-newsletter__input:focus {
    border-color: var(--nn-primary-dark);
}

.nn-newsletter__input::placeholder {
    color: var(--nn-text-muted);
}

.nn-newsletter__btn {
    padding: 16px 32px;
    background: var(--nn-primary);
    color: var(--nn-white);
    border: 2px solid var(--nn-primary);
    border-radius: 0 var(--nn-radius-full) var(--nn-radius-full) 0;
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    cursor: pointer;
    transition: all var(--nn-transition);
    white-space: nowrap;
}

.nn-newsletter__btn:hover {
    background: var(--nn-primary-dark);
    border-color: var(--nn-primary-dark);
}

/* --- Blog Cards --- */
.nn-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--nn-gap);
}

.nn-blog-card {
    border-radius: var(--nn-radius-lg);
    overflow: hidden;
    background: var(--nn-white);
    transition: all var(--nn-transition);
}

.nn-blog-card:hover {
    box-shadow: var(--nn-shadow-lg);
    transform: translateY(-5px);
}

.nn-blog-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.nn-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nn-transition-slow);
}

.nn-blog-card:hover .nn-blog-card__image img {
    transform: scale(1.05);
}

.nn-blog-card__content {
    padding: 24px;
}

.nn-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--nn-font-size-xs);
    color: var(--nn-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
}

.nn-blog-card__title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-lg);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

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

.nn-blog-card__excerpt {
    font-size: var(--nn-font-size-sm);
    color: var(--nn-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nn-blog-card__link {
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--nn-letter-spacing-wide);
    color: var(--nn-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nn-blog-card__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--nn-transition);
}

.nn-blog-card__link:hover svg {
    transform: translateX(4px);
}

/* --- Brands Carousel --- */
.nn-brands {
    padding: var(--nn-space-4xl) 0;
    border-top: 1px solid var(--nn-border-light);
    border-bottom: 1px solid var(--nn-border-light);
}

.nn-brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 80px;
    opacity: 0.4;
    transition: opacity var(--nn-transition);
    filter: grayscale(100%);
}

.nn-brands__item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.nn-brands__item img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

/* --- Instagram Feed --- */
.nn-instagram {
    padding: var(--nn-space-4xl) 0 0;
}

.nn-instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.nn-instagram__item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

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

.nn-instagram__item:hover img {
    transform: scale(1.1);
}

.nn-instagram__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background var(--nn-transition);
}

.nn-instagram__item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* --- Branded products carousel section --- */
.nn-branded-products {
    padding: var(--nn-space-5xl) 0;
    background: var(--nn-gray-50);
}

.nn-branded-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--nn-space-3xl);
}

.nn-branded-products__text {
    max-width: 500px;
}

.nn-branded-products__nav {
    display: flex;
    gap: 10px;
}

.nn-branded-products__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--nn-border);
    background: var(--nn-white);
    color: var(--nn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--nn-transition);
}

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

.nn-branded-products__nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.nn-footer {
    background-color: var(--nn-bg-dark);
    color: var(--nn-white);
    padding-top: var(--nn-space-4xl);
}

.nn-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--nn-transition);
}

.nn-footer a:hover {
    color: var(--nn-white);
}

.nn-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: var(--nn-container-wide);
    margin: 0 auto;
    padding: 0 30px var(--nn-space-4xl);
}

.nn-footer__col-title {
    font-family: var(--nn-font-heading);
    font-size: var(--nn-font-size-md);
    font-weight: 500;
    color: var(--nn-white);
    margin-bottom: var(--nn-space-lg);
    letter-spacing: var(--nn-letter-spacing-wide);
}

.nn-footer__about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--nn-font-size-sm);
    line-height: 1.8;
    margin-bottom: var(--nn-space-md);
}

.nn-footer__about .nn-link {
    color: var(--nn-white);
    font-weight: 500;
}

/* Contact info */
.nn-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--nn-space-md);
    font-size: var(--nn-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.nn-footer__contact-item svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.nn-footer__phone {
    font-size: var(--nn-font-size-md);
    font-weight: 600;
    color: var(--nn-white);
}

/* Quick links */
.nn-footer__links li {
    margin-bottom: 10px;
}

.nn-footer__links a {
    font-size: var(--nn-font-size-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nn-footer__links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--nn-white);
    transition: width var(--nn-transition);
}

.nn-footer__links a:hover::before {
    width: 12px;
}

/* Instagram widget */
.nn-footer__instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.nn-footer__instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--nn-radius-sm);
}

.nn-footer__instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nn-transition);
}

.nn-footer__instagram-item:hover img {
    transform: scale(1.1);
}

/* Bottom bar */
.nn-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 30px;
}

.nn-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--nn-container-wide);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 16px;
}

.nn-footer__copyright {
    font-size: var(--nn-font-size-sm);
    color: rgba(255, 255, 255, 0.5);
}

.nn-footer__legal {
    display: flex;
    gap: 24px;
}

.nn-footer__legal a {
    font-size: var(--nn-font-size-sm);
    color: rgba(255, 255, 255, 0.5);
}

.nn-footer__legal a:hover {
    color: var(--nn-white);
}

.nn-footer__social {
    display: flex;
    gap: 12px;
}

.nn-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--nn-transition);
}

.nn-footer__social a:hover {
    background: var(--nn-white);
    color: var(--nn-primary);
    border-color: var(--nn-white);
}

.nn-footer__social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
    :root {
        --nn-header-height: 70px;
    }

    .nn-header__inner {
        padding: 0 20px;
    }

    .nn-nav {
        display: none;
    }

    .nn-hamburger {
        display: flex;
    }

    .nn-hero .swiper {
        height: 70vh;
        min-height: 450px;
    }

    .nn-hero__title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .nn-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .nn-category-showcase__grid {
        gap: 20px;
    }

    .nn-category-showcase__item {
        padding: 30px;
    }

    .nn-about__grid {
        gap: 40px;
    }

    .nn-review-card {
        padding: 30px;
        min-height: 320px;
    }

    .nn-benefits__grid {
        gap: 20px;
    }

    .nn-benefit-card {
        padding: 30px 20px;
    }

    .nn-cat-grid__wrap {
        gap: 20px;
    }

    .nn-blog-grid {
        gap: 20px;
    }

    .nn-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px var(--nn-space-3xl);
    }

    .nn-instagram__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nn-mega-menu {
        display: none;
    }

    .nn-mini-cart {
        width: 340px;
    }

    .nn-section {
        padding: var(--nn-space-3xl) 0;
    }

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

    .nn-branded-products__header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
    :root {
        --nn-header-height: 60px;
        --nn-gap: 16px;
    }

    h1 { font-size: var(--nn-font-size-2xl); }
    h2 { font-size: var(--nn-font-size-xl); }
    h3 { font-size: var(--nn-font-size-lg); }

    .nn-container,
    .nn-container-wide {
        padding: 0 16px;
    }

    .nn-hero .swiper {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }

    .nn-hero__content {
        padding: 0 16px;
    }

    .nn-hero__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .nn-hero .swiper-button-next,
    .nn-hero .swiper-button-prev {
        display: none;
    }

    .nn-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nn-product-card__actions {
        transform: translateY(0);
        background: none;
        position: static;
        padding: 0 16px 8px;
        gap: 6px;
    }

    .nn-product-card__action-btn {
        width: 36px;
        height: 36px;
    }

    .nn-product-card__content {
        padding: 12px;
    }

    .nn-product-card__title {
        font-size: var(--nn-font-size-xs);
    }

    .nn-product-tabs__nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .nn-product-tabs__btn {
        font-size: var(--nn-font-size-sm);
    }

    .nn-category-showcase__grid {
        grid-template-columns: 1fr;
    }

    .nn-category-showcase__item {
        aspect-ratio: 16 / 10;
        padding: 24px;
    }

    .nn-category-showcase__title {
        font-size: var(--nn-font-size-xl);
    }

    .nn-about__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nn-about__image img {
        height: 300px;
    }

    .nn-review-card {
        padding: 24px;
        min-height: 280px;
    }

    .nn-reviews .swiper {
        padding-bottom: 40px;
    }

    .nn-benefits__grid {
        grid-template-columns: 1fr;
    }

    .nn-cat-grid__wrap {
        grid-template-columns: 1fr;
    }

    .nn-cat-grid__item {
        aspect-ratio: 4 / 3;
    }

    .nn-newsletter__form {
        flex-direction: column;
        gap: 12px;
    }

    .nn-newsletter__input {
        border-right: 2px solid var(--nn-primary);
        border-radius: var(--nn-radius-full);
    }

    .nn-newsletter__btn {
        border-radius: var(--nn-radius-full);
    }

    .nn-blog-grid {
        grid-template-columns: 1fr;
    }

    .nn-brands__item {
        height: 60px;
        padding: 10px;
    }

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

    .nn-footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nn-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .nn-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nn-footer__social {
        justify-content: center;
    }

    .nn-section {
        padding: var(--nn-space-2xl) 0;
    }

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

    .nn-section-subtitle {
        font-size: var(--nn-font-size-sm);
    }

    .nn-search-overlay__input {
        font-size: var(--nn-font-size-xl);
    }

    .nn-mini-cart {
        width: 100%;
    }
}

/* Small mobile: <= 480px */
@media (max-width: 480px) {
    .nn-hero .swiper {
        height: 50vh;
        min-height: 350px;
    }

    .nn-hero__subtitle {
        font-size: 11px;
    }

    .nn-hero__desc {
        display: none;
    }

    .nn-product-card__desc {
        display: none;
    }

    .nn-product-card__rating {
        display: none;
    }

    .nn-header__icons {
        gap: 2px;
    }

    .nn-header-icon {
        width: 36px;
        height: 36px;
    }

    .nn-header-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile menu */
.nn-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: var(--nn-white);
    z-index: var(--nn-z-modal);
    transition: left var(--nn-transition);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nn-mobile-menu.is-active {
    left: 0;
}

.nn-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--nn-border);
}

.nn-mobile-menu__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--nn-text);
}

.nn-mobile-menu__nav {
    flex: 1;
    padding: 20px 0;
}

.nn-mobile-menu__item {
    border-bottom: 1px solid var(--nn-border-light);
}

.nn-mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: var(--nn-font-size-base);
    font-weight: 400;
    color: var(--nn-text);
    transition: background var(--nn-transition);
}

.nn-mobile-menu__link:hover {
    background: var(--nn-gray-50);
    color: var(--nn-primary);
}

.nn-mobile-menu__link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--nn-transition);
}

.nn-mobile-menu__sub {
    display: none;
    padding-left: 20px;
    background: var(--nn-gray-50);
}

.nn-mobile-menu__sub.is-open {
    display: block;
}

.nn-mobile-menu__sub .nn-mobile-menu__link {
    font-size: var(--nn-font-size-sm);
    padding: 10px 24px;
}

.nn-mobile-menu__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--nn-border);
}

.nn-mobile-menu__footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nn-mobile-menu__footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--nn-font-size-sm);
    color: var(--nn-text-light);
}

.nn-mobile-menu__footer-links svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* Toast notification */
.nn-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--nn-primary);
    color: var(--nn-white);
    padding: 16px 24px;
    border-radius: var(--nn-radius-md);
    font-size: var(--nn-font-size-sm);
    box-shadow: var(--nn-shadow-xl);
    z-index: var(--nn-z-toast);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--nn-transition);
    max-width: 340px;
}

.nn-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.nn-toast--success { background: var(--nn-success); }
.nn-toast--error { background: var(--nn-error); }
.nn-toast--warning { background: var(--nn-warning); }

/* Scroll to top */
.nn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nn-primary);
    color: var(--nn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--nn-transition);
    z-index: var(--nn-z-sticky);
    box-shadow: var(--nn-shadow-md);
}

.nn-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nn-scroll-top:hover {
    background: var(--nn-primary-dark);
    transform: translateY(-3px);
}

.nn-scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Quick view modal */
.nn-quick-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--nn-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--nn-transition);
}

.nn-quick-view.is-active {
    opacity: 1;
    visibility: visible;
}

.nn-quick-view__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.nn-quick-view__content {
    position: relative;
    background: var(--nn-white);
    border-radius: var(--nn-radius-lg);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.9);
    transition: transform var(--nn-transition);
}

.nn-quick-view.is-active .nn-quick-view__content {
    transform: scale(1);
}

.nn-quick-view__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nn-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 2;
    box-shadow: var(--nn-shadow-sm);
    font-size: 18px;
}

.nn-quick-view__image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--nn-radius-lg) 0 0 var(--nn-radius-lg);
}

.nn-quick-view__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nn-quick-view__info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .nn-quick-view__content {
        grid-template-columns: 1fr;
    }

    .nn-quick-view__image {
        border-radius: var(--nn-radius-lg) var(--nn-radius-lg) 0 0;
        max-height: 300px;
    }

    .nn-quick-view__info {
        padding: 24px;
    }

    .nn-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .nn-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Additional Fixes for WooCommerce Default Markup
   ========================================================================== */

/* Ensure WC default product loop uses our grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--nn-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
}

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

@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* SVG icon sizing defaults */
svg {
    flex-shrink: 0;
}

.nn-header-icon svg,
.nn-topbar__icon,
.nn-marquee__icon {
    display: block;
}

/* Fix header logo image size */
.custom-logo {
    max-height: 45px;
    width: auto;
}

/* WooCommerce default gallery fix */
.woocommerce div.product div.images {
    width: 100% !important;
    float: none !important;
}

.woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
}

/* Ensure product cards in related/upsells also have proper styling */
.woocommerce .related ul.products li.product,
.woocommerce .upsells ul.products li.product {
    text-align: center;
}

.woocommerce .related ul.products li.product a img,
.woocommerce .upsells ul.products li.product a img {
    border-radius: var(--nn-radius-md);
    margin-bottom: 12px;
}

.woocommerce .related ul.products li.product .woocommerce-loop-product__title,
.woocommerce .upsells ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--nn-font-body);
    font-size: var(--nn-font-size-sm);
    font-weight: 500;
    color: var(--nn-text);
    padding: 0;
}

.woocommerce .related ul.products li.product .price,
.woocommerce .upsells ul.products li.product .price {
    color: var(--nn-primary);
    font-weight: 600;
}

/* WP Block styles override */
.wp-block-woocommerce-product-image img {
    border-radius: var(--nn-radius-md);
}

/* Ensure body gets our font even with WP block styles */
body.woocommerce-page,
body.single-product {
    font-family: var(--nn-font-body);
}
