/* ============================================================
   PAHAL NUTRITION — FINAL CLEAN MERGED CSS
   Header + Footer + Mobile Menu + Front Page + Utilities
   PART 1 / 3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

/* ============================================================
   ROOT TOKENS
   ============================================================ */
:root {
    /* Brand */
    --pnx-primary: #0a5bd8;
    --pnx-primary-dark: #0847aa;
    --pnx-primary-hover: #07439f;
    --pnx-primary-soft: rgba(10, 91, 216, 0.08);
    --pnx-primary-glow: rgba(10, 91, 216, 0.16);

    --pnx-gold: #ffb31a;
    --pnx-gold-dark: #e89a00;
    --pnx-gold-soft: rgba(255, 179, 26, 0.12);
    --pnx-yellow: #ffcc00;
    --pnx-yellow-hover: #e6b800;

    /* Legacy aliases */
    --pnx-blue: #0a5bd8;
    --pnx-blue-dark: #0847aa;
    --pnx-blue-light: #3b82f6;
    --pnx-accent-gold: #ffb31a;
    --pnx-accent-gold-hover: #e89a00;

    /* Neutrals */
    --pnx-dark: #081120;
    --pnx-dark-2: #0d1728;
    --pnx-dark-3: #101b2f;
    --pnx-dark-bg: #07101d;

    --pnx-ink: #0f172a;
    --pnx-text: #334155;
    --pnx-text-light: #475569;
    --pnx-text-muted: #64748b;
    --pnx-muted: #64748b;

    --pnx-white: #ffffff;
    --pnx-surface: #ffffff;
    --pnx-surface-2: #f6f8fc;
    --pnx-surface-3: #eef3f9;
    --pnx-bg-white: #ffffff;
    --pnx-bg-light: #f8fafc;

    --pnx-border: rgba(15, 23, 42, 0.08);
    --pnx-border-strong: rgba(15, 23, 42, 0.14);
    --pnx-border-light: #f1f5f9;
    --pnx-border-subtle: rgba(255,255,255,0.08);

    /* Radius */
    --pnx-radius-xs: 6px;
    --pnx-radius-sm: 10px;
    --pnx-radius-md: 16px;
    --pnx-radius-lg: 22px;
    --pnx-radius-xl: 28px;
    --pnx-radius-full: 999px;
    --pnx-radius-pill: 999px;

    /* Shadows */
    --pnx-shadow-xs: 0 2px 10px rgba(15, 23, 42, 0.04);
    --pnx-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --pnx-shadow-md: 0 16px 40px rgba(15, 23, 42, 0.10);
    --pnx-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --pnx-shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.22);
    --pnx-shadow-header: 0 18px 40px rgba(0,0,0,0.24);
    --pnx-shadow-glow: 0 18px 40px rgba(10, 91, 216, 0.16);

    /* Motion */
    --pnx-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --pnx-transition-fast: all 0.2s ease;

    /* Sizing */
    --pnx-header-h: 72px;
    --pnx-header-h-mobile: 58px;
    --pnx-touch-min: 44px;
    --pnx-mobile-pad: 16px;

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    --font-body: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
    --pnx-font-heading: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
    --pnx-font-body: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
}

/* ============================================================
   GLOBAL / RESET / FIXES
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--pnx-text);
    background: var(--pnx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    animation: pnxFadeIn 0.35s ease;
}

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

body.pnx-body-locked,
body.pnx-video-open {
    overflow: hidden !important;
}

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

a {
    color: inherit;
}

h1, h2, h3, h4, h5, h6,
.pnx-section-title,
.pnx-v2-heading,
.pnx-video-heading,
.pnx-product-title,
.pnx-blog-card-title,
.pnx-blog-card-title a {
    font-family: var(--font-heading);
}

.pnx-hp-video-section ~ br,
.pnx-hp-video-section + br,
section + br,
.pnx-counter-wrap ~ br,
.pnx-video-modal-overlay ~ br {
    display: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.pnx-premium-header,
.pnx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #3058a7;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--pnx-transition);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.pnx-premium-header::before,
.pnx-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: #3058a7;
    /*background: linear-gradient(90deg, transparent, rgba(255,179,26,0.55), transparent);*/
    opacity: 0.7;
    pointer-events: none;
}

.pnx-premium-header.is-scrolled,
.pnx-header.is-scrolled {
    background: rgba(7,15,28,0.90);
    box-shadow: var(--pnx-shadow-header);
}

.pnx-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1380px;
    margin: 0 auto;
    height: var(--pnx-header-h);
    padding: 0 22px;
}

/* Logo */
.pnx-header-container .logo {
    flex-shrink: 0;
}

.pnx-header-container .logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.pnx-header-container .logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.pnx-logo-text {
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
}

.pnx-logo-text span {
    color: var(--pnx-gold);
}

/* Desktop Nav */
.main-nav,
.pnx-nav {
    flex-shrink: 0;
}

.main-nav ul,
.pnx-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav ul li,
.pnx-nav ul li {
    position: relative;
}

.main-nav ul li a,
.pnx-nav ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.72);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    white-space: nowrap;
    transition: var(--pnx-transition);
}

.main-nav ul li a::after,
.pnx-nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pnx-gold), #ffd66f);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a,
.pnx-nav ul li a:hover,
.pnx-nav ul li.current-menu-item > a,
.pnx-nav ul li.current_page_item > a {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item > a::after,
.main-nav ul li.current_page_item > a::after,
.pnx-nav ul li a:hover::after,
.pnx-nav ul li.current-menu-item > a::after,
.pnx-nav ul li.current_page_item > a::after {
    width: 58%;
}

/* Search */
.search-bar {
    flex: 1 1 auto;
    max-width: 180px;
}

.search-bar,
.search-bar .pnx-search-form {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--pnx-radius-pill);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    transition: var(--pnx-transition);
}

.search-bar:focus-within,
.search-bar .pnx-search-form:focus-within {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,179,26,0.65);
    box-shadow: 0 0 0 4px rgba(255,179,26,0.08);
}

.search-bar input,
.search-bar .pnx-search-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 13px;
}

.search-bar input::placeholder,
.search-bar .pnx-search-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

.search-bar button,
.search-bar .pnx-search-form button {
    border: 0;
    background: none;
    color: rgba(255,255,255,0.55);
    padding-left: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--pnx-transition);
}

.search-bar button:hover,
.search-bar .pnx-search-form button:hover {
    color: var(--pnx-gold);
}

/* Header actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.user-actions a,
.pnx-action-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    transition: var(--pnx-transition);
}

.user-actions a:hover,
.pnx-action-icon:hover {
    color: var(--pnx-gold);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

/* Cart badge */
.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 3px;
    right: -1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd36d, var(--pnx-gold));
    color: #111;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    border: 2px solid var(--pnx-dark);
    box-shadow: 0 6px 12px rgba(255,179,26,0.24);
}

.cart-count-lg {
    min-width: 20px;
    right: -4px;
    font-size: 8px;
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.pnx-hamburger {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--pnx-transition);
}

.pnx-hamburger:hover,
.pnx-hamburger:active {
    background: rgba(255,255,255,0.06);
}

.pnx-hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    display: block;
    transition: var(--pnx-transition);
    transform-origin: center;
}

