/**
 * NorwitHomepage - Frontend Styles
 */

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --nhp-primary: #ffc107;
    --nhp-secondary: #1d1d1a;
    --nhp-text: #333;
    --nhp-text-light: #666;
    --nhp-border: #e5e5e5;
    --nhp-bg-light: #f5f5f5;
    --nhp-success: #28a745;
    --nhp-danger: #dc3545;
    --nhp-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --nhp-radius: 8px;
}

/* ========================================
   BASE STYLES
   ======================================== */
body#index,
body.page-index {
    background-color: #f5f5f5;
}

/* Screen reader only — visually hidden but accessible */
.nhp-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;
}

.nhp-homepage {
    width: 100%;
    overflow-x: hidden;
}

/* Net price (netto) — global style for all sections */
.nhp-price-netto {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin-top: 2px;
}

.nhp-section {
    margin-bottom: 0;
    contain: layout style paint;
}

.nhp-section:last-child {
    margin-bottom: 0;
}

/* Removed content-visibility: auto — caused CLS 0.5+ when sections scrolled into view
   (contain-intrinsic-size: 400px mismatched actual section heights) */

.nhp-section-hero_slider {
    margin: 0;
    padding: 15px 0 0;
}

/* Videos section - full width, no wrapper styles */
.nhp-section-videos {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Remove margin from section before videos */
.nhp-section:has(+ .nhp-section-videos) {
    margin-bottom: 0 !important;
}

/* Hide theme's built-in videos section (replaced by norwithomepage) */
.our-videos {
    display: none !important;
}

/* Reset inherited styles on videos outer wrapper only */
.nhp-section-videos .nhp-videos {
    border: none !important;
}

.nhp-section-header {
    margin-bottom: 25px;
}

.nhp-section-subtitle {
    color: var(--nhp-text-light);
    font-size: 14px;
    margin-top: 5px;
}

.nhp-section-link {
    display: inline-flex;
    align-items: center;
    color: var(--nhp-primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nhp-section-link:hover {
    text-decoration: underline;
}

/* Section header with link - flexbox layout */
.nhp-section-header--with-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nhp-section-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.nhp-section-link-text {
    font-size: 15px;
    font-weight: 500;
}

.nhp-section-link-arrow {
    display: flex;
    align-items: center;
    color: #f58220;
}

.nhp-section-link-arrow i {
    font-size: 20px;
}

/* Override section-specific title styles for consistency */
.nhp-videos .nhp-section-title,
.nhp-blogs .nhp-section-title,
.nhp-brand-zone .nhp-section-title,
.nhp-category-tiles .nhp-section-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

/* ========================================
   HERO SLIDER (Norwit style)
   ======================================== */
.nhp-hero-slider {
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
}

.nhp-hero-swiper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1920/450;
}

.nhp-hero-slide {
    position: relative;
    aspect-ratio: 1920/450;
    border-radius: 12px;
    overflow: hidden;
}


.nhp-hero-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nhp-hero-link[href="#"],
.nhp-hero-link[href=""],
.nhp-hero-link:not([href]) {
    cursor: default;
}

.nhp-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}

.nhp-hero-content {
    position: absolute;
    top: 50%;
    /* Center content within 1600px area */
    left: calc(50% - 700px + 30px);
    transform: translateY(-50%);
    max-width: 500px;
    padding: 0;
    background: transparent;
    z-index: 2;
    color: #1a1a1a;
}

/* On screens smaller than 1600px, use percentage */
@media (max-width: 1440px) {
    .nhp-hero-content {
        left: 30px;
        max-width: 45%;
    }
}

.nhp-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: inherit;
    margin: 0 0 8px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.5);
}

.nhp-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: inherit;
    margin: 0 0 20px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.nhp-hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: inherit;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nhp-hero-link:hover .nhp-hero-btn {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.nhp-hero-pagination {
    bottom: 15px !important;
    z-index: 5;
}

.nhp-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    padding: 8px;
    background-clip: content-box;
    box-sizing: content-box;
    background: #fff;
    opacity: 0.6;
    margin: 0 2px !important;
    cursor: pointer;
}

.nhp-hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.nhp-hero-prev,
.nhp-hero-next {
    color: #1a1a1a !important;
    background: rgba(255,255,255,0.9);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 5;
}

.nhp-hero-prev {
    left: 20px !important;
}

.nhp-hero-next {
    right: 20px !important;
}

.nhp-hero-prev:hover,
.nhp-hero-next:hover {
    background: #ffc107;
    color: #1a1a1a !important;
}

.nhp-hero-prev::after,
.nhp-hero-next::after {
    font-size: 16px !important;
    font-weight: 700;
}

/* Hero Tabs - Norwit style (desktop only) - overlay on banner bottom */
.nhp-hero-tabs {
    display: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0 10px;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 80%;
    width: fit-content;
}

@media (min-width: 881px) {
    .nhp-hero-tabs {
        display: flex;
    }

    .nhp-hero-pagination {
        display: none !important;
    }
}

@media (max-width: 880px) {
    .nhp-hero-tabs {
        display: none !important;
    }

    .nhp-hero-pagination {
        display: flex !important;
    }
}

.nhp-hero-tabs-nav {
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 50%;
}

.nhp-hero-tabs-nav:hover {
    color: #e6ad00;
    background: rgba(255, 193, 7, 0.15);
}

.nhp-hero-tabs-nav i {
    font-size: 14px;
}

.nhp-hero-tabs-track {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
}

.nhp-hero-tabs-track::-webkit-scrollbar {
    display: none;
}

.nhp-hero-tab {
    flex: 0 0 auto;
    padding: 6px 18px 5px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nhp-hero-tab:hover {
    color: #1a1a1a;
    background: #f9f9f9;
}

.nhp-hero-tab.active {
    color: #1a1a1a;
    border-bottom-color: #ffc107;
    font-weight: 600;
}

/* Hero - Tablet */
@media (max-width: 1024px) {
    .nhp-hero-slide {
        aspect-ratio: 1024/350;
    }

    .nhp-hero-content {
        max-width: 55%;
        left: 4%;
    }

    .nhp-hero-title {
        font-size: 28px;
    }

    .nhp-hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .nhp-hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Hero - Mobile */
@media (max-width: 768px) {
    .nhp-hero-slider {
        background: transparent;
        margin-left: 0;
        margin-right: 0;
    }

    .nhp-hero-slide {
        min-height: auto;
        aspect-ratio: 750/315;
    }

    .nhp-hero-image {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        min-width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .nhp-hero-content {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        transform: none;
        max-width: 70%;
        background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
        padding: 15px 40px 15px 15px;
        border-radius: 0;
        color: #fff;
    }

    .nhp-hero-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 2px;
        text-shadow: none;
        color: inherit;
        line-height: 1.2;
    }

    .nhp-hero-subtitle {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 0;
        color: inherit;
        opacity: 0.9;
        line-height: 1.3;
    }

    .nhp-hero-btn {
        display: none !important;
    }

    .nhp-hero-prev,
    .nhp-hero-next {
        display: none !important;
    }

    .nhp-hero-pagination {
        display: none !important;
    }

    /* Rounded corners + shadow for mobile banner */
    .nhp-hero-swiper {
        border-radius: 12px;
        overflow: hidden;
        margin: 0;
        aspect-ratio: 750/315;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
}

/* Hero - Small mobile */
@media (max-width: 480px) {
    .nhp-hero-slide {
        aspect-ratio: 750/315;
    }

    .nhp-hero-content {
        bottom: 0;
        left: 0;
        right: auto;
        max-width: 80%;
        padding: 12px 30px 12px 12px;
    }

    .nhp-hero-title {
        font-size: 14px;
    }

    .nhp-hero-subtitle {
        font-size: 11px;
        margin-bottom: 0;
    }
}

/* ========================================
   CATEGORY TILES
   ======================================== */
.nhp-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.nhp-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 3px;
    background: #f5f5f5;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nhp-tile:hover {
    transform: translateY(-3px);
}

.nhp-tile-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.nhp-tile-icon i {
    font-size: 40px;
    color: var(--nhp-secondary);
}

.nhp-tile-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nhp-tile-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--nhp-text);
    text-align: center;
}

/* ========================================
   PRODUCT CAROUSEL
   ======================================== */
/* ========================================
   CAROUSEL EDGE FADE — soft mask on left/right edges
   Applied via mask-image on scroll tracks
   ======================================== */
/* Default: fade both edges */
.nhp-carousel-fade-track {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black calc(100% - 10px), transparent);
    mask-image: linear-gradient(to right, transparent, black 10px, black calc(100% - 10px), transparent);
}
/* At start: no left fade */
.nhp-carousel-fade-track.nhp-scroll-start {
    -webkit-mask-image: linear-gradient(to right, black, black calc(100% - 10px), transparent);
    mask-image: linear-gradient(to right, black, black calc(100% - 10px), transparent);
}
/* At end: no right fade */
.nhp-carousel-fade-track.nhp-scroll-end {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black);
    mask-image: linear-gradient(to right, transparent, black 10px, black);
}
/* At both: no fade at all (all content visible) */
.nhp-carousel-fade-track.nhp-scroll-start.nhp-scroll-end {
    -webkit-mask-image: none;
    mask-image: none;
}

