/* ============================================================
   NutraVilla Redesign - Custom Styles
   Matches the NutraVilla premium dairy nutrition website design
   ============================================================ */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== BASE OVERRIDES ===== */
body {
    font-family: 'Poppins', 'Roboto', sans-serif !important;
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.nv-topbar {
    background: #004cd1;
    color: #fff;
    font-size: 12px;
    padding: 16px 0;
    display: flex !important;
    align-items: center;
}
.nv-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.nv-topbar-left {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255,255,255,0.92);
}
.nv-topbar-left i { font-size: 13px; color: #90caf9; }
.nv-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nv-topbar-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.88);
    white-space: nowrap;
}
.nv-topbar-badge i {
    font-size: 13px;
    color: #90caf9;
}
.nv-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.25);
}

/* Currency dropdown styling */
.language-dropdown {
    display: flex;
    align-items: center;
}
.language-dropdown button {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

/* ===== MAIN HEADER OVERRIDE ===== */
.nv-main-header {
    background: #fff !important;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nv-main-header .navbar-brand img {
    max-height: 55px;
}
/* Hide old topbar */
.topbar { display: none !important; }
/* Override the sticky navbar to use our top bar */
header.rtl > .topbar { display: none !important; }

/* ===== NAV LINKS ===== */
.nv-navbar .navbar-nav .nav-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #222 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0 14px !important;
    position: relative;
}
.nv-navbar .navbar-nav .nav-link:hover,
.nv-navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--base) !important;
}
.nv-navbar .navbar-nav .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--base);
    border-radius: 2px;
}

/* ===== HERO / MAIN BANNER ===== */
.nv-hero-section {
    background: linear-gradient(135deg, #f0f7ee 0%, #e8f5e9 40%, #f3f7fd 100%);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.nv-hero-section::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.05);
}
.nv-hero-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.nv-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 10px;
}
.nv-hero-title .highlight {
    color: #2e7d32;
}
.nv-hero-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}
.nv-hero-desc {
    font-size: 13.5px;
    color: #666;
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.nv-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.nv-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}
.nv-hero-trust-item i {
    color: #2e7d32;
    font-size: 18px;
}
.nv-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.nv-btn-primary {
    background: #2e7d32;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
    border: none;
}
.nv-btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-1px);
    color: #fff !important;
}
.nv-btn-outline {
    background: transparent;
    color: #2e7d32 !important;
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #2e7d32;
    transition: all 0.3s;
}
.nv-btn-outline:hover {
    background: #2e7d32;
    color: #fff !important;
}
.nv-hero-products {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}
.nv-hero-product-img {
    text-align: center;
}
.nv-hero-product-img img {
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
    transition: transform 0.3s;
}
.nv-hero-product-img img:hover { transform: translateY(-6px); }
.nv-hero-product-img .product-label {
    font-size: 11px;
    font-weight: 600;
    color: #444;
    margin-top: 5px;
}