.pnx-hamburger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.pnx-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.pnx-hamburger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.pnx-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(2,8,18,0.58);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pnx-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.pnx-mobile-menu {
    position: fixed;
    top: var(--pnx-header-h-mobile);
    left: 0;
    z-index: 999;
    width: 88%;
    max-width: 340px;
    height: calc(100svh - var(--pnx-header-h-mobile));
    background: linear-gradient(180deg, #09111f 0%, #07101b 100%);
    border-right: 1px solid rgba(255,255,255,0.08);
    box-shadow: 24px 0 44px rgba(0,0,0,0.24);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.pnx-mobile-menu.is-open {
    transform: translateX(0);
}

.pnx-mobile-menu-inner {
    padding: 18px 16px 24px;
}

.pnx-mobile-search {
    margin-bottom: 18px;
}

.pnx-mobile-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.pnx-mobile-search-form i {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
}

.pnx-mobile-search-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.pnx-mobile-search-form input::placeholder {
    color: rgba(255,255,255,0.45);
}

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

.pnx-mobile-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pnx-mobile-nav li:last-child {
    border-bottom: 0;
}

.pnx-mobile-nav li a {
    min-height: 48px;
    padding: 14px 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 700;
    transition: var(--pnx-transition);
}

.pnx-mobile-nav li a i {
    width: 18px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    transition: var(--pnx-transition);
}

.pnx-mobile-nav li a:hover,
.pnx-mobile-nav li a:active {
    color: var(--pnx-gold);
    padding-left: 8px;
}

.pnx-mobile-nav li a:hover i,
.pnx-mobile-nav li a:active i {
    color: var(--pnx-gold);
}

.pnx-mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.pnx-mob-action-btn {
    flex: 1;
    min-height: 44px;
    padding: 11px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--pnx-transition);
}

.pnx-mob-action-btn:hover,
.pnx-mob-action-btn:active {
    color: #111;
    background: linear-gradient(135deg, #ffd36d, var(--pnx-gold));
    border-color: transparent;
}

.pnx-mobile-contact-strip {
    margin-top: 18px;
    padding: 16px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.pnx-mobile-contact-strip p {
    margin: 0 0 8px;
    color: rgba(255,255,255,0.48);
    font-size: 12px;
}

.pnx-mobile-contact-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--pnx-gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
}

/* ============================================================
   COMMON SECTION HEADER
   ============================================================ */
.pnx-section-header {
    margin-bottom: clamp(20px, 3vw, 42px);
}

.pnx-section-header.text-center {
    text-align: center;
}

.pnx-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--pnx-primary);
    font-family: var(--font-heading);
}

.pnx-section-tag::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pnx-gold), #ffd56a);
}

.pnx-section-tag.no-line::before {
    display: none;
}

.pnx-section-title {
    margin: 0;
    color: var(--pnx-ink);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.pnx-section-title.text-white {
    color: var(--pnx-white);
}

/* ============================================================
   BUTTONS / SHOP NOW
   ============================================================ */
.pnx-v2-btn,
.pnx-btn-primary,
.pnx-btn-outline,
.shop-now-btn,
.shop-now-button,
.pnx-shop-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--pnx-touch-min);
    text-decoration: none;
    cursor: pointer;
    transition: var(--pnx-transition);
    font-family: var(--pnx-font-heading);
    font-weight: 800;
    letter-spacing: 0.06em;
    user-select: none;
}

.pnx-v2-btn,
.shop-now-btn,
.shop-now-button,
.pnx-shop-now-btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.pnx-v2-btn--primary,
.pnx-btn-primary,
.shop-now-btn,
.shop-now-button,
.pnx-shop-now-btn {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 28px rgba(10, 91, 216, 0.28);
}

.pnx-v2-btn--primary:hover,
.pnx-btn-primary:hover,
.shop-now-btn:hover,
.shop-now-button:hover,
.pnx-shop-now-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 91, 216, 0.34);
    background: linear-gradient(135deg, var(--pnx-primary-dark), #063785);
}

.pnx-v2-btn--secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pnx-v2-btn--secondary:hover {
    background: #fff;
    color: var(--pnx-ink);
    transform: translateY(-2px);
}

.pnx-btn-primary {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 13px;
    text-transform: uppercase;
}

.pnx-btn-outline {
    padding: 12px 22px;
    border-radius: 12px;
    background: #fff;
    color: var(--pnx-primary);
    border: 1px solid rgba(10, 91, 216, 0.16);
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: var(--pnx-shadow-xs);
}

.pnx-btn-outline:hover {
    background: var(--pnx-primary);
    border-color: var(--pnx-primary);
    color: #fff;
    transform: translateY(-2px);
}

.pnx-btn-primary i,
.pnx-btn-outline i,
.shop-now-btn i,
.shop-now-button i,
.pnx-shop-now-btn i {
    transition: transform 0.25s ease;
}

.pnx-btn-primary:hover i,
.pnx-btn-outline:hover i,
.shop-now-btn:hover i,
.shop-now-button:hover i,
.pnx-shop-now-btn:hover i {
    transform: translateX(3px);
}

/* ============================================================
   HERO
   ============================================================ */
/* =============================================
   HERO SECTION - MAIN WRAPPER
============================================== */
.pnx-v2-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #020817; /* Fallback dark background */
}

/* Slides Container */
.pnx-v2-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pnx-v2-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.pnx-v2-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Hero Image Styling - Bright & Sharp */
.pnx-v2-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    filter: brightness(1.1) contrast(1.05); /* Image ko clear aur bright banane ke liye */
    transition: transform 7s ease;
}

.pnx-v2-hero-slide.is-active img {
    transform: scale(1.06);
}

/* Transparent Overlay (No more heavy blackness) */
.pnx-v2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0) 50%, 
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* =============================================
   BUTTONS - CENTER BOTTOM PLACEMENT
============================================== */
.pnx-v2-bottom-actions {
    position: absolute;
    bottom: 80px; /* Desktop par niche se space */
    left: 0;
    width: 100%;
    z-index: 10;
}

.pnx-v2-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Button Base Styles */
.pnx-v2-btn {
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Primary Button (Yellow) */
.pnx-v2-btn--primary {
    background: #ffcc00;
    color: #000;
    border: 2px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

/* Secondary Button (Glass Effect) */
.pnx-v2-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pnx-v2-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.pnx-v2-btn--primary:hover {
    background: #e6b800;
    border-color: #e6b800;
}

/* =============================================
   PROGRESS BAR AT BOTTOM
============================================== */
.pnx-v2-hero-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 5;
}

.pnx-v2-hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ffa200);
    animation: pnxProgress 5s linear infinite;
}

@keyframes pnxProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* =============================================
   MOBILE RESPONSIVE (Auto-Adjust)
============================================== */
@media (max-width: 768px) {
    .pnx-v2-bottom-actions {
        bottom: 50px; /* Mobile par thoda adjust */
    }

    .pnx-v2-hero-actions {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 25px;
    }

    .pnx-v2-btn {
        width: 100%; /* Full width buttons for easy thumb-click */
        justify-content: center;
        font-size: 14px;
        padding: 14px 20px;
    }
}
/* =========================================================
   HERO MOBILE FINAL FIX
   Full banner visible + no huge empty dark area
   ========================================================= */
@media (max-width: 768px) {

    /* Hero full-screen mat rakho on mobile */
    .pnx-v2-hero {
        min-height: auto !important;
        height: auto !important;
        padding: 0 0 24px !important;
        background: #020817 !important;
        overflow: hidden;
    }

    /* old overlay off */
    .pnx-v2-hero::after {
        display: none !important;
    }

    /* slides area ko compact mobile banner banao */
    .pnx-v2-hero-slides {
        position: relative !important;
        inset: auto !important;
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: 220px;
        max-height: 320px;
        overflow: hidden;
        z-index: 0;
    }

    /* new overlay only on banner area */
    .pnx-v2-hero-slides::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 55%,
            rgba(0, 0, 0, 0.28) 100%
        );
        z-index: 2;
        pointer-events: none;
    }

    .pnx-v2-hero-slide {
        position: absolute;
        inset: 0;
    }

    /* full image visible */
    .pnx-v2-hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        filter: brightness(1.04) contrast(1.02) !important;
        background: #020817;
    }

    .pnx-v2-hero-slide.is-active img {
        transform: scale(1.01) !important; /* very slight zoom only */
    }

    /* buttons now image ke neeche aayenge */
    .pnx-v2-bottom-actions {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100%;
        margin-top: 18px;
        padding: 0 16px;
        z-index: 5;
    }

    .pnx-v2-hero-actions {
        flex-direction: column;
        gap: 14px;
        padding: 0 !important;
        align-items: stretch;
    }

    .pnx-v2-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 18px;
    }

    /* progress bar hide on mobile for cleaner look */
    .pnx-v2-hero-progress {
        display: none !important;
    }
}

/* Slightly smaller phones */
@media (max-width: 575px) {
    .pnx-v2-hero-slides {
        aspect-ratio: 1.75 / 1;
        min-height: 200px;
        max-height: 260px;
    }

    .pnx-v2-bottom-actions {
        margin-top: 16px;
        padding: 0 14px;
    }

    .pnx-v2-btn {
        padding: 13px 16px;
        font-size: 13.5px;
        border-radius: 12px;
    }
}


/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.pnx-hp-category-section {
    padding: 30px 0 40px;
    background: radial-gradient(circle at top left, rgba(10,91,216,0.035), transparent 28%), #fff;
    overflow: hidden;
}

