/**
 * 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;
    --nhp-transition: 0.3s ease;
}

/* ========================================
   BASE STYLES
   ======================================== */
.nhp-homepage {
    width: 100%;
}

.nhp-section {
    margin-bottom: 40px;
}

.nhp-section:last-child {
    margin-bottom: 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: var(--nhp-transition);
}

.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
   ======================================== */
.nhp-hero-slider {
    position: relative;
    overflow: hidden;
}

.nhp-hero-slide {
    position: relative;
}

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

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

.nhp-hero-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    max-width: 50%;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--nhp-radius);
}

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

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

.nhp-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--nhp-primary);
    color: var(--nhp-secondary);
    font-weight: 600;
    border-radius: var(--nhp-radius);
    transition: var(--nhp-transition);
}

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

.nhp-hero-pagination {
    bottom: 20px !important;
}

.nhp-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #f5f5f5;
    opacity: 0.7;
}

.nhp-hero-pagination .swiper-pagination-bullet-active {
    background: var(--nhp-primary);
    opacity: 1;
}

.nhp-hero-prev,
.nhp-hero-next {
    color: #fff !important;
    background: rgba(0,0,0,0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.nhp-hero-prev:hover,
.nhp-hero-next:hover {
    background: var(--nhp-primary);
    color: var(--nhp-secondary) !important;
}

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

/* ========================================
   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: 25px 15px;
    background: #f5f5f5;
    border: 1px solid var(--nhp-border);
    border-radius: var(--nhp-radius);
    text-decoration: none;
    transition: var(--nhp-transition);
}

.nhp-tile:hover {
    border-color: var(--nhp-primary);
    box-shadow: var(--nhp-shadow);
    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
   ======================================== */
.nhp-product-carousel {
    position: relative;
}

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

.nhp-product-slide {
    height: auto;
}

.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: var(--nhp-transition);
}

.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: var(--nhp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.nhp-product-image {
    position: relative;
    overflow: hidden;
}

.nhp-product-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--nhp-transition);
}

.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;
}

.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: var(--nhp-transition);
}

.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: var(--nhp-transition);
}

.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-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.nhp-promo-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;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.nhp-newsletter {
    position: relative;
    padding: 60px 0;
    color: #fff;
    overflow: hidden;
}

.nhp-newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.nhp-newsletter-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.nhp-newsletter-text {
    flex: 1;
    min-width: 250px;
}

.nhp-newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
}

.nhp-newsletter-subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin: 0;
}

.nhp-newsletter-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

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

.nhp-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--nhp-radius);
    font-size: 15px;
}

.nhp-newsletter-btn {
    padding: 15px 30px;
    background: var(--nhp-primary);
    color: var(--nhp-secondary);
    border: none;
    border-radius: var(--nhp-radius);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--nhp-transition);
}

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

.nhp-newsletter-privacy {
    margin-top: 15px;
    font-size: 13px;
}

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

.nhp-newsletter-privacy input {
    margin-top: 3px;
}

.nhp-newsletter-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: var(--nhp-radius);
    font-size: 14px;
}

.nhp-newsletter-message.success {
    background: var(--nhp-success);
}

.nhp-newsletter-message.error {
    background: var(--nhp-danger);
}

/* ========================================
   HOTSHOT - Gorący Strzał (x-kom style)
   ======================================== */
.nhp-hotshot {
    background: #f5f5f5;
    padding: 30px 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: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.nhp-hotshot-wrapper > * {
    height: 100%;
}

/* Hot Shot Main Card (Left) - with animated gradient border */
.nhp-hotshot-main {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 3px;
    border-radius: 14px;
    background: linear-gradient(90deg, #f5c518, #ff8c00, #f5c518, #ffd700, #f5c518);
    background-size: 300% 100%;
    animation: nhp-gradient-border 3s linear infinite, nhp-glow 3s linear infinite;
}

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

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

@keyframes nhp-gradient-border {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes nhp-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(245, 197, 24, 0.15); }
    25% { box-shadow: 0 0 15px rgba(255, 140, 0, 0.35), 0 0 25px rgba(255, 140, 0, 0.15); }
    50% { box-shadow: 0 0 8px rgba(245, 197, 24, 0.15); }
    75% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.15); }
}

.nhp-hotshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    border-radius: 11px 11px 0 0;
}

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