/* ===== SECTION HEADERS ===== */
.nv-section-header {
    text-align: center;
    margin-bottom: 35px;
}
.nv-section-header .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.nv-section-header .section-tag span {
    width: 30px;
    height: 2px;
    background: #2e7d32;
    display: inline-block;
}
.nv-section-header .section-tag .tag-icon {
    color: #2e7d32;
    font-size: 16px;
}
.nv-section-header h2 {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.nv-section-header p {
    font-size: 13.5px;
    color: #777;
    margin: 0;
}

/* ===== SHOP BY CATEGORY ===== */
.nv-categories-section {
    padding: 50px 0;
    background: #fff;
}
.nv-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Cycling pastel backgrounds for category cards */
.nv-category-card:nth-child(4n+1) { background: #f5ebe0; border-color: #e8d5c0; }
.nv-category-card:nth-child(4n+2) { background: #dff0f7; border-color: #b8dcea; }
.nv-category-card:nth-child(4n+3) { background: #e5f5e8; border-color: #b8dfc0; }
.nv-category-card:nth-child(4n+4) { background: #ece8f5; border-color: #cdc0e8; }
.nv-category-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.nv-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.nv-category-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    position: relative;
}
.nv-category-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: block;
}
.nv-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}
.nv-category-card:hover .nv-category-img-wrap img {
    transform: scale(1.06);
}
.nv-category-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 0 0 16px 16px;
}
.nv-category-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nv-shop-now-btn {
    background: #2e7d32;
    color: #fff !important;
    border: none;
    padding: 7px 24px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    text-decoration: none !important;
    transition: background 0.3s;
    white-space: nowrap;
}
.nv-shop-now-btn:hover {
    background: #1b5e20;
    color: #fff !important;
}

/* ===== GHEE PROMOTIONAL BANNER ===== */
.nv-ghee-banner {
    background: transparent;
    padding: 30px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.nv-ghee-static-wrap {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    transition: box-shadow 0.3s;
}
.nv-ghee-static-wrap:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.nv-ghee-static-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.nv-ghee-overlay-btn {
    position: absolute;
    bottom: 32px;
    left: 40px;
}
.nv-ghee-banner::before {
    content: '';
    position: absolute;
    left: -50px; bottom: -50px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,160,0,0.08);
}
.nv-ghee-banner-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8B5E00;
    margin-bottom: 10px;
    display: block;
}
.nv-ghee-banner .ghee-title {
    font-size: 36px;
    font-weight: 800;
    color: #4a2c0a;
    margin-bottom: 6px;
    line-height: 1.2;
}
.nv-ghee-banner .ghee-attributes {
    font-size: 15px;
    font-weight: 600;
    color: #7a4a15;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}
.nv-ghee-banner .ghee-attributes span {
    color: #c47f00;
}
.nv-ghee-banner .ghee-description {
    color: #7a4a15;
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 380px;
    line-height: 1.7;
}
.nv-ghee-btn {
    background: #FF8F00;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none !important;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(255,143,0,0.3);
}
.nv-ghee-btn:hover {
    background: #e65100;
    color: #fff !important;
    transform: translateY(-2px);
}
.nv-ghee-products {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.nv-ghee-products img {
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
    transition: transform 0.3s;
}
.nv-ghee-products img:hover { transform: translateY(-5px); }

/* ===== BENEFITS STRIP ===== */
.nv-benefits-strip {
    background: #fff;
    padding: 30px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.nv-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}
.nv-benefit-icon-circle {
    width: 52px;
    height: 52px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #c8e6c9;
}
.nv-benefit-icon-circle i {
    color: #2e7d32;
    font-size: 20px;
}
.nv-benefit-icon-circle img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.nv-benefit-text .title {
    font-weight: 700;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 1px;
}
.nv-benefit-text .desc {
    font-size: 11.5px;
    color: #777;
}
.nv-benefits-divider {
    width: 1px;
    background: #ddd;
    align-self: stretch;
    margin: 0 5px;
}

/* ===== BEST SELLING PRODUCTS SECTION ===== */
.nv-bestsellers-section {
    padding: 50px 0;
    background: #fff;
}
.nv-bestsellers-section .section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}
.nv-bestsellers-section .deco-line {
    width: 55px;
    height: 2px;
    background: linear-gradient(to right, transparent, #2e7d32);
    border-radius: 2px;
}
.nv-bestsellers-section .deco-line.right {
    background: linear-gradient(to left, transparent, #2e7d32);
}
.nv-bestsellers-section h2 {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a2e;
    margin: 0;
}

/* ===== SOCIAL PROOF SECTION ===== */
.nv-social-proof {
    background: #f5f8ff;
    padding: 35px 0;
    border-top: 1px solid #e8edf8;
    border-bottom: 1px solid #e8edf8;
    margin: 10px 0;
}
.nv-proof-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
}
.nv-proof-card .proof-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 8px;
}
.nv-proof-card .proof-rating {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.nv-proof-card .proof-text {
    font-size: 13px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}
.nv-proof-card .proof-author {
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
}
.nv-proof-card .proof-icon {
    font-size: 30px;
    color: #2e7d32;
    margin-bottom: 10px;
}
.nv-proof-card .proof-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.nv-proof-card ul {
    list-style: none;
    padding: 0; margin: 0;
    text-align: left;
}
.nv-proof-card ul li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: #555;
    margin-bottom: 5px;
}
.nv-proof-card ul li i { color: #2e7d32; font-size: 12px; }
.nv-proof-card .payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.nv-proof-card .payment-logos img {
    height: 22px;
    object-fit: contain;
    filter: grayscale(0.2);
    opacity: 0.85;
}

/* ===== NEWSLETTER SECTION ===== */
.nv-newsletter {
    background: #004cd1;
    color: #fff;
    padding: 22px 0;
}
.nv-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.nv-newsletter-text {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 240px;
}
.nv-newsletter-icon-box {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
}
.nv-newsletter h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 3px;
    color: #fff;
}
.nv-newsletter p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
    color: #fff;
}
.nv-newsletter-form {
    display: flex;
    gap: 0;
    min-width: 320px;
    max-width: 420px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nv-newsletter-form input {
    flex: 1;
    padding: 13px 16px;
    border: none;
    font-size: 13.5px;
    background: #fff;
    color: #333;
    outline: none;
}
.nv-newsletter-form input::placeholder { color: #aaa; }
.nv-newsletter-form button {
    background: #FF8F00;
    color: #fff;
    border: none;
    padding: 13px 22px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}
.nv-newsletter-form button:hover { background: #e65100; }

/* ===== HEADER SEARCH OVERLAY ===== */
.header-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    animation: fadeIn 0.3s ease;
}
.header-search-overlay.active {
    display: flex;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.header-search-overlay-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.header-search-close:hover {
    transform: rotate(90deg);
}
.header-search-form {
    position: relative;
}
.header-search-input-wrapper {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.header-search-input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.header-search-input::placeholder {
    color: #999;
}
.header-search-submit {
    background: var(--base, #ff6b35);
    border: none;
    color: #fff;
    padding: 0 35px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}
.header-search-submit:hover {
    background: #e65100;
}
.header-search-overlay .search-result-box {
    border-radius: 8px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

/* ===== VIDEO PRODUCTS SECTION (SHORTS STYLE - UGC/TESTIMONIALS) ===== */
.nv-video-products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #e8f5ff 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
}

.nv-video-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 76, 209, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.nv-video-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

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

.nv-video-section-badge i {
    margin-right: 5px;
}

.nv-section-header .nv-video-subtitle {
    font-size: 15px;
    color: #555;
    font-weight: 500;
    margin-top: 10px;
}

.nv-video-subtitle i {
    margin: 0 3px;
    font-size: 14px;
}

.nv-video-products-swiper {
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.nv-video-products-swiper .swiper-wrapper {
    align-items: stretch;
}

.nv-video-products-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

/* Shorts Card - Vertical Layout with Hover Effect */
.nv-video-shorts-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nv-video-shorts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

/* Video Wrapper - Vertical */
.nv-shorts-video-wrapper {
    position: relative;
    padding-bottom: 133%;
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    max-height: 380px;
}

/* Play Button Overlay */
.nv-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nv-video-shorts-card:hover .nv-video-play-overlay {
    opacity: 0;
}

.nv-video-play-overlay i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.nv-shorts-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Product Info Below Video */
.nv-shorts-product-info {
    padding: 20px 15px;
    background: #fff;
}

.nv-shorts-product-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* Swiper Navigation Buttons */
.nv-video-swiper-next,
.nv-video-swiper-prev {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.nv-video-swiper-next:after,
.nv-video-swiper-prev:after {
    font-size: 22px;
    font-weight: 900;
}

.nv-video-swiper-next:hover,
.nv-video-swiper-prev:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

/* Swiper Pagination */
.nv-video-swiper-pagination {
    bottom: -10px !important;
}

.nv-video-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #667eea;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.nv-video-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Responsive */
@media (max-width: 576px) {
    .nv-video-products-section {
        padding: 25px 0;
    }
    
    .nv-video-products-swiper {
        padding: 20px 0;
    }
    
    .nv-video-shorts-card {
        max-width: 100%;
    }
    
    .nv-shorts-video-wrapper {
        max-height: 320px;
    }
    
    .nv-shorts-product-name {
        font-size: 13px;
        min-height: 34px;
    }
    
    .nv-video-section-badge {
        font-size: 10px;
        padding: 6px 15px;
    }
    
    .nv-video-play-overlay i {
        font-size: 45px;
    }
    
    .nv-section-header h2 {
        font-size: 22px;
    }
    
    .nv-video-subtitle {
        font-size: 13px;
    }
    
    .nv-video-swiper-next,
    .nv-video-swiper-prev {
        width: 45px;
        height: 45px;
    }
    
    .nv-video-swiper-next:after,
    .nv-video-swiper-prev:after {
        font-size: 18px;
    }
}

/* ===== FOOTER (White + Black) ===== */
.nv-footer-main {
    background: #fff;
    color: #333;
    border-top: 1px solid #e8e8e8;
    padding: 48px 0 0;
}
.nv-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr 1fr;
    gap: 32px;
}
.nv-footer-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}
.nv-footer-tagline {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 10px 0 0;
}
.nv-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.nv-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nv-social-icon:hover {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
    text-decoration: none;
}
.nv-footer-heading {
    font-size: 12.5px;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
}
.nv-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nv-footer-links li {
    margin-bottom: 9px;
}
.nv-footer-links li a {
    font-size: 13.5px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.nv-footer-links li a:hover { color: #2e7d32; }
.nv-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nv-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #555;
}
.nv-footer-contact-list li i {
    color: #2e7d32;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.nv-footer-contact-list li a {
    color: #555;
    text-decoration: none;
}
.nv-footer-contact-list li a:hover { color: #2e7d32; }
.nv-footer-deliver-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nv-footer-deliver-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #555;
}
.nv-flag { font-size: 20px; line-height: 1; }
.nv-footer-bottom {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 14px 0;
    margin-top: 40px;
}
.nv-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.nv-footer-bottom p {
    font-size: 12.5px;
    color: #666;
    margin: 0;
}
.nv-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nv-footer-bottom-links a {
    font-size: 12.5px;
    color: #555;
    text-decoration: none;
}
.nv-footer-bottom-links a:hover { color: #2e7d32; }
.nv-footer-divider-pipe { color: #bbb; font-size: 12px; }

/* ===== Header logo size (overridden above in header layout block) ===== */

/* ===== Hide old footer elements ===== */
.__inline-9 { display: none !important; }

/* ===== PRODUCT CARDS REDESIGN ===== */
.nv-product-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eef2e6;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding-bottom: 15px;
}
.nv-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.nv-product-card .img-wrap {
    width: 100%;
    height: 180px;
    background: #f8fdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.nv-product-card .img-wrap img {
    max-height: 160px;
    object-fit: contain;
}
.nv-product-card .product-info {
    padding: 10px 12px;
}
.nv-product-card .product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.3;
}
.nv-product-card .product-weight {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}
.nv-product-card .product-stars {
    color: #FFC107;
    font-size: 13px;
    margin-bottom: 5px;
}
.nv-product-card .product-stars .count {
    font-size: 11px;
    color: #888;
    margin-left: 3px;
}
.nv-product-card .product-price {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.nv-add-to-cart-btn {
    background: #004cd1;
    color: #fff !important;
    border: none;
    padding: 7px 18px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none !important;
}
.nv-add-to-cart-btn:hover {
    background: #2e7d32;
    color: #fff !important;
}

/* ===== EXTRA NAV LINKS ===== */
.nv-extra-nav .nav {
    flex-wrap: nowrap;
}
.nv-extra-nav li a {
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 10px;
    transition: color 0.2s;
}
.nv-extra-nav li a:hover { color: var(--bs-primary); }

/* ===== NEWSLETTER INNER LAYOUT ===== */
.nv-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.nv-newsletter-text { flex: 1; min-width: 240px; text-align: left; }
.nv-newsletter-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.nv-newsletter-text p { font-size: 13.5px; opacity: 0.85; margin: 0; }
.nv-newsletter-inner .nv-newsletter-form { margin: 0; flex: 1; min-width: 280px; max-width: 460px; }

/* ===== GHEE BANNER INNER LAYOUT ===== */
.nv-ghee-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    min-height: 260px;
}
.nv-ghee-text {
    flex: 0 0 38%;
    min-width: 240px;
    padding: 40px 36px 40px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nv-ghee-tag {
    display: inline-block;
    background: rgba(180,100,0,0.1);
    color: #7a4510;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(180,100,0,0.2);
}
.nv-ghee-text h2 { font-size: 32px; font-weight: 800; color: #2c1a0a; margin-bottom: 8px; line-height: 1.2; }
.nv-ghee-text p { font-size: 14px; color: #5c3d20; margin-bottom: 12px; line-height: 1.6; }
.nv-ghee-subtitle { font-size: 15px !important; font-weight: 600 !important; color: #5c3d20 !important; }
.nv-ghee-subtitle strong { color: #7a4510; }
.nv-ghee-desc { font-size: 13.5px !important; color: #7a6050 !important; max-width: 340px; }
.nv-ghee-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.nv-ghee-features li {
    font-size: 13.5px;
    color: #5c3d20;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nv-ghee-features li i { color: #2e7d32; font-size: 15px; }
.nv-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF8F00, #FFB300);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(255,143,0,0.35);
}
.nv-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,143,0,0.5);
    color: #fff !important;
}
.nv-ghee-image-wrap {
    flex: 1 1 55%;
    min-width: 200px;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
    position: relative;
}
.nv-ghee-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.nv-ghee-placeholder {
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* ===== SOCIAL PROOF REVIEWS ===== */
.nv-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.nv-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid #e8f5e9;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.nv-review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.nv-review-stars { color: #FFC107; font-size: 15px; margin-bottom: 10px; }
.nv-review-card p { font-size: 13.5px; color: #555; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.nv-reviewer { display: flex; align-items: center; gap: 10px; }
.nv-reviewer-avatar { font-size: 34px; color: #b0bec5; line-height: 1; }
.nv-reviewer strong { font-size: 13.5px; color: #222; }
.nv-reviewer small { color: #888; font-size: 11.5px; }

/* Hero Swiper slider */
.nv-hero-swiper { width: 100%; height: auto; }
.nv-hero-swiper .swiper-wrapper { height: auto; align-items: stretch; }
.nv-hero-swiper .swiper-slide { width: 100%; height: auto; flex-shrink: 0; }
.nv-hero-swiper .swiper-slide img { width: 100%; height: auto; display: block; }
.nv-hero-pagination { position: absolute !important; bottom: 12px !important; z-index: 10; }
.nv-hero-pagination .swiper-pagination-bullet-active { background: #fff; }

/* Full-width hero banner */
.nv-hero-section { padding: 0 !important; margin: 0; position: relative; }
.nv-hero-fullbanner { position: relative; width: 100%; overflow: hidden; }
.nv-hero-fullbanner-img { width: 100%; height: auto; display: block; }
.nv-hero-no-banner { min-height: 320px; background: linear-gradient(135deg, #1a1a2e 0%, #2e7d32 100%); }

/* Buttons overlay on banner - bottom center */
.nv-hero-overlay-btns {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero placeholder */
.nv-hero-placeholder { background: #f5f5f5; border-radius: 10px; padding: 40px 20px; }

/* Banner overlay buttons */
.nv-hero-overlay-btns .nv-btn-primary {
    background: #2e7d32;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.nv-hero-overlay-btns .nv-btn-primary:hover {
    background: #1b5e20;
    color: #fff !important;
    transform: translateY(-2px);
}
.nv-hero-overlay-btns .nv-btn-outline {
    background: #fff;
    color: #1a1a2e !important;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nv-hero-overlay-btns .nv-btn-outline:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== NUTRAVILLA PHASE 3 ADDITIONS ===== */

/* Topbar: centered badges layout */
.nv-topbar-badges { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; width: 100%; }

/* Hide old header-middle (search bar row) */
.header-middle { display: none !important; }

/* Logo fix in header when header-middle is hidden */
.header-main .logo img { max-height: 55px; object-fit: contain; }

/* ===== NutraVilla Header Layout: logo left | menu center | icons right ===== */
/* Fix: header-main must create its own stacking context so dropdown appears above banner */
.header-main { position: relative; z-index: 100; }
.nv-header-main-row { width: 100%; min-height: 70px; }
.nv-header-logo { flex-shrink: 0; z-index: 2; }
.nv-header-actions { flex-shrink: 0; z-index: 2; }

/* Center menu absolutely within the header row */
.nv-main-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Sub-menu must appear above everything including banner */
.main-menu .sub-menu { z-index: 9999 !important; }

/* ===== Header logo size ===== */
.mobile-logo-cs { height: 80px !important; width: auto !important; }

/* ===== Main menu: bigger font + hover underline ===== */
.main-menu > li > a,
.main-menu > li > span.no-follow-link {
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #222 !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.25s;
}
.main-menu > li > a::after,
.main-menu > li > span.no-follow-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: var(--base, #2e7d32);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}
.main-menu > li:not(.has-sub-item-direct) > a:hover::after,
.main-menu > li:hover > a::after,
.main-menu > li.active > a::after {
    transform: scaleX(1);
}
.main-menu > li > a:hover,
.main-menu > li > span.no-follow-link:hover {
    color: var(--base, #2e7d32) !important;
}
/* Remove old ::after on has-sub-item so double arrow doesn't show */
.main-menu .has-sub-item:hover > a::after { transform: scaleX(0); }

/* Hero inner layout */
.nv-hero-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.nv-hero-content { flex: 1; min-width: 300px; }
.nv-hero-visual { flex: 1; min-width: 280px; text-align: center; }

/* Hero mini badges row */
.nv-hero-badges-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 18px 0; }
.nv-hero-badge-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: #555; }
.nv-hero-badge-item i { font-size: 20px; color: #2e7d32; }
.nv-hero-main-img { max-width: 100%; max-height: 380px; object-fit: contain; border-radius: 8px; }
.nv-hero-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nv-hero-product-item { text-align: center; }
.nv-hero-product-item img { max-height: 160px; object-fit: contain; }
.nv-hero-product-item span { font-size: 11px; display: block; margin-top: 4px; }

/* Section title with leaf icons */
.nv-section-title-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.nv-leaf-icon { font-size: 18px; }

/* Benefits strip: circular icon + vertical dividers */
.nv-benefits-grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.nv-benefit-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 160px; padding: 6px 0; }
.nv-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f0faf0;
    border: 2px solid #81c784;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nv-benefit-icon i { font-size: 22px; color: #2e7d32; }
.nv-benefit-item h6 { font-weight: 700; font-size: 13px; color: #1a1a2e; margin: 0 0 3px; line-height: 1.3; }
.nv-benefit-item p { font-size: 11.5px; color: #777; margin: 0; line-height: 1.4; }
.nv-benefit-divider { width: 1px; height: 55px; background: #d0d0d0; flex-shrink: 0; margin: 0 4px; }

/* Best Selling section */
.nv-bestselling-section { padding: 0; }
.nv-bestselling-header { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 35px 0 25px; }
.nv-bestselling-header h2 { font-size: 22px; font-weight: 800; letter-spacing: 1px; color: #1a1a2e; white-space: nowrap; }
.nv-section-line-left, .nv-section-line-right { flex: 1; height: 2px; background: #2e7d32; max-width: 80px; }

/* Add to Cart button on product cards */
.nv-price-cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
}
.nv-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    min-width: 0;
}
.nv-price-block del { color: #999; }
.nv-price-block ins { text-decoration: none; }
.nv-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #2e7d32;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.25s;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
.nv-add-to-cart-btn:hover {
    background: #1b5e20;
    color: #fff !important;
}
.nv-add-to-cart-btn i { font-size: 13px; }

/* Trust / Social Proof section */
.nv-trust-section { background: #faf7f4; padding: 36px 0; }
.nv-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

/* All 3 cards same beige card style */
.nv-trust-col {
    background: #f5efe8;
    border: 1px solid #e8ddd2;
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
    justify-content: flex-start;
}
.nv-trust-col h5 { font-size: 15.5px; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.4; }

/* Stars */
.nv-trust-stars { display: flex; align-items: center; gap: 5px; color: #f4a400; font-size: 15px; flex-wrap: wrap; margin-bottom: 4px; }
.nv-trust-stars span { font-size: 12px; color: #666; }

/* Review */
.nv-trust-review { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.nv-trust-review p { font-size: 13px; color: #555; font-style: italic; line-height: 1.65; margin: 0; }
.nv-trust-reviewer { font-size: 13px; color: #333; display: block; margin-top: 8px; }

/* Avatar circle */
.nv-trust-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #d6c5b0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    color: #8a6a4a;
    font-size: 30px;
    line-height: 1;
}

/* Navigation dots */
.nv-trust-dots { display: flex; gap: 6px; margin-top: auto; padding-top: 8px; }
.nv-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: background 0.3s; }
.nv-trust-dot:hover { background: #aaa; }
.nv-trust-dot.active { background: #2e7d32; }

/* Review slider */
.nv-review-slider { position: relative; min-height: 90px; margin-top: 10px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.nv-review-slide { display: none; animation: nvFadeIn 0.4s ease; }
.nv-review-slide.active { display: block; }
.nv-review-slide p { font-size: 13px; color: #555; font-style: italic; line-height: 1.65; margin: 0; }
@keyframes nvFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Shipping list */
.nv-trust-list { list-style: none; padding: 0; margin: 0; }
.nv-trust-list li { font-size: 13.5px; color: #444; display: flex; align-items: center; gap: 7px; margin-bottom: 8px; line-height: 1.5; }
.nv-trust-list li:last-child { margin-bottom: 0; }
.nv-trust-list li i { color: #2e7d32; font-size: 9px; flex-shrink: 0; }
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-list li {
    margin-bottom: 6px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-list li:last-child {
    margin-bottom: 0;
}

/* Shipping icon wrapper */
.nv-trust-icon-wrap { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background: #e8ddd2; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 6px;
    flex-shrink: 0;
}
.nv-trust-icon-wrap i { 
    font-size: 24px; 
    color: #2e7d32; 
}

/* Shipping column with icon - horizontal layout */
.nv-trust-col:has(.nv-trust-icon-wrap) {
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 20px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 0;
    flex-shrink: 0;
}
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap i {
    font-size: 34px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) h5,
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-list {
    text-align: left;
}
.nv-trust-col:has(.nv-trust-icon-wrap) h5 {
    margin-bottom: 4px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-list {
    margin-top: 4px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) > div:last-child > div {
    margin-top: 4px;
}
.nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-list li {
    margin-bottom: 7px;
}

/* Payment sub-text */
.nv-trust-sub { font-size: 13px; color: #777; margin: 8px 0; }

/* Payment logos row */
.nv-payment-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 0; }

/* VISA */
.nv-pay-visa {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    color: #1a1f71;
    letter-spacing: -0.5px;
    font-family: 'Arial Black', sans-serif;
}

/* Mastercard */
.nv-pay-mastercard { position: relative; display: inline-flex; width: 38px; height: 24px; }
.nv-pay-mastercard .mc-left,
.nv-pay-mastercard .mc-right {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.nv-pay-mastercard .mc-left { background: #eb001b; left: 0; }
.nv-pay-mastercard .mc-right { background: #f79e1b; right: 0; opacity: 0.9; }

/* AMEX */
.nv-pay-amex {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: #2e77bc;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* PayPal */
.nv-pay-paypal {
    font-size: 15px;
    font-weight: 700;
    color: #003087;
    font-family: 'Arial', sans-serif;
}
.nv-pay-paypal span { color: #009cde; }

/* UPI */
.nv-pay-upi {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6c3fa0, #097939);
    padding: 4px 11px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Ghee banner additional text styles */
.nv-ghee-subtitle { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 10px; letter-spacing: 1px; }
.nv-ghee-desc { font-size: 14px; color: rgba(255,255,255,0.82); margin-bottom: 20px; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nv-topbar-right { gap: 10px; }
    .nv-topbar-badge { font-size: 11px; }
    .nv-hero-title { font-size: 26px; }
    .nv-ghee-banner .ghee-title { font-size: 26px; }
    .nv-benefits-divider { display: none; }
    .nv-hero-products { margin-top: 30px; }
    .nv-trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap {
        width: 60px;
        height: 60px;
    }
    .nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap i {
        font-size: 30px;
    }
    .nv-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .nv-hero-inner { flex-direction: column; }
    .nv-benefit-divider { display: none; }
    .nv-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    /* Make buttons smaller on tablet and mobile */
    .nv-btn-primary,
    .nv-hero-overlay-btns .nv-btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }
    .nv-btn-outline,
    .nv-hero-overlay-btns .nv-btn-outline {
        padding: 9px 20px;
        font-size: 12px;
    }
    
    /* Product card add to cart button smaller on tablet */
    .nv-add-to-cart-btn {
        padding: 6px 10px;
        font-size: 10px;
        gap: 4px;
    }
    .nv-add-to-cart-btn i {
        font-size: 11px;
    }
    
    /* Ensure price and button stay aligned */
    .nv-price-cart-row {
        gap: 5px;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .nv-topbar-left { display: none; }
    .nv-topbar-badges { gap: 10px; font-size: 11px; }
    .nv-topbar .container { justify-content: space-between; }
    .nv-topbar { padding: 12px 0; }
    
    /* Keep currency dropdown visible on mobile */
    .nv-topbar-right {
        display: flex !important;
        gap: 8px;
        flex-wrap: wrap;
    }
    .language-dropdown {
        display: flex !important;
    }
    .language-dropdown button {
        font-size: 10px !important;
        padding: 2px 6px !important;
    }
    
    .nv-hero-section { padding: 30px 0 20px; min-height: auto; }
    .nv-hero-title { font-size: 22px; }
    .nv-ghee-banner { padding: 35px 0; }
    .nv-ghee-banner .ghee-title { font-size: 22px; }
    .nv-section-header h2 { font-size: 20px; }
    .nv-bestselling-header h2 { font-size: 20px; }
    .nv-newsletter h3 { font-size: 18px; }
    .nv-newsletter-form { flex-direction: column; border-radius: 6px; }
    .nv-newsletter-form input { border-radius: 6px 6px 0 0; }
    .nv-newsletter-form button { border-radius: 0 0 6px 6px; width: 100%; padding: 12px; }
    .nv-footer { padding: 35px 0 0; }
    .nv-ghee-products { display: none; }
    .nv-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    /* Smaller buttons on mobile */
    .nv-btn-primary,
    .nv-hero-overlay-btns .nv-btn-primary {
        padding: 9px 18px;
        font-size: 11px;
        gap: 5px;
    }
    .nv-btn-outline,
    .nv-hero-overlay-btns .nv-btn-outline {
        padding: 8px 18px;
        font-size: 11px;
        gap: 5px;
    }
    .nv-btn-gold {
        padding: 9px 18px;
        font-size: 11px;
    }
    
    /* Adjust hero overlay button positioning */
    .nv-hero-overlay-btns {
        bottom: 20px;
        gap: 10px;
    }
    
    /* Product card - stack price and button vertically on mobile */
    .nv-price-cart-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .nv-add-to-cart-btn {
        padding: 6px 12px;
        font-size: 9px;
        gap: 3px;
        letter-spacing: 0.3px;
        width: 100%;
        justify-content: center;
    }
    .nv-add-to-cart-btn i {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .nv-topbar-right { 
        gap: 6px;
        flex: 1;
        justify-content: center;
    }
    .nv-topbar-divider { display: none; }
    .nv-topbar-badge { 
        font-size: 9.5px;
        gap: 3px;
        white-space: nowrap;
    }
    .nv-topbar-badge i {
        font-size: 11px;
    }
    
    /* Currency dropdown compact on small mobile */
    .language-dropdown button {
        font-size: 9px !important;
        padding: 2px 5px !important;
        gap: 2px !important;
    }
    
    .nv-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .nv-category-name { font-size: 13px; }
    .nv-trust-col:has(.nv-trust-icon-wrap) {
        gap: 12px;
    }
    .nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap {
        width: 55px;
        height: 55px;
    }
    .nv-trust-col:has(.nv-trust-icon-wrap) .nv-trust-icon-wrap i {
        font-size: 26px;
    }
    .nv-trust-col h5 {
        font-size: 14.5px;
    }
    .nv-trust-list li {
        font-size: 13px;
    }
    
    /* Extra small buttons for very small screens */
    .nv-btn-primary,
    .nv-hero-overlay-btns .nv-btn-primary {
        padding: 8px 16px;
        font-size: 10px;
        gap: 4px;
    }
    .nv-btn-outline,
    .nv-hero-overlay-btns .nv-btn-outline {
        padding: 7px 16px;
        font-size: 10px;
        gap: 4px;
    }
    .nv-btn-gold {
        padding: 8px 16px;
        font-size: 10px;
    }
    .nv-shop-now-btn {
        padding: 6px 18px;
        font-size: 10px;
    }
    
    /* Hero overlay buttons stacked on very small screens */
    .nv-hero-overlay-btns {
        bottom: 15px;
        flex-direction: column;
        gap: 8px;
        width: auto;
        max-width: 90%;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .nv-hero-overlay-btns .nv-btn-primary,
    .nv-hero-overlay-btns .nv-btn-outline {
        width: 100%;
        max-width: 280px;
        min-width: 200px;
        justify-content: center;
    }
    
    /* Product card - stack price and button vertically on small mobile */
    .nv-price-cart-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .nv-add-to-cart-btn {
        padding: 6px 10px;
        font-size: 8.5px;
        gap: 2px;
        letter-spacing: 0.2px;
        border-radius: 4px;
        width: 100%;
        justify-content: center;
    }
    .nv-add-to-cart-btn i {
        font-size: 9px;
    }
}
