/* =============================================================
   86 Chef - Home Page Styles v3
   All rules scoped to .chef-home body class.
   Uses ch- prefix matching front-page.php
   ============================================================= */

/* -- Global resets scoped to home page ---------------------- */
.chef-home { margin: 0; padding: 0; }
.chef-home *, .chef-home *::before, .chef-home *::after { box-sizing: border-box; }
.chef-home img { display: block; max-width: 100%; height: auto; }
.chef-home a { text-decoration: none; color: inherit; }
.chef-home ul { list-style: none; margin: 0; padding: 0; }
.chef-home p { margin: 0; padding: 0; }
.chef-home h1, .chef-home h2, .chef-home h3 { margin: 0; padding: 0; }


/* 80% content wrapper - applied inside each section */
.ch-wrap {
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
/* -- Buttons ------------------------------------------------ */
.ch-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'KoHo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.ch-btn--gold { background: #FFD700; color: #1E1E1E; border-color: #FFD700; }
.ch-btn--gold:hover { background: transparent; color: #FFD700; }
.ch-btn--dark { background: #1E1E1E !important; color: #ffffff !important; border-color: #1E1E1E; }
.ch-btn--dark:hover { background: #FFD700; color: #1E1E1E; border-color: #FFD700; }

/* =============================================================
   1. HEADER
   - Dark bg, logo centered, nav on right
   ============================================================= */
.ch-header {
    background: #1E1E1E !important;
    width: 100%;
    position: relative;
    z-index: 100;
}
.ch-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0;
    min-height: 100px;
    position: static;
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}

/* Logo: absolute center of header */
.ch-logo {
    position: relative !important;
    display: block !important;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: -30px;
    line-height: 0;
    z-index: 10;
}
.ch-logo img {
    width: 180px !important;
    height: 180px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Nav: flex row on right */
.ch-nav {
    display: block !important;
    }
.ch-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 36px !important;
    flex-wrap: nowrap !important;
}
.ch-nav ul li { display: inline-block !important; border: none !important; }
.ch-nav a {
    font-family: 'KoHo', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    white-space: nowrap;
    text-transform: capitalize;
    transition: color .2s;
    padding: 0 !important;
    display: inline !important;
}
.ch-nav a:hover { color: #FFD700 !important; }

/* Last nav item = gold button */
.ch-nav ul li:last-child a {
    background: #FFD700 !important;
    color: #1E1E1E !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    display: inline-block !important;
}
.ch-nav ul li:last-child a:hover {
    background: #5B5639 !important;
    color: #fff !important;
}

/* Mobile toggle */
.ch-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 16px;
}
.ch-toggle span { display: block; width: 26px; height: 2px; background: #fff; transition: all .2s; }

/* =============================================================
   2. HERO
   - Full width image, text overlaid bottom-left
   ============================================================= */
.ch-hero {
    position: relative !important;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    margin-top: 0;
}
.ch-hero__img { display: none; }
.ch-hero__text {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;
    max-width: 380px;
    z-index: 2;
}
.ch-hero__text h1 {
    font-family: KoHo, sans-serif !important;
    font-size: 2.6rem !important;
    line-height: 1.15 !important;
    color: \#1E1E1E !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
}
.ch-hero__text h1 strong { font-weight: 700 !important; }
.ch-hero__text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #27241C;
    margin-bottom: 20px !important;
}
.ch-hero__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}
.ch-hero__dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(0,0,0,.1);
    display: block;
}
.ch-hero__dots span.active {
    background: #FFD700;
    border-color: #FFD700;
    width: 10px; height: 10px;
}

/* =============================================================
   3. ABOUT US
   ============================================================= */
.ch-about {
    background: #fff;
    text-align: center;
    padding: 70px 0;
    display: block;
}
.ch-about__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
}
.ch-about h2 {
    font-family: 'KoHo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 20px !important;
}
.ch-about p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #27241C;
    line-height: 1.75;
    max-width: 660px;
    margin: 0 auto 32px !important;
}

/* =============================================================
   4. LOYALTY BANNER
   ============================================================= */
.ch-loyalty {
background-image: url(https://86chefclothing.com/wp-content/uploads/earn-loyality-img.jpg);
background-size: cover;
background-position: center;
width: 60%;
max-width: 60%;
margin: 40px auto;
border-radius: 12px;
overflow: hidden;
min-height: 240px;
display: flex;
align-items: center;
justify-content: center;
}



.ch-loyalty__body {
text-align: center;
padding: 40px 60px;
width: 100%;
}
.ch-loyalty__body h2 {
    font-family: 'KoHo', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 8px !important;
}
.ch-loyalty__body p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #27241C;
    margin-bottom: 20px !important;
}

