/*
 * Theme Name: NextGen Peptides
 * Template: themify-shoppe
 *
 * NextGen Peptides - Complete Design System
 * Dark e-commerce theme with blue (#0074ba) accent
 */

/* ==========================================================
   CSS CUSTOM PROPERTIES
   ========================================================== */
:root {
    /* Colors */
    --ngp-primary: #0074ba;
    --ngp-primary-dark: #005a8c;
    --ngp-primary-light: #0090e8;
    --ngp-primary-soft: rgba(0, 116, 186, 0.12);
    --ngp-primary-soft-border: rgba(0, 116, 186, 0.45);

    /* Backgrounds */
    --ngp-bg-black: #000000;
    --ngp-bg-dark: #0a0a0a;
    --ngp-bg-card: #051019;
    --ngp-bg-card-hover: #0a1a2a;

    /* Text */
    --ngp-text-white: #ffffff;
    --ngp-text-light: #e8f6ff;
    --ngp-text-muted: #8db9d6;
    --ngp-text-dim: #5a8aa8;

    /* Fonts */
    --ngp-font-family: 'Inter', Arial, Helvetica, sans-serif;
    --ngp-font-size-xs: 12px;
    --ngp-font-size-sm: 13px;
    --ngp-font-size-base: 15px;
    --ngp-font-size-md: 16px;
    --ngp-font-size-lg: 20px;
    --ngp-font-size-xl: 24px;
    --ngp-font-size-2xl: 32px;
    --ngp-font-size-3xl: 42px;

    /* Borders */
    --ngp-border-subtle: rgba(0, 116, 186, 0.15);
    --ngp-border-medium: rgba(0, 116, 186, 0.3);
    --ngp-border-strong: rgba(0, 116, 186, 0.45);

    /* Radius */
    --ngp-radius-sm: 4px;
    --ngp-radius-md: 12px;
    --ngp-radius-lg: 16px;
    --ngp-radius-xl: 20px;
    --ngp-radius-full: 999px;

    /* Shadows */
    --ngp-shadow-card: 0 10px 30px rgba(0, 116, 186, 0.10);
    --ngp-shadow-card-hover: 0 15px 40px rgba(0, 116, 186, 0.18);

    /* Transitions */
    --ngp-transition: all 0.3s ease;
    --ngp-transition-fast: all 0.15s ease;

    /* Layout */
    --ngp-max-width: 1200px;
    --ngp-header-height: 70px;
}

/* ==========================================================
   RESET & BASE
   ========================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    color: var(--ngp-text-white);
    line-height: 1.2;
    font-weight: 700;
}

/* ==========================================================
   SCROLLBAR
   ========================================================== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ngp-bg-black);
}
::-webkit-scrollbar-thumb {
    background: var(--ngp-primary);
    border-radius: var(--ngp-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ngp-primary-dark);
}

/* ==========================================================
   SELECTION
   ========================================================== */
::selection {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
}

/* ==========================================================
   UTILITY CLASSES
   ========================================================== */
.ngp-accent {
    color: var(--ngp-primary);
}

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

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

.ngp-hidden-mobile {
    display: block;
}
@media (max-width: 600px) {
    .ngp-hidden-mobile { display: none !important; }
}

.ngp-hidden-desktop {
    display: none !important;
}
@media (max-width: 600px) {
    .ngp-hidden-desktop { display: block !important; }
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.ngp-top-bar {
    width: 100%;
    background: var(--ngp-bg-dark);
    padding: 8px 0;
    text-align: center;
    font-size: var(--ngp-font-size-sm);
    color: var(--ngp-text-white);
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--ngp-border-subtle);
}

.ngp-top-bar p {
    margin: 0;
}

/* ==========================================================
   HEADER
   ========================================================== */
.ngp-header {
    background: var(--ngp-bg-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--ngp-border-subtle);
}

.ngp-header-inner {
    max-width: var(--ngp-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ngp-header-logo img {
    height: 40px;
    width: auto;
}

.ngp-header-logo .ngp-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--ngp-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Main Navigation */
.ngp-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ngp-main-nav a {
    color: var(--ngp-text-white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.ngp-main-nav a:hover,
.ngp-main-nav a.current-menu-item > a,
.ngp-main-nav .current-menu-item > a {
    color: var(--ngp-primary);
}

.ngp-main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ngp-primary);
    transition: width 0.3s ease;
}

.ngp-main-nav a:hover::after {
    width: 100%;
}

/* Dropdown */
.ngp-main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-medium);
    border-radius: var(--ngp-radius-md);
    padding: 8px 0;
    min-width: 220px;
    box-shadow: var(--ngp-shadow-card);
    z-index: 1001;
}

