/**
 * Hypebroo Custom Jersey - Frontend Styles
 * Version: 57.3.0
 */

#hb-custom-wrap {
    margin: 16px 0;
    padding: 18px;
    border: 3px solid #000;
    background: #fff;
}

.hb-title {
    font-size: 20px;
    font-weight: 900;
    color: #b91c1c;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hb-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

.hb-toggle button {
    flex: 1;
    padding: 12px;
    border: 2px solid #000;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hb-toggle button:hover {
    background: #f3f4f6;
}

.hb-toggle button.active {
    background: #000;
    color: #fff;
}

/* ── EID Offer Mode — yellow background, same border/active/hover as standard buttons ── */
/* Issue 3 fix: border matches global #000, active matches global black/white, hover matches global */
.hb-toggle--eid button {
    background: #fbbf24;
    color: #000;
    font-weight: 900;
    border: 2px solid #000;
    transition: all 0.2s ease;
}

.hb-toggle--eid button:hover {
    background: #f3f4f6;
}

.hb-toggle--eid button.active {
    background: #000;
    color: #fff;
}

/* ── Shared field styles ── */
.hb-fields input {
    width: 100%;
    border: 2px solid #000;
    padding: 12px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hb-policy-text {
    font-size: 12px;
    line-height: 1.5;
    color: #444;
    margin-bottom: 10px;
    margin-top: 0;
}

@keyframes hb-shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-5px); }
    50%  { transform: translateX(5px); }
    75%  { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.hb-shake {
    animation: hb-shake 0.3s;
    border-color: #dc2626 !important;
}
