/* =============================================
   GGG App Download Buttons — v1.0.2
   Layout direction & width are controlled
   per-widget via inline <style> blocks.
   This file handles base appearance only.
============================================= */

/* Wrapper */
.ggg-app-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Base button */
.ggg-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background-color: #000000;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    min-width: 0;
    box-sizing: border-box;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.ggg-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: #ffffff;
}

.ggg-app-btn:focus {
    outline: 2px solid #FF5500;
    outline-offset: 3px;
    text-decoration: none;
}

.ggg-app-btn:active {
    transform: translateY(0);
}

/* Icon */
.ggg-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.ggg-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ggg-apple-svg {
    fill: #ffffff;
    transition: fill 0.25s ease;
}

/* Text block */
.ggg-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    white-space: nowrap;
}

.ggg-btn-subtitle {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.75;
    color: #ffffff;
}

.ggg-btn-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}
