/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

/* ============================================
   GGK AUTO-ZONE — FIX INVALID FIELD WARNING
   ============================================ */

/* Remove browser / theme invalid input icons */
input:invalid {
    box-shadow: none !important;
    background-image: none !important;
}

/* Remove any Astra or plugin styling on invalid fields */
input:invalid,
input:invalid:focus,
input:invalid:hover {
    outline: none !important;
    border-color: #ccc !important;
}

/* Improve Google Autocomplete visibility */
#ggk_location {
    background-image: none !important;
    box-shadow: none !important;
}

/* ============================================================
   GGK TESTIMONIALS GRID (HOME PAGE)
   ============================================================ */

.ggk-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.ggk-testimonial-card {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.ggk-testimonial-header strong {
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
}

.ggk-stars {
    color: #f5a623;
    font-size: 15px;
    margin-bottom: 12px;
}

.ggk-testimonial-card blockquote {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .ggk-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ggk-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
