/* ============================================
   GPC Allergen Menu — Frontend
   Premium Restaurant Menu Experience
   ============================================ */

/* --- CSS Variables (overridden via inline style from PHP) --- */
:root {
    --gpc-primary: #1a3c34;
    --gpc-accent: #d4af37;
    --gpc-bg: #faf9f6;
    --gpc-card-bg: #ffffff;
    --gpc-text: #333333;
    --gpc-heading-font: 'Playfair Display', serif;
    --gpc-body-font: 'Inter', sans-serif;
}

/* ======================
   WRAPPER — Full-page experience
   ====================== */
.gpc-menu-wrapper {
    font-family: var(--gpc-body-font);
    color: var(--gpc-text);
    background: var(--gpc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Override any theme constraints */
#klb-section .gpc-menu-wrapper,
.vc_row .gpc-menu-wrapper,
.wpb_column .gpc-menu-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.gpc-menu-wrapper *,
.gpc-menu-wrapper *::before,
.gpc-menu-wrapper *::after {
    box-sizing: border-box;
}

/* Inner content container */
.gpc-menu-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================
   MENU HEADER — Hero Banner
   ====================== */
.gpc-menu-header {
    text-align: center;
    padding: 60px 24px 40px;
    position: relative;
}

.gpc-menu-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gpc-accent);
    margin: 0 auto;
    position: relative;
    top: 0;
}

.gpc-menu-title {
    font-family: var(--gpc-heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--gpc-primary);
    margin: 0 0 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gpc-menu-subtitle {
    font-family: var(--gpc-body-font);
    font-size: 15px;
    font-weight: 400;
    color: #999;
    margin: 0;
    letter-spacing: 1px;
    font-style: italic;
}

/* Ornamental decoration */
.gpc-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto;
    max-width: 240px;
}

.gpc-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gpc-accent), transparent);
}

.gpc-ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gpc-accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ======================
   MENU SWITCHER — Multi-menu tabs
   ====================== */
.gpc-menu-switcher {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 28px;
}

.gpc-menu-switcher-label {
    display: block;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gpc-accent);
    font-family: var(--gpc-body-font);
    font-weight: 600;
    margin-bottom: 12px;
}

