/* GAMN Elementor Widget Styles */
.gamn-product-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Inter', sans-serif;
    /* Fallback to sans-serif */
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar */
.gamn-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #E8F5E9;
    /* Light green background */
    padding: 30px 20px;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.gamn-sidebar h3 {
    font-size: 16px;
    font-weight: 800;
    color: #004d40;
    /* Darker green */
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #c8e6c9;
    padding-bottom: 10px;
}

.gamn-filter-group {
    margin-bottom: 40px;
}

.gamn-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gamn-checkbox-list li {
    margin-bottom: 15px;
}

.gamn-icon-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.gamn-icon-label input[type="checkbox"] {
    display: none;
    /* Hide standard checkbox */
}

.gamn-filter-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #81c784;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #388e3c;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gamn-icon-label input[type="checkbox"]:checked+.gamn-filter-icon {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.gamn-filter-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 36px;
    font-size: 14px;
    color: #333;
}

.gamn-filter-text strong {
    font-weight: 600;
    color: #2e7d32;
}

.gamn-filter-text small {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.gamn-sidebar-logo {
    margin-top: auto;
    text-align: center;
    padding-top: 30px;
}

.gamn-sidebar-signature {
    font-family: 'Brush Script MT', cursive;
    /* Fallback for script font */
    font-size: 24px;
    color: #1b5e20;
    line-height: 1.2;
    transform: rotate(-5deg);
}

/* Products Grid */
.gamn-products-content {
    flex-grow: 1;
    width: calc(100% - 280px);
    /* 250px + 30px gap */
}

.gamn-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gamn-product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.gamn-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gamn-product-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.gamn-product-title {
    font-size: 16px;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 15px;
    line-height: 1.3;
    flex-grow: 1;
}

.gamn-product-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #4CAF50;
    border-radius: 25px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
}

.gamn-product-link:hover {
    background: #4CAF50;
    color: white;
}