.nhp-hotshot-discount-badge {
    background: #f0fdf4;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
}

.nhp-hotshot-discount-label {
    display: block;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
}

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

/* Slider */
.nhp-hotshot-slider {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nhp-hotshot-slide {
    display: none;
    padding: 0 20px 15px;
    flex: 1;
    flex-direction: column;
}

.nhp-hotshot-slide.active {
    display: flex;
}

/* Product Image - fixed height container */
.nhp-hotshot-image {
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
    background: #f5f5f5;
    transition: transform 0.3s ease;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nhp-hotshot-image img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

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

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

.nhp-hotshot-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 12px;
    color: #1a1a1a;
    min-height: calc(18px * 1.35 * 2); /* Always 2 lines height */
    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: 8px;
}

.nhp-hotshot-price-current {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.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%;
    background: linear-gradient(90deg, #f43f5e 0%, #fb7185 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Countdown - Clean style with dividers */
.nhp-hotshot-countdown {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.nhp-hotshot-countdown-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

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

.nhp-hotshot-countdown-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    text-align: center;
    min-width: auto;
    position: relative;
}

/* Vertical divider between items */
.nhp-hotshot-countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #ddd;
}

.nhp-hotshot-countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.nhp-hotshot-countdown-unit {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: lowercase;
    margin-top: 2px;
}

/* 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: all 0.3s ease;
    margin-top: auto;
}

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

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

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

/* Arrow Navigation */
.nhp-hotshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 3px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 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%;
    animation: nhp-gradient-border 3s linear infinite;
}

.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: 20px;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.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);
    gap: 15px;
    flex: 1;
    align-content: start;
}

.nhp-hotshot-grid .nhp-grid-product {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.nhp-hotshot-grid .nhp-grid-product:hover {
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.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: #f5f5f5;
    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 {
    height: 24px;
    margin-bottom: 6px;
}

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

.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: var(--nhp-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 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: #f5f5f5;
}

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

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

.nhp-hotshot-grid .nhp-grid-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

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

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

/* ========================================
   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 {
        margin-bottom: 30px;
    }

    .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-hero-content {
        position: static;
        max-width: 100%;
        border-radius: 0;
        transform: none;
    }

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

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

    .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-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .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-promo-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nhp-hotshot-grid .nhp-products-grid {
        grid-template-columns: repeat(3, 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);
    }
}

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

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

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

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

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

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

    .nhp-hotshot-discount-badge {
        padding: 5px 8px;
    }

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

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

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

    .nhp-hotshot-image {
        padding: 15px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 180px;
    }

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

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

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

    .nhp-hotshot-price-old {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .nhp-hotshot-countdown {
        padding: 10px 15px;
        margin-bottom: 8px;
        gap: 6px;
    }

    .nhp-hotshot-countdown-label {
        font-size: 11px;
    }

    .nhp-hotshot-countdown-item {
        padding: 0 12px;
    }

    .nhp-hotshot-countdown-item:not(:last-child)::after {
        height: 28px;
    }

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

    .nhp-hotshot-countdown-unit {
        font-size: 9px;
    }

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

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

    /* Arrow navigation - smaller on mobile */
    .nhp-hotshot-nav {
        width: 36px;
        height: 36px;
        padding: 2px;
    }

    .nhp-hotshot-nav::before {
        inset: 2px;
    }

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

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

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

    /* Grid becomes horizontal carousel on mobile */
    .nhp-hotshot-grid {
        overflow: hidden;
    }

    .nhp-hotshot-grid .nhp-grid-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .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-bottom: 10px;
        margin: 0;
        padding-left: 0;
        padding-right: 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;
    }

    .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: 18px;
        margin-bottom: 4px;
    }

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

    .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 {
        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: 16px;
        margin-bottom: 3px;
    }

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

    .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: 40px 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: 1400px;
    margin: 0 auto;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.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: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nhp-video-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    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: #e5e5e5;
}

.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: all 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: #f5f5f5;
}

.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: all 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: 30px 0;
    }

    .nhp-videos .nhp-container {
        padding: 20px 15px;
        margin: 0 15px;
        border-radius: 12px;
    }

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

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

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

    .nhp-youtube-icon {
        width: 24px;
        height: 17px;
    }

    .nhp-videos-track {
        gap: 12px;
    }

    .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: 40px 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: 1400px;
    margin: 0 auto;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.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: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nhp-blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    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: 16/9;
    background: #e5e5e5;
}