/* =============================================================
   5. FEATURED PRODUCTS
   ============================================================= */
.ch-products {
    background: #fff;
    padding: 70px 0 60px;
    text-align: center;
    display: block;
    width: 100%;
}
.ch-products h2 {
    font-family: 'KoHo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 8px !important;
}
.ch-products__sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #27241C;
    margin-bottom: 36px !important;
}
.ch-carousel-wrap {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    width: 100%;
}
.ch-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    color: #929292;
    border: none;
    cursor: pointer;
    font-size: 3rem;
    line-height: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    box-shadow: none;
}
.ch-arrow svg { display: none; }
.ch-arrow--prev { left: -36px; }
.ch-arrow--next { right: -36px; }
.ch-arrow:hover { color: #FFD700; background: transparent; }

.ch-carousel {
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden;
    width: 100%;
    padding: 0 60px;
    transition: none;
}
.ch-card {
    flex: 0 0 25% !important;
    min-width: 0;
    padding: 0 8px;
    transition: transform .2s;
}
.ch-card:hover { transform: translateY(-4px); }
.ch-card__img {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
    text-decoration: none;
}
.ch-card__img img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover;
    transition: transform .35s;
    display: block;
}
.ch-card:hover .ch-card__img img { transform: scale(1.03); }
.ch-card__body { text-align: left; padding: 0 4px; }
.ch-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #27241C;
    margin-bottom: 6px !important;
    line-height: 1.4;
}
.ch-stars { display: flex; gap: 2px; margin-bottom: 6px !important; }
.ch-star { color: #FEA124; font-size: 0.85rem; }
.ch-card__price {
    font-family: 'KoHo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E1E1E;
}

/* =============================================================
   6. CATEGORY TILES
   ============================================================= */
.ch-cats {
    background: #fff;
    padding: 40px 0;
    width: 100%;
}
.ch-cats .ch-wrap {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
.ch-cat {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 0;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    min-height: 320px;
    text-decoration: none;
}
.ch-cat img { display: none; }
.ch-cat:hover img { transform: scale(1.04); }
.ch-cat span {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    font-family: 'KoHo', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.7);
    text-transform: capitalize;
    letter-spacing: .04em;
}

/* =============================================================
   7. KITCHEN-WORTHY PANTS
   ============================================================= */
.ch-pants {
    width: 60%;
    max-width: 60%;
    margin: 0 auto 40px;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    min-height: 260px;
}







/* =============================================================
   8. WHY WE ROCK
   ============================================================= */
.ch-rock {
    background: #fff;
    padding: 70px 0;
    text-align: center;
    width: 100%;
}
.ch-rock .ch-wrap { width: 60%; max-width: 60%; margin: 0 auto; }
.ch-rock h2 {
    font-family: 'KoHo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 16px !important;
}
.ch-rock__sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #27241C;
    max-width: 580px;
    margin: 0 auto 40px !important;
    line-height: 1.7;
}
.ch-rock__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
.ch-rock__grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.ch-rock__tall {
    grid-row: 1 / 3;
    grid-column: 2;
    height: 100%;
    min-height: 484px;
}

/* =============================================================
   9. PROMOTIONS
   ============================================================= */
.ch-promo {
    background: #FFD700;
    padding: 60px 0;
    text-align: center;
    width: 100%;
}
.ch-promo h2 {
    font-family: 'KoHo', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 28px !important;
}
.ch-promo__form {
    display: flex !important;
    flex-direction: row !important;
    max-width: 540px;
    margin: 0 auto;
    gap: 0;
}
.ch-promo__form input {
    flex: 1;
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    background: #fff;
    color: #27241C;
    min-width: 0;
}
.ch-promo__form .ch-btn { border-radius: 0 4px 4px 0; padding: 14px 28px; }
/* GF override inside promo */
.ch-promo .gform_wrapper { max-width: 540px; margin: 0 auto; }
.ch-promo .gform_wrapper .gfield_label { display: none; }
.ch-promo .gform_wrapper form {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 0;
}
.ch-promo .gform_wrapper .gform_body { flex: 1; min-width: 0; }
.ch-promo .gform_wrapper .gfield { margin: 0; }
.ch-promo .gform_wrapper .gfield_validation_container { display: none; }
.ch-promo .gform_wrapper input[type=email] {
    border-radius: 4px 0 0 4px;
    border: none;
    height: 52px;
    padding: 0 20px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}