/* Footer Strip */
.gamn-footer-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.gamn-footer-features {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gamn-footer-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gamn-footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamn-footer-item-text strong {
    display: block;
    color: #004d40;
    font-size: 15px;
    font-weight: 800;
}

.gamn-footer-item-text span {
    font-size: 13px;
    color: #757575;
}

.gamn-footer-separator {
    width: 1px;
    height: 40px;
    background-color: #dcdcdc;
}

.gamn-footer-image {
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .gamn-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gamn-product-grid-container {
        flex-direction: column;
    }

    .gamn-sidebar {
        width: 100%;
    }

    .gamn-products-content {
        width: 100%;
    }

    .gamn-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamn-footer-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .gamn-footer-features {
        flex-direction: column;
        gap: 20px;
    }

    .gamn-footer-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .gamn-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* Nosotros Widget Styles */
/* ========================================= */
.gamn-nosotros-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid layout */
.gamn-nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Column 1: Main Info */
.gamn-nosotros-col-main .gamn-n-title {
    font-size: 32px;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 5px;
}

.gamn-nosotros-col-main .gamn-n-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gamn-nosotros-col-main .gamn-n-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.gamn-n-main-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gamn-n-main-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.gamn-n-signature-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Brush Script MT', cursive;
    color: #1b5e20;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gamn-n-signature-badge span:last-child {
    font-size: 16px;
    color: #2e7d32;
}

/* Column 2: Core Values */
.gamn-nosotros-col-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gamn-n-value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gamn-n-v-icon {
    font-size: 32px;
    color: #2e7d32;
    background: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.gamn-n-v-content .gamn-n-v-title {
    font-size: 18px;
    font-weight: 700;
    color: #004d40;
    margin: 0 0 5px 0;
}

.gamn-n-v-content .gamn-n-v-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Column 3: Circles */
.gamn-nosotros-col-circles {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamn-n-circles-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
}

.gamn-n-circle-img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gamn-n-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-img-1 {
    width: 65%;
    height: 65%;
    top: 0;
    right: 0;
    z-index: 1;
}

.c-img-2 {
    width: 60%;
    height: 60%;
    bottom: 10%;
    right: -10%;
    z-index: 2;
}

.c-img-3 {
    width: 70%;
    height: 70%;
    bottom: -10%;
    left: -10%;
    z-index: 3;
}

.gamn-n-circle-badge {
    position: absolute;
    top: -20px;
    right: -40px;
    background: #e8f5e9;
    color: #1b5e20;
    padding: 15px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 3px solid #4caf50;
}

/* Certifications */
.gamn-nosotros-certs {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 30px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.gamn-certs-left {
    flex: 0 0 200px;
}

.gamn-certs-left h3 {
    font-size: 20px;
    color: #2e7d32;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}

.gamn-certs-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 20px;
}

.gamn-cert-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gamn-cert-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats Banner */
.gamn-nosotros-stats-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #004d40;
    color: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 20px;
}

.gamn-stats-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gamn-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gamn-stat-icon {
    font-size: 32px;
    color: #81c784;
}

.gamn-stat-info {
    display: flex;
    flex-direction: column;
}

.gamn-stat-num {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.gamn-stat-txt {
    font-size: 14px;
    opacity: 0.9;
}

.gamn-stats-btn {
    background: #fff;
    color: #004d40;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.gamn-stats-btn:hover {
    background: #e8f5e9;
    color: #1b5e20;
}

/* Responsive Nosotros */
@media (max-width: 1024px) {
    .gamn-nosotros-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gamn-nosotros-col-circles {
        grid-column: span 2;
        margin-top: 40px;
    }

    .gamn-certs-left {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .gamn-nosotros-certs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gamn-nosotros-grid {
        grid-template-columns: 1fr;
    }

    .gamn-nosotros-col-circles {
        grid-column: span 1;
    }

    .gamn-stats-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .gamn-nosotros-stats-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .gamn-stats-btn-wrap {
        text-align: center;
        margin-top: 20px;
    }
}

/* ========================================= */
/* Category Header Widget Styles */
/* ========================================= */
.gamn-category-header {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    margin-bottom: 30px;
}

.gamn-ch-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gamn-ch-line {
    width: 3px;
    height: 48px;
    background-color: #008f39;
    /* Vibrant green from the photo */
    border-radius: 2px;
}

.gamn-ch-title {
    font-size: 48px;
    font-weight: 800;
    color: #004d40;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.gamn-ch-subtitle {
    font-size: 20px;
    color: #757575;
    margin: 8px 0 0 18px;
    /* 3px line + 15px gap = 18px alignment */
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gamn-ch-title {
        font-size: 36px;
    }

    .gamn-ch-subtitle {
        font-size: 16px;
    }

    .gamn-ch-line {
        height: 38px;
    }
}

/* ========================================= */
/* Contact Widget Styles */
/* ========================================= */
.gamn-contact-section {
    font-family: 'Inter', sans-serif;
    color: #333;
    width: 100%;
    margin: 0;
    background: #f9fbf9;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
}

.gamn-contact-main-wrapper {
    display: flex;
    min-height: 600px;
    position: relative;
}

/* Left & Center Content */
.gamn-contact-content {
    display: flex;
    width: 65%;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #fff 0%, #fff 70%, transparent 100%);
}

.gamn-contact-col {
    flex: 1;
}

/* Info Column */
.gamn-contact-info {
    padding-right: 40px;
    border-right: 1px solid #e0e0e0;
}

.gamn-contact-title {
    font-size: 38px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 10px;
}

.gamn-contact-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 40px;
    line-height: 1.5;
}

.gamn-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gamn-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.gamn-c-icon {
    width: 48px;
    height: 48px;
    background: #006837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.gamn-c-icon img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.gamn-c-text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #333;
}

/* Form Column */
.gamn-contact-form-wrap {
    padding-left: 40px;
}

.gamn-form-title {
    font-size: 28px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 10px;
}

.gamn-form-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px;
    line-height: 1.4;
}

.gamn-form-container {
    width: 100%;
}

.gamn-form-container input,
.gamn-form-container select,
.gamn-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.gamn-form-container input:focus,
.gamn-form-container select:focus,
.gamn-form-container textarea:focus {
    border-color: #006837;
    outline: none;
}

.gamn-form-submit {
    background: #006837;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.gamn-form-submit:hover {
    background: #004d40;
}

/* Right Decorative Area */
.gamn-contact-decorative {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: 1;
    overflow: hidden;
}

.gamn-cd-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gamn-cd-bg-fallback {
    background-color: #004d40;
}

.gamn-cd-curve {
    position: absolute;
    top: -10%;
    left: -20%;
    width: 120%;
    height: 120%;
    background: #f9fbf9;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.gamn-cd-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15%;
}

.gamn-cd-text {
    font-size: 28px;
    color: #004d40;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gamn-cd-text strong {
    font-weight: 800;
}

.gamn-cd-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: #006837;
    transform: rotate(-5deg);
    line-height: 1.1;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

/* Floating Squares */
.gamn-cd-square {
    position: absolute;
}

.gamn-sq-1 {
    width: 40px;
    height: 40px;
    background: #a5d6a7;
    top: 20%;
    left: 10%;
}

.gamn-sq-2 {
    width: 60px;
    height: 60px;
    background: #004d40;
    bottom: 30%;
    right: 20%;
}

.gamn-sq-3 {
    width: 40px;
    height: 40px;
    background: #c8e6c9;
    bottom: 25%;
    right: 40%;
}

/* Bottom Strip */
.gamn-contact-bottom-strip {
    display: flex;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    position: relative;
    z-index: 4;
}

.gamn-cb-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gamn-cb-left svg {
    color: #81c784;
}

.gamn-cb-line {
    flex-grow: 1;
    height: 1px;
    background: #c8e6c9;
    margin: 0 30px;
}

.gamn-cb-right {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gamn-contact-main-wrapper {
        flex-direction: column;
    }

    .gamn-contact-content {
        width: 100%;
        background: #fff;
        padding: 40px 20px;
    }

    .gamn-contact-decorative {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .gamn-cd-curve {
        display: none;
        /* Hide curve on mobile, just show bg image */
    }

    .gamn-cd-content {
        padding: 40px;
        background: rgba(255, 255, 255, 0.8);
        /* Semi-transparent overlay on mobile */
    }

    .gamn-contact-bottom-strip {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gamn-cb-line {
        width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .gamn-contact-content {
        flex-direction: column;
    }

    .gamn-contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .gamn-contact-form-wrap {
        padding-left: 0;
    }
}

/* ========================================= */
/* Home Categories Widget Styles */
/* ========================================= */

.gamn-home-categories-wrapper {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

/* Header */
.gamn-hc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
    min-height: 120px;
}

.gamn-hc-header-left,
.gamn-hc-header-right {
    flex: 1;
}

.gamn-hc-header-left img {
    max-width: 150px;
    opacity: 0.3;
}

.gamn-hc-header-right {
    text-align: right;
}

.gamn-hc-header-right img {
    max-width: 200px;
}

.gamn-hc-header-center {
    flex: 2;
    text-align: center;
}

.gamn-hc-title {
    font-size: 36px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gamn-hc-subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* Grid */
.gamn-hc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gamn-hc-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: visible;
    /* To allow overlapping icon */
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gamn-hc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gamn-hc-card-img-wrap {
    position: relative;
    margin-bottom: 30px;
    /* Space for the overlapping icon */
}

.gamn-hc-card-bg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}

.gamn-hc-card-placeholder {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Overlapping Icon */
.gamn-hc-card-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 50px;
    height: 50px;
    background-color: #006837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    /* White border to cut into the image */
    z-index: 2;
}

.gamn-hc-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Makes SVG white if they are black */
}

/* Card Content */
.gamn-hc-card-content {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.gamn-hc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #004d40;
    margin: 0 0 15px;
    line-height: 1.3;
}

.gamn-hc-card-btn {
    display: inline-block;
    background-color: #006837;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.gamn-hc-card-btn:hover {
    background-color: #004d40;
    color: #fff;
}

/* CTA Section */
.gamn-hc-cta {
    background-color: #f1f8f1;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gamn-hc-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gamn-hc-cta-icon {
    background: transparent;
}

.gamn-hc-cta-text h4 {
    font-size: 22px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 5px;
}

.gamn-hc-cta-text p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.gamn-hc-cta-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gamn-hc-cta-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.gamn-hc-btn-primary {
    background-color: #006837;
    color: #fff;
    border: 2px solid #006837;
}

.gamn-hc-btn-primary:hover {
    background-color: #004d40;
    border-color: #004d40;
    color: #fff;
}

.gamn-hc-btn-secondary {
    background-color: #fff;
    color: #006837;
    border: 2px solid #ddd;
}

.gamn-hc-btn-secondary:hover {
    border-color: #006837;
    color: #004d40;
}

/* Responsive */
@media (max-width: 1024px) {
    .gamn-hc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gamn-hc-header-left img,
    .gamn-hc-header-right img {
        display: none;
    }
}

@media (max-width: 768px) {
    .gamn-hc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamn-hc-title {
        font-size: 28px;
    }

    .gamn-hc-cta {
        flex-direction: column;
        text-align: center;
    }

    .gamn-hc-cta-left {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gamn-hc-grid {
        grid-template-columns: 1fr;
    }

    .gamn-hc-cta-right {
        flex-direction: column;
        width: 100%;
    }

    .gamn-hc-cta-right a {
        justify-content: center;
        width: 100%;
    }
}

/* ========================================= */
/* Certificaciones Widget Styles */
/* ========================================= */

.gamn-certificaciones-wrapper {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* 1. Hero Section */
.gamn-cert-hero {
    display: flex;
    position: relative;
    background: #f9fbf9;
    /* very light greenish/grey background */
    overflow: hidden;
    min-height: 400px;
    margin-bottom: 60px;
}

.gamn-cert-hero-content {
    flex: 1;
    padding: 60px 40px 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.gamn-cert-hero-kicker {
    font-size: 14px;
    font-weight: 700;
    color: #006837;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.gamn-cert-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 20px;
    line-height: 1.1;
}

.gamn-cert-hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.gamn-cert-hero-bg {
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    /* Diagonal cut on the left */
}

.gamn-cert-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gamn-cert-hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 0;
}

.gamn-cert-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background: rgba(0, 104, 55, 0.85);
    /* Dark green semi-transparent */
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.gamn-cert-overlay-text {
    color: #fff;
}

.gamn-cert-cursive {
    font-family: 'Caveat', cursive;
    /* Assuming a cursive font is loaded */
    font-size: 48px;
    margin: 0 0 10px;
    line-height: 1;
    font-weight: 400;
}

.gamn-cert-sub {
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.9;
}

/* 2. Grid Section */
.gamn-cert-grid-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.gamn-cert-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.gamn-cert-grid-title {
    font-size: 24px;
    font-weight: 800;
    color: #004d40;
    margin: 0;
    flex: 1;
}

.gamn-cert-grid-desc {
    flex: 1;
    margin: 0;
    color: #666;
    font-size: 15px;
    text-align: right;
    max-width: 500px;
}

.gamn-cert-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.gamn-cert-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gamn-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gamn-cert-card-logo {
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamn-cert-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gamn-cert-logo-placeholder {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 50%;
}

.gamn-cert-card-content {
    flex-grow: 1;
}

.gamn-cert-card-title {
    font-size: 14px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 10px;
}

.gamn-cert-card-desc {
    font-size: 12px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.4;
}

.gamn-cert-card-btn {
    display: inline-block;
    border: 1px solid #006837;
    color: #006837;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.gamn-cert-card-btn:hover {
    background: #006837;
    color: #fff;
}

/* 3. Compromiso Section */
.gamn-cert-comp-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: #f1f8f1;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.gamn-cert-comp-left {
    flex: 1;
    min-width: 250px;
}

.gamn-cert-comp-title {
    font-size: 20px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 15px;
    line-height: 1.2;
}

.gamn-cert-comp-desc {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.gamn-cert-comp-right {
    flex: 3;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-left: 1px solid #ddd;
    padding-left: 40px;
}

.gamn-cert-comp-feat {
    text-align: center;
    flex: 1;
}

.gamn-cert-feat-icon {
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamn-cert-feat-icon img {
    max-height: 100%;
}

.gamn-cert-feat-text {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* 4. CTA Section */
.gamn-cert-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.gamn-cert-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 64, 0.9);
    /* Dark green */
}

.gamn-cert-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.gamn-cert-cta-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-decoration: none;
}

.gamn-cert-cta-icon {
    display: flex;
    align-items: center;
}

.gamn-cert-cta-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.gamn-cert-cta-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #fff;
}

.gamn-cert-cta-text p {
    font-size: 14px;
    margin: 0;
    color: #ddd;
}

.gamn-cert-cta-btn-light {
    background: #fff;
    color: #004d40;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    margin-left: 10px;
}

.gamn-cert-cta-btn-light:hover {
    background: #eef6ee;
}

.gamn-cert-cta-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .gamn-cert-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gamn-cert-hero {
        flex-direction: column;
    }

    .gamn-cert-hero-bg {
        clip-path: none;
        height: 300px;
    }

    .gamn-cert-hero-overlay {
        width: 100%;
        clip-path: none;
        background: rgba(0, 104, 55, 0.7);
        justify-content: center;
        padding: 0;
        text-align: center;
    }

    .gamn-cert-grid-header {
        flex-direction: column;
        gap: 15px;
    }

    .gamn-cert-grid-desc {
        text-align: left;
    }

    .gamn-cert-comp-section {
        flex-direction: column;
        text-align: center;
    }

    .gamn-cert-comp-right {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .gamn-cert-cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .gamn-cert-cta-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .gamn-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamn-cert-comp-feat {
        flex-basis: 40%;
    }
}

@media (max-width: 480px) {
    .gamn-cert-grid {
        grid-template-columns: 1fr;
    }

    .gamn-cert-cta-item {
        flex-direction: column;
        text-align: center;
    }

    .gamn-cert-cta-btn-light {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* ========================================= */
/* Category Specific Grid Styles */
/* ========================================= */

.gamn-category-page-header {
    margin-bottom: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gamn-cph-title {
    font-size: 42px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 10px;
    line-height: 1.2;
}

.gamn-cph-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #888;
    margin-left: 10px;
}

.gamn-cph-breadcrumbs {
    font-size: 13px;
    color: #666;
}

.gamn-cph-breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.gamn-cph-breadcrumbs a:hover {
    color: #006837;
}

/* 5 Column Grid for Category Page */
.gamn-cat-specific-grid .gamn-products-grid {
    grid-template-columns: repeat(5, 1fr);
}

.gamn-filter-desc {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: normal;
    margin-top: 2px;
    line-height: 1.2;
}

/* Responsive Overrides for 5 Columns */
@media (max-width: 1400px) {
    .gamn-cat-specific-grid .gamn-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .gamn-cat-specific-grid .gamn-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gamn-cph-title {
        font-size: 32px;
    }

    .gamn-cph-subtitle {
        font-size: 20px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .gamn-cat-specific-grid .gamn-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gamn-cat-specific-grid .gamn-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* New Home Categories Styles (Image 2) */
/* ========================================= */

.gamn-hc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gamn-hc-card-new {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.gamn-hc-card-new:hover {
    transform: translateY(-5px);
}

.gamn-hc-card-img-wrap-new {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f5f5f5;
    margin-bottom: 40px;
    /* Space for the overlapping icon */
}

.gamn-hc-card-bg-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gamn-hc-card-placeholder-new {
    width: 100%;
    height: 100%;
    background: #eaeaea;
}

.gamn-hc-card-icon-new {
    position: absolute;
    bottom: -30px;
    /* Overlaps bottom edge */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #006837;
    /* Green circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gamn-hc-card-icon-new img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.gamn-hc-card-content-new {
    padding: 0 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gamn-hc-card-title-new {
    font-size: 20px;
    font-weight: 700;
    color: #004d40;
    margin: 0 0 15px;
    line-height: 1.2;
}

.gamn-hc-card-btn-new {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #006837;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    margin: auto auto 0;
    width: max-content;
}

.gamn-hc-card-btn-new:hover {
    background: #004d28;
    color: #fff;
}

/* CTA Section New */
.gamn-hc-cta-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e8f5e9;
    /* Light green background */
    padding: 30px 40px;
    border-radius: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.gamn-hc-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gamn-hc-cta-icon-new {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamn-hc-cta-text-new h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #004d40;
}

.gamn-hc-cta-text-new p {
    margin: 5px 0 0;
    color: #555;
    font-size: 16px;
}

.gamn-hc-cta-right-new {
    display: flex;
    gap: 15px;
}

.gamn-hc-btn-primary-new {
    display: flex;
    align-items: center;
    background: #006837;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.gamn-hc-btn-primary-new:hover {
    background: #004d28;
    color: #fff;
}

.gamn-hc-btn-secondary-new {
    display: flex;
    align-items: center;
    background: #fff;
    color: #006837;
    border: 2px solid #006837;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gamn-hc-btn-secondary-new:hover {
    background: #006837;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gamn-hc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .gamn-hc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gamn-hc-cta-new {
        flex-direction: column;
        text-align: center;
    }

    .gamn-hc-cta-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gamn-hc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamn-hc-cta-right-new {
        flex-direction: column;
        width: 100%;
    }

    .gamn-hc-btn-primary-new,
    .gamn-hc-btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gamn-hc-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* Single Product Widget Styles (Image 12) */
/* ========================================= */

.gamn-sp-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    padding: 30px;
    margin-bottom: 40px;
}

/* Breadcrumbs */
.gamn-sp-breadcrumbs-wrap {
    margin-bottom: 20px;
}
.gamn-sp-breadcrumbs {
    font-size: 14px;
    color: #666;
}
.gamn-sp-breadcrumbs a {
    color: #004d40;
    text-decoration: none;
}
.gamn-sp-breadcrumbs a:hover {
    text-decoration: underline;
}

/* Main Grid */
.gamn-sp-main-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* Gallery */
.gamn-sp-gallery {
    flex: 1;
    max-width: 50%;
}
.gamn-sp-main-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.gamn-sp-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
.gamn-sp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #006837;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.gamn-sp-watermark {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #006837;
    font-family: 'Brush Script MT', cursive, sans-serif; /* A script font for the watermark */
    transform: rotate(-5deg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gamn-sp-thumbnails {
    display: flex;
    gap: 15px;
}
.gamn-sp-thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.gamn-sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gamn-sp-thumb.active {
    border-color: #006837;
}

/* Info Section */
.gamn-sp-info {
    flex: 1;
}
.gamn-sp-label {
    font-size: 14px;
    font-weight: 800;
    color: #006837;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.gamn-sp-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}
.gamn-sp-excerpt {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gamn-sp-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #004d40;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

/* Cortes Grid */
.gamn-sp-cortes-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.gamn-sp-corte-item {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background: #fff;
}
.gamn-sp-corte-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}
.gamn-sp-corte-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Presentaciones Grid */
.gamn-sp-pres-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.gamn-sp-pres-item {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Bottom Bar */
.gamn-sp-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5fcf5;
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid #e8f5e9;
}

.gamn-sp-apps {
    flex: 1;
}
.gamn-sp-apps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.gamn-sp-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gamn-sp-app-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    color: #006837;
}
.gamn-sp-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gamn-sp-app-item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Bottom CTAs */
.gamn-sp-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}
.gamn-sp-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #006837;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}
.gamn-sp-btn-primary:hover {
    background: #004d28;
    color: #fff;
}
.gamn-sp-btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #006837;
    border: 2px solid #006837;
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.gamn-sp-btn-secondary:hover {
    background: #006837;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .gamn-sp-main-grid {
        flex-direction: column;
    }
    .gamn-sp-gallery {
        max-width: 100%;
    }
    .gamn-sp-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .gamn-sp-ctas {
        width: 100%;
    }
}

/* ========================================= */
/* Header Widget Styles (Image 13)         */
/* ========================================= */

.gamn-header {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 1000;
}
.gamn-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo */
.gamn-header-logo a {
    display: block;
    text-decoration: none;
    color: #006837;
    font-size: 24px;
    font-weight: 800;
}
.gamn-header-logo img {
    display: block;
    max-width: 150px;
    height: auto;
}

/* Navigation */
.gamn-header-nav {
    display: flex;
    align-items: center;
}
.gamn-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}
.gamn-menu-list li {
    position: relative;
}
.gamn-menu-list li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gamn-menu-list li.current-menu-item > a,
.gamn-menu-list li a:hover {
    color: #006837;
}

/* Submenu / Dropdown */
.gamn-menu-list li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 3px;
    margin-left: 5px;
    transition: transform 0.3s;
}
.gamn-menu-list li.menu-item-has-children:hover > a::after {
    transform: rotate(225deg);
    margin-bottom: -3px;
}
.gamn-menu-list li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}
.gamn-menu-list li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gamn-menu-list li ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}
.gamn-menu-list li ul.sub-menu li a:hover {
    background: #f5fcf5;
}

/* Right Area */
.gamn-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.gamn-header-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.gamn-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #006837;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s;
}
.gamn-header-btn:hover {
    background: #004d28;
    color: #fff;
}

/* Mobile Utilities */
.gamn-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px;
}
.gamn-mobile-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 15px;
    align-self: flex-end;
}

/* Responsive */
@media (max-width: 992px) {
    .gamn-mobile-toggle {
        display: block;
        order: -1; /* Move hamburger to the left of the logo if desired, or keep as is */
    }
    .gamn-header-logo {
        flex: 1;
        text-align: center;
    }
    .gamn-header-logo img {
        margin: 0 auto;
    }
    .gamn-header-right {
        gap: 15px;
    }
    
    /* Offcanvas Menu */
    .gamn-header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 2000;
        padding-top: 20px;
        overflow-y: auto;
    }
    .gamn-header-nav.active {
        left: 0;
    }
    .gamn-mobile-close {
        display: block;
    }
    .gamn-menu-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 20px;
    }
    .gamn-menu-list li {
        width: 100%;
        border-bottom: 1px solid #eaeaea;
    }
    .gamn-menu-list li a {
        padding: 15px 0;
        justify-content: space-between;
    }
    .gamn-menu-list li ul.sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f9f9f9;
        margin-left: -20px;
        margin-right: -20px;
        padding: 0;
    }
    .gamn-menu-list li.open > ul.sub-menu {
        display: block;
    }
    .gamn-menu-list li ul.sub-menu li a {
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid #eaeaea;
    }
}
@media (max-width: 576px) {
    .gamn-header-lang span {
        display: none; /* Oculta solo el texto de idioma en móviles pequeños, deja icono */
    }
    .gamn-header-lang .gamn-chevron {
        display: none;
    }
    .gamn-header-btn {
        padding: 10px; /* Hacer el botón más cuadrado y pequeño */
        font-size: 13px;
    }
    /* Si prefieres ocultar el texto del botón y dejar solo icono: */
    /* .gamn-header-btn { font-size: 0; padding: 10px; } */
    /* .gamn-header-btn svg { margin: 0; } */
}