.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: #f5f5f5;
}

.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: all 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: 30px 0;
    }

    .nhp-blogs .nhp-container {
        padding: 20px 15px;
        margin: 0 15px;
        border-radius: 12px;
    }

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

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

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

    .nhp-blogs-track {
        gap: 12px;
    }

    .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 - x-kom.pl style
   ========================================================================== */

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

.nhp-category-showcase {
    padding: 40px 0 30px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    position: relative;
    overflow: visible;
}

.nhp-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.nhp-category-showcase .nhp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Top row: Title/CTA left + Hero image right */
.nhp-showcase-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
    min-height: 200px;
    position: relative;
}

.nhp-showcase-header {
    flex: 0 0 auto;
    max-width: 280px;
    padding: 30px 0 20px;
    z-index: 2;
}

.nhp-showcase-pretitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.nhp-showcase-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.1;
}

.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: all 0.3s ease;
}

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

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

/* Hero image - large, on right side, BEHIND products */
.nhp-showcase-hero {
    position: absolute;
    right: 30px;
    top: -20px;
    z-index: 1;
}

.nhp-showcase-hero img {
    max-width: 480px;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Products section - no white background, ON TOP of hero image */
.nhp-showcase-products {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: -30px;
    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: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.2s ease;
    position: relative;
}

.nhp-showcase-product:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Cart button on hover */
.nhp-showcase-cart-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: #f5a623;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

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

.nhp-showcase-cart-btn:hover {
    background: #e6951e;
    transform: scale(1.1);
}

.nhp-showcase-cart-btn i {
    font-size: 22px;
    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: #f5f5f5;
    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: #f5f5f5;
}

.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 at right side near hero */
.nhp-showcase-nav-wrap {
    position: absolute;
    right: 30px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.nhp-showcase-nav {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nhp-showcase-nav:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

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

.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 */
@media (max-width: 768px) {
    .nhp-category-showcase {
        padding: 25px 0 20px;
    }

    .nhp-category-showcase .nhp-container {
        padding: 0 15px;
    }

    .nhp-showcase-top {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        margin-bottom: 15px;
    }

    .nhp-showcase-header {
        max-width: 100%;
        padding: 10px 0;
    }

    .nhp-showcase-pretitle {
        font-size: 14px;
    }

    .nhp-showcase-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .nhp-showcase-hero {
        position: relative;
        right: auto;
        top: auto;
        align-self: flex-end;
        margin-top: -80px;
    }

    .nhp-showcase-hero img {
        max-width: 180px;
        max-height: 160px;
    }

    .nhp-showcase-products {
        margin-top: 10px;
    }

    .nhp-showcase-track {
        gap: 10px;
        padding: 5px 0 15px;
    }

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

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

    .nhp-showcase-product-img {
        height: 120px;
        margin-bottom: 6px;
    }

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

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

    .nhp-showcase-price {
        font-size: 15px;
    }

    .nhp-showcase-nav-wrap {
        display: none;
    }
}

/* ==========================================================================
   CATEGORY TILES SECTION - x-kom.pl style
   ========================================================================== */

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

.nhp-category-tiles {
    padding: 30px 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: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.nhp-tile {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 180px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nhp-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.nhp-tile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    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: all 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 {
        min-width: 140px;
        padding: 15px 12px;
    }

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

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

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

    .nhp-tiles-track {
        gap: 10px;
    }

    .nhp-tile {
        min-width: 120px;
        padding: 12px 10px;
        border-radius: 10px;
    }

    .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 - x-kom.pl 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: 30px 0;
    border-radius: 12px;
    margin: 20px 0;
}

.nhp-brand-zone .nhp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.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: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    align-items: center;
    flex: 1;
}

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

.nhp-brand-item {
    flex: 0 0 auto;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.nhp-brand-nav {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nhp-brand-nav:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

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

/* Grayscale effect - applied conditionally */
.nhp-brand-grayscale .nhp-brand-item {
    opacity: 0.7;
    filter: grayscale(100%);
}

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

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

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

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

    .nhp-brand-zone .nhp-container {
        padding: 0 15px;
    }

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

    .nhp-brand-track {
        gap: 20px;
    }

    .nhp-brand-item {
        min-width: 90px;
        height: 45px;
    }

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

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