.ngp-main-nav li:hover > .sub-menu {
    display: block;
}

.ngp-main-nav .sub-menu li {
    position: relative;
}

.ngp-main-nav .sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 0;
}

.ngp-main-nav .sub-menu a::after {
    display: none;
}

.ngp-main-nav .sub-menu a:hover {
    background: var(--ngp-primary-soft);
}

/* Search */
.ngp-header-search {
    position: relative;
}

.ngp-header-search input[type="text"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--ngp-text-white);
    padding: 10px 16px 10px 40px;
    border-radius: var(--ngp-radius-sm);
    font-size: 14px;
    width: 220px;
    transition: var(--ngp-transition);
    font-family: var(--ngp-font-family);
}

.ngp-header-search input[type="text"]:focus {
    outline: none;
    border-color: var(--ngp-primary);
    background: rgba(255, 255, 255, 0.12);
    width: 280px;
}

.ngp-header-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ngp-header-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ngp-text-muted);
    pointer-events: none;
}

/* Mobile menu toggle */
.ngp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ngp-text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .ngp-mobile-toggle { display: block; }
    .ngp-main-nav { display: none; }
    .ngp-header-search { display: none; }
    .ngp-main-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ngp-bg-card);
        border-bottom: 1px solid var(--ngp-border-medium);
        padding: 20px;
    }
    .ngp-main-nav.is-open ul {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.ngp-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ngp-bg-black);
}

.ngp-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

/* Fallback gradient if no video */
.ngp-hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 116, 186, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 116, 186, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a1a2a 50%, #000000 100%);
}

.ngp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.ngp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 60px;
}

.ngp-hero-content h1 {
    font-size: var(--ngp-font-size-3xl);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 24px;
}

.ngp-hero-content p {
    font-size: var(--ngp-font-size-md);
    line-height: 1.75;
    color: var(--ngp-text-light);
    margin-bottom: 14px;
}

.ngp-hero-content p strong {
    color: var(--ngp-text-white);
}

/* Hero Buttons */
.ngp-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.ngp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border: 2px solid var(--ngp-primary);
    background: transparent;
    color: var(--ngp-text-white);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--ngp-font-family);
    border-radius: var(--ngp-radius-sm);
    cursor: pointer;
    transition: var(--ngp-transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.ngp-btn:hover {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    box-shadow: 0 4px 20px rgba(0, 116, 186, 0.3);
}

.ngp-btn-filled {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
}

.ngp-btn-filled:hover {
    background: var(--ngp-primary-dark);
    border-color: var(--ngp-primary-dark);
}

@media (max-width: 768px) {
    .ngp-hero {
        min-height: 70vh;
    }
    .ngp-hero-content {
        padding: 40px 24px;
    }
    .ngp-hero-content h1 {
        font-size: var(--ngp-font-size-2xl);
    }
    .ngp-hero-buttons {
        flex-direction: column;
    }
    .ngp-btn {
        text-align: center;
    }
}

/* ==========================================================
   MARQUEE BANNER
   ========================================================== */
.ngp-marquee-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--ngp-primary);
    padding: 16px 0;
    position: relative;
}

.ngp-marquee-wrap::before,
.ngp-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ngp-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #1A73A8, transparent);
}

.ngp-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #1A73A8, transparent);
}

.ngp-marquee {
    width: 100%;
    overflow: hidden;
}

.ngp-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: ngpMarquee 22s linear infinite;
}

.ngp-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ngp-text-white);
    font-size: var(--ngp-font-size-base);
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
}

.ngp-marquee-icon {
    width: 16px;
    height: 16px;
    fill: var(--ngp-text-white);
    flex-shrink: 0;
    display: block;
}

@keyframes ngpMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ngp-marquee-wrap:hover .ngp-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .ngp-marquee-track {
        gap: 35px;
        animation-duration: 18s;
    }
    .ngp-marquee-track span {
        font-size: var(--ngp-font-size-sm);
    }
    .ngp-marquee-icon {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================
   SECTION HEADINGS
   ========================================================== */
.ngp-section-heading {
    text-align: center;
    margin-bottom: 45px;
    padding: 70px 20px 0;
}

.ngp-section-heading h2 {
    font-size: var(--ngp-font-size-2xl);
    font-weight: 700;
    margin-bottom: 12px;
}

.ngp-section-heading h6 {
    font-size: var(--ngp-font-size-md);
    color: var(--ngp-text-muted);
    font-weight: 400;
    margin: 0;
}

/* ==========================================================
   PRODUCTS SECTION
   ========================================================== */
.ngp-products-section {
    background: var(--ngp-bg-black);
    padding: 0 0 70px;
}

.ngp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: var(--ngp-max-width);
    margin: 0 auto;
}