/* Hide nav arrows at boundaries */
.nhp-nav-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.nhp-product-carousel {
    position: relative;
}

.nhp-products-swiper {
    padding: 10px 0;
}

.nhp-product-slide {
    height: auto;
    min-height: 380px;
}

.nhp-carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 10px;
}

.nhp-carousel-prev,
.nhp-carousel-next {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid var(--nhp-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nhp-carousel-prev:hover,
.nhp-carousel-next:hover {
    background: var(--nhp-primary);
    border-color: var(--nhp-primary);
}

/* ========================================
   PRODUCT MINIATURE
   ======================================== */
.nhp-product-miniature {
    background: #f5f5f5;
    border: 1px solid var(--nhp-border);
    border-radius: var(--nhp-radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nhp-product-miniature:hover {
    box-shadow: var(--nhp-shadow);
}

.nhp-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.nhp-product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nhp-product-miniature:hover .nhp-product-img {
    transform: scale(1.05);
}

.nhp-product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nhp-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.nhp-badge-sale {
    background: var(--nhp-danger);
    color: #fff;
}

.nhp-badge-new {
    background: var(--nhp-success);
    color: #fff;
}

.nhp-product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nhp-product-brand {
    font-size: 11px;
    color: var(--nhp-text-light);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nhp-product-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px;
    line-height: 1.4;
    flex: 1;
    min-height: calc(14px * 1.4 * 2); /* CLS fix: reserve 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-product-name a {
    color: var(--nhp-text);
    text-decoration: none;
}

.nhp-product-name a:hover {
    color: var(--nhp-primary);
}

.nhp-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.nhp-price-regular {
    font-size: 13px;
    color: var(--nhp-text-light);
    text-decoration: line-through;
}

.nhp-price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--nhp-secondary);
}

.nhp-btn-add-cart {
    width: 100%;
    padding: 10px 15px;
    background: var(--nhp-primary);
    color: var(--nhp-secondary);
    border: none;
    border-radius: var(--nhp-radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nhp-btn-add-cart:hover {
    background: var(--nhp-secondary);
    color: #fff;
}

.nhp-out-of-stock {
    display: block;
    text-align: center;
    color: var(--nhp-danger);
    font-size: 13px;
    font-weight: 500;
}

/* ========================================
   FULLWIDTH BANNER
   ======================================== */
.nhp-fullwidth-banner {
    position: relative;
    overflow: hidden;
}

.nhp-banner-link {
    display: block;
    position: relative;
}

.nhp-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.nhp-banner-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 40%;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--nhp-radius);
}

.nhp-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--nhp-secondary);
    margin: 0 0 10px;
}

.nhp-banner-subtitle {
    font-size: 15px;
    color: var(--nhp-text-light);
    margin: 0 0 15px;
}

.nhp-banner-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--nhp-primary);
    color: var(--nhp-secondary);
    font-weight: 600;
    border-radius: var(--nhp-radius);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nhp-banner-link:hover .nhp-banner-btn {
    background: var(--nhp-secondary);
    color: #fff;
}

.nhp-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ========================================
   PROMO COUNTDOWN
   ======================================== */
.nhp-pcd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.nhp-pcd-item {
    position: relative;
    border: 2px solid var(--highlight-color, #ffc107);
    border-radius: var(--nhp-radius);
    padding: 20px;
    background: #f5f5f5;
}

.nhp-pcd-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 5px 15px;
    background: var(--highlight-color, #ffc107);
    color: var(--nhp-secondary);
    font-weight: 600;
    font-size: 12px;
    border-radius: 3px;
}

.nhp-promo-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--nhp-bg-light);
    border-radius: var(--nhp-radius);
}

.nhp-countdown-item {
    text-align: center;
}

.nhp-countdown-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--nhp-secondary);
    line-height: 1;
}

.nhp-countdown-label {
    display: block;
    font-size: 11px;
    color: var(--nhp-text-light);
    text-transform: uppercase;
    margin-top: 5px;
}

.nhp-countdown-separator {
    font-size: 28px;
    font-weight: 700;
    color: var(--nhp-text-light);
}

/* ========================================
   USP BAR
   ======================================== */
.nhp-usp-bar {
    background: var(--nhp-bg-light);
    padding: 30px 0;
}

.nhp-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.nhp-usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nhp-usp-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.nhp-usp-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nhp-usp-icon i {
    font-size: 36px;
    color: var(--nhp-primary);
}

.nhp-usp-icon img {
    max-width: 100%;
    max-height: 100%;
}

.nhp-usp-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--nhp-secondary);
}

.nhp-usp-description {
    display: block;
    font-size: 12px;
    color: var(--nhp-text-light);
    margin-top: 3px;
}

/* Section wrapper reset */
.nhp-section-newsletter {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* ========================================
   NEWSLETTER (x-kom style)
   ======================================== */
.nhp-newsletter {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-newsletter .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.nhp-newsletter-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nhp-newsletter-form-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.nhp-newsletter-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2;
}

.nhp-newsletter-subtitle {
    font-size: 15px;
    color: #555;
    margin: 0 0 24px;
    line-height: 1.5;
}

.nhp-newsletter-form {
    width: 100%;
}

.nhp-newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 480px;
}

.nhp-newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 0.2s;
}

.nhp-newsletter-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.nhp-newsletter-input::placeholder {
    color: #999;
}

.nhp-newsletter-btn {
    padding: 14px 28px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.nhp-newsletter-btn:hover {
    background: #333;
}

.nhp-newsletter-privacy {
    margin-top: 16px;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    max-width: 480px;
}

.nhp-newsletter-privacy a {
    color: #1a1a1a;
    text-decoration: underline;
}

.nhp-newsletter-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.nhp-newsletter-privacy input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.nhp-newsletter-privacy-info {
    cursor: default;
}

.nhp-newsletter-message {
    margin-top: 0;
    padding: 0 15px;
    border-radius: 10px;
    font-size: 14px;
    max-width: 480px;
    /* CLS fix: use max-height animation instead of display toggle */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
}

.nhp-newsletter-message.visible {
    max-height: 80px;
    opacity: 1;
    padding: 10px 15px;
    margin-top: 12px;
}

.nhp-newsletter-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.nhp-newsletter-message.error {
    background: #fce4ec;
    color: #c62828;
}

.nhp-newsletter-banner {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 220px;
}

.nhp-newsletter-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   HOTSHOT - Gorący Strzał (Norwit style)
   ======================================== */
.nhp-hotshot {
    background: transparent !important;
    padding: 10px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-hotshot .nhp-container {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 10px;
    background: transparent;
    overflow: visible;
}

.nhp-hotshot-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 15px;
    align-items: stretch;
}

/* Hot Shot Main Card (Left) - with animated gradient border (composited) */
.nhp-hotshot-main {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 3px;
    border-radius: 14px;
}

.nhp-hotshot-main > * {
    position: relative;
    z-index: 2;
}

/* Animated gradient border — Norwit yellow (GPU-composited via opacity) */
.nhp-hotshot-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5c518, #ff8c00, #ffd700, #f5c518);
    background-size: 300% 300%;
    border-radius: 14px;
    z-index: 0;
    animation: nhp-gradient-border 4s ease infinite;
}

.nhp-hotshot-main::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 11px;
    z-index: 1;
}

@keyframes nhp-gradient-border {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.nhp-hotshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    border-bottom: none;
    border-radius: 11px 11px 0 0;
}

.nhp-hotshot-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nhp-hotshot-title-link {
    color: inherit;
    text-decoration: none;
}

.nhp-hotshot-title-link:hover {
    color: var(--nhp-primary-hover);
}

.nhp-hotshot-discount-badge {
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    flex-shrink: 0;
}

.nhp-hotshot-discount-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.nhp-hotshot-discount-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Hero Combo - Banner mode (left_type=banner) */
.nhp-hotshot-banner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
}

.nhp-hotshot-banner-link {
    display: block;
    flex: 1;
    overflow: hidden;
}

.nhp-hotshot-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nhp-hotshot-banner-content {
    padding: 20px;
    text-align: center;
}

.nhp-hotshot-banner-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.nhp-hotshot-banner-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.5;
}

/* Slider — CSS Grid stacking eliminates CLS (no display:none toggling) */
.nhp-hotshot-slider {
    position: relative;
    flex: 1;
    display: grid;
    min-width: 0;
    overflow: hidden;
    border-radius: 0 0 11px 11px;
}

.nhp-hotshot-slide {
    grid-area: 1 / 1;
    min-width: 0;
    padding: 0 20px 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: #fff;
}

