/* =============================================================
   GLORIOUSLY VEGAN - Clean PHP Theme CSS v4.0
   Pixel-perfect clone of Elementor design
   ============================================================= */

/* --- Custom Font: A Love of Thunder --- */
@font-face {
    font-family: 'A Love of Thunder';
    src: url('../fonts/a-love-of-thunder-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --gv-green:       #044729;
    --gv-green-dark:  #022d1a;
    --gv-green-light: #0a5c38;
    --gv-yellow:      #FFD000;
    --gv-beige:       #F6F2EF;
    --gv-white:       #ffffff;
    --gv-black:       #000000;
    --gv-text:        #1a1a1a;
    --gv-grey:        #f5f5f5;
    --gv-font:        'Poppins', sans-serif;
    --gv-font-alt:    'DM Sans', sans-serif;
    --gv-font-display: 'A Love of Thunder', sans-serif;
    --gv-radius:      8px;
    --gv-shadow:      0 4px 20px rgba(0,0,0,0.12);
    --gv-container:   1200px;
    --gv-header-h:    auto;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--gv-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gv-text);
    background: var(--gv-white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--gv-font); }

/* --- Container --- */
.gv-container {
    max-width: var(--gv-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.gv-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--gv-font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}
.gv-btn-hero {
    background: var(--gv-green);
    color: var(--gv-white);
    font-size: 18px;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}
.gv-btn-hero:hover { background: var(--gv-green-light); transform: translateY(-2px); }
.gv-btn-green {
    background: var(--gv-green);
    color: var(--gv-white);
}
.gv-btn-green:hover { background: var(--gv-green-light); }
.gv-btn-green-outline {
    background: transparent;
    color: var(--gv-green);
    border: 2px solid var(--gv-green);
}
.gv-btn-green-outline:hover { background: var(--gv-green); color: var(--gv-white); }
.gv-btn-yellow {
    background: var(--gv-yellow);
    color: var(--gv-black);
    font-weight: 800;
}
.gv-btn-yellow:hover { background: #e6bc00; transform: translateY(-2px); }

/* =============================================================
   HEADER
   ============================================================= */
.gv-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Announcement Bar */
.gv-announce-bar {
    background: var(--gv-black);
    color: var(--gv-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Benefits Bar */
.gv-benefits-bar {
    background: var(--gv-green);
    padding: 10px 20px;
}
.gv-benefits-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.gv-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gv-white);
}
.gv-benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.gv-benefit-text {
    display: flex;
    flex-direction: column;
}
.gv-benefit-title {
    font-family: var(--gv-font-alt);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gv-benefit-sub {
    font-family: var(--gv-font-alt);
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
}

/* Main Navbar */
.gv-navbar {
    background: var(--gv-white);
    border-bottom: 1px solid #e8e8e8;
}
.gv-navbar-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}
.gv-nav-search {
    display: flex;
    align-items: center;
}
.gv-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gv-search-icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.gv-search-icon:hover { opacity: 1; }
.gv-search-input {
    display: none;
    border: none;
    border-bottom: 1px solid var(--gv-green);
    outline: none;
    font-family: var(--gv-font);
    font-size: 13px;
    padding: 4px 8px;
    width: 160px;
    background: transparent;
}
.gv-search-input.gv-search-open { display: block; }
.gv-nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gv-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}
.gv-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.gv-nav-support {
    font-size: 11px;
    color: #555;
    text-align: right;
    line-height: 1.4;
}
.gv-nav-support strong { display: block; color: var(--gv-text); }
.gv-nav-support a { color: var(--gv-green); font-weight: 600; }
.gv-nav-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}
.gv-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--gv-text);
}
.gv-nav-icon img { width: 22px; height: 22px; object-fit: contain; }
.gv-nav-icon svg { width: 22px; height: 22px; }
.gv-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gv-green);
    color: var(--gv-white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gv-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

/* Desktop Nav Menu */
.gv-nav-menu {
    background: var(--gv-white);
    border-top: 1px solid #f0f0f0;
}
.gv-menu-list {
    max-width: var(--gv-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 0;
}
.gv-menu-list li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gv-text);
    transition: color 0.2s;
}
.gv-menu-list li a:hover,
.gv-menu-list li.current-menu-item a { color: var(--gv-green); }

