
:root{
    --cp-blue:#002D8C;
    --cp-green:#629D21;
    --cp-dark:#071b4d;
    --cp-border:#e6eaf0;
    --cp-text:#10224a;
}
.cp-header-v1{
    width:100%;
    background:#fff;
    font-family:Arial,Helvetica,sans-serif;
    color:var(--cp-text);
    position:relative;
    z-index:9999;
}
.cp-header-v1 *{box-sizing:border-box}
.cp-header-v1 a{text-decoration:none}
.cp-header-v1__top{
    height:34px;
    background:linear-gradient(90deg,var(--cp-blue),#063d91);
    color:#fff;
}
.cp-header-v1__top-inner,
.cp-header-v1__inner{
    width:min(100% - 40px, 1440px);
    margin:auto;
}
.cp-header-v1__top-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:12px;
    font-weight:600;
}
.cp-header-v1__utility{
    display:flex;
    align-items:center;
    gap:22px;
}
.cp-header-v1__utility a{
    color:#fff;
    opacity:.98;
}
.cp-social{
    width:21px;
    height:21px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:50%;
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-left:-10px;
}
.cp-header-v1__main{
    background:#fff;
    border-bottom:1px solid var(--cp-border);
    box-shadow:0 3px 14px rgba(0,45,140,.06);
}
.cp-header-v1__inner{
    min-height:72px;
    display:flex;
    align-items:center;
    gap:14px;
}
.cp-header-v1__logo{
    display:flex;
    align-items:center;
    flex:0 0 auto;
    width:168px;
}
.cp-header-v1__logo img{
    display:block;
    width:auto;
    max-width:160px;
    height:54px;
    object-fit:contain;
}
.cp-header-v1__menu{
    display:none;
    width:42px;height:40px;
    border:1px solid #dfe5ee;
    background:#fff;
    border-radius:9px;
    cursor:pointer;
}
.cp-header-v1__menu span{
    display:block;
    width:17px;height:2px;
    background:var(--cp-blue);
    margin:4px auto;
}
.cp-header-v1__location{
    height:42px;
    min-width:108px;
    padding:0 12px;
    border:1px solid #dfe5ee;
    border-radius:9px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:#173566;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}
.cp-pin{color:var(--cp-green);font-size:12px}
.cp-chevron{font-size:16px;color:#6d7787;line-height:1}
.cp-header-v1__search{
    height:42px;
    flex:1 1 360px;
    max-width:430px;
    display:flex;
    border:1px solid #dfe5ee;
    border-radius:9px;
    overflow:hidden;
    background:#fff;
}
.cp-header-v1__search input[type=search]{
    min-width:0;
    width:100%;
    border:0!important;
    outline:0!important;
    box-shadow:none!important;
    padding:0 15px;
    color:#253b62;
    background:#fff;
    font-size:13px;
}
.cp-header-v1__search input::placeholder{color:#8993a2}
.cp-header-v1__search button{
    flex:0 0 44px;
    border:0;
    background:var(--cp-green);
    color:#fff;
    cursor:pointer;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cp-header-v1__nav{
    display:flex;
    align-items:center;
    gap:20px;
    margin-left:auto;
    white-space:nowrap;
}
.cp-header-v1__nav a{
    color:#112a56;
    font-size:12px;
    font-weight:700;
}
.cp-header-v1__nav a:hover{color:var(--cp-green)}
.cp-my-coupons{display:flex;align-items:center;gap:5px}
.cp-badge{
    width:17px;height:17px;
    border-radius:50%;
    background:var(--cp-green);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
}
.cp-header-v1__login{
    flex:0 0 auto;
    background:var(--cp-green);
    color:#fff!important;
    border-radius:9px;
    padding:12px 17px;
    font-size:12px;
    font-weight:800;
    box-shadow:0 4px 12px rgba(98,157,33,.2);
}
@media (max-width:1100px){
    .cp-header-v1__nav{gap:12px}
    .cp-header-v1__nav a{font-size:11px}
    .cp-header-v1__logo{width:145px}
    .cp-header-v1__search{max-width:330px}
}
@media (max-width:820px){
    .cp-header-v1__top{height:auto;min-height:34px}
    .cp-header-v1__top-inner{padding:7px 0}
    .cp-header-v1__platform{font-size:10px}
    .cp-header-v1__utility{gap:12px;font-size:10px}
    .cp-header-v1__utility a:nth-child(-n+3){display:none}
    .cp-header-v1__inner{
        width:min(100% - 24px,1440px);
        min-height:66px;
        flex-wrap:wrap;
        padding:8px 0;
    }
    .cp-header-v1__logo{width:auto;margin-right:auto}
    .cp-header-v1__logo img{height:48px;max-width:145px}
    .cp-header-v1__menu{display:block}
    .cp-header-v1__location{height:40px;min-width:100px}
    .cp-header-v1__search{order:5;flex-basis:100%;max-width:none}
    .cp-header-v1__nav{
        display:none;
        order:6;
        width:100%;
        padding:10px 0;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
        border-top:1px solid var(--cp-border);
    }
    .cp-header-v1__nav.is-open{display:flex}
    .cp-header-v1__login{font-size:11px;padding:10px 12px}
}
@media (max-width:480px){
    .cp-header-v1__top-inner{width:calc(100% - 20px)}
    .cp-header-v1__utility .cp-social{display:none!important}
    .cp-header-v1__location{min-width:92px;font-size:12px}
    .cp-header-v1__login{padding:10px 9px}
}