.pnx-cat-scroll-wrapper {
    position: relative;
}

.pnx-cat-scroll-wrapper::before,
.pnx-cat-scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 2;
    pointer-events: none;
}

.pnx-cat-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.pnx-cat-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.pnx-cat-scroll-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 18px;
}

.pnx-cat-scroll-track::-webkit-scrollbar {
    display: none;
}

.pnx-cat-card {
    position: relative;
    flex: 0 0 auto;
    width: 132px;
    min-width: 132px;
    padding: 18px 12px 16px;
    border-radius: 20px;
    scroll-snap-align: start;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(180deg, #fff, #fbfcfe);
    border: 1px solid var(--pnx-border);
    box-shadow: var(--pnx-shadow-xs);
    transition: var(--pnx-transition);
    overflow: hidden;
}

.pnx-cat-card::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pnx-primary), var(--pnx-gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.pnx-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10,91,216,0.18);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.pnx-cat-card:hover::after {
    transform: scaleX(1);
}

.pnx-cat-thumb {
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eef3fa;
    background: #f8fbff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
    transition: var(--pnx-transition);
}

.pnx-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.pnx-cat-card:hover .pnx-cat-thumb {
    border-color: rgba(255,179,26,0.7);
    box-shadow: 0 12px 22px rgba(255, 179, 26, 0.18);
}

.pnx-cat-card:hover .pnx-cat-thumb img {
    transform: scale(1.08);
}

.pnx-cat-label {
    margin: 0 0 4px;
    color: var(--pnx-ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.pnx-cat-count-badge {
    margin: 0;
    font-size: 11px;
    color: var(--pnx-muted);
    font-weight: 600;
}

.pnx-cat-scroll-hint {
    display: none;
    margin-top: 6px;
    text-align: center;
    color: var(--pnx-muted);
    font-size: 11px;
    font-weight: 700;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.pnx-hp-products-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f7f9fd 0%, #f3f7fc 100%);
}

.pnx-product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fcfdff);
    border: 1px solid var(--pnx-border);
    box-shadow: var(--pnx-shadow-xs);
    transition: var(--pnx-transition);
}

.pnx-product-card:hover,
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translateY(-6px);
    border-color: rgba(10,91,216,0.10);
    box-shadow: var(--pnx-shadow-md);
}

.pnx-product-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, #f9fbff, #f2f6fc);
}

.pnx-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pnx-product-card:hover .pnx-product-image img {
    transform: scale(1.05);
}

.pnx-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pnx-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: var(--pnx-radius-pill);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pnx-badge--sale {
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.26);
}

.pnx-badge--new {
    color: #111827;
    background: linear-gradient(135deg, #ffd36d, #ffb31a);
    box-shadow: 0 6px 16px rgba(255, 179, 26, 0.22);
}

/* Quick View / Wishlist wrapper */
.pnx-product-actions,
.pnx-product-card .product-actions,
.pnx-product-card .pnx-card-actions,
.woocommerce ul.products li.product .pnx-product-actions,
.woocommerce-page ul.products li.product .pnx-product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    bottom: auto;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .28s ease;
}

.pnx-product-card:hover .pnx-product-actions,
.pnx-product-card:hover .product-actions,
.pnx-product-card:hover .pnx-card-actions,
.pnx-product-card:focus-within .pnx-product-actions,
.pnx-product-card:focus-within .product-actions,
.pnx-product-card:focus-within .pnx-card-actions,
.woocommerce ul.products li.product:hover .pnx-product-actions,
.woocommerce-page ul.products li.product:hover .pnx-product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Remove plugin random margins */
.pnx-product-card .tinv-wraper,
.pnx-product-card .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product .tinv-wraper,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist,
.woocommerce-page ul.products li.product .tinv-wraper,
.woocommerce-page ul.products li.product .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    line-height: 1;
}

/* Action buttons */
.pnx-action-btn,
.pnx-product-card .quick-view,
.pnx-product-card .wishlist-btn,
.pnx-product-card .wishlist-button,
.pnx-product-card .woosq-btn,
.pnx-product-card .yith-wcqv-button,
.pnx-product-card .add_to_wishlist,
.pnx-product-card .tinvwl_add_to_wishlist_button,
.pnx-product-card .yith-wcwl-add-button a,
.pnx-product-card .yith-wcwl-wishlistaddedbrowse a,
.pnx-product-card .yith-wcwl-wishlistexistsbrowse a,
.woocommerce ul.products li.product .woosq-btn,
.woocommerce ul.products li.product .yith-wcqv-button,
.woocommerce ul.products li.product .add_to_wishlist,
.woocommerce ul.products li.product .tinvwl_add_to_wishlist_button,
.woocommerce ul.products li.product .yith-wcwl-add-button a,
.woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a,
.woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a,
.woocommerce-page ul.products li.product .woosq-btn,
.woocommerce-page ul.products li.product .yith-wcqv-button,
.woocommerce-page ul.products li.product .add_to_wishlist,
.woocommerce-page ul.products li.product .tinvwl_add_to_wishlist_button,
.woocommerce-page ul.products li.product .yith-wcwl-add-button a,
.woocommerce-page ul.products li.product .yith-wcwl-wishlistaddedbrowse a,
.woocommerce-page ul.products li.product .yith-wcwl-wishlistexistsbrowse a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    min-width: 44px;
    height: 44px;
    padding: 0 14px !important;
    border: 1px solid rgba(15, 23, 42, 0.10) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.98) !important;
    color: var(--pnx-dark, #081120) !important;
    box-shadow: 0 10px 24px rgba(15,23,42,0.10) !important;
    text-decoration: none !important;
    line-height: 1 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    transition: all .28s ease !important;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pnx-action-btn i,
.pnx-action-btn svg,
.pnx-product-card .quick-view i,
.pnx-product-card .quick-view svg,
.pnx-product-card .wishlist-btn i,
.pnx-product-card .wishlist-btn svg,
.pnx-product-card .wishlist-button i,
.pnx-product-card .wishlist-button svg,
.pnx-product-card .woosq-btn i,
.pnx-product-card .woosq-btn svg,
.pnx-product-card .yith-wcqv-button i,
.pnx-product-card .yith-wcqv-button svg,
.pnx-product-card .add_to_wishlist i,
.pnx-product-card .add_to_wishlist svg,
.pnx-product-card .tinvwl_add_to_wishlist_button i,
.pnx-product-card .tinvwl_add_to_wishlist_button svg {
    width: 16px;
    height: 16px;
    font-size: 16px;
    flex: 0 0 16px;
}

.pnx-action-btn:hover,
.pnx-product-card .quick-view:hover,
.pnx-product-card .wishlist-btn:hover,
.pnx-product-card .wishlist-button:hover,
.pnx-product-card .woosq-btn:hover,
.pnx-product-card .yith-wcqv-button:hover,
.pnx-product-card .add_to_wishlist:hover,
.pnx-product-card .tinvwl_add_to_wishlist_button:hover,
.pnx-product-card .yith-wcwl-add-button a:hover,
.pnx-product-card .yith-wcwl-wishlistaddedbrowse a:hover,
.pnx-product-card .yith-wcwl-wishlistexistsbrowse a:hover,
.woocommerce ul.products li.product .woosq-btn:hover,
.woocommerce ul.products li.product .yith-wcqv-button:hover,
.woocommerce ul.products li.product .add_to_wishlist:hover,
.woocommerce ul.products li.product .tinvwl_add_to_wishlist_button:hover,
.woocommerce ul.products li.product .yith-wcwl-add-button a:hover,
.woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a:hover,
.woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a:hover {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark)) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(10, 91, 216, 0.25) !important;
}

.pnx-product-card .wishlist-btn.is-active,
.pnx-product-card .wishlist-button.is-active,
.pnx-product-card .add_to_wishlist.added,
.pnx-product-card .tinvwl-product-in-list .tinvwl_add_to_wishlist_button,
.pnx-product-card .yith-wcwl-wishlistaddedbrowse a,
.pnx-product-card .yith-wcwl-wishlistexistsbrowse a,
.woocommerce ul.products li.product .tinvwl-product-in-list .tinvwl_add_to_wishlist_button,
.woocommerce-page ul.products li.product .tinvwl-product-in-list .tinvwl_add_to_wishlist_button {
    background: linear-gradient(135deg, var(--pnx-gold), #f59e0b) !important;
    color: #111827 !important;
    border-color: transparent !important;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.24) !important;
}

