/* GOLDEN GRAIN FOODS - MASTER BRANDED STYLESHEET 
    Architecture: Split-Background Header (White/Green) 
*/

:root {
    --ggf-green: #004d2c;
    --ggf-gold: #FDCC03;
    --ggf-gold-dark: #b38f00;
    --ggf-white: #ffffff;
    --nav-height: 80px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 1. Global Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #fcfcfc;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* 2. Header & Layout Container */
.ggf-header {
    background-color: var(--ggf-green); /* Fills the right side */
    border-bottom: 5px solid var(--ggf-gold);
    width: 100%;
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-container-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* 3. White Brand Wrapper (Left) */
.brand-wrapper {
    background-color: var(--ggf-white);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    min-width: 500px;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 15px; /* Tightly groups logo and text */
    text-decoration: none;
}

.nav-logo-large {
    height: 90px; /* Oversized/Floating effect */
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-content:hover .nav-logo-large {
    transform: scale(1.05) rotate(-2deg);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: var(--ggf-green);
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

/* 4. Main Navigation (Right) */
.main-nav {
    display: flex;
    align-items: center;
    padding-right: 4%;
    height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

    .nav-links > li {
        position: relative;
        height: var(--nav-height);
        display: flex;
        align-items: center;
    }

    .nav-links a {
        color: var(--ggf-white);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: var(--transition);
    }

        .nav-links a:hover {
            color: var(--ggf-gold);
        }

/* 5. Submenu / Dropdown */
.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--ggf-green);
    min-width: 220px;
    padding: 15px 0;
    border-top: 3px solid var(--ggf-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: none;
    list-style: none;
}

.has-submenu:hover .submenu {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.submenu li {
    padding: 8px 25px;
}

    .submenu li a {
        text-transform: none;
        font-weight: 500;
        font-size: 0.95rem;
    }

/* 6. Enquire CTA Button */
.nav-cta {
    background: linear-gradient(145deg, var(--ggf-gold), #e6b800);
    color: var(--ggf-green) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 800 !important;
    box-shadow: 0 4px 0 var(--ggf-gold-dark);
}

    .nav-cta:active {
        transform: translateY(2px);
        box-shadow: 0 2px 0 var(--ggf-gold-dark);
    }

/* 7. Footer */
.ggf-footer {
    background-color: #00331d;
    color: var(--ggf-white);
    padding: 60px 4% 30px;
    width: 100%;
}

/* 8. Animations & Responsiveness */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .brand-wrapper {
        min-width: 350px;
    }

    .brand-text {
        font-size: 1.4rem;
    }

    .nav-logo-large {
        height: 85px;
    }

    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .brand-text {
        display: none;
    }
    /* Show only logo on mobile */
    .brand-wrapper {
        min-width: auto;
        padding-right: 40px;
    }
}
/* --- FOOTER STYLES --- */
.ggf-footer {
    background-color: #00331d; /* Slightly darker than main green for depth */
    color: #e2e8f0;
    padding: 80px 0 0 0;
    font-size: 0.95rem;
    border-top: 5px solid var(--ggf-gold);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4% 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h3 {
    color: var(--ggf-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Brand Section */
.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.brand-tagline {
    font-style: italic;
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer-section address {
    font-style: normal;
    line-height: 1.8;
    color: #cbd5e0;
}

.footer-contact a {
    color: var(--ggf-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #cbd5e0;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--ggf-gold);
            padding-left: 5px;
        }

/* Promise Section */
.footer-promise p {
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-badges {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.badge {
    font-size: 0.75rem;
    border: 1px solid var(--ggf-gold);
    color: var(--ggf-gold);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #002616;
    padding: 25px 4%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

    .legal-links a {
        color: #718096;
        text-decoration: none;
    }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
}
:root {
    --ggf-green: #00331d;
    --ggf-gold: #FDCC03;
    --ggf-white: #ffffff;
}

.ggf-hero-slider {
    position: relative;
    height: 480px;
    /* Professional Gradient: Top-Left (Light) to Bottom-Right (Dark) */
    background: linear-gradient(135deg, var(--ggf-white) 30%, #e8f0ec 60%, #cfdbd5 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ggf-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .ggf-slide.active {
        opacity: 1;
        visibility: visible;
    }

.slide-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Typography Section */
.category-tag {
    color: var(--ggf-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}


.display-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gold {
    color: var(--ggf-gold);
}

.slide-text p {
    max-width: 450px;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}
.margin-100
{
        margin-left: 100px !important;
}
/* Image Section with Blob Effect */
.slide-image {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
}

.image-bg-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.slide-image img {
    max-height: 380px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transform: scale(0.9);
    transition: transform 1.2s ease;
}

.ggf-slide.active img {
    transform: scale(1);
}

/* Buttons */
.btn-ggf-gold {
    background: var(--ggf-gold);
    color: var(--ggf-green);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    transition: 0.3s;
}

    .btn-ggf-gold:hover {
        background: #d4b475;
    }

.btn-ggf-link {
/*    color: var(--ggf-white);*/
    color: var(--ggf-gold);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
}

.dots-container {
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

    .dot.active {
        background: var(--ggf-gold);
        width: 24px;
        border-radius: 4px;
    }
/* GGF FLOATING SIDEBAR - LEFT ALIGNED */
.ggf-floating-sidebar {
    position: fixed;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.side-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: width 0.3s ease, background 0.3s ease;
    overflow: hidden;
    position: relative;
    border: none;
    cursor: pointer;
}

    /* Label Slide Effect */
    .side-icon span {
        position: absolute;
        left: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .side-icon:hover {
        width: 150px; /* Expands to show text */
        border-radius: 0 5px 5px 0;
    }

        .side-icon:hover span {
            opacity: 1;
        }

/* Brand Colors */
.fb {
    background: #3b5998;
}

.ig {
    background: #e1306c;
}

.li {
    background: #0077b5;
}

.yt {
    background: #ff0000;
}

.wa {
    background: #25d366;
}

.feedback-trigger {
    background: var(--ggf-gold);
    color: var(--ggf-green);
}

/* Feedback Card Positioned Near Sidebar */
.side-feedback-card {
    position: fixed;
    left: -400px; /* Hidden */
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: white;
    padding: 25px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.2);
    z-index: 10001;
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 0 15px 15px 0;
    border-left: 5px solid var(--ggf-gold);
}

    .side-feedback-card.active {
        left: 50px; /* Slides out next to icons */
    }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--ggf-green);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.ggf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 51, 29, 0.08);
        border-color: var(--ggf-gold);
    }

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f9f9f9;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-card:hover img {
    transform: scale(1.08);
}

.card-info {
    padding: 25px;
    flex-grow: 1;
}

    .card-info h3 {
        color: var(--ggf-green);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .card-info p {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

/* Premium Card (Gold Border) */
.product-card.premium {
    border-top: 4px solid var(--ggf-gold);
}

.badge-gold {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ggf-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Button Variants */
.btn-ggf-outline {
    background: transparent;
    border: 2px solid var(--ggf-green);
    color: var(--ggf-green);
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

    .btn-ggf-outline:hover {
        background: var(--ggf-green);
        color: #fff;
    }
/* --- HERO SECTION --- */
.ggf-products-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
    text-align: center;
}

.badge-gold-outline {
    border: 1px solid var(--ggf-gold);
    color: var(--ggf-gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

/* --- STICKY FILTER BAR --- */
.ggf-filter-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.filter-btn {
    background: none;
    border: none;
    margin: 0 15px;
    font-weight: 600;
    color: #888;
    transition: 0.3s;
    font-size: 0.95rem;
    position: relative;
}

    .filter-btn.active, .filter-btn:hover {
        color: var(--ggf-green);
    }

        .filter-btn.active::after {
            content: '';
            position: absolute;
            bottom: -18px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--ggf-gold);
        }

/* --- SECTION HEADERS --- */
.group-header {
    margin: 60px 0 30px;
    border-left: 4px solid var(--ggf-green);
    padding-left: 20px;
}

    .group-header h2 {
        color: var(--ggf-green);
        font-weight: 800;
        margin: 0;
    }

    .group-header p {
        color: #888;
        margin: 5px 0 0;
    }

/* --- GLASS CARD (For Wellness) --- */
.product-glass-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

    .product-glass-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.8s;
    }

.glass-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* --- MINIMAL CARD (For Masalas/Flours) --- */
.product-minimal-card {
    text-align: center;
    padding-bottom: 20px;
}

.img-zoom-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.product-minimal-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s;
}

.product-minimal-card:hover img {
    transform: scale(1.1);
}
.product-group-wrapper {
    transition: opacity 0.4s ease-in-out;
    display: block; /* Default state */
}

/* Ensure the sticky bar doesn't hide behind other elements */
.ggf-filter-bar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 51, 29, 0.1);
}
/* --- PRODUCT DETAIL SPECIFICS --- */
.ggf-detail-container {
    padding: 60px 0;
    background: #fff;
}

.breadcrumb-nav {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-product-display {
    background: #fcfcfc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
}

.badge-premium-gold {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--ggf-gold);
    color: var(--ggf-green);
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ggf-green);
    line-height: 1;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--ggf-gold-dark);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Accordion Customization */
.ggf-accordion .accordion-button {
    background-color: transparent;
    color: var(--ggf-green);
    font-weight: 700;
    box-shadow: none;
    border-bottom: 1px solid #eee;
}

    .ggf-accordion .accordion-button:not(.collapsed) {
        color: var(--ggf-gold-dark);
        border-bottom: 2px solid var(--ggf-gold);
    }

/* Buttons */
.btn-ggf-whatsapp {
    background: #25d366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .btn-ggf-whatsapp:hover {
        background: #1da851;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    }

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

    .thumb:hover, .thumb.active {
        border-color: var(--ggf-gold);
    }
/* GOLDEN GRAIN FOODS - PRODUCT PAGE MASTER STYLES 
    Optimized for: Glass Cards, Minimalist Grid, and Sticky Filters
*/

:root {
    --ggf-green: #00331d;
    --ggf-green-light: #004d2c;
    --ggf-gold: #FDCC03;
    --ggf-gold-dark: #b38f00;
    --ggf-white: #ffffff;
    --nav-height: 80px; /* Match your main header height */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- 1. HERO SECTION --- */
.ggf-products-hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
    border-bottom: 1px solid #eee;
}

.badge-gold-outline {
    border: 1px solid var(--ggf-gold);
    color: var(--ggf-gold-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.display-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--ggf-green);
    letter-spacing: -1px;
}

/* --- 2. STICKY FILTER BAR --- */
.ggf-filter-bar {
    position: sticky;
    top: var(--nav-height);
    z-index: 1040;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 5px;
    font-weight: 700;
    color: #777;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

    .filter-btn:hover, .filter-btn.active {
        color: var(--ggf-green);
    }

        .filter-btn.active::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 20%;
            width: 60%;
            height: 3px;
            background: var(--ggf-gold);
            border-radius: 10px;
        }

/* --- 3. PRODUCT GROUP WRAPPERS --- */
.product-group-wrapper {
    margin-bottom: 80px;
    transition: opacity 0.5s ease;
}

.group-header {
    margin-bottom: 40px;
    border-left: 5px solid var(--ggf-gold);
    padding-left: 20px;
}

    .group-header h2 {
        color: var(--ggf-green);
        font-weight: 800;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .group-header p {
        color: #666;
        font-size: 1.1rem;
    }

/* --- 4. PREMIUM GLASS CARDS (Wellness) --- */
.product-glass-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: #f9f9f9;
}

    .product-glass-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease;
    }

    .product-glass-card:hover img {
        transform: scale(1.1);
    }

.glass-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

    .glass-content h4 {
        color: var(--ggf-green);
        font-weight: 800;
        margin-bottom: 5px;
    }

.badge-gold {
    background: var(--ggf-gold);
    color: var(--ggf-green);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

/* --- 5. MINIMALIST CARDS (Masalas & Flours) --- */
.product-minimal-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

    .product-minimal-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 51, 29, 0.08);
        border-color: var(--ggf-gold);
    }

.img-zoom-container {
    background: #fcfcfc;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-minimal-card img {
    max-width: 90%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-minimal-card:hover img {
    transform: scale(1.15);
}

.product-minimal-card h5 {
    color: var(--ggf-green);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-minimal-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* --- 6. UTILITY CLASSES --- */
.btn-ggf-outline {
    background: transparent;
    border: 2px solid var(--ggf-green);
    color: var(--ggf-green);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 0.85rem;
}

    .btn-ggf-outline:hover {
        background: var(--ggf-green);
        color: white;
    }

.badge.bg-success {
    background-color: #28a745 !important;
    font-weight: 600;
}

/* Responsiveness */
@media (max-width: 768px) {
    .filter-btn {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .product-glass-card {
        height: 350px;
    }
}
/* Fix for the vertical stacking seen in screenshot */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure cards have a consistent base */
.product-minimal-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    height: 100%; /* Keeps all cards in a row the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

    .product-minimal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

/* Fix for the huge empty image space in screenshot */
.img-zoom-container {
    width: 100%;
    height: 180px; /* Fixed height prevents the "giant block" look */
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .img-zoom-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

/* Title styling */
.product-minimal-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #00331d; /* Your GGF Green */
    margin: 10px 0 0 0;
}
/* Full Width View More Button */
.btn-view-more-full {
    width: 100%;
    background-color: transparent;
    border: 2px solid var(--ggf-green);
    color: var(--ggf-green);
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 20px;
    cursor: pointer;
}

    .btn-view-more-full:hover {
        background-color: var(--ggf-green);
        color: var(--ggf-gold);
        box-shadow: 0 10px 20px rgba(0, 51, 29, 0.15);
        transform: translateY(-2px);
    }

/* Force 4 items per row on large screens */
@media (min-width: 1200px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Card Consistency */
.product-minimal-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.img-zoom-container {
    height: 250px; /* Increased for full-screen feel */
    overflow: hidden;
    background: #fcfcfc;
}
/* Individual Card Button Style */
.btn-ggf-card {
    background-color: var(--ggf-green);
    color: var(--ggf-white);
    border: 1px solid var(--ggf-green);
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%; /* Makes button fill the card width */
}

    .btn-ggf-card:hover {
        background-color: var(--ggf-gold);
        color: var(--ggf-green);
        border-color: var(--ggf-gold);
    }

/* Ensure the card content expands to push the button down */
.card-details {
    flex-grow: 1;
}

.product-minimal-card {
    display: flex;
    flex-direction: column;
}
/* Prevent Social Bar Overlap */
.product-details-container {
    padding-left: 80px; /* Offset for the left sticky social bar */
}

/* Premium Typography & Spacing */
.product-title {
    color: #00331d !important; /* Your signature Forest Green */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-tagline {
    color: #c5a059 !important; /* Your signature Gold */
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Gallery Enhancements */
.privileged-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c5a059;
    color: #fff;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-img-container img {
    width: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #f1f1f1;
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

    .thumbnail-img.active, .thumbnail-img:hover {
        border-color: #c5a059;
    }

/* Info Blocks & Alignment */
.info-block {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

    .info-block:last-of-type {
        border-bottom: none;
    }

.benefit-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

/* Preparation Box */
.prep-box {
    background-color: #f8fcf9 !important; /* Very subtle mint */
    border-left: 4px solid #00331d !important;
    padding: 20px !important;
}

/* Action Buttons */
.btn-whatsapp-full {
    background-color: #25d366;
    color: white;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

    .btn-whatsapp-full:hover {
        background-color: #128c7e;
        transform: translateY(-2px);
    }

.btn-download-catalog {
    border: 2px solid #00331d;
    color: #00331d;
    padding: 13px 25px;
    font-weight: 600;
    border-radius: 8px;
}
.product-gallery {
    position: relative; /* Crucial: This creates the boundary for the badge */
    z-index: 1; /* Low positive integer */
}

.privileged-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    /* The Fix: Increase this to stay above layout elements */
    z-index: 10;
    background: #c5a059; /* Your Gold */
    color: #fff;
    padding: 6px 15px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    pointer-events: none; /* Allows clicks to pass through to the image */
}
/* ================= HERO GRADIENT ================= */
.ggf-products-hero-gradient {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Premium GGF Gradient */
    background: linear-gradient( 135deg, #00331d 0%, /* Dark Green */
    #004d2c 40%, /* Medium Green */
    #0a5c36 70%, /* Slight variation */
    #c5a059 100% /* Gold fade */
    );
    color: #ffffff;
}

    /* Soft overlay glow */
    .ggf-products-hero-gradient::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 300px;
        height: 300px;
        background: rgba(253, 204, 3, 0.15);
        border-radius: 50%;
        filter: blur(80px);
    }

    /* Improve text contrast */
    .ggf-products-hero-gradient .display-title {
        color: #00331d;
    }

    .ggf-products-hero-gradient .text-gold {
        color: #FDCC03;
    }

    /* Buttons contrast */
    .ggf-products-hero-gradient .btn-ggf-outline {
        border-color: #ffffff;
        color: #ffffff;
    }

        .ggf-products-hero-gradient .btn-ggf-outline:hover {
            background: #ffffff;
            color: #00331d;
        }
/* ================= HERO STRIP ================= */
.product-hero-strip {
    background: linear-gradient(135deg, #00331d, #004d2c, #c5a059);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

    .product-hero-strip h2 {
        font-weight: 800;
        letter-spacing: 1px;
    }

    .product-hero-strip p {
        opacity: 0.85;
    }


/* ================= PRODUCT IMAGE ================= */
.main-product-img {
    transition: transform 0.4s ease;
}

    .main-product-img:hover {
        transform: scale(1.05);
    }


/* ================= INFO BLOCK ================= */
.info-block {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: #00331d;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ================= BENEFITS ================= */
.benefit-list li {
    padding: 6px 0;
    font-size: 14px;
}


/* ================= PREP BOX ================= */
.prep-box {
    background: #f8fcf9;
    border-left: 4px solid #00331d;
    padding: 20px;
}


/* ================= BUTTONS ================= */
.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp-full {
    background: #25d366;
    color: white;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
}

.btn-download-catalog {
    border: 2px solid #00331d;
    color: #00331d;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
}


/* ================= THUMBNAIL ================= */
.thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

    .thumbnail-img.active,
    .thumbnail-img:hover {
        border-color: #c5a059;
    }
.ggf-slide {
    display: none;
}

    .ggf-slide.active {
        display: block;
    }

.slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .product-card img {
        width: 100%;
        border-radius: 10px;
    }

.ggf-cta {
    background: #0c3d2e;
    color: white;
    padding: 60px 0;
}

.btn-ggf-gold {
    background: gold;
    padding: 10px 20px;
    border-radius: 5px;
}

@media(max-width:768px) {
    .slide-inner, .about-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: 300px;
    margin: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

    .product-card img {
        width: 100%;
        border-radius: 10px;
    }

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: gold;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    border-radius: 50%;
}

    .slider-btn.prev {
        left: -10px;
    }

    .slider-btn.next {
        right: -10px;
    }

@media(max-width:768px) {
    .product-card {
        min-width: 80%;
    }
}
.ggf-about {
    padding: 80px 0;
}

.section-tag {
    color: #c9a227;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title {
    font-size: 32px;
    margin: 10px 0 20px;
    color:white;
}
.third-title {
    font-size: 32px;
    margin: 10px 0 20px;
    color:white;
}

.text-gold {
    color: #c9a227;
}

.about-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-features {
    margin: 20px 0;
}

.feature {
    margin-bottom: 10px;
    font-weight: 500;
}

    .feature span {
        color: green;
        margin-right: 8px;
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

    .image-wrapper img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

.image-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: gold;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* BACKDROP */
.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

/* BOX */
.enquiry-box {
    background: #fff;
    max-width: 450px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    animation: popupFade 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

    /* TITLE */
    .enquiry-box h2 {
        margin-bottom: 5px;
    }

.sub-text {
    color: #777;
    margin-bottom: 20px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        outline: none;
        font-size: 14px;
    }

/* BUTTON */
.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, #c9a227, #e6c200);
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* ANIMATION */
@keyframes popupFade {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .enquiry-box {
        margin: 40px 15px;
        padding: 20px;
    }
}
.multi-dropdown {
    width: 100%;
    height: 120px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
}

    .multi-dropdown option {
        padding: 8px;
    }
/* =========================================
   NAVBAR BASE
========================================= */

.ggf-header {
    background: var(--ggf-green);
    height: var(--nav-height);
    position: relative;
    z-index: 1000;
}

.nav-container-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* =========================================
   NAV LINKS (DESKTOP)
========================================= */

.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
}

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        color: var(--ggf-white);
        text-decoration: none;
        font-weight: 600;
        position: relative;
        transition: 0.3s;
    }

        /* Hover underline */
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--ggf-gold);
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--ggf-gold);
        }

/* CTA BUTTON */
.nav-cta-btn {
    background: var(--ggf-gold);
    color: var(--ggf-green) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
}

/* =========================================
   HAMBURGER
========================================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
}

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: var(--ggf-gold);
        margin: 4px 0;
        display: block;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .menu-toggle {
        display: flex;
        margin-right: 20px;
    }

    .main-nav {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--ggf-white);
        display: none;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

        .main-nav.active {
            display: flex;
        }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

        .nav-links a {
            color: var(--ggf-green);
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

    .nav-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Fix logo section */
    .brand-wrapper {
        clip-path: none;
    }

    .brand-text {
        display: none;
    }
}

@media (max-width: 991px) {

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        /* Premium card look */
        background: linear-gradient(135deg, #ffffff, #f9f9f9);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

        /* Each item */
        .nav-links li {
            width: 100%;
        }

        /* Links styling */
        .nav-links a {
            display: block;
            padding: 12px 14px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--ggf-green);
            transition: all 0.3s ease;
        }

            /* Hover effect */
            .nav-links a:hover {
                background: rgba(212, 175, 55, 0.15); /* gold tint */
                color: var(--ggf-green);
                transform: translateX(4px);
            }

            /* Active / selected */
            .nav-links a.active {
                background: var(--ggf-gold);
                color: var(--ggf-green);
                font-weight: 700;
            }

        /* Divider line */
        .nav-links li:not(:last-child) a {
            border-bottom: 1px solid #eee;
        }

    /* CTA button standout */
    .nav-cta-btn {
        background: linear-gradient(135deg, var(--ggf-gold), #f5d27a);
        color: var(--ggf-green) !important;
        text-align: center;
        margin-top: 10px;
        padding: 12px;
        font-weight: 700;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

        .nav-cta-btn:hover {
            transform: scale(1.02);
        }
}
/* ================= GLOBAL PRESENCE ================= */
.section-subtitle {
    color: white;
}

.ggf-global-presence {
    padding: 20px 0;
    background: #06140e;
    overflow: hidden;
}

.global-presence-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.global-content {
    padding-right: 20px;
}

.global-text {
    color: #d2d2d2;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.global-image-wrapper {
    text-align: right;
}

.global-map-image {
    width: 100%;
    max-width: 750px;
    border-radius: 25px;
    box-shadow: 0 0 40px rgba(212,175,55,0.20);
    transition: 0.4s ease;
}

    .global-map-image:hover {
        transform: scale(1.02);
    }

.global-stats {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 20px 25px;
    border-radius: 16px;
    min-width: 140px;
    text-align: center;
    transition: 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
        border-color: #d4af37;
    }

    .stat-box h3 {
        color: #d4af37;
        font-size: 28px;
        margin-bottom: 5px;
    }

    .stat-box span {
        color: #ddd;
        font-size: 14px;
    }

/* ================= RESPONSIVE ================= */

@@media(max - width: 992px) {

    .global-presence-grid {
        grid-template-columns: 1fr;
    }

    .global-content {
        order: 2;
        text-align: center;
        padding-right: 0;
    }

    .global-image-wrapper {
        order: 1;
        text-align: center;
    }

    .global-stats {
        justify-content: center;
    }
}

/* PRODUCTS */
.ggf-products {
    padding: 100px 0;
}

.product-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: 260px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

    .product-card img {
        width: 100%;
        height: 250px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .product-card h4,
    .product-card h5 {
        color: #d4af37;
        margin-bottom: 10px;
    }

.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background: #d4af37;
    border: none;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

    .slider-btn.prev {
        left: -10px;
    }

    .slider-btn.next {
        right: -10px;
    }
/* RESPONSIVE */
@@media(max-width:992px) {

    .slide-inner,
    .about-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .display-title {
        font-size: 50px;
    }

    .global-text {
        width: 100%;
    }
}

@@media(max-width:768px) {

    .display-title {
        font-size: 40px;
    }



    .about-features {
        grid-template-columns: 1fr;
    }
}




