/* GiftB360x — Contact Page v2 */

.gb-ct-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 0 100px;
    background: #fff;
    min-height: 100vh;
}

/* ── Hero ────────────────────────────────────────────────── */
.gb-ct-hero {
    padding: 40px 24px 28px;
    text-align: center;
    background: #fff;
}
.gb-ct-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -.3px;
}
.gb-ct-hero-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
    max-width: 400px;
    margin-inline: auto;
}

/* ── Section ─────────────────────────────────────────────── */
.gb-ct-section {
    margin: 0 16px 20px;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 20px 16px 8px;
}
.gb-ct-section-label {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    padding: 0 4px;
}

/* ── Contact item ────────────────────────────────────────── */
.gb-ct-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 4px 16px;
    margin-bottom: 4px;
}

/* Icon box */
.gb-ct-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gb-ct-icon--wa   { background: #25D366; }
.gb-ct-icon--blue { background: #3B82F6; }
.gb-ct-icon svg { display: block; }

/* Text */
.gb-ct-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 2px;
    min-width: 0;
}
.gb-ct-item-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: .06em;
}
.gb-ct-item-value {
    font-size: 14px;
    color: #111;
    word-break: break-word;
    text-decoration: none !important;
    line-height: 1.45;
}
a.gb-ct-item-value { color: #111 !important; }
a.gb-ct-item-value:hover { color: var(--gb-primary, #e63329) !important; }

/* WhatsApp CTA button */
.gb-ct-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25D366;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    width: fit-content;
    transition: background .15s;
}
.gb-ct-wa-btn svg { display: block; flex-shrink: 0; }
.gb-ct-wa-btn:hover { background: #1ebe5d; }

/* ── Map section ─────────────────────────────────────────── */
.gb-ct-map-wrap {
    margin: 0 16px 24px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #e8e8e8;
}

/* "Open in Maps" floating chip */
.gb-ct-open-maps {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #111 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    transition: box-shadow .15s;
}
.gb-ct-open-maps:hover { box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.gb-ct-open-maps svg { display: block; }

/* Map iframe container — always full-width, no leaked styles */
.gb-ct-map-frame {
    display: block;
    width: 100%;
    line-height: 0;
}
.gb-ct-map-frame iframe {
    display: block !important;
    width: 100% !important;
    height: 320px !important;
    border: none !important;
    max-width: 100% !important;
}

/* Placeholder when no embed */
.gb-ct-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 200px;
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 13px;
}
.gb-ct-map-placeholder svg { display: block; opacity: .5; }

/* ── Mobile tweaks ───────────────────────────────────────── */
@media (max-width: 480px) {
    .gb-ct-hero { padding: 28px 20px 22px; }
    .gb-ct-hero-title { font-size: 20px; }
    .gb-ct-section { margin: 0 12px 16px; }
    .gb-ct-map-wrap { margin: 0 12px 20px; }
    .gb-ct-map-frame iframe { height: 260px !important; }
}
