/**
 * GD Mobile Menu Icons Bar Styles
 * Social and contact icons bar with decorative "bites"
 */

.gd-mobile-menu-icons-bar-wrapper {
  display: flex;
  justify-content: center;
}

.gd-mobile-menu-icons-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

/* Left section (contact icons) with white background and bites on right */
.gd-menu-section-left {
    background-color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px 0 0 12px;
    position: relative;
}

/* Left section bites - on the RIGHT edge */
.gd-menu-section-left::before,
.gd-menu-section-left::after {
    content: '';
    position: absolute;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #eaece9;
}

.gd-menu-section-left::before {
    top: 0;
    border-radius: 0 0 0 10px;
}

.gd-menu-section-left::after {
    bottom: 0;
    border-radius: 10px 0 0 0;
}

/* Right section (social icons) with white background and bites on left */
.gd-menu-section-right {
    background-color: #ffffff;
    padding: 16px 24px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

/* Right section bites - on the LEFT edge */
.gd-menu-section-right::before,
.gd-menu-section-right::after {
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #eaece9;
}

.gd-menu-section-right::before {
    top: 0;
    border-radius: 0 0 10px 0;
}

.gd-menu-section-right::after {
    bottom: 0;
    border-radius: 0 10px 0 0;
}

/* Contact section (left side) */
.gd-menu-contact-section {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

/* Social section (right side) */
.gd-menu-social-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Intro text */
.gd-menu-intro-text {
    font-size: 16px;
    color: #333333;
    white-space: nowrap;
}

/* Icon styling */
.gd-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.gd-menu-icon:hover {
    opacity: 0.7;
}

.gd-menu-icon svg {
    width: 28px;
    height: 28px;
    fill: #3b4f5b;
}

/* Responsive: hide intro text on mobile */
@media (max-width: 768px) {
    .gd-menu-intro-text {
        display: none;
    }

    .gd-menu-section-left,
    .gd-menu-section-right {
        padding: 12px 16px;
    }

    .gd-menu-contact-section,
    .gd-menu-social-section {
        gap: 12px;
    }

    .gd-menu-icon {
        width: 40px;
        height: 40px;
    }

    .gd-menu-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .gd-menu-contact-section,
    .gd-menu-social-section {
        gap: 8px;
    }

    .gd-menu-section-left,
    .gd-menu-section-right {
        padding: 12px;
    }

    .gd-menu-icon {
        width: 36px;
        height: 36px;
    }

    .gd-menu-icon svg {
        width: 20px;
        height: 20px;
    }
}