.pnx-action-btn:focus-visible,
.pnx-product-card .quick-view:focus-visible,
.pnx-product-card .wishlist-btn:focus-visible,
.pnx-product-card .wishlist-button:focus-visible,
.pnx-product-card .woosq-btn:focus-visible,
.pnx-product-card .yith-wcqv-button:focus-visible,
.pnx-product-card .add_to_wishlist:focus-visible,
.pnx-product-card .tinvwl_add_to_wishlist_button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255,255,255,.95),
        0 0 0 6px rgba(10,91,216,.22) !important;
}

.pnx-product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px;
}

.pnx-product-cat-label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pnx-muted);
}

.pnx-product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    margin: 0 0 8px;
    color: var(--pnx-ink);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 800;
    transition: color 0.25s ease;
}

.pnx-product-title:hover {
    color: var(--pnx-primary);
}

.pnx-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.pnx-product-rating .stars {
    display: flex;
    gap: 2px;
    color: var(--pnx-gold);
    font-size: 11px;
}

.pnx-product-rating .rating-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--pnx-muted);
}

.pnx-product-price {
    margin-top: auto;
    margin-bottom: 12px;
    color: var(--pnx-primary);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.pnx-product-price del {
    margin-right: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pnx-muted);
}

.pnx-product-price ins {
    text-decoration: none;
}

.pnx-add-to-cart-btn {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-family: var(--pnx-font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pnx-ink);
    background: #f8fbff;
    border: 1px solid rgba(10,91,216,0.10);
    transition: var(--pnx-transition);
}

.pnx-add-to-cart-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    border-color: transparent;
    box-shadow: var(--pnx-shadow-glow);
}
/* ============================================================
   PAHAL NUTRITION — FINAL CLEAN MERGED CSS
   PART 2 / 3
   About + Video + Popup + FAQ + Blog + Testimonials + CTA
   ============================================================ */

/* ============================================================
   ABOUT
   ============================================================ */
.pnx-hp-about-section {
    padding: 84px 0;
    background: #fff;
    overflow: hidden;
}

.pnx-about-img-wrap {
    position: relative;
    padding-right: 32px;
}

.pnx-about-img-wrap figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--pnx-shadow-lg);
}

.pnx-about-img-wrap figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pnx-about-img-wrap:hover figure img {
    transform: scale(1.03);
}

.pnx-about-badge {
    position: absolute;
    right: 0;
    bottom: 26px;
    padding: 18px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(10, 91, 216, 0.28);
}

.pnx-about-badge strong {
    display: block;
    line-height: 1;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--pnx-gold);
}

.pnx-about-badge span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pnx-about-content {
    padding-left: 24px;
}

.pnx-about-text {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--pnx-text-light);
}

.pnx-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-bottom: 30px;
}

.pnx-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pnx-ink);
    font-size: 13px;
    font-weight: 700;
}

.pnx-about-feature i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pnx-primary-soft);
    color: var(--pnx-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.pnx-hp-video-section {
    position: relative;
    padding: 100px 0 84px;
    background:
        radial-gradient(circle at top right, rgba(255,179,26,0.08), transparent 24%),
        linear-gradient(180deg, #07101d 0%, #040a14 100%);
    color: #fff;
    overflow: hidden;
}

.pnx-hp-video-bg-overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.pnx-hp-video-container {
    position: relative;
    z-index: 1;
}

.pnx-video-subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--pnx-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pnx-video-subheading::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--pnx-gold);
    border-radius: 999px;
}