.ngp-product-card {
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-strong);
    border-radius: var(--ngp-radius-lg);
    overflow: hidden;
    transition: var(--ngp-transition);
    position: relative;
}

.ngp-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ngp-shadow-card-hover);
    border-color: var(--ngp-primary);
}

.ngp-product-card .product-image {
    position: relative;
    padding: 20px 20px 0;
    text-align: center;
}

.ngp-product-card .product-image img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    transition: var(--ngp-transition);
}

.ngp-product-card:hover .product-image img {
    transform: scale(1.03);
}

.ngp-product-card .product-image .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    padding: 4px 10px;
    border-radius: var(--ngp-radius-sm);
    font-size: var(--ngp-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
}

.ngp-product-card .product-info {
    padding: 16px 20px 20px;
}

.ngp-product-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ngp-product-card h3 a {
    color: var(--ngp-text-white);
}

.ngp-product-card h3 a:hover {
    color: var(--ngp-primary);
}

.ngp-product-card .price {
    font-size: var(--ngp-font-size-md);
    color: var(--ngp-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ngp-product-card .price del {
    color: var(--ngp-text-dim);
    font-size: 14px;
}

.ngp-product-card .read-more {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--ngp-primary);
    color: var(--ngp-text-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--ngp-radius-sm);
    transition: var(--ngp-transition);
}

.ngp-product-card .read-more:hover {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
}

@media (max-width: 1024px) {
    .ngp-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ngp-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .ngp-products-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.ngp-why-section {
    background: var(--ngp-bg-black);
    padding: 80px 20px;
}

.ngp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ngp-why-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(5, 16, 25, 0.6);
    border: 1px solid var(--ngp-border-subtle);
    border-radius: var(--ngp-radius-md);
    transition: var(--ngp-transition);
}

.ngp-why-card:hover {
    border-color: var(--ngp-border-medium);
    background: rgba(5, 16, 25, 0.9);
}

.ngp-why-card .ngp-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--ngp-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ngp-why-card .ngp-icon svg,
.ngp-why-card .ngp-icon img {
    width: 24px;
    height: 24px;
}

.ngp-why-card h6 {
    font-size: var(--ngp-font-size-md);
    font-weight: 700;
    color: var(--ngp-text-white);
    margin-bottom: 6px;
}

.ngp-why-card p {
    font-size: 14px;
    color: var(--ngp-text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .ngp-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   CATEGORIES
   ========================================================== */
.ngp-categories-section {
    background: var(--ngp-bg-black);
    padding: 80px 20px;
}

.ngp-categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    max-width: var(--ngp-max-width);
    margin: 0 auto;
}

.ngp-category-item {
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: var(--ngp-radius-md);
    transition: var(--ngp-transition);
}

.ngp-category-item:hover {
    background: var(--ngp-primary-soft);
    transform: translateY(-4px);
}

.ngp-category-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--ngp-transition);
}

.ngp-category-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(0.7) sepia(1) saturate(10) hue-rotate(175deg);
}

.ngp-category-item span {
    display: block;
    font-size: 13px;
    color: var(--ngp-text-light);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .ngp-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .ngp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================
   REVIEWS SECTION
   ========================================================== */
.ngp-reviews-section {
    padding: 50px 0 70px;
    background: var(--ngp-bg-black);
    overflow: hidden;
}

.ngp-reviews-head {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 20px;
}

.ngp-reviews-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--ngp-radius-full);
    background: var(--ngp-primary-soft);
    border: 1px solid var(--ngp-border-strong);
    color: var(--ngp-primary);
    font-size: var(--ngp-font-size-xs);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ngp-reviews-heading {
    margin: 0 0 14px;
    font-size: var(--ngp-font-size-3xl);
    line-height: 1.12;
    color: var(--ngp-text-light);
    font-weight: 700;
}

.ngp-reviews-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: var(--ngp-font-size-md);
    line-height: 1.7;
    color: var(--ngp-text-muted);
}

.ngp-reviews-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.ngp-reviews-slider.is-dragging {
    cursor: grabbing;
}

.ngp-reviews-track {
    display: flex;
    gap: 0;
    will-change: transform;
    transition: transform 0.45s ease;
}