.gpc-menu-switcher-inner {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.gpc-menu-switch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 28px;
    min-width: 160px;
    background: var(--gpc-card-bg);
    border: 2px solid #e8e4de;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--gpc-body-font);
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.gpc-menu-switch-btn:hover {
    border-color: var(--gpc-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transform: translateY(-1px);
}

.gpc-menu-switch-btn.active {
    background: var(--gpc-primary);
    border-color: var(--gpc-primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.gpc-menu-switch-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 7px solid var(--gpc-primary);
}

.gpc-switch-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gpc-primary);
    letter-spacing: 0.3px;
    transition: color 0.3s;
    font-family: var(--gpc-heading-font);
}

.gpc-menu-switch-btn.active .gpc-switch-title {
    color: #fff;
}

.gpc-switch-desc {
    font-size: 11px;
    color: #aaa;
    font-style: italic;
    transition: color 0.3s;
    max-width: 200px;
    line-height: 1.3;
}

.gpc-menu-switch-btn.active .gpc-switch-desc {
    color: rgba(255,255,255,0.7);
}

/* Menu block visibility */
.gpc-menu-block {
    display: none;
    animation: gpcFadeIn 0.35s ease;
}

.gpc-menu-block.gpc-menu-block-active {
    display: block;
}

/* ======================
   FILTER SECTION
   ====================== */
.gpc-filter-section {
    max-width: 960px;
    margin: 0 auto 12px;
    padding: 0 24px;
}

.gpc-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 22px;
    background: var(--gpc-card-bg);
    border: 1px solid #e8e4de;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--gpc-body-font);
    font-size: 14px;
    font-weight: 500;
    color: var(--gpc-primary);
    transition: all 0.25s ease;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.gpc-filter-toggle:hover {
    border-color: var(--gpc-accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.gpc-filter-toggle[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.gpc-filter-toggle-icon {
    display: flex;
    color: var(--gpc-accent);
}

.gpc-filter-chevron {
    margin-left: auto;
    display: flex;
    transition: transform 0.3s ease;
    color: #bbb;
}

.gpc-filter-toggle[aria-expanded="true"] .gpc-filter-chevron {
    transform: rotate(180deg);
}

.gpc-filter-count {
    background: var(--gpc-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

.gpc-filter-panel {
    background: var(--gpc-card-bg);
    border: 1px solid #e8e4de;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 20px 22px;
    animation: gpcSlideDown 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

@keyframes gpcSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gpc-filter-desc {
    font-size: 13px;
    color: #999;
    margin: 0 0 18px;
    line-height: 1.6;
}

/* Filter Groups */
.gpc-filter-group {
    margin-bottom: 18px;
}

.gpc-filter-group:last-of-type {
    margin-bottom: 0;
}

.gpc-filter-group-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    margin-bottom: 10px;
}

.gpc-filter-dietary,
.gpc-filter-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gpc-filter-allergen {
    cursor: pointer;
    user-select: none;
}

.gpc-filter-allergen input {
    display: none;
}

.gpc-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid #e0dcd6;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #777;
    transition: all 0.25s ease;
    background: transparent;
}

.gpc-filter-pill:hover {
    border-color: #ccc;
    background: rgba(0,0,0,0.01);
}

.gpc-filter-pill-icon {
    opacity: 0.5;
    transition: opacity 0.25s;
    width: 18px;
    height: 18px;
}

.gpc-filter-allergen input:checked + .gpc-filter-pill {
    border-color: var(--pill-color, var(--gpc-accent));
    background: var(--pill-color, var(--gpc-accent));
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.gpc-filter-allergen input:checked + .gpc-filter-pill .gpc-filter-pill-icon {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.gpc-filter-clear {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--gpc-body-font);
    font-size: 13px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s;
}

.gpc-filter-clear:hover {
    border-color: #999;
    color: #555;
}

/* ======================
   COURSE NAVIGATION — Sticky
   ====================== */
.gpc-course-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--gpc-bg);
    padding: 0;
    border-bottom: 1px solid #e8e4de;
}

.gpc-course-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.gpc-course-nav-inner::-webkit-scrollbar {
    display: none;
}

.gpc-nav-link {
    display: inline-block;
    white-space: nowrap;
    padding: 14px 20px;
    font-family: var(--gpc-body-font);
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gpc-nav-link:hover {
    color: var(--gpc-primary);
}

.gpc-nav-link.active {
    color: var(--gpc-primary);
    border-bottom-color: var(--gpc-accent);
    font-weight: 600;
}

/* ======================
   MENU COURSES AREA
   ====================== */
.gpc-menu-courses {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

/* ======================
   COURSE SECTIONS
   ====================== */
.gpc-course-section {
    padding: 48px 0 20px;
    position: relative;
}

.gpc-course-section + .gpc-course-section {
    border-top: 1px solid #eae6e0;
}

.gpc-course-heading {
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.gpc-course-title {
    font-family: var(--gpc-heading-font);
    font-size: 32px;
    font-weight: 600;
    color: var(--gpc-primary);
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.gpc-course-desc {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Course ornament under heading */
.gpc-course-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 0;
    max-width: 140px;
}

.gpc-course-ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d8d3ca, transparent);
}

.gpc-course-ornament-dot {
    width: 5px;
    height: 5px;
    background: var(--gpc-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ======================
   MENU CARDS GRID
   ====================== */
.gpc-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .gpc-items-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

/* ======================
   MENU CARD
   ====================== */
.gpc-menu-card {
    background: var(--gpc-card-bg);
    border: 1px solid #eae6e0;
    border-radius: 10px;
    padding: 22px 24px;
    position: relative;
    transition: all 0.3s ease;
    animation: gpcFadeIn 0.4s ease;
}

.gpc-menu-card:hover {
    border-color: #d5d0c8;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* Filtered state */
.gpc-menu-card.gpc-filtered-out {
    display: none;
}

.gpc-menu-card.gpc-has-option {
    border-left: 3px solid #4caf50;
}

/* Card Top: Title + Price */
.gpc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.gpc-card-title-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.gpc-card-title {
    font-family: var(--gpc-heading-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--gpc-primary);
    margin: 0;
    line-height: 1.3;
}

.gpc-card-price {
    font-family: var(--gpc-body-font);
    font-weight: 600;
    font-size: 16px;
    color: var(--gpc-accent);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ======================
   DIETARY BADGES — Elegant pills
   ====================== */
.gpc-card-dietary-badges {
    display: inline-flex;
    gap: 4px;
    vertical-align: middle;
    flex-shrink: 0;
}

.gpc-card-dietary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--gpc-body-font);
    letter-spacing: 0.5px;
    line-height: 1.4;
    flex-shrink: 0;
    text-transform: uppercase;
}

/* Description */
.gpc-card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
    margin: 0 0 10px;
}

/* ======================
   INFO BUTTON
   ====================== */
.gpc-card-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    background: none;
    border: 1px solid #e0dcd6;
    border-radius: 20px;
    font-family: var(--gpc-body-font);
    font-size: 11px;
    font-weight: 600;
    color: #bbb;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gpc-card-info-btn:hover {
    border-color: var(--gpc-accent);
    color: var(--gpc-accent);
}

.gpc-card-info-btn.active {
    background: var(--gpc-primary);
    border-color: var(--gpc-primary);
    color: #fff;
}

/* ======================
   ALLERGEN INFO DROPDOWN
   ====================== */
.gpc-card-allergen-info {
    margin-top: 14px;
    padding: 14px 16px;
    background: #faf8f5;
    border-radius: 8px;
    border: 1px solid #f0ece5;
    animation: gpcSlideDown 0.2s ease;
}

.gpc-card-allergen-list,
.gpc-card-dietary-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.gpc-card-allergen-list:last-child,
.gpc-card-dietary-list:last-child {
    margin-bottom: 0;
}

.gpc-card-allergen-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gpc-card-allergen-tag,
.gpc-card-dietary-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid var(--tag-color, #ddd);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
}

.gpc-card-allergen-tag img,
.gpc-card-dietary-tag img {
    opacity: 0.7;
    width: 14px;
    height: 14px;
}

/* Options in info */
.gpc-card-options {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gpc-card-option-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.gpc-card-option-tag::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    flex-shrink: 0;
}

.gpc-card-dietary-option-tag {
    background: #e8f5e9;
    color: #2e7d32;
}

/* ======================
   MODIFICATION MSG (Filter mode)
   ====================== */
.gpc-card-mod-msg {
    margin-top: 12px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    color: #2e7d32;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.gpc-card-mod-msg::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
}

/* ======================
   EMPTY COURSE
   ====================== */
.gpc-course-section.gpc-course-empty .gpc-items-grid {
    display: none;
}

.gpc-course-section.gpc-course-empty .gpc-course-heading::after {
    content: 'No items match your current filters';
    display: block;
    text-align: center;
    font-size: 13px;
    color: #ccc;
    font-style: italic;
    margin-top: 12px;
    font-family: var(--gpc-body-font);
}

/* ======================
   MENU FOOTER ORNAMENT
   ====================== */
.gpc-menu-footer {
    text-align: center;
    padding: 40px 24px 60px;
    max-width: 960px;
    margin: 0 auto;
}

.gpc-menu-footer-text {
    font-family: var(--gpc-body-font);
    font-size: 12px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}

/* ======================
   ANIMATIONS
   ====================== */
@keyframes gpcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Stagger card animations */
.gpc-menu-card:nth-child(1) { animation-delay: 0s; }
.gpc-menu-card:nth-child(2) { animation-delay: 0.05s; }
.gpc-menu-card:nth-child(3) { animation-delay: 0.1s; }
.gpc-menu-card:nth-child(4) { animation-delay: 0.15s; }
.gpc-menu-card:nth-child(5) { animation-delay: 0.2s; }
.gpc-menu-card:nth-child(6) { animation-delay: 0.25s; }
.gpc-menu-card:nth-child(7) { animation-delay: 0.3s; }
.gpc-menu-card:nth-child(8) { animation-delay: 0.35s; }

/* ======================
   RESPONSIVE — Tablet
   ====================== */
@media (max-width: 768px) {
    .gpc-menu-header {
        padding: 40px 20px 30px;
    }

    .gpc-menu-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .gpc-course-title {
        font-size: 26px;
    }

    .gpc-menu-inner,
    .gpc-filter-section,
    .gpc-menu-courses,
    .gpc-course-nav-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ======================
   RESPONSIVE — Mobile
   ====================== */
@media (max-width: 639px) {
    .gpc-menu-header {
        padding: 32px 16px 24px;
    }

    .gpc-menu-title {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .gpc-menu-subtitle {
        font-size: 13px;
    }

    .gpc-course-title {
        font-size: 24px;
    }

    .gpc-course-section {
        padding: 36px 0 12px;
    }

    .gpc-course-heading {
        margin-bottom: 24px;
    }

    .gpc-card-title {
        font-size: 16px;
    }

    .gpc-card-price {
        font-size: 15px;
    }

    .gpc-card-desc {
        font-size: 13px;
    }

    .gpc-menu-card {
        padding: 18px 16px;
        border-radius: 8px;
    }

    .gpc-filter-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .gpc-filter-toggle {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .gpc-filter-toggle[aria-expanded="true"] {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .gpc-filter-panel {
        padding: 16px;
        border-radius: 0 0 10px 10px;
    }

    .gpc-filter-pill {
        padding: 6px 10px;
        font-size: 12px;
    }

    .gpc-filter-pill-icon {
        width: 16px;
        height: 16px;
    }

    .gpc-nav-link {
        padding: 12px 14px;
        font-size: 12px;
    }

    .gpc-menu-courses {
        padding-left: 12px;
        padding-right: 12px;
    }

    .gpc-items-grid {
        gap: 12px;
    }

    .gpc-card-dietary-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .gpc-menu-footer {
        padding: 30px 16px 50px;
    }

    .gpc-menu-switcher {
        padding: 0 16px 16px;
    }

    .gpc-menu-switcher-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .gpc-menu-switcher-inner {
        flex-direction: column;
        gap: 6px;
    }

    .gpc-menu-switch-btn {
        min-width: unset;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
        padding: 12px 16px;
        border-radius: 8px;
        border-width: 1px;
        border-left-width: 4px;
        border-left-color: transparent;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }

    .gpc-menu-switch-btn:hover {
        transform: none;
    }

    .gpc-menu-switch-btn.active {
        background: var(--gpc-primary);
        border-color: var(--gpc-primary);
        border-left-color: var(--gpc-accent);
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .gpc-menu-switch-btn.active::after {
        display: none;
    }

    .gpc-switch-title {
        font-size: 14px;
        line-height: 1.2;
    }

    .gpc-switch-desc {
        font-size: 11px;
        max-width: none;
        line-height: 1.3;
    }

    /* WPBakery override for mobile */
    #klb-section .gpc-menu-wrapper,
    .vc_row .gpc-menu-wrapper,
    .wpb_column .gpc-menu-wrapper {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .gpc-menu-title {
        font-size: 24px;
    }

    .gpc-filter-pill {
        padding: 5px 8px;
        font-size: 11px;
        gap: 4px;
    }

    .gpc-menu-switch-btn {
        padding: 10px 12px;
    }

    .gpc-switch-title {
        font-size: 13px;
        white-space: normal;
    }

    .gpc-switch-desc {
        font-size: 10px;
    }
}

/* ======================
   PRINT STYLES
   ====================== */
@media print {
    .gpc-filter-section,
    .gpc-course-nav,
    .gpc-card-info-btn,
    .gpc-menu-footer {
        display: none !important;
    }

    .gpc-menu-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        box-shadow: none !important;
        transform: none !important;
    }

    .gpc-menu-wrapper {
        background: #fff !important;
        min-height: auto;
    }
}