.ch-promo .gform_wrapper .gform_footer, .ch-promo .gform_wrapper .gform_page_footer {
    margin: 0; padding: 0; flex: 0 0 auto;
}
.ch-promo .gform_wrapper input[type=submit] {
    border-radius: 0 4px 4px 0;
    height: 52px;
    background: #1E1E1E;
    color: #fff;
    padding: 0 28px;
    font-family: 'KoHo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: auto;
    transition: background .2s;
}
.ch-promo .gform_wrapper input[type=submit]:hover { background: #5B5639; }
.ch-promo .gform_confirmation_message {
    background: transparent; border: none;
    color: #1E1E1E; font-weight: 700; font-size: 1.1rem;
}

/* =============================================================
   10. FOOTER
   ============================================================= */
.ch-footer {
    background: #1E1E1E;
    color: #fff;
    padding: 60px 0 0;
    display: block;
}
.ch-footer__inner {
    display: grid !important;
    grid-template-columns: 280px 1fr 1fr;
    gap: 48px;
    max-width: 60%;
    width: 60%;
    margin: 0 auto;
    padding: 0 0 48px;
}
.ch-footer__brand img {
    width: 160px; height: 160px;
    margin-bottom: 16px !important;
    object-fit: contain;
    display: block;
}
.ch-footer__brand > p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #9FA1A8;
    line-height: 1.7;
    margin-bottom: 16px !important;
}
.ch-footer__contact p {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #E4E1D4;
    margin-bottom: 8px !important;
}
.ch-footer__contact img { filter: invert(1); opacity: .7; flex-shrink: 0; }
.ch-footer__social {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    margin-top: 16px !important;
    flex-wrap: wrap;
}
.ch-social {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #FFD700;
    color: #1E1E1E;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}
.ch-social:hover { background: #5B5639; color: #fff; }
.ch-social svg { display: block; }
.ch-footer__col h4 {
    font-family: 'KoHo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 16px !important;
}
.ch-footer__col ul li {
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center;
    gap: 4px;
}
.ch-footer__col ul li::before {
    content: '\00BB';
    color: #FFD700;
    font-weight: 700;
    flex-shrink: 0;
}
.ch-footer__col a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #E4E1D4;
    transition: color .2s;
}
.ch-footer__col a:hover { color: #FFD700; }
.ch-footer__copy {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 20px 24px;
}
.ch-footer__copy p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #9FA1A8;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .ch-cats { padding: 0 20px; }
    .ch-pants { margin: 0 20px; }
    .ch-rock { padding: 60px 20px; }
    .ch-footer__inner { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
    .ch-toggle { display: flex !important; }
    .ch-header__inner { padding: 0 20px; }
    .ch-logo img { width: 100px !important; height: 100px !important; }
    .ch-nav {
        display: none !important;
        position: absolute !important;
        top: 100px; left: 0; right: 0;
        background: #1E1E1E;
        padding: 20px;
        border-top: 1px solid rgba(255,255,255,.1);
        z-index: 200;
    }
    .ch-nav.is-open { display: block !important; }
    .ch-nav ul { flex-direction: column !important; gap: 0 !important; }
    .ch-nav li { display: block !important; border-bottom: 1px solid rgba(255,255,255,.06); }
    .ch-nav a { display: block !important; padding: 13px 0 !important; }
    .ch-hero { margin-top: 0; }
    .ch-hero__img { height: 380px !important; }
    .ch-hero__text { left: 24px; bottom: 50px; }
    .ch-loyalty { flex-direction: column !important; }
    
    .ch-card { flex: 0 0 50% !important; }
    .ch-card__img img { height: 220px !important; }
    .ch-cats { flex-direction: column !important; padding: 0; gap: 0; }
    .ch-cat img { height: 200px; }
    .ch-pants { flex-direction: column !important; margin: 0; }
    
    .ch-pants__imgs img, 
    .ch-rock { padding: 60px 16px; }
    .ch-rock__grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; }
    .ch-rock__tall { grid-row: auto !important; }
    .ch-footer__inner { grid-template-columns: 1fr !important; gap: 32px !important; }
    .ch-promo__form { flex-direction: column !important; }
    .ch-promo__form input { border-radius: 4px !important; margin-bottom: 8px; }
    .ch-promo__form .ch-btn { border-radius: 4px !important; }
}
@media (max-width: 480px) {
    .ch-logo img { width: 80px !important; height: 80px !important; }
    .ch-card { flex: 0 0 100% !important; }
}


.ch-pants__col {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}
.ch-pants__col--img {
    flex: 0 0 25%;
}
.ch-pants__col--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.ch-pants__col--text {
    flex: 1;
    background-size: cover;
    background-position: center center;
    display: flex !important;
    align-items: center;
}
.ch-pants__content {
    padding: 32px 20px 32px 32px;
    width: 70%;
}
.ch-pants__content h3 {
    font-family: 'KoHo', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px !important;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.ch-pants__content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 20px !important;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.ch-pants__content .ch-btn {
    width: auto;
    display: inline-block;
}

.ch-hero__inner {
    display: flex !important;
    flex-direction: row !important;
    padding: 240px 0;
    width: 60%;
    margin: 0 auto;
}
.ch-hero__text {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    z-index: 2;
    padding-right: 100px;
}
.ch-hero__right {
    flex: 0 0 60%;
}
.ch-hero__text h1 {
    font-family: 'KoHo', sans-serif !important;
    font-size: 3.1rem !important;
    line-height: 1.1 !important;
    color: #1E1E1E !important;
    font-weight: 400 !important;
    margin-bottom: 12px !important;
    text-transform: capitalize;
}
.ch-hero__text h1 strong { font-weight: 700 !important; }
.ch-hero__text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #27241C;
    margin-bottom: 20px !important;
}

.ch-promo .gform_title { display: none; }
.ch-promo .gform_description { display: none; }
.ch-promo .gform_wrapper { max-width: 540px; margin: 0 auto; }
.ch-promo .gform_wrapper form {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 0;
    background: transparent;
}
.ch-promo .gf_invisible { display: none !important; }
.ch-promo .gform_wrapper .gfield { margin: 0 !important; padding: 0 !important; }
.ch-promo .gform_wrapper .gfield_label { display: none !important; }
.ch-promo .gform_wrapper .gfield_validation_container { display: none !important; }
.ch-promo .gform_wrapper .ginput_container { margin: 0 !important; }
.ch-promo .gform_wrapper input[type=email],
.ch-promo .gform_wrapper input[type=text] {
    border-radius: 4px 0 0 4px !important;
    border: none !important;
    height: 52px !important;
    padding: 0 20px !important;
    width: 100% !important;
    font-family: Poppins, sans-serif !important;
    font-size: 0.95rem !important;
    background: #fff !important;
    color: #27241C !important;
    outline: none !important;
    box-shadow: none !important;
}
.ch-promo .gform_wrapper input[type=email]::placeholder { color: #888 !important; }
.ch-promo .gform_wrapper .gform_footer,
.ch-promo .gform_wrapper .gform_page_footer {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
    border: none !important;
    background: transparent !important;
}
.ch-promo .gform_wrapper input[type=submit] {
    border-radius: 0 4px 4px 0 !important;
    height: 52px !important;
    background: #1E1E1E !important;
    color: #fff !important;
    padding: 0 28px !important;
    font-family: KoHo, sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: none !important;
    cursor: pointer !important;
    width: auto !important;
    white-space: nowrap !important;
    transition: background .2s !important;
}
.ch-promo .gform_wrapper input[type=submit]:hover { background: #5B5639 !important; }
.ch-promo .gform_confirmation_message { color: #1E1E1E; font-weight: 700; font-size: 1.1rem; }
.ch-promo .gform_validation_errors { display: none; }
.ch-promo h2 { margin-bottom: 28px !important; }
.ch-promo .gform_body { flex: 1; min-width: 0; }

.ch-footer__contact img {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0;
    filter: invert(1);
    opacity: .7;
}
.ch-footer__contact p {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    font-family: Poppins, sans-serif;
    font-size: 0.85rem;
    color: #E4E1D4;
    margin-bottom: 8px !important;
}
.ch-footer__contact svg { color: #E4E1D4; opacity: .8; flex-shrink: 0; }

/* === PROMO FORM INLINE OVERRIDE v2 === */
.ch-promo form.gform_legacy_markup_wrapper,
.ch-promo form[id^="gform_"] {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 540px !important;
}
.ch-promo .gform_body,
.ch-promo ul.gform_fields,
.ch-promo li.gfield {
    flex: 1 !important;
    min-width: 0 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.ch-promo .ginput_container_email,
.ch-promo .ginput_container {
    margin: 0 !important;
    padding: 0 !important;
}
.ch-promo input.large {
    border-radius: 4px 0 0 4px !important;
    border: none !important;
    height: 52px !important;
    padding: 0 20px !important;
    width: 100% !important;
    font-size: 0.95rem !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.ch-promo .gform_footer {
    flex: 0 0 auto !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
}
.ch-promo .gform_footer input[type=submit],
.ch-promo input[type=submit] {
    border-radius: 0 4px 4px 0 !important;
    height: 52px !important;
    background: #1E1E1E !important;
    color: #fff !important;
    padding: 0 28px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    width: auto !important;
    margin: 0 !important;
}
.ch-promo .gfield_label,
.ch-promo .gfield_description,
.ch-promo .gform_description,
.ch-promo .gform_title,
.ch-promo .gfield_validation_container,
.ch-promo .validation_message {
    display: none !important;
}