/* CSS-only fallback: show first slide before JS initializes */
.nhp-hotshot-slide:first-child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* After JS initializes: hide first-child if not active */
.nhp-hotshot-slider.nhp-slides-ready > .nhp-hotshot-slide:first-child:not(.active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* JS-controlled: active slide visible on top */
.nhp-hotshot-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

/* Expired countdown slides — hidden without layout shift */
.nhp-hotshot-slide.expired {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Product Image - grows to fill available space */
.nhp-hotshot-image {
    text-align: center;
    padding: 5px;
    margin-bottom: 10px;
    background: #fff;
    transition: transform 0.3s ease;
    flex: 1;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nhp-hotshot-image img:not(.nhp-hotshot-logo-overlay) {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1;
}

.nhp-hotshot-image:hover {
    transform: scale(1.03);
}

.nhp-hotshot-image a {
    display: block;
}

/* Logo overlay on product image — specificity 0,0,2,0 beats .nhp-hotshot-image img (0,0,1,1) */
.nhp-hotshot-image .nhp-hotshot-logo-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25%;
    max-height: none;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

/* Product Info */
.nhp-hotshot-info {
    flex: none;
}

.nhp-hotshot-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #1a1a1a;
    min-height: calc(16px * 1.3 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-hotshot-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nhp-hotshot-name a:hover {
    color: var(--nhp-primary);
}

.nhp-hotshot-price {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
}

.nhp-hotshot-price-netto {
    font-size: 18px;
    color: #888;
    font-weight: 400;
    margin-left: auto;
    white-space: nowrap;
}

.nhp-hotshot-price-current {
    font-size: 34px;
    font-weight: 700;
    color: #2e7d32;
}

.nhp-hotshot-price-old {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

/* Stock Progress Bar - Hidden */
.nhp-hotshot-stock {
    display: none;
}

.nhp-hotshot-stock-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.nhp-hotshot-stock-labels strong {
    color: #1a1a1a;
    font-weight: 600;
}

.nhp-hotshot-stock-bar {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.nhp-hotshot-stock-progress {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #f43f5e 0%, #fb7185 100%);
    border-radius: 4px;
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Countdown - Clean style with dividers */
.nhp-hotshot-countdown {
    background: #fff;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.nhp-hotshot-countdown-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.nhp-hotshot-countdown-timer {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Group: digits + unit label */
.nhp-hotshot-countdown-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.nhp-hotshot-countdown-digits {
    display: flex;
    gap: 4px;
}

/* Individual digit tile */
.nhp-hotshot-countdown-digit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 44px;
    background: #f0f0f0;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

/* Colon separator — aligned to digit tiles, not full group */
.nhp-hotshot-countdown-colon {
    display: flex;
    align-items: center;
    align-self: flex-start;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 4px;
    height: 44px;
    line-height: 44px;
    flex-shrink: 0;
}

.nhp-hotshot-countdown-unit {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: lowercase;
    margin-top: 4px;
    text-align: center;
}


/* CTA Button */
.nhp-hotshot-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.nhp-hotshot-cta:hover {
    background: var(--nhp-primary);
    color: #1a1a1a;
}

.nhp-hotshot-cta i {
    font-size: 20px;
}

/* Hide unwanted elements in hotshot slide */
.nhp-hotshot-slide .nhp-hotshot-price-old {
    display: none;
}

.nhp-hotshot-slide .nhp-hotshot-stock {
    display: none;
}

/* Header logo (NT HIT) */
.nhp-hotshot-header-logo {
    height: 50px;
    width: auto;
    display: block;
}

/* "Zobacz promocje" link - white with black border */
.nhp-hotshot-promo-link {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.nhp-hotshot-promo-link:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Dots Navigation - Hidden */
.nhp-hotshot-dots {
    display: none;
}

/* Arrow Navigation */
.nhp-hotshot-nav {
    position: absolute;
    top: calc(50% + 25px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 3px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: linear-gradient(90deg, #f5c518, #ff8c00, #f5c518, #ffd700, #f5c518);
    background-size: 300% 100%;
    /* gradient-border: static to avoid non-composited animation */
}

.nhp-hotshot-nav::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #f5f5f5;
    border-radius: 50%;
    z-index: 0;
    transition: background 0.3s ease;
}

.nhp-hotshot-nav:hover::before {
    background: linear-gradient(135deg, #f5c518, #ff8c00);
}

.nhp-hotshot-nav i {
    font-size: 24px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.nhp-hotshot-nav.nhp-hotshot-prev {
    left: 10px;
}

.nhp-hotshot-nav.nhp-hotshot-next {
    right: 10px;
}

/* Expired State */
.nhp-hotshot-expired {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    flex: 1;
}

.nhp-hotshot-expired-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nhp-hotshot-expired-icon i {
    font-size: 40px;
    color: #999;
}

.nhp-hotshot-expired-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.nhp-hotshot-expired-subtext {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Right Side Grid */
.nhp-hotshot-grid {
    position: relative;
    padding: 5px 12px 15px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.nhp-hotshot-grid > .nhp-section-title {
    padding: 15px 0;
    margin: 0;
}

.nhp-hotshot-grid .nhp-grid-title {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}

.nhp-hotshot-grid .nhp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 25px;
    flex: 1;
    align-content: start;
    margin-top: 15px;
}

/* Grid product visibility controlled by JS (data-grid-limit) */

/* Large screens - 5 columns for 10 products */
@media (min-width: 1600px) {
    .nhp-hotshot-grid .nhp-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.nhp-hotshot-grid .nhp-grid-product {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nhp-hotshot-grid .nhp-grid-product:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.nhp-hotshot-grid .nhp-grid-product-link {
    display: block;
    text-decoration: none;
    padding: 15px;
}

.nhp-hotshot-grid .nhp-grid-product-image {
    position: relative;
    text-align: center;
    margin-bottom: 12px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nhp-hotshot-grid .nhp-grid-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nhp-hotshot-grid .nhp-grid-product:hover .nhp-grid-product-image {
    transform: scale(1.05);
}

.nhp-hotshot-grid .nhp-grid-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f43f5e;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.nhp-hotshot-grid .nhp-grid-product-info {
    min-height: 100px;
}

.nhp-hotshot-grid .nhp-grid-product-brand {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    border-radius: 4px;
    padding: 2px 4px;
    line-height: 1;
}

.nhp-hotshot-grid .nhp-grid-product-brand img {
    max-height: 20px;
    max-width: 60px;
    object-fit: contain;
    display: block;
}

.nhp-hotshot-grid .nhp-grid-product-name {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.4;
    height: 36px; /* 2 lines fixed */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-hotshot-grid .nhp-grid-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nhp-hotshot-grid .nhp-grid-product-price .nhp-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.nhp-hotshot-grid .nhp-grid-product-old-price {
    font-size: 12px;
    color: #666;
    text-decoration: line-through;
    margin-top: 4px;
}

.nhp-hotshot-grid .nhp-grid-product-cart {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #28a745;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.nhp-hotshot-grid .nhp-grid-product:hover .nhp-grid-product-cart {
    opacity: 1;
    transform: translateY(0);
}

.nhp-hotshot-grid .nhp-grid-product-cart:hover {
    background: #28a745;
}

.nhp-hotshot-grid .nhp-grid-product-cart:hover i {
    color: #fff;
}

.nhp-hotshot-grid .nhp-grid-product-cart i {
    font-size: 20px;
    color: #28a745;
}

/* Grid Navigation - styled like hero arrows */
/* Hidden by default - shown via JS only when content is scrollable */
.nhp-hotshot-grid .nhp-grid-nav {
    position: absolute;
    top: calc(50% + 25px);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 3px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: linear-gradient(90deg, #f5c518, #ff8c00, #f5c518, #ffd700, #f5c518);
    background-size: 300% 100%;
}

.nhp-hotshot-grid .nhp-grid-nav::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 50%;
    z-index: 0;
    transition: background 0.3s ease;
}

.nhp-hotshot-grid .nhp-grid-nav:hover::before {
    background: linear-gradient(135deg, #f5c518, #ff8c00);
}

.nhp-hotshot-grid .nhp-grid-nav i {
    font-size: 24px;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.nhp-hotshot-grid .nhp-grid-nav.nhp-grid-prev {
    left: 8px;
}

.nhp-hotshot-grid .nhp-grid-nav.nhp-grid-next {
    right: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .nhp-hero-content {
        max-width: 70%;
        padding: 20px;
    }

    .nhp-hero-title {
        font-size: 24px;
    }

    .nhp-banner-content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .nhp-section-hero_slider {
        padding: 0 10px !important;
    }

    .nhp-section-product_carousel {
        padding: 0;
    }

    .nhp-category-tiles {
        background: #f5f5f5;
        padding: 8px 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-category-tiles .nhp-container {
        padding: 15px 10px;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        background: #fff;
        border-radius: 0;
    }

    .nhp-category-tiles .nhp-section-subtitle {
        display: none;
    }

    .nhp-product-carousel {
        background: #fff;
        padding: 10px;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .nhp-product-miniature {
        background: #fff;
        border: 1px solid #e0e0e0;
    }

    .nhp-product-carousel .nhp-container {
        padding: 0;
        margin: 0;
    }

    .nhp-section-title {
        font-size: 18px;
    }

    .nhp-section-header {
        margin-bottom: 15px;
    }

    .nhp-section-header--with-link {
        margin-bottom: 20px;
    }

    .nhp-section-link-text {
        font-size: 13px;
    }

    .nhp-videos .nhp-section-title,
    .nhp-blogs .nhp-section-title,
    .nhp-brand-zone .nhp-section-title,
    .nhp-category-tiles .nhp-section-title {
        font-size: 18px;
    }

    .nhp-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .nhp-tile {
        padding: 15px 10px;
    }

    .nhp-tile-icon {
        width: 40px;
        height: 40px;
    }

    .nhp-tile-icon i {
        font-size: 28px;
    }

    .nhp-tile-name {
        font-size: 12px;
    }

    .nhp-banner-content {
        position: static;
        max-width: 100%;
        transform: none;
        border-radius: 0;
    }

    .nhp-usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .nhp-newsletter {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-newsletter .nhp-container {
        padding: 7px 2px;
        margin: 0;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    .nhp-newsletter-card {
        flex-direction: column;
        border-radius: 0;
    }

    .nhp-newsletter-form-side {
        padding: 28px 20px;
    }

    .nhp-newsletter-banner {
        display: none;
    }

    .nhp-newsletter-input-group {
        flex-direction: column;
        max-width: none;
    }

    .nhp-newsletter-privacy {
        max-width: none;
    }

    .nhp-newsletter-message {
        max-width: none;
    }

    .nhp-countdown-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .nhp-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nhp-usp-grid {
        grid-template-columns: 1fr;
    }

    .nhp-pcd-grid {
        grid-template-columns: 1fr;
    }
}

/* Hotshot Responsive */
@media (max-width: 1200px) {
    .nhp-hotshot-wrapper {
        grid-template-columns: 360px 1fr;
        gap: 15px;
    }

    .nhp-hotshot-grid .nhp-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nhp-hotshot-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nhp-hotshot-main {
        max-width: 450px;
        margin: 0 auto;
    }

    .nhp-hotshot-grid .nhp-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nhp-hotshot-grid .nhp-grid-product-cart {
        opacity: 1;
        transform: translateY(0);
    }

    /* Nav buttons visibility controlled by JS */
}

@media (max-width: 768px) {
    .nhp-hotshot {
        padding: 0;
        margin: 0;
    }

    .nhp-hotshot .nhp-container {
        padding: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        background: transparent;
    }

    .nhp-hotshot-wrapper {
        padding: 0;
        gap: 10px;
    }

    .nhp-hotshot-main {
        width: 100%;
        max-width: 100%;
        padding: 2px;
        border-radius: 12px;
        margin: 0;
    }

    .nhp-hotshot-main::before {
        inset: 2px;
        border-radius: 10px;
    }

    .nhp-hotshot-header {
        padding: 8px 15px;
        flex-direction: row;
        gap: 8px;
        border-radius: 10px 10px 0 0;
    }

    .nhp-hotshot-title {
        font-size: 14px;
    }

    .nhp-hotshot-discount-badge {
        padding: 4px 6px;
    }

    .nhp-hotshot-discount-label {
        font-size: 8px;
    }

    .nhp-hotshot-discount-value {
        font-size: 14px;
    }

    .nhp-hotshot-banner-content {
        padding: 12px;
    }

    .nhp-hotshot-banner-title {
        font-size: 16px;
    }

    .nhp-hotshot-banner-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .nhp-hotshot-slide {
        padding: 0 15px 8px;
    }

    .nhp-hotshot-image {
        padding: 0;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 140px;
        position: relative;
    }

    .nhp-hotshot-image img:not(.nhp-hotshot-logo-overlay) {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .nhp-hotshot-name {
        font-size: 14px;
        margin-bottom: 6px;
        min-height: auto;
    }

    .nhp-hotshot-price-current {
        font-size: 22px;
    }

    .nhp-hotshot-price-netto {
        font-size: 12px;
    }

    .nhp-hotshot-price-old {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .nhp-hotshot-countdown {
        padding: 8px 10px;
        margin-bottom: 6px;
        gap: 4px;
        align-items: center;
    }

    .nhp-hotshot-countdown-label {
        font-size: 11px;
        text-align: center;
        width: 100%;
    }

    .nhp-hotshot-countdown-digit {
        width: 26px;
        height: 34px;
        font-size: 20px;
        border-radius: 6px;
    }

    .nhp-hotshot-countdown-digits {
        gap: 3px;
    }

    .nhp-hotshot-countdown-colon {
        font-size: 18px;
        padding: 0 2px;
        height: 34px;
        line-height: 34px;
    }

    .nhp-hotshot-countdown-unit {
        font-size: 8px;
        margin-top: 2px;
    }

    .nhp-hotshot-image .nhp-hotshot-logo-overlay {
        width: 22%;
    }

    .nhp-hotshot-cta {
        padding: 10px 15px;
        font-size: 13px;
    }

    .nhp-hotshot-cta i {
        font-size: 18px;
    }

    .nhp-hotshot-stock {
        margin-bottom: 6px;
    }

    /* Arrow navigation - small gray on mobile */
    .nhp-hotshot-nav {
        display: flex !important;
        width: 28px;
        height: 28px;
        background: rgba(0,0,0,0.08);
        border: none;
        top: 35%;
        z-index: 5;
    }
    .nhp-hotshot-nav::before { display: none; }
    .nhp-hotshot-nav i {
        font-size: 18px;
        color: #888;
    }
    .nhp-hotshot-nav.nhp-hotshot-prev { left: 4px; }
    .nhp-hotshot-nav.nhp-hotshot-next { right: 4px; }


    /* Grid becomes horizontal carousel on mobile - full width white container */
    .nhp-hotshot-grid {
        overflow: hidden;
        background: #fff;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        border-radius: 0;
        padding: 10px 0;
        margin: 0;
    }

    .nhp-hotshot-grid .nhp-section-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 12px 0;
        padding: 0 10px;
    }

    .nhp-hotshot-grid .nhp-products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        gap: 10px;
        padding: 0 10px 10px 10px;
        margin: 0;
        /* iOS Safari fixes */
        -webkit-scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .nhp-hotshot-grid .nhp-products-grid::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .nhp-hotshot-grid .nhp-products-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nhp-hotshot-grid .nhp-grid-product {
        flex: 0 0 42% !important;
        min-width: 42% !important;
        max-width: 42% !important;
        width: 42% !important;
        scroll-snap-align: start;
        /* iOS Safari - force GPU rendering */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Equal height */
        display: flex;
        flex-direction: column;
        height: auto;
        /* Card styling - white bg, grey border like desktop */
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-shadow: none;
    }

    .nhp-hotshot-grid .nhp-grid-product-link {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .nhp-hotshot-grid .nhp-grid-product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .nhp-hotshot-grid .nhp-grid-product-price {
        margin-top: auto;
    }

    .nhp-hotshot-grid .nhp-products-grid.swiper {
        overflow: hidden;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-hotshot-grid .nhp-products-grid .swiper-wrapper {
        display: flex;
    }

    .nhp-hotshot-grid .nhp-products-grid.swiper .nhp-grid-product {
        flex: none;
        min-width: auto;
        max-width: none;
    }

    .nhp-hotshot-grid .nhp-grid-product-link {
        padding: 10px;
    }

    .nhp-hotshot-grid .nhp-grid-product-image {
        height: 110px;
        margin-bottom: 8px;
    }

    .nhp-hotshot-grid .nhp-grid-product-name {
        font-size: 11px;
        height: 30px;
        margin-bottom: 6px;
    }

    .nhp-hotshot-grid .nhp-grid-product-price .nhp-price {
        font-size: 14px;
    }

    .nhp-hotshot-grid .nhp-grid-product-info {
        min-height: 70px;
    }

    .nhp-hotshot-grid .nhp-grid-product-brand {
        height: 27px;
        margin-bottom: 4px;
    }

    .nhp-hotshot-grid .nhp-grid-product-brand img {
        max-width: 75px;
    }

    .nhp-hotshot-grid .nhp-grid-product-cart {
        display: none;
    }

    .nhp-hotshot-grid .nhp-grid-nav {
        display: none;
    }

    .nhp-hotshot-grid .nhp-grid-discount {
        padding: 2px 5px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }

    .nhp-hotshot-grid .nhp-grid-product-old-price {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .nhp-hotshot {
        padding: 10px 0;
    }

    .nhp-hotshot-wrapper {
        padding: 0 8px;
        gap: 12px;
    }

    .nhp-hotshot-image img:not(.nhp-hotshot-logo-overlay) {
        max-height: 150px;
    }

    .nhp-hotshot-price-current {
        font-size: 22px;
    }

    .nhp-hotshot-name {
        font-size: 14px;
        min-height: calc(14px * 1.35 * 2);
    }

    .nhp-hotshot-cta {
        padding: 10px 12px;
        font-size: 12px;
    }

    .nhp-hotshot-grid .nhp-grid-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* Product cards smaller on very small screens */
    .nhp-hotshot-grid .nhp-grid-product {
        flex: 0 0 40% !important;
        min-width: 40% !important;
        max-width: 40% !important;
        width: 40% !important;
    }

    .nhp-hotshot-grid .nhp-grid-product-link {
        padding: 8px;
    }

    .nhp-hotshot-grid .nhp-grid-product-image {
        height: 100px;
        margin-bottom: 6px;
    }

    .nhp-hotshot-grid .nhp-grid-product-name {
        font-size: 11px;
        height: 28px;
        margin-bottom: 4px;
    }

    .nhp-hotshot-grid .nhp-grid-product-price .nhp-price {
        font-size: 14px;
    }

    .nhp-hotshot-grid .nhp-grid-product-info {
        min-height: 65px;
    }

    .nhp-hotshot-grid .nhp-grid-product-brand {
        height: 24px;
        margin-bottom: 3px;
    }

    .nhp-hotshot-grid .nhp-grid-product-brand img {
        max-width: 68px;
    }

    .nhp-hotshot-grid .nhp-grid-product-cart {
        width: 32px;
        height: 32px;
        bottom: 8px;
        right: 8px;
    }

    .nhp-hotshot-grid .nhp-grid-product-cart i {
        font-size: 16px;
    }

    .nhp-hotshot-price-current {
        font-size: 24px;
    }

    .nhp-hotshot-cta {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ============================================
   VIDEOS SECTION - YouTube Carousel
   ============================================ */

.nhp-videos {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-videos .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.nhp-videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.nhp-videos-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.nhp-youtube-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nhp-youtube-link:hover {
    opacity: 0.8;
}

.nhp-youtube-icon {
    flex-shrink: 0;
}

.nhp-youtube-text {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
}

.nhp-youtube-arrow {
    display: flex;
    align-items: center;
    color: #f58220;
}

.nhp-youtube-arrow i {
    font-size: 20px;
}

/* Carousel Container */
.nhp-videos-carousel {
    position: relative;
}

.nhp-videos-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nhp-videos-track::-webkit-scrollbar {
    display: none;
}

/* Video Card */
.nhp-video-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    scroll-snap-align: start;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nhp-video-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.nhp-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.nhp-video-thumbnail {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f8f8f8;
}

.nhp-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nhp-video-card:hover .nhp-video-thumbnail img {
    transform: scale(1.05);
}

/* Play Button Overlay - YouTube style */
.nhp-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.nhp-video-play i {
    color: #fff;
    font-size: 32px;
    margin-left: 2px;
}

.nhp-video-card:hover .nhp-video-play {
    background: #f00;
    transform: translate(-50%, -50%);
}

/* Close/Hide Button */
.nhp-video-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
    z-index: 2;
}

.nhp-video-close i {
    color: #fff;
    font-size: 18px;
}

.nhp-video-card:hover .nhp-video-close {
    opacity: 1;
}

.nhp-video-close:hover {
    background: #f43f5e;
}

/* Video Info */
.nhp-video-info {
    padding: 12px 12px 14px;
    background: #fff;
}

.nhp-video-title {
    color: #0f0f0f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-video-description {
    color: #606060;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Arrows */
.nhp-videos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nhp-videos-nav:hover {
    background: #f5f5f5;
    transform: translateY(-100%) scale(1.05);
}

.nhp-videos-nav i {
    font-size: 24px;
    color: #1a1a1a;
}

.nhp-videos-nav.nhp-videos-prev {
    left: -22px;
}

.nhp-videos-nav.nhp-videos-next {
    right: -22px;
}

/* Empty State */
.nhp-videos-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

/* Responsive */
@media (max-width: 1200px) {
    .nhp-video-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .nhp-video-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }

    .nhp-videos-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .nhp-videos {
        padding: 8px 0;
        margin-left: 0;
        margin-right: 0;
        background: #f5f5f5;
    }

    .nhp-videos .nhp-container {
        padding: 10px;
        margin: 0;
        border-radius: 0;
        background: #fff;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .nhp-videos-header {
        margin-bottom: 15px;
        display: block;
    }

    .nhp-videos-title {
        font-size: 18px;
        width: 100%;
    }

    /* Hide "Zobacz wszystkie filmy" on mobile */
    .nhp-youtube-link {
        display: none;
    }

    .nhp-videos-track {
        gap: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .nhp-video-card {
        flex: 0 0 75%;
        min-width: 240px;
    }

    .nhp-video-play {
        width: 56px;
        height: 40px;
        border-radius: 10px;
    }

    .nhp-video-play i {
        font-size: 26px;
    }

    .nhp-video-close {
        opacity: 1;
        width: 24px;
        height: 24px;
    }

    .nhp-video-close i {
        font-size: 16px;
    }

    .nhp-video-info {
        padding: 10px 10px 12px;
    }

    .nhp-video-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .nhp-video-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* ============================================
   BLOGS SECTION - Card Carousel (same as Videos)
   ============================================ */

/* Section wrapper reset */
.nhp-section-blogs {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Remove margin from section before blogs */
.nhp-section:has(+ .nhp-section-blogs) {
    margin-bottom: 0 !important;
}

/* Reset inherited styles on blogs outer wrapper only */
.nhp-section-blogs .nhp-blogs {
    border: none !important;
}

.nhp-blogs {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-blogs .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.nhp-blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.nhp-blogs-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.nhp-blogs-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nhp-blogs-link:hover {
    opacity: 0.8;
}

.nhp-blogs-link-text {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
}

.nhp-blogs-arrow {
    display: flex;
    align-items: center;
    color: #f58220;
}

.nhp-blogs-arrow i {
    font-size: 20px;
}

/* Carousel Container */
.nhp-blogs-carousel {
    position: relative;
}

.nhp-blogs-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nhp-blogs-track::-webkit-scrollbar {
    display: none;
}

/* Blog Card */
.nhp-blog-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    scroll-snap-align: start;
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nhp-blog-card:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.nhp-blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.nhp-blog-thumbnail {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f8f8f8;
}

.nhp-blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nhp-blog-card:hover .nhp-blog-thumbnail img {
    transform: scale(1.05);
}

.nhp-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
}

.nhp-blog-placeholder i {
    font-size: 48px;
    color: #bbb;
}

/* Blog Info */
.nhp-blog-info {
    padding: 12px 12px 14px;
    background: #fff;
}

.nhp-blog-title {
    color: #0f0f0f;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-blog-description {
    color: #606060;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Arrows */
.nhp-blogs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nhp-blogs-nav:hover {
    background: #f5f5f5;
    transform: translateY(-100%) scale(1.05);
}

.nhp-blogs-nav i {
    font-size: 24px;
    color: #1a1a1a;
}

.nhp-blogs-nav.nhp-blogs-prev {
    left: -22px;
}

.nhp-blogs-nav.nhp-blogs-next {
    right: -22px;
}

/* Empty State */
.nhp-blogs-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

/* Responsive */
@media (max-width: 1200px) {
    .nhp-blog-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .nhp-blog-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }

    .nhp-blogs-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .nhp-blogs {
        padding: 8px 0;
        margin-left: 0;
        margin-right: 0;
        background: #f5f5f5;
    }

    .nhp-blogs .nhp-container {
        padding: 10px;
        margin: 0;
        border-radius: 0;
        background: #fff;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .nhp-blogs-header {
        margin-bottom: 20px;
    }

    .nhp-blogs-title {
        font-size: 18px;
    }

    .nhp-blogs-link-text {
        font-size: 13px;
    }

    .nhp-blogs-track {
        gap: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .nhp-blog-card {
        flex: 0 0 75%;
        min-width: 240px;
    }

    .nhp-blog-info {
        padding: 10px 10px 12px;
    }

    .nhp-blog-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .nhp-blog-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* ==========================================================================
   CATEGORY SHOWCASE SECTION - Norwit style (Full background image)
   Recommended image sizes:
   - Desktop: 1400x550px (full width, covers title + products)
   - Mobile: 768x700px (taller for stacked layout)
   ========================================================================== */

.nhp-section-category_showcase {
    margin: 0 !important;
    background: #f5f5f5 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 15px 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: calc(50vw - 50%) !important;
    padding-right: calc(50vw - 50%) !important;
}

.nhp-category-showcase {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 16px;
    min-height: 450px;
}

/* When has background image */
.nhp-category-showcase.nhp-showcase-has-bg {
    background: transparent;
}

/* Full background image - covers entire module */
.nhp-showcase-fullbg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    line-height: 0;
}

.nhp-showcase-fullbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content wrapper - on top of background */
.nhp-showcase-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 75px 30px 10px 30px;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

/* Header - title and button stacked on left */
.nhp-showcase-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0;
}

.nhp-showcase-text {
    max-width: 60%;
    margin-bottom: 15px;
}

.nhp-showcase-pretitle {
    display: block;
    font-size: 32px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* Text shadow for readability on images */
.nhp-showcase-has-bg .nhp-showcase-pretitle,
.nhp-showcase-has-bg .nhp-section-title {
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.nhp-category-showcase .nhp-section-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.nhp-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nhp-showcase-btn:hover {
    background: #333;
    color: #fff;
}

.nhp-showcase-btn i {
    font-size: 18px;
    display: none;
}

/* Products section - inside white container */
.nhp-showcase-products {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 10px 0 0 0;
    border: none;
    margin-top: 0;
    z-index: 5;
}

.nhp-showcase-carousel {
    position: relative;
    padding: 0;
}

.nhp-showcase-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.nhp-showcase-track::-webkit-scrollbar {
    display: none;
}

.nhp-showcase-product {
    flex: 0 0 195px;
    min-width: 195px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: visible;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nhp-showcase-product:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Cart button - outline style, hidden by default */
.nhp-showcase-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #28a745;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.nhp-showcase-product:hover .nhp-showcase-cart-btn {
    opacity: 1;
}

.nhp-showcase-cart-btn:hover {
    background: #28a745;
    transform: scale(1.05);
}

.nhp-showcase-cart-btn i {
    font-size: 24px;
    color: #28a745;
    transition: color 0.3s ease;
}

.nhp-showcase-cart-btn:hover i {
    color: #fff;
}

.nhp-showcase-product-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    padding: 12px;
}

.nhp-showcase-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f5f5f5;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    z-index: 2;
}

.nhp-showcase-product-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.nhp-showcase-product-img img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nhp-showcase-product:hover .nhp-showcase-product-img img {
    transform: scale(1.05);
}

.nhp-showcase-product-info {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.nhp-showcase-product-name {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0;
    min-height: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-showcase-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.nhp-showcase-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.nhp-showcase-price sup {
    font-size: 12px;
    font-weight: 400;
}

.nhp-showcase-discount {
    display: inline-block;
    background: transparent;
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
}

.nhp-showcase-old-price {
    width: 100%;
    margin-top: 2px;
    font-size: 12px;
    color: #666;
}

.nhp-showcase-old-label {
    display: inline;
}

.nhp-showcase-old-value {
    text-decoration: line-through;
    color: #999;
}

/* Navigation arrows - positioned on sides of carousel */
.nhp-showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.nhp-showcase-nav:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nhp-showcase-nav i {
    font-size: 24px;
    color: #333;
}

.nhp-showcase-prev {
    left: 10px;
}

.nhp-showcase-next {
    right: 10px;
}

.nhp-showcase-empty {
    text-align: center;
    padding: 60px 40px;
    color: #888;
    font-size: 16px;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .nhp-showcase-hero {
        right: 20px;
    }

    .nhp-showcase-hero img {
        max-width: 380px;
        max-height: 350px;
    }

    .nhp-showcase-product {
        flex: 0 0 180px;
        min-width: 180px;
    }
}

@media (max-width: 1024px) {
    .nhp-showcase-top {
        min-height: 180px;
    }

    .nhp-showcase-title {
        font-size: 36px;
    }

    .nhp-showcase-hero {
        right: 10px;
        top: 0;
    }

    .nhp-showcase-hero img {
        max-width: 300px;
        max-height: 280px;
    }

    .nhp-showcase-nav-wrap {
        bottom: 10px;
        right: 20px;
    }

    .nhp-showcase-product {
        flex: 0 0 170px;
        min-width: 170px;
    }

    .nhp-showcase-product-img {
        height: 140px;
    }

    .nhp-showcase-product-img img {
        max-height: 120px;
    }
}

/* Responsive - Mobile - Clean white container, full-width */
@media (max-width: 768px) {
    .nhp-section-category_showcase {
        background: #f5f5f5 !important;
        padding: 8px 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nhp-category-showcase {
        padding: 10px;
        margin: 0;
        border-radius: 0;
        min-height: auto;
        position: relative;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    /* Full background image - absolute like desktop */
    .nhp-showcase-fullbg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    .nhp-showcase-fullbg img,
    .nhp-showcase-fullbg source {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Content wrapper - on top of background like desktop */
    .nhp-showcase-content-wrapper {
        position: relative;
        z-index: 2;
        padding: 10px 10px 0 10px;
        margin: 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Header - transparent, like desktop */
    .nhp-showcase-header {
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .nhp-showcase-text {
        max-width: 100%;
        margin-bottom: 10px;
    }

    /* Pretitle - larger like desktop */
    .nhp-showcase-pretitle {
        display: block;
        font-size: 22px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: 0;
        margin-bottom: 4px;
        text-shadow: 0 1px 3px rgba(255,255,255,0.6);
    }

    /* Subtitle */
    .nhp-category-showcase .nhp-section-title {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 0;
        text-shadow: 0 1px 2px rgba(255,255,255,0.5);
    }

    /* Show button on mobile */
    .nhp-showcase-header .nhp-showcase-btn {
        display: inline-flex;
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Products section - at bottom, transparent bg */
    .nhp-showcase-products {
        position: relative;
        background: transparent;
        padding: 0;
        margin-top: auto;
    }

    /* Product track - horizontal scroll */
    .nhp-showcase-track {
        display: flex;
        gap: 10px;
        padding: 0 10px 10px 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nhp-showcase-track::-webkit-scrollbar {
        display: none;
    }

    /* Product cards - white bg with grey border */
    .nhp-showcase-product {
        flex: 0 0 140px;
        min-width: 140px;
        scroll-snap-align: start;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        box-shadow: none;
        overflow: hidden;
    }

    /* Hide empty product cards */
    .nhp-showcase-product:empty,
    .nhp-grid-product:empty {
        display: none !important;
    }

    .nhp-showcase-product-link {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: inherit;
    }

    .nhp-showcase-product-img {
        height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nhp-showcase-product-img img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
    }

    /* Discount badge */
    .nhp-showcase-badge {
        position: absolute;
        top: 6px;
        left: 6px;
        background: #e53935;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 4px;
    }

    .nhp-showcase-product-name {
        font-size: 13px;
        font-weight: 400;
        line-height: 1.3;
        min-height: 34px;
        margin-bottom: 8px;
        color: #333;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .nhp-showcase-product-price {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nhp-showcase-price {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .nhp-showcase-discount {
        font-size: 10px;
        font-weight: 600;
        color: #e53935;
        background: #ffebee;
        padding: 2px 5px;
        border-radius: 3px;
    }

    .nhp-showcase-old-price {
        margin-top: 4px;
        font-size: 10px;
        color: #999;
    }

    .nhp-showcase-old-label {
        display: none;
    }

    .nhp-showcase-old-value {
        text-decoration: line-through;
    }

    /* Hide navigation on mobile */
    .nhp-showcase-nav {
        display: none;
    }

    .nhp-showcase-cart-btn {
        display: none;
    }
}

/* ==========================================================================
   CATEGORY TILES SECTION - Norwit style
   ========================================================================== */

.nhp-section-category_tiles {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.nhp-category-tiles {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-category-tiles .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.nhp-tiles-carousel {
    position: relative;
}

.nhp-tiles-carousel .nhp-section-header {
    margin-bottom: 10px;
}

.nhp-tiles-carousel .nhp-section-title {
    margin-bottom: 0;
}

.nhp-tiles-carousel .nhp-section-subtitle {
    margin-top: 2px;
    margin-bottom: 0;
}

.nhp-tiles-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
}

.nhp-tiles-track::-webkit-scrollbar {
    display: none;
}

.nhp-tile {
    flex: 0 0 162px;
    width: 162px;
    height: auto;
    background: #f5f5f5;
    border-radius: 12px;
    border: none;
    padding: 5px 3px 8px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.nhp-tile:hover {
    transform: translateY(-4px);
    color: #1a1a1a;
}

.nhp-tile-image {
    width: 135px;
    height: 135px;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nhp-tile-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nhp-tile:hover .nhp-tile-image img {
    transform: scale(1.08);
}

.nhp-tile-image i {
    font-size: 64px;
    color: #ccc;
}

.nhp-tile-image i.material-icons {
    font-size: 72px;
}

.nhp-tile-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp-tiles-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nhp-tiles-nav:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nhp-tiles-nav i {
    font-size: 24px;
    color: #333;
}

.nhp-tiles-prev {
    left: 10px;
}

.nhp-tiles-next {
    right: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nhp-tile {
        flex: 0 0 160px;
        width: 160px;
        height: 200px;
        padding: 15px 12px;
        background: #fff;
    }

    .nhp-tile-image {
        width: 100px;
        height: 100px;
    }

    .nhp-tile-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nhp-category-tiles {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .nhp-category-tiles .nhp-container {
        padding: 15px 10px;
        margin: 0;
        border-radius: 0;
        background: #fff;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .nhp-tiles-track {
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-tile {
        flex: 0 0 120px;
        width: 120px;
        height: auto;
        min-height: 150px;
        padding: 10px 8px;
        border-radius: 10px;
        background: #f5f5f5;
    }

    .nhp-tile-image {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .nhp-tile-name {
        font-size: 12px;
        min-height: 32px;
    }

    .nhp-tiles-nav {
        display: none;
    }
}

/* ==========================================================================
   BRAND ZONE SECTION - Norwit style (Strefa marek)
   ========================================================================== */

.nhp-section-brand_zone {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.nhp-brand-zone {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-brand-zone .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px 0 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.nhp-brand-zone .nhp-section-header {
    margin-bottom: 7px;
}

.nhp-brand-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.nhp-brand-subtitle {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.nhp-brand-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nhp-brand-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0 15px 0;
    align-items: center;
    flex: 1;
    min-height: 120px; /* CLS fix: reserve space for brand logos */
}

.nhp-brand-track::-webkit-scrollbar {
    display: none;
}

.nhp-brand-item {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nhp-brand-item:hover {
    border-color: #e5e5e5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.nhp-brand-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nhp-brand-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nhp-brand-nav:hover,
.nhp-brand-nav:active {
    background: #ffc107;
    border-color: #ffc107;
}

.nhp-brand-nav:hover i,
.nhp-brand-nav:active i {
    color: #fff;
}

.nhp-brand-nav i {
    font-size: 20px;
    color: #333;
}

/* Grayscale effect - applied conditionally */
.nhp-brand-grayscale .nhp-brand-item img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.nhp-brand-grayscale .nhp-brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Without grayscale class */
.nhp-brand-zone:not(.nhp-brand-grayscale) .nhp-brand-item img {
    filter: none;
    opacity: 1;
}

.nhp-brand-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Responsive - Brand Zone */
@media (max-width: 768px) {
    .nhp-brand-zone {
        padding: 0 0 15px 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-brand-zone .nhp-container {
        padding: 7px 2px 0 2px;
        margin: 0;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    .nhp-brand-title {
        font-size: 16px;
    }

    .nhp-brand-track {
        gap: 12px;
        padding: 5px 2px 7px 2px;
    }

    .nhp-brand-item {
        width: 90px;
        height: 90px;
        padding: 10px;
    }

    .nhp-brand-item img {
        max-height: 60px;
    }

    .nhp-brand-nav {
        display: none;
    }
}

/* ==========================================================================
   PROMO GRID SECTION (Norwit style)
   ========================================================================== */

.nhp-promo-grid {
    background: #f5f5f5;
    padding: 15px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.nhp-promo-grid .nhp-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.nhp-promo-grid .nhp-section-header {
    margin-bottom: 15px;
}

.nhp-promo-carousel {
    position: relative;
}

.nhp-promo-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Page-based carousel */
.nhp-promo-page {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.nhp-promo-page--active {
    display: flex;
}

/* Pagination dots */
.nhp-promo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.nhp-promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nhp-promo-dot:hover {
    background: #999;
}

.nhp-promo-dot--active {
    background: #1a1a1a;
    transform: scale(1.2);
}

/* Row layouts */
.nhp-promo-row {
    display: grid;
    gap: 15px;
}

.nhp-promo-row--large {
    grid-template-columns: repeat(2, 1fr);
}

.nhp-promo-row--small {
    grid-template-columns: repeat(3, 1fr);
}

/* Promo item */
.nhp-promo-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nhp-promo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.nhp-promo-item--large {
    aspect-ratio: 32/9;
    min-height: 110px;
}

.nhp-promo-item--small {
    aspect-ratio: 8/3;
    min-height: 100px;
}

/* Image */
.nhp-promo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nhp-promo-image picture,
.nhp-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content overlay */
.nhp-promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.nhp-promo-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
    color: inherit;
}

.nhp-promo-subtitle {
    font-size: 0.875rem;
    margin: 0 0 12px 0;
    opacity: 0.9;
    line-height: 1.4;
    color: inherit;
}

.nhp-promo-btn {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.nhp-promo-item:hover .nhp-promo-btn {
    background: rgba(255, 255, 255, 0.2);
}

/* Badge */
.nhp-promo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

/* Navigation arrows */
.nhp-promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nhp-promo-nav:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nhp-promo-nav i {
    font-size: 24px;
    color: #1a1a1a;
}

.nhp-promo-prev {
    left: -20px;
}

.nhp-promo-next {
    right: -20px;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .nhp-promo-row--large {
        grid-template-columns: repeat(2, 1fr);
    }

    .nhp-promo-row--small {
        grid-template-columns: repeat(2, 1fr);
    }

    .nhp-promo-item--small:last-child:nth-child(odd) {
        grid-column: span 2;
    }

    .nhp-promo-nav {
        display: none;
    }
}

/* Mobile responsive - horizontal carousel */
@media (max-width: 768px) {
    .nhp-promo-grid {
        padding: 10px 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .nhp-promo-grid .nhp-container {
        padding: 10px 0;
        margin: 0;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    /* Promo Grid Mobile: single horizontal carousel */
    .nhp-promo-grid .nhp-promo-carousel {
        overflow: hidden;
    }

    .nhp-promo-grid .nhp-promo-track {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px;
        padding: 0 15px;
    }

    .nhp-promo-grid .nhp-promo-track::-webkit-scrollbar {
        display: none;
    }

    /* Flatten page and row containers */
    .nhp-promo-grid .nhp-promo-page {
        display: contents !important;
    }

    .nhp-promo-grid .nhp-promo-row {
        display: contents !important;
    }

    /* Hide desktop pagination on mobile */
    .nhp-promo-grid .nhp-promo-dots {
        display: none;
    }

    /* All items in single row */
    .nhp-promo-grid .nhp-promo-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-height: 120px;
        aspect-ratio: 16/9;
    }

    .nhp-promo-grid .nhp-promo-item--large,
    .nhp-promo-grid .nhp-promo-item--small {
        min-height: 120px;
        aspect-ratio: 16/9;
    }

    .nhp-promo-content {
        padding: 15px;
    }

    .nhp-promo-title {
        font-size: 1.1rem;
    }

    .nhp-promo-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 10px;
    }

    .nhp-promo-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .nhp-promo-badge {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ============================================================
   PROMO LANDING PAGE - "Promocje Norwit"
   ============================================================ */

body.page-norwit-promo #wrapper {
    background-color: #f5f5f5;
}
body.page-norwit-promo .breadcrumb {
    background-color: #f5f5f5;
    margin: 0;
    padding: 5px 0;
}

/* ============ LANDING PAGE ============ */
.page-norwit-promo #content-wrapper,
.page-norwit-promo #wrapper,
.page-norwit-promo .page-content {
    padding-top: 0;
    margin-top: 0;
}
.nhp-landing {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ---- 1. Banner ---- */
.nhp-landing-banner {
    max-width: 1860px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 1860/450;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border: 1px solid #e0e0e0;
}

.nhp-landing-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nhp-landing-banner-img--desktop { display: block; }
.nhp-landing-banner-img--mobile { display: none; }

/* ---- 2. Header ---- */
.nhp-landing-header { margin-bottom: 25px; }
.nhp-landing-title { font-size: 30px; font-weight: 700; color: #212121; margin: 0 0 6px; line-height: 1.2; }
.nhp-landing-subtitle { font-size: 15px; color: #616161; margin: 0; line-height: 1.5; }

/* ---- 3. Toolbar (filters + Filtruj) ---- */
.nhp-landing-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    gap: 12px;
}
.nhp-landing-filters {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nhp-landing-filters::-webkit-scrollbar { display: none; }
.nhp-landing-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
    line-height: 1.4;
}
.nhp-landing-filter-btn:hover { border-color: #bbb; }

/* Dots */
.nhp-landing-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.nhp-landing-dot--today { background: #E53935; }
.nhp-landing-dot--3days { background: #FFA726; }
.nhp-landing-dot--7days { background: #FFCA28; }
.nhp-landing-dot--over7 { background: #66BB6A; }

/* Active filter — first one red text */
.nhp-landing-filter-btn.active[data-filter="today"] { border-color: #E53935; color: #E53935; }
.nhp-landing-filter-btn.active[data-filter="3days"] { border-color: #FFA726; color: #e06600; }
.nhp-landing-filter-btn.active[data-filter="7days"] { border-color: #FFCA28; color: #997300; }
.nhp-landing-filter-btn.active[data-filter="over7"] { border-color: #66BB6A; color: #1e7e34; }

.nhp-landing-sort {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    white-space: nowrap;
}
.nhp-landing-sort-icon { font-size: 18px; color: #757575; }
.nhp-landing-sort-select {
    padding: 7px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    color: #424242;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23757575'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}
.nhp-landing-sort-select:hover { border-color: #bdbdbd; }
.nhp-landing-sort-select:focus { border-color: #999; }

/* ---- 4. Grid ---- */
.nhp-landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ---- 5. Card ---- */
.nhp-landing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.nhp-landing-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nhp-landing-card.nhp-landing-card--hidden { display: none; }

/* 6a. Badge */
.nhp-landing-badge {
    position: absolute;
    top: 14px;
    left: 0;
    padding: 6px 14px 6px 12px;
    border-radius: 0 6px 6px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    line-height: 1.3;
}
[data-time-cat="today"] .nhp-landing-badge { background: #E53935; }
[data-time-cat="3days"] .nhp-landing-badge { background: #FF9800; }
[data-time-cat="7days"] .nhp-landing-badge { background: #FFC107; color: #212121; }
[data-time-cat="over7"] .nhp-landing-badge { background: #4CAF50; }
[data-time-cat="no_countdown"] .nhp-landing-badge { background: #E53935; }

[data-time-cat="today"] .nhp-landing-price { color: #E53935; }
[data-time-cat="3days"] .nhp-landing-price { color: #FF9800; }
[data-time-cat="7days"] .nhp-landing-price { color: #F9A825; }
[data-time-cat="over7"] .nhp-landing-price { color: #4CAF50; }
[data-time-cat="no_countdown"] .nhp-landing-price { color: #E53935; }

/* 6b. Image */
.nhp-landing-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    padding: 16px;
    background: #fff;
}
.nhp-landing-card-image img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Card body */
.nhp-landing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 18px 44px;
}

/* 6c. Name */
.nhp-landing-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 12px;
    line-height: 1.4;
    min-height: calc(2 * 1.4em);
    height: calc(2 * 1.4em);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nhp-landing-card-name a { color: inherit; text-decoration: none; }
.nhp-landing-card-name a:hover { color: #e6ad00; }

/* 6d. Price line */
.nhp-landing-card-priceline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}
.nhp-landing-price {
    font-size: 26px;
    font-weight: 700;
    color: #E53935;
    white-space: nowrap;
    line-height: 1;
}
.nhp-landing-price-int { font-size: 26px; }
.nhp-landing-price-dec { font-size: 14px; vertical-align: super; margin-left: 1px; }
.nhp-landing-price-cur { font-size: 22px; margin-left: 4px; }

/* Timer */
.nhp-landing-timer {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #D32F2F;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
[data-time-cat="today"] .nhp-landing-timer { background: #D32F2F; }
[data-time-cat="3days"] .nhp-landing-timer { background: #FF9800; }
[data-time-cat="7days"] .nhp-landing-timer { background: #FFC107; color: #212121; }
[data-time-cat="over7"] .nhp-landing-timer { background: #4CAF50; }
.nhp-landing-timer-sep { margin: 0 2px; font-weight: 400; }
.nhp-landing-timer.expired { opacity: 0.35; }

/* 6d2. Netto price */
.nhp-landing-price-netto {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
    margin-bottom: 4px;
}

/* 6e. Savings */
.nhp-landing-savings {
    font-size: 12px;
    color: #757575;
    margin-bottom: 0;
}

/* 6f. Divider */
.nhp-landing-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 12px 0 10px;
}

/* Features */
.nhp-landing-features { font-size: 13px; line-height: 1.7; }
.nhp-landing-feature { padding: 1px 0; }
.nhp-landing-feat-label { color: #757575; }
.nhp-landing-feat-val { color: #212121; font-weight: 700; }
.nhp-landing-features-more { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.nhp-landing-features-more.open { max-height: 600px; }
.nhp-landing-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 16px 14px;
}
.nhp-landing-features-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    color: #757575;
    cursor: pointer;
}
.nhp-landing-features-toggle:hover { color: #212121; border-color: #bbb; }
.nhp-landing-toggle-icon { font-size: 18px; transition: transform 0.3s; }
.nhp-landing-toggle-icon.open { transform: rotate(180deg); }

/* 6g. Arrow */
.nhp-landing-card-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
    text-decoration: none;
    background: #fff;
    transition: background 0.2s;
    margin-left: auto;
}
.nhp-landing-card-arrow .material-icons { font-size: 18px; }
.nhp-landing-card-arrow:hover { background: #f5f5f5; color: #212121; }

/* SEO description */
.nhp-landing-seo { margin-top: 30px; }
.nhp-landing-seo-content {
    font-size: 14px;
    line-height: 1.7;
    color: #616161;
}
.nhp-landing-seo-content h2,
.nhp-landing-seo-content h3 { color: #212121; margin: 16px 0 8px; }
.nhp-landing-seo-content p { margin-bottom: 10px; }
.nhp-landing-seo-content a { color: #e6ad00; }

/* Empty */
.nhp-landing-empty { text-align: center; padding: 60px 20px; font-size: 16px; color: #757575; }

/* ===== RESPONSIVE: Small desktop ===== */
@media (max-width: 1280px) {
    .nhp-landing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 1024px) {
    .nhp-landing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 768px) {
    body:has([data-nhp-promo]) #wrapper .container { padding-left: 0; padding-right: 0; }
    body:has([data-nhp-promo]) #wrapper #columns_inner { padding: 0; margin: 0; }
    body.page-norwit-promo .breadcrumb { margin: 0; padding: 5px 15px; }
    .nhp-landing { padding: 0; width: 100%; box-sizing: border-box; }
    .nhp-landing-banner { border-radius: 0; margin-bottom: 0; aspect-ratio: 16/7; left: 0; transform: none; width: 100%; border: none; }
    .nhp-landing-banner-img--desktop { display: none; }
    .nhp-landing-banner-img--mobile { display: block; }
    .nhp-landing-header { padding: 12px 15px 8px; margin-bottom: 8px; }
    .nhp-landing-title { font-size: 22px; }
    .nhp-landing-subtitle { font-size: 13px; }

    /* Toolbar: filtry scrollowalne, kółko sortowania zawsze widoczne */
    .nhp-landing-toolbar { padding: 0 10px; margin-bottom: 10px; flex-wrap: nowrap; overflow: visible; gap: 8px; justify-content: flex-start; }
    .nhp-landing-filters { flex: 1; min-width: 0; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 2px 0; }
    .nhp-landing-filters::-webkit-scrollbar { display: none; }
    .nhp-landing-filter-btn { padding: 5px 10px; font-size: 12px; flex-shrink: 0; }
    .nhp-landing-sort { flex-shrink: 0; margin-left: 0; position: relative; width: 34px; height: 34px; border: 1px solid #e0e0e0; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; }
    .nhp-landing-sort-select { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; -webkit-appearance: none; }
    .nhp-landing-sort-icon { font-size: 20px; color: #757575; pointer-events: none; }

    /* Grid i karty — wzorzec jak lista kategorii */
    .nhp-landing-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 5px; }
    .nhp-landing-card { border-radius: 10px; padding: 5px; }
    .nhp-landing-card-image { height: 180px; padding: 10px; }
    .nhp-landing-card-image img { max-height: 160px; }

    /* Czcionki dopasowane do listy kategorii dev3 */
    .nhp-landing-card-name { font-size: 14px; height: calc(2 * 1.4em); min-height: calc(2 * 1.4em); }
    .nhp-landing-card-body { padding: 0 10px 8px; }
    .nhp-landing-card-footer { padding: 0 10px 10px; }

    /* Cena duża jak w kategorii (40px/800) */
    .nhp-landing-price { font-size: 36px; font-weight: 800; }
    .nhp-landing-price-int { font-size: 36px; font-weight: 800; }
    .nhp-landing-price-dec { font-size: 18px; }
    .nhp-landing-price-cur { font-size: 24px; }

    .nhp-landing-card-priceline { flex-wrap: wrap; gap: 6px; }
    .nhp-landing-price-netto { font-size: 12px; }
    .nhp-landing-timer { font-size: 11px; padding: 5px 8px; }
    .nhp-landing-badge { top: 10px; left: 0; font-size: 10px; padding: 4px 10px 4px 8px; border-radius: 0 5px 5px 0; }
    .nhp-landing-card-arrow { width: 32px; height: 32px; min-width: 32px; }
    .nhp-landing-features-toggle { margin-top: 0; }

    /* Features — ukryte na mobile jak w kategorii */
    .nhp-landing-features { display: none; }
    .nhp-landing-divider { display: none; }
    .nhp-landing-features-toggle { display: none; }

    .nhp-landing-seo { padding: 0 15px; }
}

/* ===== RESPONSIVE: Small ===== */
@media (max-width: 576px) {
    .nhp-landing-title { font-size: 20px; }
    .nhp-landing-card-image { height: 160px; }
    .nhp-landing-card-image img { max-height: 140px; }
    .nhp-landing-price { font-size: 32px; }
    .nhp-landing-price-int { font-size: 32px; }
    .nhp-landing-price-dec { font-size: 16px; }
    .nhp-landing-price-cur { font-size: 20px; }
    .nhp-landing-timer { font-size: 10px; padding: 4px 7px; border-radius: 5px; }
}

/* ========================================
   PRODUCT PAGE — HOT SHOT BADGE
   ======================================== */
/* Ensure parent containers have position:relative for absolute badge */
.product-cover,
.images-container,
.images-container-slider-mobile,
.product-images {
    position: relative !important;
}
.nhp-hotshot-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 50;
    pointer-events: auto;
}
.nhp-hotshot-product-badge-link {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    text-decoration: none;
}
.nhp-hotshot-product-badge-link:hover {
    text-decoration: none;
    opacity: 0.95;
}
.nhp-hotshot-product-badge-label {
    display: block;
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    background: linear-gradient(90deg, #f5c518, #ff8c00, #f5c518, #ffd700, #f5c518);
    background-size: 300% 100%;
    /* gradient-border: static to avoid non-composited animation */
    box-shadow: 0 2px 8px rgba(245,197,24,0.4);
}
.nhp-hotshot-product-badge-label .material-icons {
    display: none;
}
/* Countdown with animated gradient border */
.nhp-hotshot-product-badge-countdown {
    position: relative;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #333;
    background: #fff;
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
}
.nhp-hotshot-product-badge-countdown::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f5c518, #ff8c00, #f5c518, #ffd700, #f5c518);
    background-size: 300% 100%;
    /* gradient-border: static to avoid non-composited animation */
    z-index: -1;
}
.nhp-hotshot-product-badge-countdown-prefix {
    color: #666;
    font-weight: 500;
}
@media (max-width: 768px) {
    .nhp-hotshot-product-badge {
        top: 6px;
        left: 6px;
    }
    .nhp-hotshot-product-badge-label {
        padding: 5px 10px;
        font-size: 11px;
    }
    .nhp-hotshot-product-badge-label .material-icons {
        font-size: 14px;
    }
    .nhp-hotshot-product-badge-countdown {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* ==========================================================================
   MOBILE: Uniform section spacing (8px each = 16px between stacked modules)
   ========================================================================== */
@media (max-width: 768px) {
    .nhp-section,
    .nhp-section-videos,
    .nhp-section-newsletter,
    .nhp-section-blogs,
    .nhp-section-category_showcase,
    .nhp-section-category_tiles,
    .nhp-section-brand_zone {
        margin-bottom: 8px !important;
    }

    .nhp-section:last-child {
        margin-bottom: 0 !important;
    }

    /* Override theme .home-container padding on mobile */
    .home-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