.pnx-video-heading {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.pnx-video-text {
    max-width: 92%;
    margin-bottom: 28px;
    color: rgba(226,232,240,0.82);
    font-size: 15px;
    line-height: 1.85;
}

.pnx-play-wrapper {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pnx-play-btn {
    position: relative;
    width: 88px;
    height: 88px;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    box-shadow: 0 16px 36px rgba(10, 91, 216, 0.34);
    transition: var(--pnx-transition);
}

.pnx-play-btn i {
    font-size: 24px;
    margin-left: 4px;
}

.pnx-play-btn:hover {
    transform: scale(1.06);
    color: #111;
    background: linear-gradient(135deg, #ffd36d, var(--pnx-gold));
    box-shadow: 0 20px 44px rgba(255, 179, 26, 0.28);
}

.pnx-play-btn::before,
.pnx-play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(10, 91, 216, 0.35);
    animation: pnxPulse 2.6s linear infinite;
}

.pnx-play-btn::after {
    animation-delay: 1.3s;
}

.pnx-counter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pnx-counter-item {
    position: relative;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.pnx-counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16%;
    right: 0;
    width: 1px;
    height: 68%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}

.pnx-counter-item h2 {
    margin: 0 0 4px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg, #ffb31a 0%, #ffe08b 50%, #ffb31a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pnx-counter-item p {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============================================================
   VIDEO MODAL / POPUP
   Supports:
   #pnxVideoPopup
   .pnxVideoPopup
   .pnx-video-popup-overlay
   .pnx-video-modal-overlay
   #pnxVideoModal
   ============================================================ */
#pnxVideoPopup,
.pnxVideoPopup,
.pnx-video-popup-overlay,
.pnx-video-modal-overlay,
#pnxVideoModal {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 14, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

/* Open states */
#pnxVideoPopup.is-open,
#pnxVideoPopup.active,
#pnxVideoPopup.show,
.pnxVideoPopup.is-open,
.pnxVideoPopup.active,
.pnxVideoPopup.show,
.pnx-video-popup-overlay.is-open,
.pnx-video-popup-overlay.active,
.pnx-video-popup-overlay.show,
.pnx-video-modal-overlay.is-open,
.pnx-video-modal-overlay.active,
.pnx-video-modal-overlay.show,
#pnxVideoModal.is-open,
#pnxVideoModal.active,
#pnxVideoModal.show,
.pnx-video-popup-overlay[aria-hidden="false"],
#pnxVideoPopup[aria-hidden="false"],
.pnxVideoPopup[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* If JS uses inline display block/flex */
#pnxVideoPopup[style*="display:block"],
#pnxVideoPopup[style*="display: block"],
#pnxVideoPopup[style*="display:flex"],
#pnxVideoPopup[style*="display: flex"],
.pnxVideoPopup[style*="display:block"],
.pnxVideoPopup[style*="display: block"],
.pnxVideoPopup[style*="display:flex"],
.pnxVideoPopup[style*="display: flex"],
.pnx-video-popup-overlay[style*="display:block"],
.pnx-video-popup-overlay[style*="display: block"],
.pnx-video-popup-overlay[style*="display:flex"],
.pnx-video-popup-overlay[style*="display: flex"],
.pnx-video-modal-overlay[style*="display:block"],
.pnx-video-modal-overlay[style*="display: block"],
.pnx-video-modal-overlay[style*="display:flex"],
.pnx-video-modal-overlay[style*="display: flex"],
#pnxVideoModal[style*="display:block"],
#pnxVideoModal[style*="display: block"],
#pnxVideoModal[style*="display:flex"],
#pnxVideoModal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Popup box */
#pnxVideoPopup .pnx-video-popup,
#pnxVideoPopup .pnx-video-popup-box,
#pnxVideoPopup .pnx-video-modal-box,
#pnxVideoPopup .popup-content,
.pnxVideoPopup .pnx-video-popup,
.pnxVideoPopup .pnx-video-popup-box,
.pnxVideoPopup .pnx-video-modal-box,
.pnxVideoPopup .popup-content,
.pnx-video-popup-overlay .pnx-video-popup,
.pnx-video-popup-overlay .pnx-video-popup-box,
.pnx-video-popup-overlay .pnx-video-modal-box,
.pnx-video-popup-overlay .popup-content,
.pnx-video-modal-overlay .pnx-video-popup,
.pnx-video-modal-overlay .pnx-video-popup-box,
.pnx-video-modal-overlay .pnx-video-modal-box,
.pnx-video-modal-overlay .popup-content,
#pnxVideoModal .pnx-video-popup,
#pnxVideoModal .pnx-video-popup-box,
#pnxVideoModal .pnx-video-modal-box,
#pnxVideoModal .popup-content {
    position: relative;
    width: min(920px, 100%);
    background: #000;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.28s ease;
}

#pnxVideoPopup.is-open .pnx-video-popup,
#pnxVideoPopup.active .pnx-video-popup,
#pnxVideoPopup.show .pnx-video-popup,
.pnxVideoPopup.is-open .pnx-video-popup,
.pnxVideoPopup.active .pnx-video-popup,
.pnxVideoPopup.show .pnx-video-popup,
.pnx-video-popup-overlay.is-open .pnx-video-popup,
.pnx-video-popup-overlay.active .pnx-video-popup,
.pnx-video-popup-overlay.show .pnx-video-popup,
.pnx-video-modal-overlay.is-open .pnx-video-popup,
.pnx-video-modal-overlay.active .pnx-video-popup,
.pnx-video-modal-overlay.show .pnx-video-popup,
#pnxVideoModal.is-open .pnx-video-popup,
#pnxVideoModal.active .pnx-video-popup,
#pnxVideoModal.show .pnx-video-popup,
#pnxVideoPopup.is-open .pnx-video-popup-box,
#pnxVideoPopup.active .pnx-video-popup-box,
#pnxVideoPopup.show .pnx-video-popup-box,
.pnxVideoPopup.is-open .pnx-video-popup-box,
.pnxVideoPopup.active .pnx-video-popup-box,
.pnxVideoPopup.show .pnx-video-popup-box,
.pnx-video-popup-overlay.is-open .pnx-video-popup-box,
.pnx-video-popup-overlay.active .pnx-video-popup-box,
.pnx-video-popup-overlay.show .pnx-video-popup-box,
.pnx-video-modal-overlay.is-open .pnx-video-modal-box,
.pnx-video-modal-overlay.active .pnx-video-modal-box,
.pnx-video-modal-overlay.show .pnx-video-modal-box,
#pnxVideoModal.is-open .pnx-video-modal-box,
#pnxVideoModal.active .pnx-video-modal-box,
#pnxVideoModal.show .pnx-video-modal-box {
    transform: translateY(0) scale(1);
}

/* Iframe / embeds */
#pnxVideoPopup iframe,
#pnxVideoPopup video,
.pnxVideoPopup iframe,
.pnxVideoPopup video,
.pnx-video-popup-overlay iframe,
.pnx-video-popup-overlay video,
.pnx-video-modal-overlay iframe,
.pnx-video-modal-overlay video,
#pnxVideoModal iframe,
#pnxVideoModal video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    border: 0;
    background: #000;
}

/* Close button */
#pnxVideoPopup .pnx-video-close,
#pnxVideoPopup .pnx-video-popup-close,
#pnxVideoPopup .pnx-video-modal-close,
#pnxVideoPopup .popup-close,
#pnxVideoPopup .close,
.pnxVideoPopup .pnx-video-close,
.pnxVideoPopup .pnx-video-popup-close,
.pnxVideoPopup .pnx-video-modal-close,
.pnxVideoPopup .popup-close,
.pnxVideoPopup .close,
.pnx-video-popup-overlay .pnx-video-close,
.pnx-video-popup-overlay .pnx-video-popup-close,
.pnx-video-popup-overlay .pnx-video-modal-close,
.pnx-video-popup-overlay .popup-close,
.pnx-video-popup-overlay .close,
.pnx-video-modal-overlay .pnx-video-close,
.pnx-video-modal-overlay .pnx-video-popup-close,
.pnx-video-modal-overlay .pnx-video-modal-close,
.pnx-video-modal-overlay .popup-close,
.pnx-video-modal-overlay .close,
#pnxVideoModal .pnx-video-close,
#pnxVideoModal .pnx-video-popup-close,
#pnxVideoModal .pnx-video-modal-close,
#pnxVideoModal .popup-close,
#pnxVideoModal .close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#pnxVideoPopup .pnx-video-close:hover,
#pnxVideoPopup .pnx-video-popup-close:hover,
#pnxVideoPopup .pnx-video-modal-close:hover,
#pnxVideoPopup .popup-close:hover,
#pnxVideoPopup .close:hover,
.pnxVideoPopup .pnx-video-close:hover,
.pnxVideoPopup .pnx-video-popup-close:hover,
.pnxVideoPopup .pnx-video-modal-close:hover,
.pnxVideoPopup .popup-close:hover,
.pnxVideoPopup .close:hover,
.pnx-video-popup-overlay .pnx-video-close:hover,
.pnx-video-popup-overlay .pnx-video-popup-close:hover,
.pnx-video-popup-overlay .pnx-video-modal-close:hover,
.pnx-video-popup-overlay .popup-close:hover,
.pnx-video-popup-overlay .close:hover,
.pnx-video-modal-overlay .pnx-video-close:hover,
.pnx-video-modal-overlay .pnx-video-popup-close:hover,
.pnx-video-modal-overlay .pnx-video-modal-close:hover,
.pnx-video-modal-overlay .popup-close:hover,
.pnx-video-modal-overlay .close:hover,
#pnxVideoModal .pnx-video-close:hover,
#pnxVideoModal .pnx-video-popup-close:hover,
#pnxVideoModal .pnx-video-modal-close:hover,
#pnxVideoModal .popup-close:hover,
#pnxVideoModal .close:hover {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff;
    transform: rotate(90deg);
}

/* ============================================================
   FAQ
   ============================================================ */
.pnx-faq-section {
    padding: 20px 0;
    background: #fff;
}

.pnx-faq-images {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pnx-faq-img {
    flex: 1;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--pnx-shadow-md);
}

.pnx-faq-img:nth-child(2) {
    margin-top: 42px;
}

.pnx-faq-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.pnx-faq-img:hover img {
    transform: scale(1.03);
}

.pnx-faq-content {
    padding-left: 26px;
}

.pnx-faq-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.06) !important;
    border-radius: 16px !important;
    box-shadow: var(--pnx-shadow-xs);
    background: #f8fbff;
}

.pnx-faq-accordion .accordion-button {
    min-height: 54px;
    padding: 16px 18px;
    background: #f8fbff;
    color: var(--pnx-ink);
    font-size: 15px;
    font-weight: 800;
    box-shadow: none !important;
}

.pnx-faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
}

.pnx-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.pnx-faq-accordion .accordion-body {
    padding: 18px 18px 20px;
    background: #fff;
    color: var(--pnx-text);
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid rgba(15,23,42,0.04);
}

/* ============================================================
   BLOG
   ============================================================ */
.pnx-blog-section {
    padding: 30px 0;
    background: linear-gradient(180deg, #f7f9fd 0%, #f2f6fb 100%);
}

.pnx-blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--pnx-border);
    box-shadow: var(--pnx-shadow-xs);
    transition: var(--pnx-transition);
}

.pnx-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pnx-shadow-md);
    border-color: rgba(10,91,216,0.10);
}

.pnx-blog-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.pnx-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.pnx-blog-card:hover .pnx-blog-thumb img {
    transform: scale(1.05);
}

.pnx-blog-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: var(--pnx-radius-pill);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    box-shadow: 0 8px 18px rgba(10, 91, 216, 0.22);
}

.pnx-blog-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.pnx-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--pnx-muted);
    font-size: 11px;
    font-weight: 700;
}

.pnx-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pnx-blog-meta i {
    color: var(--pnx-primary);
}

.pnx-blog-card-title {
    margin: 0 0 12px;
    font-size: 1.02rem;
    line-height: 1.42;
    font-weight: 900;
    flex-grow: 1;
}

.pnx-blog-card-title a {
    color: var(--pnx-ink);
    text-decoration: none;
    transition: color 0.25s ease;
}

.pnx-blog-card-title a:hover {
    color: var(--pnx-primary);
}

.pnx-blog-excerpt {
    margin-bottom: 16px;
    color: var(--pnx-text);
    font-size: 13px;
    line-height: 1.7;
}

.pnx-blog-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    color: var(--pnx-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--pnx-transition);
}

.pnx-blog-readmore:hover {
    color: var(--pnx-primary-dark);
}

.pnx-blog-readmore i {
    transition: transform 0.25s ease;
}

.pnx-blog-readmore:hover i {
    transform: translateX(4px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.pnx-testimonial-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at top center, rgba(255,179,26,0.07), transparent 24%),
        linear-gradient(180deg, #09111d 0%, #050a13 100%);
}

.pnx-video-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.pnx-video-slider::-webkit-scrollbar {
    display: none;
}

.pnx-video-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.pnx-testimonial-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 50px rgba(0,0,0,0.25);
    transition: var(--pnx-transition);
}

.pnx-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,179,26,0.6);
    box-shadow: 0 28px 54px rgba(0,0,0,0.3);
}