/* Mobile Nav Drawer */
.gv-mobile-nav {
    display: none;
    background: var(--gv-white);
    border-top: 1px solid #eee;
    padding: 20px;
}
.gv-mobile-nav.gv-mobile-open { display: block; }
.gv-mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}
.gv-mobile-menu-list li a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gv-text);
}
.gv-mobile-support {
    margin-top: 20px;
    font-size: 12px;
    color: #555;
}
.gv-mobile-support a { color: var(--gv-green); }

/* =============================================================
   SECTION 1: HERO
   ============================================================= */
.gv-hero {
    background-image: url('../images/Header-Bg-Full.webp?v=4');
    background-size: cover;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.gv-hero-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.gv-hero-content { max-width: 580px; }
.gv-hero-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.gv-star-gold { color: #FFD000; font-size: 18px; }
.gv-hero-proof {
    font-family: var(--gv-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--gv-green);
    margin-left: 8px;
}
.gv-hero-h1 {
    font-family: var(--gv-font-display);
    font-size: clamp(52px, 7.5vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    color: var(--gv-text);
    text-transform: none;
    margin-bottom: 0;
    letter-spacing: -1px;
}
.gv-hero-line1 { display: block; }
.gv-hero-line2 {
    display: block;
    font-size: clamp(38px, 5.5vw, 75px);
    color: var(--gv-green);
}
.gv-hero-pricing {
    margin-top: 8px;
    margin-bottom: 20px;
}
.gv-hero-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.gv-price-original {
    font-family: var(--gv-font-display);
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 400;
    text-decoration: line-through;
    color: #999;
    line-height: 1;
}
.gv-price-new {
    font-family: var(--gv-font-display);
    font-size: clamp(40px, 5.5vw, 80px);
    font-weight: 400;
    color: var(--gv-green);
    line-height: 1;
}
.gv-price-plus {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.gv-price-plus-label {
    font-family: var(--gv-font-display);
    font-size: clamp(16px, 2vw, 30px);
    font-weight: 400;
    color: var(--gv-text);
    line-height: 1;
}
.gv-price-shipping {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 3vw, 47px);
    font-weight: 400;
    color: var(--gv-green);
    line-height: 1;
}
.gv-hero-save {
    display: inline-block;
    font-family: var(--gv-font);
    background: transparent;
    color: var(--gv-text);
    font-size: clamp(16px, 2vw, 30px);
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    letter-spacing: 0;
}
.gv-hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.gv-hero-img-desktop {
    max-height: 480px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}
.gv-hero-img-mobile { display: none; }

/* =============================================================
   SECTION 2: BENEFITS STRIP
   ============================================================= */
.gv-benefits-strip {
    background: var(--gv-green);
    padding: 28px 20px;
}
.gv-benefits-strip-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.gv-benefit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gv-white);
    text-align: center;
}
.gv-benefit-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.5);
}
.gv-benefit-circle img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.gv-benefit-label {
    font-family: var(--gv-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* =============================================================
   SECTION 3: SOCIAL PROOF
   ============================================================= */
.gv-social-proof {
    background-image: url('../images/Header-Bg-Full-2.webp?v=4');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}
.gv-social-proof-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
}
.gv-counter-block {
    text-align: center;
    margin-bottom: 50px;
}
.gv-counter-number {
    font-family: var(--gv-font-display);
    font-size: clamp(70px, 10vw, 110px);
    font-weight: 400;
    color: var(--gv-green);
    line-height: 1;
}
.gv-counter-label {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    color: var(--gv-green);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 4px;
}
.gv-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gv-review-card {
    background: var(--gv-green);
    color: var(--gv-white);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gv-review-card--center {
    transform: scale(1.03);
}
.gv-review-stars {
    color: var(--gv-yellow);
    font-size: 18px;
    letter-spacing: 2px;
}
.gv-review-title {
    font-family: var(--gv-font-display);
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.3;
}
.gv-review-body {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
}
.gv-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}
.gv-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
}
.gv-review-name {
    font-family: var(--gv-font-display);
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: 400;
    opacity: 1;
    line-height: 1;
}

/* =============================================================
   SECTION 4: SHOP / PRODUCT GRID
   ============================================================= */
