.arka-cf{
    --arka-primary:#1565C0;
    --arka-sky:#F2F8FF;
    --arka-text:#172033;
    --arka-muted:#667085;
    --arka-border:#DCE6F1;
    position:relative;
    width:100%;
    padding:28px 16px;
    overflow:hidden;
    background:#F2F8FF;
    color:#172033;
    font-family:inherit;
    box-sizing:border-box;
}

.arka-cf *,
.arka-cf *::before,
.arka-cf *::after{
    box-sizing:border-box;
}

.arka-cf-decor{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    filter:blur(1px);
    opacity:.8;
}

.arka-cf-decor-one{
    width:230px;
    height:230px;
    top:-110px;
    right:-80px;
    background:rgba(21,101,192,.10);
}

.arka-cf-decor-two{
    width:170px;
    height:170px;
    bottom:-90px;
    left:-55px;
    background:rgba(129,212,250,.16);
}

.arka-cf-box{
    position:relative;
    z-index:1;
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:34px;
    border:1px solid var(--arka-border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 18px 55px rgba(21,101,192,.10);
}

.arka-cf-heading{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:26px;
}

.arka-cf-heading-mark{
    flex:0 0 7px;
    width:7px;
    min-height:56px;
    border-radius:99px;
    background:linear-gradient(180deg,#1565C0 0%,#42A5F5 100%);
}

.arka-cf-heading h2{
    margin:0 0 7px;
    color:#1565C0;
    font-size:27px;
    line-height:1.45;
    font-weight:800;
}

.arka-cf-description{
    margin:0;
    color:#667085;
    font-size:14px;
    line-height:1.9;
}

.arka-cf-form{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.arka-cf-group{
    width:var(--arka-width,100%);
    max-width:100%;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.arka-cf-group label{
    color:#273142;
    font-size:14px;
    font-weight:700;
    line-height:1.7;
}

.arka-cf-required{
    margin-right:3px;
    color:#1565C0;
}

.arka-cf-field{
    display:block;
    width:100%;
    min-height:50px;
    padding:11px 14px;
    border:1px solid #DCE6F1;
    border-radius:12px;
    outline:0;
    background:#fff;
    color:#172033;
    font:inherit;
    font-size:14px;
    line-height:1.7;
    transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.arka-cf-field::placeholder{
    color:#98A2B3;
}

.arka-cf-field:hover{
    background:#FCFDFF;
}

.arka-cf-field:focus{
    border-color:#1565C0;
    box-shadow:0 0 0 3px rgba(21,101,192,.08);
}

textarea.arka-cf-field{
    min-height:128px;
    resize:vertical;
}

.arka-cf-options{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    min-height:50px;
    align-items:center;
}

.arka-cf-option{
    display:inline-flex!important;
    align-items:center;
    gap:7px;
    padding:9px 12px;
    border:1px solid #E2E8F0;
    border-radius:10px;
    background:#FAFCFF;
    font-size:13px!important;
    font-weight:500!important;
    cursor:pointer;
}

.arka-cf-option input{
    accent-color:#1565C0;
}

.arka-cf-message{
    width:100%;
    min-height:0;
    font-size:14px;
    line-height:1.8;
}

.arka-cf-message.success,
.arka-cf-message.error{
    padding:11px 14px;
    border-radius:11px;
}

.arka-cf-message.success{
    color:#166534;
    background:#F0FDF4;
    border:1px solid #BBF7D0;
}

.arka-cf-message.error{
    color:#991B1B;
    background:#FEF2F2;
    border:1px solid #FECACA;
}

.arka-cf-actions{
    display:flex;
    align-items:stretch;
    gap:10px;
    width:100%;
    margin-top:2px;
}

.arka-cf-submit,
.arka-cf-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 22px;
    border-radius:11px;
    font:inherit;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.arka-cf-submit{
    width:100%;
    border:0;
    color:#fff;
    background:#1565C0;
    box-shadow:0 8px 18px rgba(21,101,192,.18);
}

.arka-cf-submit:hover{
    transform:translateY(-1px);
    box-shadow:0 11px 22px rgba(21,101,192,.22);
}

.arka-cf-submit:disabled{
    opacity:.65;
    cursor:wait;
    transform:none;
}

.arka-cf-secondary{
    flex:0 0 auto;
    min-width:150px;
    border:1px solid #DCE6F1;
    color:#1565C0;
    background:#fff;
}

.arka-cf-secondary:hover{
    background:#F7FAFF;
}

.arka-cf-privacy{
    width:100%;
    margin-top:2px;
    text-align:center;
    color:#667085;
    font-size:12px;
    line-height:1.8;
}

@media (max-width:767px){
    .arka-cf{
        padding:16px 10px;
    }

    .arka-cf-box{
        padding:22px 18px;
        border-radius:16px;
    }

    .arka-cf-heading{
        margin-bottom:20px;
    }

    .arka-cf-heading h2{
        font-size:22px;
    }

    .arka-cf-description{
        font-size:13px;
    }

    .arka-cf-group{
        width:100%!important;
    }

    .arka-cf-actions{
        flex-direction:column;
    }

    .arka-cf-secondary{
        width:100%;
    }
}


/* Cart product cards */
.arka-cf-cart{
    display:grid;
    gap:10px;
    width:100%;
}
.arka-cf-cart-card{
    position:relative;
    display:grid;
    grid-template-columns:22px 64px minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    width:100%;
    min-height:84px;
    padding:10px 12px;
    border:1px solid #E1EAF4;
    border-radius:14px;
    background:#fff;
    cursor:pointer;
    transition:border-color .18s ease,box-shadow .18s ease,background .18s ease,transform .18s ease;
}
.arka-cf-cart-card:hover{
    border-color:#AFCBEB;
    background:#FBFDFF;
    box-shadow:0 5px 16px rgba(21,101,192,.07);
}
.arka-cf-cart-card.is-selected{
    border-color:#1565C0;
    background:#F6FAFF;
    box-shadow:0 7px 20px rgba(21,101,192,.10);
}
.arka-cf-cart-radio{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.arka-cf-cart-check{
    width:18px;
    height:18px;
    border:2px solid #C5D4E5;
    border-radius:50%;
    background:#fff;
    transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.arka-cf-cart-card.is-selected .arka-cf-cart-check{
    border-color:#1565C0;
    background:#1565C0;
    box-shadow:inset 0 0 0 4px #fff;
}
.arka-cf-cart-image{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid #E7EEF6;
    border-radius:10px;
    background:#F8FBFF;
}
.arka-cf-cart-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}
.arka-cf-cart-image-placeholder{font-size:22px;opacity:.65}
.arka-cf-cart-info{display:flex;flex-direction:column;gap:5px;min-width:0}
.arka-cf-cart-name{color:#172033;font-size:14px;line-height:1.7;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.arka-cf-cart-meta{color:#667085;font-size:12px;line-height:1.6}
.arka-cf-cart-price{color:#1565C0;font-size:13px;font-weight:800;white-space:nowrap}
.arka-cf-cart-empty{padding:13px 14px;border:1px dashed #C9D8E8;border-radius:12px;background:#F8FBFF;color:#667085;font-size:13px}
@media (max-width:600px){
    .arka-cf-cart-card{grid-template-columns:22px 54px minmax(0,1fr);gap:10px}
    .arka-cf-cart-image{width:54px;height:54px}
    .arka-cf-cart-price{grid-column:3;justify-self:start;margin-top:-4px}
    .arka-cf-cart-name{white-space:normal}
}