.pnx-testimonial-card iframe,
.pnx-testimonial-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.pnx-testimonial-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 50px 16px 16px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.94), rgba(0,0,0,0.35) 60%, transparent);
    pointer-events: none;
}

.pnx-testimonial-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
}

.pnx-testimonial-info p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--pnx-gold);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.pnx-mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.94);
    border-top: 1px solid rgba(15,23,42,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.pnx-mobile-sticky-cta a {
    width: 100%;
    min-height: 50px;
    padding: 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    box-shadow: 0 10px 26px rgba(10, 91, 216, 0.26);
}

.pnx-mobile-sticky-cta a:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(10, 91, 216, 0.30);
}
/* ============================================================
   PAHAL NUTRITION — FINAL CLEAN MERGED CSS
   PART 3 / 3
   Breadcrumb + Sidebar + Shop Cards + Footer + Scroll Top
   Utilities + Keyframes + Responsive
   ============================================================ */

/* ============================================================
   UTILITIES
   ============================================================ */
.container,
.pnx-container {
    width: min(100% - 32px, 1320px);
    margin-left: auto;
    margin-right: auto;
}

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

.text-white {
    color: #fff;
}

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

::selection {
    color: #fff;
    background: var(--pnx-primary);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.custom-page-header {
    background: linear-gradient(135deg, #0b1730, #0a5bd8);
    padding: 55px 0;
    text-align: center;
}

.header-title {
    color: var(--pnx-white);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.breadcrumb-wrapper .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb-wrapper .breadcrumb-item,
.breadcrumb-wrapper .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: var(--pnx-gold);
}

.breadcrumb-wrapper .breadcrumb-item.active {
    color: var(--pnx-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: "|";
    padding: 0 10px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.pahal-sidebar {
    background: #fcfcfc;
    padding: 24px 18px;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 16px;
    box-shadow: var(--pnx-shadow-xs);
}

.pahal-sidebar .widget + .widget {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(15,23,42,0.06);
}

.widget-title,
.pahal-sidebar .widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--pnx-primary-dark);
    border-bottom: 2px solid var(--pnx-gold);
    padding-bottom: 8px;
    display: inline-block;
    font-family: var(--font-heading);
}

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

.pahal-filter-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.pahal-filter-list input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: var(--pnx-primary);
    cursor: pointer;
}

/* ============================================================
   SHOP PRODUCT CARDS
   ============================================================ */
.pahal-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pahal-custom-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    position: relative;
    transition: var(--pnx-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.pahal-custom-card:hover {
    box-shadow: 0 8px 25px rgba(13, 50, 93, 0.12);
    border-color: var(--pnx-primary);
    transform: translateY(-3px);
}

.pahal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 999px;
    z-index: 2;
    font-weight: 700;
    line-height: 1.2;
}

.badge-bestseller {
    background: var(--pnx-yellow);
    color: var(--pnx-primary-dark);
}

.badge-new {
    background: var(--pnx-primary);
    color: #fff;
}

.badge-sale {
    background: #28a745;
    color: #fff;
}

.pahal-card-img {
    margin-bottom: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pahal-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.pahal-custom-card:hover .pahal-card-img img {
    transform: scale(1.04);
}

.pahal-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pahal-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
     margin-top: 15px;
    line-height: 1.4;
    min-height: 36px;
}

.pahal-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pahal-title a:hover {
    color: var(--pnx-primary);
}

.pahal-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--pnx-primary);
    margin-bottom: 12px;
}

.pahal-price del {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin-right: 6px;
}

.pahal-price ins {
    text-decoration: none;
    color: var(--pnx-primary);
}

.pahal-action-btns {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.pahal-btn {
    flex: 1;
    padding: 10px 5px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none !important;
    transition: var(--pnx-transition);
    cursor: pointer;
    min-height: var(--pnx-touch-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    line-height: 1.1;
    background-color: #ffcc00;
}

.pahal-btn-cart {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff !important;
    border: 1px solid var(--pnx-primary);
    box-shadow: 0 10px 24px rgba(10, 91, 216, 0.18);
}

.pahal-btn-cart:hover {
    background: linear-gradient(135deg, var(--pnx-primary-dark), #063785);
    border-color: var(--pnx-primary-dark);
    color: #fff !important;
    transform: translateY(-2px);
}

.pahal-btn-view,
.pahal-btn-quickview,
.pahal-btn-wishlist {
    flex: 0 0 44px;
    width: 44px;
    padding: 0;
    background: #fff;
    color: var(--pnx-ink) !important;
    border: 1px solid rgba(15,23,42,0.10);
    box-shadow: var(--pnx-shadow-xs);
}

.pahal-btn-view:hover,
.pahal-btn-quickview:hover,
.pahal-btn-wishlist:hover {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
}

.pahal-btn-wishlist.is-active,
.pahal-btn-wishlist.added {
    background: linear-gradient(135deg, var(--pnx-gold), #f59e0b);
    color: #111 !important;
    border-color: transparent;
}/* ============================================================
   FOOTER FINAL CSS - MATCHES CURRENT footer.php
   ============================================================ */

.pnx-footer-wrapper {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.78);
    background:
        radial-gradient(circle at top right, rgba(255,179,26,0.08), transparent 24%),
        linear-gradient(180deg, #09111d 0%, #050a13 100%);
}

.pnx-footer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,179,26,0.35), transparent);
    opacity: 0.8;
    pointer-events: none;
}

.pnx-footer-container {
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
    padding: 56px 0 0;
    position: relative;
    z-index: 1;
}

.pnx-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(140px, 0.85fr) minmax(170px, 0.95fr) minmax(250px, 1.05fr);
    gap: 36px 30px;
    align-items: start;
}

.pnx-footer-col {
    min-width: 0;
}

/* =========================
   BRAND COLUMN
   ========================= */
.pnx-brand-col {
    max-width: 100%;
}

.pnx-footer-logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 12px;
}

.pnx-footer-logo-img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.pnx-footer-brand-name {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.01em;
    font-family: var(--font-heading);
}

.pnx-footer-brand-name em {
    color: var(--pnx-gold);
    font-style: normal;
}

.pnx-footer-wrapper .pnx-desc {
    margin: 0 0 18px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.70);
}

/* =========================
   CONTACT LIST
   ========================= */
.pnx-contact-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.pnx-contact-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.76);
}

.pnx-contact-list li::marker {
    content: "";
}

.pnx-contact-list i {
    width: 18px;
    text-align: center;
    color: var(--pnx-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.pnx-contact-list a {
    color: rgba(255,255,255,0.76);
    text-decoration: none;
    transition: 0.25s ease;
}

.pnx-contact-list a:hover {
    color: #fff;
}

/* =========================
   TITLES
   ========================= */
.pnx-widget-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.pnx-widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pnx-gold), #ffd56a);
}

/* =========================
   LINKS
   ========================= */
.pnx-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pnx-footer-links li {
    margin: 0 0 12px;
    padding: 0;
}

.pnx-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.25s ease;
}

.pnx-footer-links a::before {
    content: "";
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--pnx-gold);
    transition: width 0.25s ease;
}

.pnx-footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.pnx-footer-links a:hover::before {
    width: 12px;
}

/* =========================
   SOCIAL
   ========================= */
.pnx-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pnx-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--pnx-transition);
}

