/* submenu lieferort i LP   */

/* 1. Zmień min-height tylko dla elementów submenu Lieferort */
header .wide 
span.nav-link.--has-child[title="Lieferort"]
+ ul.navbar-subnav
.navbar-subnav__wrapper > .nav-item .nav-link {
    min-height: 4rem !important;
}

/* 2. Ukryj div .gfx_lvl_2_wrapper tylko w submenu Lieferort */
header .wide 
span.nav-link.--has-child[title="Lieferort"]
+ ul.navbar-subnav
.gfx_lvl_2_wrapper {
    display: none !important;
}


        .gg-landing-page {
            font-family: inherit;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: transparent;
        }

        .gg-landing-page h1 {
            color: inherit;
            text-align: left;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .gg-landing-page .intro-text {
            max-width: 100%;
            margin: 0 0 3rem 0;
            text-align: left;
            color: inherit;
            font-size: 1.6rem;
            line-height: 2.5rem;
        }

        .gg-landing-page .intro-text p {
            margin-bottom: 1rem;
        }
        
         .gg-landing-page .intro-text h3 {
               margin: 10px 0 10px;
            font-size: 1.6rem;
            color: inherit;
            font-weight: 600;
        }

        .gg-section {
            margin-bottom: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .gg-section:first-of-type {
            border-top: none;
        }

        .gg-section h2 {
            color: inherit;
            text-align: left;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .gg-section-intro {
            text-align: left;
            max-width: 100%;
            margin: 0 0 2rem 0;
                        color: inherit;
            font-size: 1.6rem;
            line-height: 2.5rem;
        }



        .gg-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 10px;
        }

        .gg-card {
            border: 1px solid #e0e0e0;
            border-radius: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        .gg-card:hover {
            border-color: #ccc;
        }

        .gg-card-img-container {
            width: 100%;
            height: 250px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-sizing: border-box;
        }

        .gg-card-img-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .gg-card-content {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: left;
        }

        .gg-card h3 {
            margin: 0 0 10px;
            font-size: 1.6rem;
            color: inherit;
            font-weight: 600;
        }

        .gg-card p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .gg-btn {
            display: inline-block;
            background: #241704;
            border: 1px solid #241704;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            padding: 1.2rem 2.4rem;
            font-family: 'Nunito', "Arial", sans-serif;
            text-transform: uppercase;
            line-height: 1.6rem;
            letter-spacing: 1px;
            transition: background-color .2s, color .2s, border-color .2s;
            text-align: center;
            cursor: pointer;
            font-size: 1.4rem;
            align-self: flex-start;
        }

        .gg-btn:hover {
            background: #745221;
            border: 1px solid #745221;
            color: #fff;
        }

        .gg-tips {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 4px;
            margin-top: 3rem;
        }

        .gg-tips h3 {
            text-align: left;
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            color: inherit;
        }

        .gg-tips p {
            text-align: left;
            margin-bottom: 2rem;
            font-size: 1.4rem;
        }

        .gg-tips-list {
            list-style: decimal;
            padding: 0 0 0 20px;
            max-width: 800px;
            margin: 0;
            text-align: left;
        }

        .gg-tips-list li {
            position: relative;
            padding-left: 5px;
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .gg-tips-list li::before {
            content: none;
        }

        .gg-tips-list strong {
            color: inherit;
        }

        @media (max-width: 768px) {
            .gg-grid {
                grid-template-columns: 1fr;
            }
            .gg-landing-page h1 {
                font-size: 1.8rem;
            }
        }