.gv-shop-section {
    padding: 80px 20px;
    background: var(--gv-white);
}
.gv-shop-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    text-align: center;
}
.gv-shop-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--gv-green);
    text-transform: none;
    margin-bottom: 32px;
}
.gv-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 50px;
    overflow: hidden;
    display: inline-flex;
    border: 2px solid var(--gv-green);
}
.gv-tab {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gv-green);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--gv-font);
}
.gv-tab:hover { background: rgba(4,71,41,0.08); }
.gv-tab--active {
    background: var(--gv-green);
    color: var(--gv-white);
}
.gv-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.gv-product-card {
    background: var(--gv-white);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: left;
}
.gv-product-card:hover {
    box-shadow: var(--gv-shadow);
    transform: translateY(-4px);
}
.gv-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gv-green);
    color: var(--gv-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 1;
    text-transform: uppercase;
}
.gv-badge-oos {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #999;
    color: var(--gv-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 1;
}
.gv-product-img-link { display: block; overflow: hidden; }
.gv-product-img-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gv-product-card:hover .gv-product-img-link img { transform: scale(1.04); }
.gv-product-info {
    padding: 16px;
}
.gv-product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.gv-product-name a { color: var(--gv-text); }
.gv-product-name a:hover { color: var(--gv-green); }
.gv-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--gv-green);
    margin-bottom: 12px;
}
.gv-product-price del { color: #999; font-weight: 400; margin-right: 6px; }
.gv-btn-cart {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: var(--gv-green);
    color: var(--gv-white);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--gv-font);
}
.gv-btn-cart:hover { background: var(--gv-green-light); }
.gv-btn-oos { background: #999; }
.gv-no-products {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 16px;
}
.gv-shop-cta { margin-top: 20px; }

/* =============================================================
   SECTION 5: TIKTOK VIDEOS
   ============================================================= */
.gv-tiktok-section {
    background: var(--gv-beige);
    padding: 80px 20px;
}
.gv-tiktok-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.gv-tiktok-heading {
    margin-bottom: 48px;
}
.gv-tiktok-logo {
    height: 60px;
    width: auto;
    margin: 0 auto;
}
.gv-phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
}
.gv-phone-wrap {
    flex: 0 0 auto;
    width: 220px;
}
.gv-phone-wrap--center {
    width: 260px;
    margin-bottom: -20px;
}
.gv-phone-container {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19.5;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.gv-phone-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 32px;
}
.gv-phone-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    pointer-events: none;
    border-radius: 32px;
}
.gv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.9;
}
.gv-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
.gv-play-btn.gv-playing { display: none; }
.gv-tiktok-cta { margin-top: 20px; }

/* =============================================================
   SECTION 6: AS SEEN ON
   ============================================================= */
.gv-as-seen-on {
    background: var(--gv-green);
    padding: 28px 20px;
}
.gv-as-seen-on-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.gv-as-seen-label {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 2.5vw, 35px);
    font-weight: 400;
    color: var(--gv-white);
    white-space: nowrap;
}
.gv-media-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.gv-media-logos img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* =============================================================
   SECTION 7: FEATURED PRODUCTS (3-col)
   ============================================================= */
.gv-featured-products {
    padding: 80px 20px;
    background: var(--gv-white);
}
.gv-featured-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.gv-featured-col { text-align: center; }
.gv-featured-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.gv-featured-stars { color: var(--gv-yellow); font-size: 22px; letter-spacing: 3px; }
.gv-featured-proof {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    color: var(--gv-green);
}
.gv-featured-proof-sub { font-size: 14px; color: #555; }
.gv-featured-quote {
    font-family: var(--gv-font-display);
    font-size: clamp(16px, 2vw, 30px);
    font-weight: 400;
    font-style: normal;
    color: var(--gv-text);
    line-height: 1.3;
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin: 8px 0;
}
.gv-featured-product-link { display: block; }
.gv-featured-product-link img,
.gv-featured-product-placeholder img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.3s;
}
.gv-featured-product-link:hover img { transform: scale(1.03); }
.gv-featured-product-name {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    margin-top: 12px;
    color: var(--gv-green);
}
.gv-featured-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--gv-green);
    margin-top: 6px;
}