.pnx-social-icons a:hover {
    color: #111;
    background: linear-gradient(135deg, #ffd36d, var(--pnx-gold));
    border-color: transparent;
    transform: translateY(-2px);
}

/* =========================
   BOTTOM BAR
   ========================= */
.pnx-footer-bottom-bar {
    margin-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pnx-bottom-container {
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
    padding: 18px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pnx-copyright-text {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.pnx-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.55);
    font-size: 20px;
}

.pnx-payment-methods i {
    transition: 0.25s ease;
}

.pnx-payment-methods i:hover {
    color: var(--pnx-gold);
    transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
   IMPORTANT: ye end me hi rahe
   ========================= */
@media (max-width: 1199px) {
    .pnx-footer-grid {
        grid-template-columns: 1.25fr 1fr 1fr;
        gap: 30px 24px;
    }

    .pnx-footer-col:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
    }

    .pnx-footer-logo-img {
        max-width: 140px;
    }
}

@media (max-width: 991px) {
    .pnx-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 22px;
    }

    .pnx-footer-col:last-child {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .pnx-footer-container {
        width: min(100% - 24px, 1320px);
        padding: 40px 0 0;
    }

    .pnx-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pnx-footer-logo-img {
        max-width: 170px;
    }

    .pnx-social-icons {
        justify-content: flex-start;
    }

    .pnx-bottom-container {
        width: min(100% - 24px, 1320px);
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .pnx-form-wrapper {
        padding: 8px;
    }

    .pnx-mail-input {
        height: 46px;
    }

    .pnx-submit-btn {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}


/* ============================================================
   SCROLL TOP BUTTON
   ============================================================ */
.pnx-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark));
    color: #fff;
    box-shadow: 0 16px 34px rgba(10, 91, 216, 0.28);
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: all 0.30s ease;
}

.pnx-scroll-top i,
.pnx-scroll-top svg {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

.pnx-scroll-top.show,
.pnx-scroll-top.active,
.pnx-scroll-top.visible,
.pnx-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.pnx-scroll-top:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--pnx-primary-dark), #063785);
    box-shadow: 0 22px 42px rgba(10, 91, 216, 0.34);
}

.pnx-scroll-top:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255,255,255,.95),
        0 0 0 6px rgba(10,91,216,.24);
}

/* ============================================================
   ACCESSIBILITY / FOCUS
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255,255,255,.95),
        0 0 0 6px rgba(10,91,216,.18);
    border-radius: 10px;
}

/* Desktop default */
.pnx-hamburger {
    display: none;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pnxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pnxPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pnxProgress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .pnx-header-container {
        gap: 14px;
        padding: 0 18px;
    }

    .pnx-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .pahal-shop-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .pnx-header-container {
        height: var(--pnx-header-h-mobile);
    }

    .main-nav,
    .pnx-nav,
    .search-bar {
        display: none;
    }

    .pnx-hamburger {
        display: inline-flex;
    }

    .user-actions {
        gap: 2px;
    }

    .user-actions a,
    .pnx-action-icon {
        width: 40px;
        height: 40px;
    }

    .pnx-v2-hero-panel {
        padding: 110px 0 70px;
    }

    .pnx-v2-heading {
        max-width: 100%;
    }

    .pnx-about-img-wrap,
    .pnx-about-content,
    .pnx-faq-content {
        padding-right: 0;
        padding-left: 0;
    }

    .pnx-about-badge {
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
    }

    .pnx-counter-wrap {
        gap: 20px;
    }

    .pnx-counter-item:not(:last-child)::after {
        display: none;
    }

    .pnx-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pahal-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container,
    .pnx-container {
        width: min(100% - 24px, 1320px);
    }

    .header-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .pnx-v2-hero-panel {
        padding: 92px 0 56px;
    }

    .pnx-v2-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.05;
    }

    .pnx-v2-copy,
    .pnx-video-text,
    .pnx-about-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }

    .pnx-v2-hero-actions {
        gap: 10px;
    }

    .pnx-cat-scroll-hint {
        display: block;
    }

    .pnx-about-features {
        grid-template-columns: 1fr;
    }

    .pnx-faq-images {
        gap: 12px;
    }

    .pnx-faq-img:nth-child(2) {
        margin-top: 18px;
    }

    .pnx-footer-grid {
        grid-template-columns: 1fr;
    }

    .pnx-footer-brand {
        max-width: 100%;
    }

    .pnx-footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pnx-footer-bottom-links {
        gap: 12px;
    }

    .pahal-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pahal-custom-card {
        padding: 14px;
    }

    .pahal-card-img {
        height: 160px;
    }

    /* Mobile quick-view / wishlist */
    .pnx-product-actions,
    .pnx-product-card .product-actions,
    .pnx-product-card .pnx-card-actions,
    .woocommerce ul.products li.product .pnx-product-actions,
    .woocommerce-page ul.products li.product .pnx-product-actions {
        top: 10px;
        right: 10px;
        gap: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .pnx-action-btn,
    .pnx-product-card .quick-view,
    .pnx-product-card .wishlist-btn,
    .pnx-product-card .wishlist-button,
    .pnx-product-card .woosq-btn,
    .pnx-product-card .yith-wcqv-button,
    .pnx-product-card .add_to_wishlist,
    .pnx-product-card .tinvwl_add_to_wishlist_button,
    .pnx-product-card .yith-wcwl-add-button a,
    .pnx-product-card .yith-wcwl-wishlistaddedbrowse a,
    .pnx-product-card .yith-wcwl-wishlistexistsbrowse a {
        min-width: 40px;
        height: 40px;
        padding: 0 12px !important;
        font-size: 12px !important;
    }

    /* Video popup mobile */
    #pnxVideoPopup,
    .pnxVideoPopup,
    .pnx-video-popup-overlay,
    .pnx-video-modal-overlay,
    #pnxVideoModal {
        padding: 14px;
    }

    #pnxVideoPopup .pnx-video-popup,
    #pnxVideoPopup .pnx-video-popup-box,
    #pnxVideoPopup .pnx-video-modal-box,
    .pnxVideoPopup .pnx-video-popup,
    .pnxVideoPopup .pnx-video-popup-box,
    .pnxVideoPopup .pnx-video-modal-box,
    .pnx-video-popup-overlay .pnx-video-popup,
    .pnx-video-popup-overlay .pnx-video-popup-box,
    .pnx-video-popup-overlay .pnx-video-modal-box,
    .pnx-video-modal-overlay .pnx-video-popup,
    .pnx-video-modal-overlay .pnx-video-popup-box,
    .pnx-video-modal-overlay .pnx-video-modal-box,
    #pnxVideoModal .pnx-video-popup,
    #pnxVideoModal .pnx-video-popup-box,
    #pnxVideoModal .pnx-video-modal-box {
        border-radius: 16px;
    }

    .pnx-scroll-top {
        width: 46px;
        height: 46px;
        right: 14px;
        bottom: 84px;
    }

    .pnx-mobile-sticky-cta {
        display: block;
    }
}

@media (max-width: 575px) {
    .pnx-header-container {
        padding: 0 12px;
        gap: 10px;
    }

    .pnx-logo-text {
        font-size: 16px;
    }

    .pnx-header-container .logo img {
        width: 40px;
        height: 40px;
    }

    .pnx-v2-chip {
        font-size: 10px;
        padding: 7px 12px;
    }

    .pnx-play-btn {
        width: 74px;
        height: 74px;
    }

    .pnx-play-btn i {
        font-size: 20px;
    }

    .pnx-counter-item {
        min-width: calc(50% - 10px);
    }

    .pnx-counter-item h2 {
        font-size: 2rem;
    }

    .pnx-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .pnx-newsletter-form button,
    .pnx-newsletter-btn {
        width: 100%;
    }

    .pahal-shop-grid {
        grid-template-columns: 1fr;
    }

    .pahal-action-btns {
        flex-wrap: wrap;
    }

    .pahal-btn-cart {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
        scroll-behavior: auto !important;
    }
}      

/* =========================================================
   PREMIUM OVERRIDE PATCH
   Paste at absolute end of custom1.css
   ========================================================= */

:root{
    --pnx-primary:#2563eb;
    --pnx-primary-dark:#1d4ed8;
    --pnx-primary-hover:#153fb8;
    --pnx-gold:#f6c453;
    --pnx-gold-dark:#e0a329;

    --pnx-dark:#06111d;
    --pnx-dark-2:#0a1728;
    --pnx-dark-3:#0f2036;

    --pnx-header-shadow:0 18px 45px rgba(0,0,0,0.30);
    --pnx-soft-glass:rgba(255,255,255,0.06);
    --pnx-soft-border:rgba(255,255,255,0.10);
}

/* =========================
   HEADER PREMIUM
   ========================= */