.ngp-review-card {
    flex: 0 0 33.3333%;
    min-width: 33.3333%;
    max-width: 33.3333%;
    box-sizing: border-box;
    padding: 0 12px;
}

.ngp-review-box {
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-strong);
    border-radius: var(--ngp-radius-xl);
    padding: 26px;
    box-shadow: var(--ngp-shadow-card);
    height: 100%;
    box-sizing: border-box;
}

.ngp-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.ngp-review-stars {
    color: var(--ngp-primary);
    font-size: 20px;
    letter-spacing: 2px;
}

.ngp-review-verified {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--ngp-radius-full);
    background: var(--ngp-primary-soft);
    border: 1px solid var(--ngp-border-medium);
    color: var(--ngp-primary);
    font-size: var(--ngp-font-size-xs);
    font-weight: 700;
    white-space: nowrap;
}

.ngp-review-title {
    margin: 0 0 12px;
    font-size: var(--ngp-font-size-lg);
    line-height: 1.3;
    color: var(--ngp-text-light);
    font-weight: 700;
}

.ngp-review-text {
    margin: 0 0 22px;
    color: var(--ngp-text-muted);
    font-size: var(--ngp-font-size-base);
    line-height: 1.75;
    min-height: 150px;
}

.ngp-review-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ngp-border-subtle);
}

.ngp-review-user strong {
    color: var(--ngp-text-light);
    font-size: var(--ngp-font-size-base);
}

.ngp-review-user span {
    color: var(--ngp-text-dim);
    font-size: 13px;
}

.ngp-reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.ngp-review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 116, 186, 0.28);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--ngp-transition);
}

.ngp-review-dot.active {
    background: var(--ngp-primary);
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(0, 116, 186, 0.14);
}

@media (max-width: 767px) {
    .ngp-reviews-section { padding: 34px 0 50px; }
    .ngp-reviews-heading { font-size: var(--ngp-font-size-2xl); }
    .ngp-reviews-subtext { font-size: 14px; }
    .ngp-review-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0 14px;
    }
    .ngp-review-box { padding: 22px 18px; }
    .ngp-review-title { font-size: 18px; }
    .ngp-review-text { min-height: auto; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.ngp-footer {
    background: var(--ngp-bg-black);
    padding: 60px 20px 0;
    border-top: 1px solid var(--ngp-border-subtle);
}

.ngp-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--ngp-max-width);
    margin: 0 auto;
    padding-bottom: 40px;
}

.ngp-footer h6 {
    font-size: var(--ngp-font-size-md);
    font-weight: 700;
    color: var(--ngp-text-white);
    margin-bottom: 18px;
}

.ngp-footer p {
    font-size: 14px;
    color: var(--ngp-text-muted);
    line-height: 1.75;
    margin-bottom: 6px;
}

.ngp-footer a {
    color: var(--ngp-text-muted);
    transition: var(--ngp-transition-fast);
}

.ngp-footer a:hover {
    color: var(--ngp-primary);
}

/* Newsletter */
.ngp-newsletter input[type="email"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--ngp-border-medium);
    color: var(--ngp-text-white);
    padding: 12px 16px;
    border-radius: var(--ngp-radius-sm);
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: var(--ngp-font-family);
}

.ngp-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ngp-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--ngp-primary);
}

.ngp-newsletter button {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--ngp-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: var(--ngp-font-family);
    transition: var(--ngp-transition);
}

.ngp-newsletter button:hover {
    background: var(--ngp-primary-dark);
}

/* Payment Icons */
.ngp-payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.ngp-payment-icons img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--ngp-transition);
}

.ngp-payment-icons img:hover {
    opacity: 1;
}

/* Disclaimer */
.ngp-footer-disclaimer {
    max-width: var(--ngp-max-width);
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid var(--ngp-border-subtle);
}

.ngp-footer-disclaimer p {
    font-size: 12px;
    color: var(--ngp-text-dim);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Bottom bar */
.ngp-footer-bottom {
    max-width: var(--ngp-max-width);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--ngp-border-subtle);
}

.ngp-footer-bottom p {
    font-size: 13px;
    color: var(--ngp-text-dim);
    margin: 0;
}

.ngp-footer-bottom p a {
    color: var(--ngp-primary);
}

.ngp-footer-social {
    display: flex;
    gap: 16px;
}

.ngp-footer-social a {
    color: var(--ngp-text-muted);
    font-size: 22px;
    transition: var(--ngp-transition);
}