/* =============================================================
   SECTION 8: STATS
   ============================================================= */
.gv-stats-section {
    background-image: url('../images/bg.webp?v=4');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}
.gv-stats-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.gv-stats-text {
    display: flex;
    align-items: center;
    gap: 40px;
}
.gv-stat-item { text-align: center; }
.gv-stat-number {
    font-family: var(--gv-font-display);
    font-size: clamp(50px, 7vw, 80px);
    font-weight: 400;
    color: var(--gv-green);
    line-height: 1;
}
.gv-stat-label {
    font-family: var(--gv-font);
    font-size: clamp(14px, 1.8vw, 30px);
    font-weight: 400;
    color: var(--gv-black);
    text-transform: none;
    margin-top: 4px;
}
.gv-stat-divider {
    width: 2px;
    height: 80px;
    background: var(--gv-green);
    opacity: 0.4;
    flex-shrink: 0;
}
.gv-stats-image img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
}

/* =============================================================
   SECTION 9: STANDARDS
   ============================================================= */
.gv-standards-section {
    padding: 80px 20px;
    background: var(--gv-white);
    text-align: center;
}
.gv-standards-inner {
    max-width: 900px;
    margin: 0 auto;
}
.gv-standards-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 400;
    color: var(--gv-green);
    margin-bottom: 16px;
    line-height: 1.1;
}
.gv-standards-heading strong { font-weight: 400; color: var(--gv-green); }
.gv-standards-desc {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.gv-standards-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.gv-standard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gv-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.gv-standard-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gv-green);
}
.gv-standard-circle img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* =============================================================
   SECTION 10: COMPARISON
   ============================================================= */
.gv-comparison-section {
    background-image: url('../images/header-766.webp?v=4');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
}
.gv-comparison-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
.gv-comparison-cheese img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
}
.gv-comparison-table-wrap {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--gv-shadow);
}
.gv-comparison-table { width: 100%; }
.gv-comp-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
    text-align: center;
}
.gv-comp-col-label {}
.gv-comp-col-regular, .gv-comp-col-gv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--gv-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--gv-text);
}
.gv-comp-col-regular img, .gv-comp-col-gv img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.gv-comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    text-align: center;
    align-items: center;
}
.gv-comp-label {
    font-family: var(--gv-font);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    color: var(--gv-green);
}
.gv-comp-bad {
    font-size: 22px;
    color: #e53e3e;
    font-weight: 900;
}
.gv-comp-good {
    font-size: 22px;
    color: var(--gv-green);
    font-weight: 900;
}
.gv-comp-reviews {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gv-comp-review-card {
    background: var(--gv-green);
    color: var(--gv-white);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gv-comp-review-card h4 {
    font-family: var(--gv-font-display);
    font-size: clamp(18px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.3;
}
.gv-comp-review-card p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
    flex: 1;
}

/* =============================================================
   SECTION 11: TRUFFLELICIOUS
   ============================================================= */
.gv-truffle-section {
    background-image: url('../images/homebg.webp?v=4');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    background-color: #FFFFFF;
}
.gv-truffle-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.gv-truffle-content {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 48px 40px;
}
.gv-truffle-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 400;
    color: var(--gv-green);
    line-height: 1.1;
    margin-bottom: 12px;
}
.gv-truffle-sub {
    font-family: var(--gv-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--gv-text);
    margin-bottom: 28px;
}
.gv-truffle-image img {
    max-height: 450px;
    width: auto;
    margin: 0 auto;
}

/* =============================================================
   SECTION 12: BLOG
   ============================================================= */
.gv-blog-section {
    padding: 80px 20px;
    background: var(--gv-white);
}
.gv-blog-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
}
.gv-blog-header {
    text-align: center;
    margin-bottom: 48px;
}
.gv-blog-sub {
    display: block;
    font-family: var(--gv-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gv-green);
    margin-bottom: 8px;
}
.gv-blog-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 400;
    color: var(--gv-green);
    text-transform: none;
}
.gv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.gv-blog-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.2s, transform 0.2s;
}
.gv-blog-card:hover {
    box-shadow: var(--gv-shadow);
    transform: translateY(-4px);
}
.gv-blog-img-link { display: block; overflow: hidden; }
.gv-blog-img-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}
.gv-blog-card:hover .gv-blog-img-link img { transform: scale(1.04); }
.gv-blog-content { padding: 20px; }
.gv-blog-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.gv-blog-title a { color: var(--gv-text); }
.gv-blog-title a:hover { color: var(--gv-green); }
.gv-blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
}
.gv-blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--gv-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gv-no-posts { text-align: center; color: #999; padding: 40px; }

/* =============================================================
   SECTION 13: FOOTER CTA
   ============================================================= */
.gv-footer-cta {
    background: var(--gv-green);
    padding: 80px 20px;
}
.gv-footer-cta-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.gv-footer-cta-text {
    color: var(--gv-white);
    text-align: center;
}
.gv-footer-cta-stars {
    font-size: 28px;
    color: var(--gv-yellow);
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.gv-footer-cta-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--gv-white);
}
.gv-footer-cta-sub {
    font-family: var(--gv-font-display);
    font-size: clamp(22px, 3vw, 45px);
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 1;
    color: var(--gv-yellow);
}
.gv-yellow { color: var(--gv-yellow); }
.gv-footer-cta-images .swiper {
    border-radius: 12px;
    overflow: hidden;
}
.gv-footer-cta-swiper .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.gv-footer-main {
    background: #022d1a;
    color: var(--gv-white);
    padding: 60px 20px 40px;
}
.gv-footer-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
}
.gv-footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.gv-footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}
.gv-social-icon {
    color: var(--gv-white);
    opacity: 0.8;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}
