/*
Theme Name: Golo Child
Theme URI: https://spotsngo.com
Description: Child theme for SpotsNGo
Author: SpotsNGo
Template: golo
Version: 1.0.0
*/

/* =========================================
   SPOTSNGo PROFILE SELECTOR
   Mobile-first
   ========================================= */

.spotsngo-profile-section {
    width: 100%;
    padding: 32px 16px;
    background: #ffffff;
    box-sizing: border-box;
}

.spotsngo-profile-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.spotsngo-step {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 0.55;
}

.spotsngo-profile-section h2 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.25;
}

.spotsngo-profile-intro {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.7;
}

.spotsngo-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.spotsngo-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    min-height: 104px;
    padding: 14px 8px;

    border: 1px solid #e7e7e7;
    border-radius: 16px;
    background: #ffffff;

    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spotsngo-profile-icon {
    display: block;
    margin-bottom: 7px;
    font-size: 26px;
    line-height: 1;
}

.spotsngo-profile-label {
    display: block;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

/* Tablet */
@media (min-width: 768px) {
    .spotsngo-profile-section {
        padding: 44px 24px;
    }

    .spotsngo-profile-section h2 {
        font-size: 30px;
    }

    .spotsngo-profile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .spotsngo-profile-card {
        min-height: 115px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .spotsngo-profile-section {
        padding: 55px 20px;
    }

    .spotsngo-profile-section h2 {
        font-size: 34px;
    }

    .spotsngo-profile-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .spotsngo-profile-card {
        min-height: 125px;
        padding: 20px 10px;
    }

    .spotsngo-profile-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .spotsngo-profile-icon {
        font-size: 30px;
    }

    .spotsngo-profile-label {
        font-size: 15px;
    }
}