.ngp-footer-social a:hover {
    color: var(--ngp-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ngp-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ngp-footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* ==========================================================
   WOOCOMMERCE OVERRIDES (Dark Theme)
   ========================================================== */
/* Shop page */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: var(--ngp-max-width);
    margin: 0 auto;
}

.woocommerce .product {
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-subtle);
    border-radius: var(--ngp-radius-lg);
    padding: 20px;
    transition: var(--ngp-transition);
    text-align: center;
}

.woocommerce .product:hover {
    transform: translateY(-4px);
    border-color: var(--ngp-border-medium);
    box-shadow: var(--ngp-shadow-card);
}

.woocommerce .product .woocommerce-loop-product__title {
    color: var(--ngp-text-white);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0 8px;
}

.woocommerce .product .price {
    color: var(--ngp-primary) !important;
}

.woocommerce .product .button {
    background: transparent;
    border: 1px solid var(--ngp-primary);
    color: var(--ngp-text-white);
    padding: 10px 20px;
    border-radius: var(--ngp-radius-sm);
    font-family: var(--ngp-font-family);
    transition: var(--ngp-transition);
}

.woocommerce .product .button:hover {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
}

/* Single product page */
.single-product .product {
    background: var(--ngp-bg-black);
    color: var(--ngp-text-white);
}

.single-product .product_title {
    color: var(--ngp-text-white);
}

.single-product .price {
    color: var(--ngp-primary) !important;
}

.single-product .woocommerce-tabs {
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-subtle);
    border-radius: var(--ngp-radius-md);
    padding: 24px;
}

.single-product .woocommerce-tabs .tabs li a {
    color: var(--ngp-text-muted);
}

.single-product .woocommerce-tabs .tabs li.active a {
    color: var(--ngp-primary);
}

.single-product .woocommerce-tabs .tab-content {
    color: var(--ngp-text-light);
}

/* Cart */
.woocommerce-cart table.cart {
    border-color: var(--ngp-border-subtle);
    color: var(--ngp-text-white);
}

.woocommerce-cart table.cart th {
    background: var(--ngp-bg-card);
    color: var(--ngp-text-white);
    border-color: var(--ngp-border-subtle);
}

.woocommerce-cart table.cart td {
    border-color: var(--ngp-border-subtle);
    color: var(--ngp-text-light);
}

/* Checkout */
.woocommerce-checkout .woocommerce-billing-fields label,
.woocommerce-checkout .woocommerce-shipping-fields label,
.woocommerce-checkout .woocommerce-additional-fields label {
    color: var(--ngp-text-light);
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: var(--ngp-bg-card);
    border: 1px solid var(--ngp-border-medium);
    color: var(--ngp-text-white);
    border-radius: var(--ngp-radius-sm);
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .cart_totals a.button,
.woocommerce .cart_totals button.button {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    border-radius: var(--ngp-radius-sm);
    font-family: var(--ngp-font-family);
    border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--ngp-primary-dark);
    color: var(--ngp-text-white);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: var(--ngp-bg-card);
    color: var(--ngp-text-muted);
    border: 1px solid var(--ngp-border-subtle);
    border-radius: var(--ngp-radius-sm);
    padding: 10px 16px;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    border-color: var(--ngp-primary);
}

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

/* ==========================================================
   AGE GATE OVERLAY
   ========================================================== */
.ngp-age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.ngp-age-gate-box {
    background: #3d3d3d;
    padding: 40px 36px;
    border-radius: var(--ngp-radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.ngp-age-gate-box h2 {
    color: var(--ngp-text-white);
    font-size: 24px;
    margin-bottom: 8px;
}

.ngp-age-gate-box > p {
    color: var(--ngp-text-white);
    font-size: 14px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.ngp-age-gate-box .ngp-age-fields {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ngp-age-gate-box input[type="text"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ngp-text-white);
    padding: 12px 8px;
    width: 70px;
    text-align: center;
    border-radius: var(--ngp-radius-sm);
    font-size: 16px;
    font-family: var(--ngp-font-family);
}

.ngp-age-gate-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ngp-age-gate-box button {
    display: block;
    width: 100%;
    background: var(--ngp-primary);
    color: var(--ngp-text-white);
    border: none;
    padding: 14px;
    border-radius: var(--ngp-radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--ngp-font-family);
    transition: var(--ngp-transition);
}

.ngp-age-gate-box button:hover {
    background: var(--ngp-primary-dark);
}

.ngp-age-gate-box .ngp-age-remember {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ngp-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.ngp-fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.ngp-fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.ngp-fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.ngp-fade-in-delay-4 { animation-delay: 0.4s; opacity: 0; }