.pnx-premium-header,
.pnx-header {
    background: linear-gradient(180deg, rgba(8,16,29,0.94) 0%, rgba(11,22,40,0.88) 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pnx-premium-header::before,
.pnx-header::before {
    background: linear-gradient(90deg, transparent, rgba(246,196,83,0.60), transparent) !important;
    opacity: 1 !important;
}

.pnx-premium-header.is-scrolled,
.pnx-header.is-scrolled {
    background: rgba(5,11,20,0.96) !important;
    box-shadow: var(--pnx-header-shadow) !important;
}

.pnx-header-container {
    max-width: 1380px;
}

.pnx-header-container .logo img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.95);
    padding: 4px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.main-nav ul li a,
.pnx-nav ul li a {
    color: rgba(255,255,255,0.82) !important;
    border: 1px solid transparent;
    border-radius: 12px;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a,
.pnx-nav ul li a:hover,
.pnx-nav ul li.current-menu-item > a,
.pnx-nav ul li.current_page_item > a {
    color: #fff !important;
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.08) !important;
}

.main-nav ul li a::after,
.pnx-nav ul li a::after {
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, var(--pnx-gold), #ffe29a);
}

.search-bar,
.search-bar .pnx-search-form {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.search-bar:focus-within,
.search-bar .pnx-search-form:focus-within {
    background: rgba(255,255,255,0.09) !important;
    border-color: rgba(246,196,83,0.55) !important;
    box-shadow: 0 0 0 4px rgba(246,196,83,0.08), 0 10px 24px rgba(0,0,0,0.12) !important;
}

.search-bar input,
.search-bar .pnx-search-form input {
    color: #fff !important;
}

.search-bar input::placeholder,
.search-bar .pnx-search-form input::placeholder {
    color: rgba(255,255,255,0.48) !important;
}

.user-actions a,
.pnx-action-icon {
    color: rgba(255,255,255,0.90) !important;
    background: transparent;
}

.user-actions a:hover,
.pnx-action-icon:hover {
    color: var(--pnx-gold) !important;
    background: rgba(255,255,255,0.06) !important;
}

/* =========================
   HERO BUTTON LOOK
   ========================= */
.pnx-v2-btn--primary {
    background: linear-gradient(135deg, var(--pnx-gold), #f4b325) !important;
    color: #111 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 24px rgba(246,196,83,0.25) !important;
}

.pnx-v2-btn--primary:hover {
    background: linear-gradient(135deg, #ffd77a, #e5a81d) !important;
    color: #111 !important;
}

.pnx-v2-btn--secondary {
    background: rgba(255,255,255,0.10) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.24) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pnx-v2-btn--secondary:hover {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
}

/* =========================
   VIDEO SECTION PREMIUM BG
   ========================= */
.pnx-hp-video-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(246,196,83,0.10), transparent 24%),
        linear-gradient(180deg, #07101d 0%, #040913 100%) !important;
}

.pnx-hp-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,10,18,0.90) 0%, rgba(4,10,18,0.72) 40%, rgba(4,10,18,0.88) 100%),
        linear-gradient(180deg, rgba(37,99,235,0.10), transparent 45%);
    z-index: 0;
    pointer-events: none;
}

.pnx-hp-video-bg-overlay {
    opacity: 0.28 !important;
    filter: saturate(1.08) contrast(1.05);
}

.pnx-hp-video-container {
    position: relative;
    z-index: 1;
}

.pnx-play-btn {
    background: linear-gradient(135deg, var(--pnx-gold), #f4b325) !important;
    color: #111 !important;
    box-shadow: 0 20px 40px rgba(246,196,83,0.26) !important;
}

.pnx-play-btn:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark)) !important;
    color: #fff !important;
    box-shadow: 0 20px 44px rgba(37,99,235,0.28) !important;
}

/* =========================
   PRODUCT ACTION BUTTONS
   ========================= */
.pnx-product-actions .pnx-action-btn {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    background: rgba(7,15,28,0.78) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,0.20) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pnx-product-actions .pnx-action-btn:hover {
    background: linear-gradient(135deg, var(--pnx-gold), #f4b325) !important;
    color: #111 !important;
    transform: translateY(-2px) !important;
}

/* Add to cart button */
.pnx-add-to-cart-btn {
    background: linear-gradient(135deg, #0f172a, #111c33) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 12px 28px rgba(2,6,23,0.18);
}

.pnx-add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark)) !important;
    color: #fff !important;
}

.pnx-add-to-cart-btn.added {
    background: linear-gradient(135deg, var(--pnx-gold), #f59e0b) !important;
    color: #111 !important;
    border-color: transparent !important;
}

/* Add to cart ke baad jo View Cart link aata hai */
.pnx-product-details .added_to_cart.wc-forward {
    margin-top: 10px;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff !important;
    background: linear-gradient(135deg, #111827, #0f172a);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 24px rgba(2,6,23,0.20);
    transition: var(--pnx-transition);
}

.pnx-product-details .added_to_cart.wc-forward::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.pnx-product-details .added_to_cart.wc-forward:hover {
    background: linear-gradient(135deg, var(--pnx-gold), #f59e0b);
    color: #111 !important;
    border-color: transparent;
    transform: translateY(-2px);
}

/* =========================
   MOBILE: 1 PRODUCT PER ROW
   ========================= */
@media (max-width: 575px) {
    .pnx-product-grid-row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .pnx-product-card {
        max-width: 100%;
    }
}

/* =========================
   FOOTER PREMIUM
   ========================= */
.pnx-footer-wrapper {
    background:
        radial-gradient(circle at top right, rgba(246,196,83,0.12), transparent 20%),
        radial-gradient(circle at bottom left, rgba(37,99,235,0.12), transparent 24%),
        linear-gradient(180deg, #0b1628 0%, #060c16 100%) !important;
    color: rgba(255,255,255,0.82);
}

.pnx-footer-wrapper::before {
    background: linear-gradient(90deg, transparent, rgba(246,196,83,0.55), transparent) !important;
    opacity: 1 !important;
}

.pnx-footer-container {
    padding-top: 64px !important;
}

.pnx-footer-grid {
    gap: 36px 28px !important;
}

/* IMPORTANT: tumhare current CSS me width:20% tha, usko override kar raha hu */
.pnx-footer-logo-img {
    width: 100% !important;
    max-width: 170px !important;
    height: auto !important;
    display: block;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 34px rgba(0,0,0,0.20);
}

.pnx-footer-brand-name {
    font-size: 25px;
    color: #fff;
}

.pnx-footer-brand-name em {
    color: var(--pnx-gold);
}

.pnx-footer-wrapper .pnx-desc,
.pnx-newsletter-text {
    color: rgba(255,255,255,0.70) !important;
    line-height: 1.85;
}

.pnx-contact-list {
    list-style: none !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
}

.pnx-contact-list li {
    list-style: none !important;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.78);
}

.pnx-contact-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246,196,83,0.10);
    color: var(--pnx-gold);
    margin-top: 0;
    flex-shrink: 0;
}

.pnx-contact-list a {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
}

.pnx-contact-list a:hover {
    color: #fff;
}

.pnx-widget-title {
    font-size: 18px !important;
    margin-bottom: 18px !important;
}

.pnx-widget-title::after {
    width: 52px !important;
    background: linear-gradient(90deg, var(--pnx-gold), #ffe29a) !important;
}

.pnx-footer-links a {
    color: rgba(255,255,255,0.74) !important;
}

.pnx-footer-links a:hover {
    color: #fff !important;
}

.pnx-form-wrapper {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 18px !important;
}

.pnx-mail-input {
    color: #fff !important;
}

.pnx-mail-input::placeholder {
    color: rgba(255,255,255,0.45) !important;
}

.pnx-submit-btn {
    background: linear-gradient(135deg, var(--pnx-primary), var(--pnx-primary-dark)) !important;
    box-shadow: 0 12px 24px rgba(37,99,235,0.25) !important;
}

.pnx-submit-btn:hover {
    transform: translateY(-2px);
}

.pnx-social-icons a {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.pnx-social-icons a:hover {
    background: linear-gradient(135deg, var(--pnx-gold), #f4b325) !important;
    color: #111 !important;
}

.pnx-footer-bottom-bar {
    margin-top: 38px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.02);
}

.pnx-copyright-text {
    color: rgba(255,255,255,0.60) !important;
}

.pnx-payment-methods {
    color: rgba(255,255,255,0.65) !important;
}

.pnx-payment-methods i:hover {
    color: var(--pnx-gold) !important;
}

/* Footer responsive override */
@media (max-width: 1199px) {
    .pnx-footer-grid {
        grid-template-columns: 1.15fr 1fr 1fr !important;
    }

    .pnx-footer-col:last-child {
        grid-column: 1 / -1;
        max-width: 440px;
    }
}

@media (max-width: 991px) {
    .pnx-footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .pnx-footer-col:last-child {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .pnx-footer-grid {
        grid-template-columns: 1fr !important;
    }

    .pnx-footer-logo-img {
        max-width: 150px !important;
    }

    .pnx-bottom-container {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}