/* Gh Pro Fugu — Ghana store (D1 "Price Board") lead-capture popups.
   Market-poster skin: pure white, thick ink borders, hard offset shadows,
   Archivo Black display in Ghana green + marigold/MoMo accents.
   Deliberately different from the international site's espresso/serif popup. */
.ghp-overlay {
    position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
    padding: 20px; background: rgba(9, 9, 5, .62); opacity: 0; transition: opacity .26s ease;
    font-family: 'Public Sans', system-ui, sans-serif;
}
.ghp-overlay.show { opacity: 1; }
.ghp-card {
    position: relative; width: 100%; max-width: 430px; background: #FFFFFF;
    border: 3px solid #191913; box-shadow: 12px 12px 0 rgba(0, 0, 0, .28);
    padding: 40px 34px 30px; text-align: center;
    transform: translateY(16px); transition: transform .28s cubic-bezier(.2, .7, .2, 1);
}
.ghp-overlay.show .ghp-card { transform: none; }
.ghp-eyebrow {
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 11px;
    letter-spacing: .2em; text-transform: uppercase; color: #0B7A3B; margin-bottom: 14px;
}
.ghp-title {
    font-family: 'Archivo Black', 'Archivo', sans-serif; font-weight: 400;
    font-size: clamp(28px, 5vw, 36px); line-height: 1.02; letter-spacing: .01em;
    text-transform: uppercase; color: #0B7A3B; margin: 0 0 14px;
}
.ghp-title .accent { color: #F5A800; }
.ghp-sub { font-size: 14.5px; line-height: 1.6; color: #4A4A40; margin: 0 0 22px; }
.ghp-form { display: flex; flex-direction: column; gap: 11px; }
.ghp-input {
    width: 100%; padding: 14px 15px; border: 2px solid #191913; background: #fff;
    font-family: 'Public Sans', sans-serif; font-size: 15px; color: #191913; box-sizing: border-box;
}
.ghp-input:focus { outline: none; box-shadow: 0 0 0 3px rgba(245, 168, 0, .35); }
.ghp-btn {
    width: 100%; padding: 15px 16px; border: 2px solid #191913;
    background: #0B7A3B; color: #fff; box-shadow: 5px 5px 0 #191913;
    font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px;
    letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease; box-sizing: border-box;
}
.ghp-btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 #191913; }
.ghp-btn:disabled { opacity: .6; cursor: default; transform: none; box-shadow: 5px 5px 0 #191913; }
.ghp-msg { min-height: 1em; font-size: 13px; margin-top: 11px; font-weight: 600; }
.ghp-msg.err { color: #CE1126; }
.ghp-msg.ok { color: #0B7A3B; }
.ghp-decline {
    margin-top: 15px; background: none; border: 0; color: #8A8A7E; font-size: 12.5px;
    font-family: 'Archivo', sans-serif; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.ghp-decline:hover { color: #191913; }
.ghp-x {
    position: absolute; top: 10px; right: 12px; background: none; border: 0;
    font-size: 28px; line-height: 1; color: #8A8A7E; cursor: pointer; padding: 4px;
}
.ghp-x:hover { color: #191913; }
.ghp-code {
    margin: 8px 0 6px; padding: 15px; border: 2px dashed #0B7A3B; background: #F4F4EE;
    font-size: 15px; color: #191913;
}
.ghp-code strong {
    font-family: 'Archivo Black', monospace; letter-spacing: 2px; color: #08602E; font-size: 20px;
}

/* Stage 2: slide-in */
.ghp-slide {
    position: fixed; z-index: 9998; right: 22px; bottom: 22px; width: 328px; max-width: calc(100vw - 32px);
    background: #FFFFFF; border: 3px solid #191913; box-shadow: 9px 9px 0 rgba(0, 0, 0, .26);
    padding: 22px 20px 20px; transform: translateY(22px); opacity: 0;
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
    font-family: 'Public Sans', system-ui, sans-serif;
}
.ghp-slide.show { transform: none; opacity: 1; }
.ghp-slide .ghp-eyebrow { margin-bottom: 7px; }
.ghp-slide-title {
    font-family: 'Archivo Black', 'Archivo', sans-serif; font-weight: 400; font-size: 20px;
    line-height: 1.08; text-transform: uppercase; color: #191913; margin: 0 0 14px;
}
@media (max-width: 480px) {
    .ghp-slide { left: 12px; right: 12px; bottom: 12px; width: auto; }
    .ghp-card { padding: 34px 22px 26px; box-shadow: 8px 8px 0 rgba(0, 0, 0, .28); }
}