/* ========================================= */
/* Footer Widget Styles                      */
/* ========================================= */

.gamn-footer {
    padding: 20px;
    background: transparent;
}
.gamn-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #006837; /* Fondo verde solicitado */
    border-radius: 20px; /* Esquinas medio redondas */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff; /* Texto blanco para contrastar con verde */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gamn-footer-col {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.gamn-footer-logo a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}
.gamn-footer-logo img {
    display: block;
    max-width: 150px;
    height: auto;
    /* Si el logo original es negro/verde oscuro, en Elementor deberán subir una versión en blanco/negativo para que se vea sobre el fondo verde */
}

/* Divider */
.gamn-footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

/* Nav Menu */
.gamn-footer-nav {
    display: flex;
    align-items: center;
}
.gamn-footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}
.gamn-footer-menu-list li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.gamn-footer-menu-list li a:hover {
    color: #fff;
}

/* CTA Button */
.gamn-footer-btn {
    background: #fff;
    color: #006837;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    margin-left: 20px; /* Space between menu and button */
}
.gamn-footer-btn:hover {
    background: #f0f0f0;
}

/* Social */
.gamn-footer-social-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 15px;
}
.gamn-footer-social-icons {
    display: flex;
    gap: 15px;
}
.gamn-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}
.gamn-social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}
.gamn-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .gamn-footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }
    .gamn-footer-col {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    .gamn-footer-divider.hidden-mobile {
        display: none;
    }
    .gamn-footer-menu-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .gamn-footer-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    .gamn-footer-social-title {
        margin-right: 0;
        margin-bottom: 10px;
    }
}