.gv-social-icon:hover { opacity: 1; }
.gv-social-icon img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.gv-footer-heading {
    font-family: var(--gv-font-display);
    font-size: clamp(28px, 3.5vw, 45px);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: var(--gv-white);
}
.gv-footer-links li {
    margin-bottom: 10px;
}
.gv-footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.gv-footer-links a:hover { color: var(--gv-white); }
.gv-footer-newsletter-desc {
    font-family: var(--gv-font);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    line-height: 1.6;
}
.gv-footer-newsletter .frm_forms input[type="email"],
.gv-footer-newsletter input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--gv-white);
    border-radius: 6px;
    font-family: var(--gv-font);
    font-size: 14px;
    margin-bottom: 10px;
}
.gv-footer-newsletter .frm_forms input[type="submit"],
.gv-footer-newsletter input[type="submit"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--gv-yellow);
    color: var(--gv-black);
    border: none;
    border-radius: 6px;
    font-family: var(--gv-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}
.gv-footer-newsletter .frm_forms input[type="submit"]:hover { background: #e6bc00; }
.gv-footer-payments {
    max-width: var(--gv-container);
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.gv-payment-icons {
    height: 32px;
    width: auto;
    margin: 0 auto;
    opacity: 0.7;
}
.gv-footer-legal {
    background: #f5f5f5;
    padding: 16px 20px;
}
.gv-footer-legal-inner {
    max-width: var(--gv-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.gv-footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.gv-footer-legal-links a {
    font-family: var(--gv-font);
    font-size: 13px;
    font-weight: 300;
    color: #555;
    transition: color 0.2s;
}
.gv-footer-legal-links a:hover { color: var(--gv-green); }
.gv-footer-legal-links span { color: #ccc; }
.gv-footer-copyright {
    font-family: var(--gv-font);
    font-size: 12px;
    font-weight: 300;
    color: #888;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
    .gv-hero-h1 { font-size: clamp(44px, 6.5vw, 90px); }
    .gv-hero-line2 { font-size: clamp(32px, 4.8vw, 68px); }
    .gv-price-new { font-size: clamp(36px, 5vw, 72px); }
    .gv-price-original { font-size: clamp(24px, 3.5vw, 50px); }
    .gv-price-shipping { font-size: clamp(18px, 2.5vw, 40px); }
}

@media (max-width: 1024px) {
    .gv-products-grid { grid-template-columns: repeat(2, 1fr); }
    .gv-reviews-grid { grid-template-columns: 1fr; }
    .gv-review-card--center { transform: none; }
    .gv-featured-inner { grid-template-columns: 1fr; }
    .gv-stats-inner { grid-template-columns: 1fr; text-align: center; }
    .gv-truffle-inner { grid-template-columns: 1fr; }
    .gv-footer-cta-inner { grid-template-columns: 1fr; }
    .gv-comparison-inner { grid-template-columns: 1fr; }
    .gv-comp-reviews { grid-template-columns: repeat(2, 1fr); }
    .gv-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .gv-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .gv-benefits-bar { display: none; }
    .gv-navbar-inner {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }
    .gv-nav-search { order: 1; }
    .gv-nav-logo { order: 2; }
    .gv-nav-right { order: 3; }
    .gv-nav-support { display: none; }
    .gv-hamburger { display: flex; order: 4; }
    .gv-nav-menu { display: none; }
    .gv-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    .gv-hero-stars { justify-content: center; }
    .gv-hero-price-row { justify-content: center; }
    .gv-hero-image { justify-content: center; }
    .gv-hero-img-desktop { display: none; }
    .gv-hero-img-mobile { display: block; max-width: 320px; margin: 0 auto; }
    .gv-hero-h1 { font-size: clamp(44px, 12vw, 72px); }
    .gv-hero-line2 { font-size: clamp(32px, 9vw, 54px); }
    .gv-price-new { font-size: clamp(40px, 11vw, 64px); }
    .gv-price-original { font-size: clamp(22px, 6vw, 40px); }
    .gv-price-shipping { font-size: clamp(18px, 5vw, 32px); }
    .gv-price-plus-label { font-size: clamp(14px, 4vw, 22px); }
    .gv-hero-save { font-size: clamp(14px, 4vw, 22px); }
    .gv-benefits-strip-inner { gap: 20px; }
    .gv-phones-row { gap: 12px; }
    .gv-phone-wrap { width: 160px; }
    .gv-phone-wrap--center { width: 190px; }
    .gv-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gv-comp-reviews { grid-template-columns: 1fr; }
    .gv-blog-grid { grid-template-columns: 1fr; }
    .gv-footer-inner { grid-template-columns: 1fr; }
    .gv-footer-legal-inner { flex-direction: column; text-align: center; }
    .gv-as-seen-on-inner { flex-direction: column; gap: 20px; }
    .gv-benefits-inner { gap: 20px; flex-direction: column; }
    .gv-counter-number { font-size: clamp(60px, 18vw, 90px); }
    .gv-counter-label { font-size: clamp(18px, 5vw, 30px); }
    .gv-standards-heading { font-size: clamp(28px, 8vw, 52px); }
    .gv-truffle-heading { font-size: clamp(28px, 8vw, 52px); }
    .gv-footer-cta-heading { font-size: clamp(24px, 7vw, 44px); }
    .gv-footer-cta-sub { font-size: clamp(18px, 5vw, 32px); }
    .gv-blog-heading { font-size: clamp(26px, 7vw, 40px); }
    .gv-as-seen-label { font-size: clamp(18px, 5vw, 28px); }
    .gv-footer-heading { font-size: clamp(22px, 6vw, 36px); }
}

@media (max-width: 480px) {
    .gv-products-grid { grid-template-columns: 1fr; }
    .gv-phones-row { gap: 8px; }
    .gv-phone-wrap { width: 130px; }
    .gv-phone-wrap--center { width: 155px; }
    .gv-standards-icons { gap: 20px; }
    .gv-stats-text { flex-direction: column; gap: 20px; }
    .gv-stat-divider { width: 80px; height: 2px; }
    .gv-hero-h1 { font-size: clamp(36px, 11vw, 56px); }
    .gv-hero-line2 { font-size: clamp(26px, 8vw, 42px); }
    .gv-price-new { font-size: clamp(36px, 10vw, 52px); }
    .gv-price-original { font-size: clamp(18px, 5vw, 32px); }
    .gv-price-shipping { font-size: clamp(14px, 4vw, 26px); }
    .gv-benefit-circle { width: 64px; height: 64px; }
    .gv-benefit-circle img { width: 42px; height: 42px; }
    .gv-benefit-label { font-size: 10px; }
}

/* WooCommerce price overrides */
.woocommerce-Price-amount { color: inherit; }
.woocommerce-Price-currencySymbol { font-size: 0.8em; }
